/* ==============================================
   RATGEBER HUB — Page-Specific Styles
   Loaded on /ratgeber only
   ============================================== */


/* ─── 1. MOBILE HEADER OFFSET ─── */

@media (max-width: 860px) {
  main#main { padding-top: 96px; }
}
@media (max-width: 600px) {
  main#main { padding-top: 88px; }
}
@media (max-width: 420px) {
  main#main { padding-top: 80px; }
}


/* ─── 2. HERO ─── */

.rg-hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(650px 420px at 15% 40%, rgba(184, 138, 76, 0.06), transparent 60%),
    radial-gradient(500px 350px at 85% 20%, rgba(136, 206, 217, 0.04), transparent 55%);
}

/* Signature element — large "4" watermark */
.rg-hero::after {
  content: "4";
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-52%);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(280px, 34vw, 480px);
  font-weight: 700;
  color: rgba(184, 138, 76, 0.045);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.rg-hero-inner {
  position: relative;
  z-index: 1;
}


/* ─── 2a. BREADCRUMB ─── */

.rg-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--muted);
}

.rg-breadcrumb a {
  text-decoration: none;
  color: var(--muted);
  transition: color 180ms ease;
}

.rg-breadcrumb a:hover {
  color: var(--brand-700);
}

.rg-breadcrumb svg {
  color: rgba(21, 39, 52, 0.28);
  flex-shrink: 0;
}

.rg-breadcrumb [aria-current] {
  color: var(--text);
  font-weight: 600;
}


/* ─── 2b. HERO CONTENT ─── */

.rg-hero-title {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  max-width: 680px;
}

.rg-hero-title em {
  font-style: italic;
  color: var(--brand-700);
}

.rg-hero-lead {
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 30px;
}

.rg-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rg-hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rg-meta-item {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.rg-meta-item strong {
  color: var(--brand-800);
  font-weight: 800;
  font-size: 16px;
}

.rg-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(21, 39, 52, 0.16);
  flex-shrink: 0;
}


/* ─── 3. GUIDE GRID ─── */

.rg-guides .section-head {
  max-width: 640px;
}

.rg-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}


/* ─── 4. GUIDE CARDS ─── */

.rg-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  border-radius: 22px;
  border: 1px solid rgba(21, 39, 52, 0.07);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(255, 252, 247, 0.80));
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 28, 39, 0.04);
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
}

/* Accent top bar — reveals on hover */
.rg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-800), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rg-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 52px rgba(11, 28, 39, 0.11),
    0 0 0 1px rgba(27, 109, 132, 0.06);
  border-color: rgba(27, 109, 132, 0.16);
}

.rg-card:hover::before {
  transform: scaleX(1);
}

.rg-card:focus-visible {
  outline: 3px solid rgba(136, 206, 217, 0.54);
  outline-offset: 4px;
}


/* ─── 4a. CARD INNER ─── */

.rg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rg-card-num {
  font-family: "Newsreader", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-800), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rg-card-tag {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(21, 39, 52, 0.42);
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(21, 39, 52, 0.045);
}

.rg-card-title {
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}

.rg-card-desc {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0 0 16px;
}

.rg-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: grid;
  gap: 7px;
}

.rg-card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.48;
  color: rgba(21, 39, 52, 0.70);
}

.rg-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--brand-700);
  border-bottom: 1.5px solid var(--brand-700);
  transform: rotate(-45deg);
}

.rg-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 39, 52, 0.06);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-800);
  transition: color 180ms ease;
}

.rg-card-cta svg {
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rg-card:hover .rg-card-cta {
  color: var(--brand-700);
}

.rg-card:hover .rg-card-cta svg {
  transform: translateX(4px);
}


/* ─── 4b. CARD ACCENT VARIANTS ─── */

.rg-card:nth-child(1) .rg-card-num {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  -webkit-background-clip: text;
  background-clip: text;
}
.rg-card:nth-child(1)::before { background: linear-gradient(90deg, var(--brand-800), var(--brand-600)); }

.rg-card:nth-child(2) .rg-card-num {
  background: linear-gradient(135deg, #b88a4c, #d4a262);
  -webkit-background-clip: text;
  background-clip: text;
}
.rg-card:nth-child(2)::before { background: linear-gradient(90deg, #b88a4c, #d4a262); }

.rg-card:nth-child(3) .rg-card-num {
  background: linear-gradient(135deg, #0d6a8e, #88ced9);
  -webkit-background-clip: text;
  background-clip: text;
}
.rg-card:nth-child(3)::before { background: linear-gradient(90deg, #0d6a8e, #88ced9); }

.rg-card:nth-child(4) .rg-card-num {
  background: linear-gradient(135deg, var(--brand-950), var(--brand-700));
  -webkit-background-clip: text;
  background-clip: text;
}
.rg-card:nth-child(4)::before { background: linear-gradient(90deg, var(--brand-950), var(--brand-700)); }


/* ─── 5. GUIDE FLOW SECTION ─── */

.rg-flow-section {
  padding: 60px 0;
  border-top: 1px solid rgba(21, 39, 52, 0.06);
  border-bottom: 1px solid rgba(21, 39, 52, 0.06);
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(184, 138, 76, 0.035), transparent 65%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.60), rgba(249, 243, 233, 0.30));
}

.rg-flow {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.rg-flow-head h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 10px;
}

.rg-flow-head p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.rg-flow-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 8px 0 16px;
}

.rg-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 110px;
  flex-shrink: 0;
}

.rg-flow-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: white;
  box-shadow: 0 8px 20px rgba(10, 52, 69, 0.20);
  flex-shrink: 0;
}

.rg-flow-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
  max-width: 100px;
}

.rg-flow-line {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-700), var(--accent-gold));
  border-radius: 999px;
  opacity: 0.35;
  flex-shrink: 0;
  margin-top: 24px; /* align with circle centers */
}

.rg-flow-note {
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}


/* ─── 6. CTA DARK SECTION ─── */

.rg-cta {
  position: relative;
  padding: 84px 0;
  background: linear-gradient(160deg, #0a2431 0%, #0d3a50 48%, #0a2d42 100%);
  color: white;
  overflow: hidden;
}

.rg-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 320px at 8% 20%, rgba(184, 138, 76, 0.08), transparent 60%),
    radial-gradient(400px 300px at 92% 80%, rgba(136, 206, 217, 0.05), transparent 55%);
  pointer-events: none;
}

/* Grid pattern */
.rg-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  opacity: 0.6;
}

.rg-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.rg-cta-content h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: white;
}

.rg-cta-content p {
  font-size: 16px;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 30px;
  max-width: 460px;
}

.rg-cta-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.rg-cta-btn {
  background: white !important;
  color: var(--brand-900) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.rg-cta-btn:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22) !important;
}

.rg-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: color 180ms ease;
}

.rg-cta-link:hover {
  color: white;
}

.rg-cta-link svg {
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rg-cta-link:hover svg {
  transform: translateX(4px);
}

.rg-cta-features {
  display: grid;
  gap: 14px;
}

.rg-cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 280ms ease, border-color 280ms ease;
}

.rg-cta-feature:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.12);
}

.rg-cta-feature svg {
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 1px;
}

.rg-cta-feature strong {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.rg-cta-feature span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
}


/* ─── 7. CHECK SECTION ─── */

.rg-check {
  background:
    radial-gradient(600px 350px at 50% 0%, rgba(136, 206, 217, 0.04), transparent 60%);
}

.rg-check .section-head {
  max-width: 620px;
}

.rg-check-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.rg-check-step {
  padding: 30px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.97), rgba(249, 243, 233, 0.80));
  border: 1px solid rgba(21, 39, 52, 0.06);
  box-shadow: 0 8px 24px rgba(11, 28, 39, 0.04);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.rg-check-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11, 28, 39, 0.08);
}

.rg-check-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 5px 14px rgba(10, 52, 69, 0.18);
}

.rg-check-step h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.rg-check-step p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0;
}

.rg-check-footer {
  margin-top: 36px;
  text-align: center;
}

.rg-check-footer .btn {
  margin-bottom: 16px;
}

.rg-check-footer .fine {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ─── 8. REVEAL ANIMATIONS ─── */

.rg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger guide cards */
.rg-guide-grid .rg-card:nth-child(1) { transition-delay: 0ms; }
.rg-guide-grid .rg-card:nth-child(2) { transition-delay: 100ms; }
.rg-guide-grid .rg-card:nth-child(3) { transition-delay: 200ms; }
.rg-guide-grid .rg-card:nth-child(4) { transition-delay: 300ms; }

/* Stagger check steps */
.rg-check-steps .rg-check-step:nth-child(1) { transition-delay: 0ms; }
.rg-check-steps .rg-check-step:nth-child(2) { transition-delay: 100ms; }
.rg-check-steps .rg-check-step:nth-child(3) { transition-delay: 200ms; }

/* Flow step cascade */
.rg-flow-track > * {
  opacity: 0;
  transition:
    opacity 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rg-flow-track .rg-flow-step {
  transform: translateY(14px);
}

.rg-flow-track .rg-flow-line {
  transform: scaleX(0);
}

.rg-flow-section.is-visible .rg-flow-track > * {
  opacity: 1;
}

.rg-flow-section.is-visible .rg-flow-step {
  transform: translateY(0);
}

.rg-flow-section.is-visible .rg-flow-line {
  transform: scaleX(1);
}

.rg-flow-section.is-visible .rg-flow-track > :nth-child(1) { transition-delay: 0ms; }
.rg-flow-section.is-visible .rg-flow-track > :nth-child(2) { transition-delay: 120ms; }
.rg-flow-section.is-visible .rg-flow-track > :nth-child(3) { transition-delay: 240ms; }
.rg-flow-section.is-visible .rg-flow-track > :nth-child(4) { transition-delay: 360ms; }
.rg-flow-section.is-visible .rg-flow-track > :nth-child(5) { transition-delay: 480ms; }
.rg-flow-section.is-visible .rg-flow-track > :nth-child(6) { transition-delay: 600ms; }
.rg-flow-section.is-visible .rg-flow-track > :nth-child(7) { transition-delay: 720ms; }

/* Flow num: bounce pop-in */
.rg-flow-num {
  transform: scale(0.5);
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rg-flow-section.is-visible .rg-flow-num {
  transform: scale(1);
}

/* Directional card reveals (desktop: alternate left/right) */
.rg-guide-grid .rg-card:nth-child(odd) { transform: translate(-22px, 22px); }
.rg-guide-grid .rg-card:nth-child(even) { transform: translate(22px, 22px); }
.rg-guide-grid .rg-card.is-visible { transform: translate(0, 0); }

/* Check steps: scale + translate */
.rg-check-steps .rg-check-step { transform: translateY(22px) scale(0.97); }
.rg-check-steps .rg-check-step.is-visible { transform: translateY(0) scale(1); }

/* CTA: deeper rise + subtle scale */
.rg-cta-inner.rg-reveal { transform: translateY(36px) scale(0.985); }
.rg-cta-inner.rg-reveal.is-visible { transform: translateY(0) scale(1); }

/* Hero entrance cascade */
.rg-hero-inner > * {
  opacity: 0;
  transform: translateY(20px);
  animation: rg-entrance 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.rg-hero-inner > :nth-child(1) { animation-delay: 100ms; }
.rg-hero-inner > :nth-child(2) { animation-delay: 200ms; }
.rg-hero-inner > :nth-child(3) { animation-delay: 300ms; }
.rg-hero-inner > :nth-child(4) { animation-delay: 400ms; }
.rg-hero-inner > :nth-child(5) { animation-delay: 500ms; }

@keyframes rg-entrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ─── 9. RESPONSIVE: TABLET ─── */

@media (max-width: 981px) {
  .rg-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rg-check-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rg-check-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 2px;
    align-items: center;
  }

  .rg-check-num {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .rg-check-step h3 {
    margin: 0;
  }
}


/* ─── 10. RESPONSIVE: MOBILE ─── */

@media (max-width: 768px) {
  .rg-hero {
    padding: 56px 0 48px;
  }

  .rg-hero-title {
    font-size: clamp(32px, 8.5vw, 46px);
  }

  .rg-hero-lead {
    font-size: 16.5px;
  }

  .rg-guide-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rg-card {
    padding: 26px 22px 24px;
  }

  .rg-card-num {
    font-size: 36px;
  }

  .rg-card-title {
    font-size: 19px;
  }

  /* Mobile card: left accent bar always visible */
  .rg-card::before {
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: 3px;
    height: auto;
    transform: scaleY(1);
    transform-origin: top;
  }

  .rg-card:hover::before {
    transform: scaleY(1);
  }

  /* Reset directional card reveals to vertical-only on mobile */
  .rg-guide-grid .rg-card:nth-child(odd),
  .rg-guide-grid .rg-card:nth-child(even) {
    transform: translateY(24px);
  }
  .rg-guide-grid .rg-card.is-visible {
    transform: translateY(0);
  }

  /* Mobile: left-aligned flow section */
  .rg-flow {
    text-align: left;
  }

  .rg-flow-head p {
    margin-left: 0;
    margin-right: 0;
  }

  .rg-flow-note {
    margin-left: 0;
    margin-right: 0;
  }

  /* Mobile: left-aligned vertical timeline */
  .rg-flow-track {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: 0;
  }

  .rg-flow-step {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    min-width: unset;
  }

  .rg-flow-label {
    max-width: none;
    text-align: left;
    font-size: 14px;
  }

  .rg-flow-num {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .rg-flow-line {
    width: 2px;
    height: 24px;
    margin-top: 0;
    margin-left: 20px;
    background: linear-gradient(180deg, var(--brand-700), var(--accent-gold));
  }

  /* Vertical line animation */
  .rg-flow-track .rg-flow-line {
    transform: scaleY(0);
  }

  .rg-flow-section.is-visible .rg-flow-line {
    transform: scaleY(1);
  }

  .rg-cta {
    padding: 64px 0;
  }

  .rg-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rg-cta-content p {
    max-width: none;
  }

  .rg-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .rg-hero {
    padding: 44px 0 38px;
  }

  .rg-hero::after {
    font-size: 200px;
    right: -10%;
  }

  .rg-hero-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .rg-breadcrumb {
    margin-bottom: 20px;
  }

  .rg-hero-lead {
    font-size: 15.5px;
    max-width: none;
  }

  .rg-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .rg-meta-divider {
    display: none;
  }

  .rg-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rg-hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .rg-flow-section {
    padding: 44px 0;
  }

  .rg-flow-head h2 {
    font-size: 22px;
  }

  .rg-cta {
    padding: 52px 0;
  }

  .rg-cta-content h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .rg-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .rg-cta-btn {
    text-align: center;
    justify-content: center;
  }

  .rg-check-step {
    padding: 24px 20px;
  }
}

@media (max-width: 420px) {
  .rg-hero::after {
    font-size: 160px;
    right: -14%;
    opacity: 0.8;
  }
}


/* ─── 11. REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  .rg-reveal,
  .rg-flow-track > *,
  .rg-flow-track .rg-flow-step,
  .rg-flow-track .rg-flow-line,
  .rg-flow-num,
  .rg-guide-grid .rg-card,
  .rg-check-steps .rg-check-step,
  .rg-cta-inner.rg-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .rg-hero-inner > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .rg-card::before {
    transition: none;
  }

  .rg-card-cta svg,
  .rg-cta-link svg {
    transition: none;
  }
}
