/* ============================================================
   Rainrock & Associates : main.css
   Brand palette (from the logo):
     Navy  #152d45 | Blue #2a5a84 | Teal #3d7878
     Teal hover #4d9494 | Ice #8fc4d8
   Action accent (warm, conversion): #ee9b3f
   Type: Zodiak (serif display) + Switzer (sans body)
   ============================================================ */

/* Zodiak (serif headings) */
@font-face { font-family: 'Zodiak'; src: url('../assets/fonts/Zodiak-Variable.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zodiak'; src: url('../assets/fonts/Zodiak-VariableItalic.woff2') format('woff2'); font-weight: 100 900; font-style: italic; font-display: swap; }

/* Switzer (sans body) */
@font-face { font-family: 'Switzer'; src: url('../assets/fonts/Switzer-Variable.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }

/* ==== RESET & TOKENS ==== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #152d45;
  --navy-deep:  #0c1c2e;
  --navy2:      #1e3d5e;
  --blue:       #2a5a84;
  --teal:       #3d7878;
  --teal2:      #4d9494;
  --ice:        #8fc4d8;
  --ice-pale:   #e6f2f7;
  --paper:      #f3f7fa;
  --white:      #ffffff;
  --text:       #182c3e;
  --muted:      #47606f;
  --border:     #d3dfe7;
  --action:     #ee9b3f;
  --action-hi:  #f7b061;
  --radius:     14px;
  --max:        1160px;
  --serif:      'Zodiak', Georgia, serif;
  --sans:       'Switzer', system-ui, sans-serif;
  --shadow-lg:  0 24px 60px rgba(12, 28, 46, 0.28);
}

html { scroll-behavior: smooth; color-scheme: light; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--ice); color: var(--navy-deep); }

/* ==== UTILITY ==== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 26px; height: 2px; background: var(--action); }
.sec-label-light { color: var(--ice); }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 480;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.sec-title-light { color: var(--white); }

.sec-body { font-size: 1.05rem; color: var(--muted); max-width: 620px; line-height: 1.7; }
.sec-body-light { color: rgba(255,255,255,0.75); }

.sec-head { max-width: 640px; margin-bottom: 52px; }

/* ==== BUTTONS ==== */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-block { display: block; text-align: center; width: 100%; }

.btn-action {
  background: var(--action);
  color: var(--navy-deep);
  border-color: var(--action);
  box-shadow: 0 8px 24px rgba(238, 155, 63, 0.32);
}
.btn-action:hover { background: var(--action-hi); border-color: var(--action-hi); box-shadow: 0 10px 30px rgba(238, 155, 63, 0.42); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-nav { padding: 10px 22px; font-size: 0.9rem; box-shadow: none; }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
.site-nav a:focus-visible, .hero a:focus-visible, .strip a:focus-visible,
.services a:focus-visible, .stat-band a:focus-visible, .cta-final a:focus-visible,
.site-footer a:focus-visible, .mobile-cta a:focus-visible {
  outline-color: var(--ice);
}
.btn:focus-visible { border-radius: 999px; }

/* ==== NAV ==== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 28, 46, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s;
}
.site-nav.scrolled { background: rgba(12, 28, 46, 0.94); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 38px; height: 38px; border-radius: 6px; }
.nav-logo span { font-family: var(--serif); font-size: 1.05rem; font-weight: 520; color: var(--white); letter-spacing: 0.01em; }
.nav-logo em { font-style: italic; color: var(--ice); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 8px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 550;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }

/* ==== HERO ==== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.webp');
  background-size: cover;
  background-position: center 32%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,28,46,0.62) 0%, rgba(12,28,46,0.10) 30%, rgba(12,28,46,0.72) 100%),
    linear-gradient(96deg, rgba(12,28,46,0.94) 0%, rgba(21,45,69,0.82) 44%, rgba(21,45,69,0.30) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 72px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(21,45,69,0.55);
  border: 1px solid rgba(143,196,216,0.35);
  color: var(--ice);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--action); box-shadow: 0 0 0 0 rgba(238,155,63,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(238,155,63,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(238,155,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,155,63,0); }
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.9vw, 4rem);
  font-weight: 460;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--ice); }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--ice);
}
.hero-tagline svg { color: var(--action); flex-shrink: 0; }

/* Hero result card */
.hero-card {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.6);
  max-width: 430px;
  justify-self: end;
  width: 100%;
  transform: rotate(0.6deg);
}
.hc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--ice-pale);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hc-row { margin-bottom: 18px; }
.hc-labels { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 7px; }
.hc-labels span:first-child { font-size: 0.85rem; font-weight: 550; color: var(--muted); }
.hc-amt { font-family: var(--serif); font-size: 1.35rem; font-weight: 520; color: var(--muted); }
.hc-amt-final { color: var(--navy); font-size: 1.6rem; }
.hc-bar { height: 12px; border-radius: 100px; background: var(--ice-pale); overflow: hidden; }
.hc-fill { display: block; height: 100%; border-radius: 100px; width: var(--w); transform-origin: left; animation: grow 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hc-fill-first { background: #b9cbd8; animation-delay: 0.25s; }
.hc-fill-final { background: linear-gradient(90deg, var(--teal), var(--teal2)); animation-delay: 0.5s; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hc-delta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 4px;
}
.hc-plus {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 560;
  color: var(--teal);
  background: var(--ice-pale);
  padding: 4px 14px;
  border-radius: 10px;
}
.hc-who { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

/* ==== TRUST STRIP ==== */
.strip { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.06); padding: 17px 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.strip-item { font-size: 0.86rem; font-weight: 550; color: rgba(255,255,255,0.72); letter-spacing: 0.02em; }
.strip-dot { width: 5px; height: 5px; background: var(--action); border-radius: 1px; transform: rotate(45deg); flex-shrink: 0; }

/* ==== HOW IT WORKS ==== */
.how { padding: 110px 0 100px; background: var(--paper); }
.how-steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; counter-reset: step; }
.how-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  box-shadow: 0 2px 10px rgba(21,45,69,0.04);
}
.how-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -37px;
  width: 38px;
  border-top: 2px dashed #b9cbd8;
}
.how-step:last-child::after { display: none; }
.how-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 420;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--teal);
  margin-bottom: 18px;
}
.how-step h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.005em; }
.how-step p { font-size: 0.94rem; color: var(--muted); line-height: 1.68; }
.how-cta { margin-top: 44px; text-align: center; }

/* ==== FEE ==== */
.fee { padding: 110px 0; background: var(--white); }
.fee-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.fee-example {
  margin-top: 26px;
  background: var(--paper);
  border-left: 3px solid var(--action);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.fee-example strong { color: var(--navy); }
.fee-bar { display: flex; height: 68px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(21,45,69,0.14); }
.fee-seg { display: flex; align-items: center; justify-content: center; padding: 0 10px; text-align: center; }
.fee-seg span { font-size: 0.82rem; font-weight: 650; letter-spacing: 0.03em; line-height: 1.3; }
.fee-seg-a { width: 62%; background: linear-gradient(135deg, var(--navy), var(--navy2)); color: rgba(255,255,255,0.92); }
.fee-seg-b { width: 38%; background: linear-gradient(135deg, var(--teal), var(--teal2)); color: var(--white); }
.fee-legend { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.fee-legend li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.94rem; color: var(--muted); line-height: 1.55; }
.fee-legend strong { color: var(--navy); }
.dot { width: 13px; height: 13px; border-radius: 4px; flex-shrink: 0; margin-top: 5px; }
.dot-a { background: var(--navy); }
.dot-b { background: var(--teal); }
.fee-tagline {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 460;
  color: var(--navy);
  border-top: 1px solid var(--border);
  margin-top: 26px;
  padding-top: 22px;
  line-height: 1.35;
}
.fee-tagline em { font-style: italic; color: var(--teal); }

/* ==== SERVICES ==== */
.services {
  padding: 110px 0;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(42,90,132,0.35), transparent 65%),
    linear-gradient(180deg, #0f2338, var(--navy));
}
.services-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.services-intro { position: sticky; top: 100px; }
.services-img { border-radius: var(--radius); margin-top: 34px; aspect-ratio: 3 / 2; object-fit: cover; width: 100%; box-shadow: 0 18px 44px rgba(0,0,0,0.35); }
.services-list { list-style: none; }
.service-row {
  display: flex;
  gap: 26px;
  padding: 30px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.service-row:first-child { padding-top: 6px; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 460;
  color: var(--ice);
  flex-shrink: 0;
  width: 40px;
  padding-top: 3px;
}
.service-row h3 { font-size: 1.14rem; font-weight: 650; color: var(--white); margin-bottom: 8px; letter-spacing: -0.005em; }
.service-row p { font-size: 0.94rem; color: rgba(255,255,255,0.66); line-height: 1.68; }

/* ==== WHY RAINROCK ==== */
.why { padding: 110px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 80px; align-items: center; }
.why-img { position: relative; }
.why-img img { border-radius: var(--radius); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; box-shadow: 0 20px 50px rgba(21,45,69,0.18); }
.why-badge {
  position: absolute;
  right: -22px;
  bottom: 30px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 210px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(143,196,216,0.25);
}
.why-badge-num { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 480; color: var(--ice); line-height: 1.05; }
.why-badge-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.68); margin-top: 5px; line-height: 1.4; }
.trust-list { list-style: none; margin: 22px 0 30px; }
.trust-list li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; font-size: 0.97rem; color: var(--text); line-height: 1.55; }
.trust-list svg { color: var(--teal); flex-shrink: 0; margin-top: 3px; }

/* ==== STAT BAND ==== */
.stat-band { position: relative; overflow: hidden; padding: 88px 0; }
.stat-band-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(12,28,46,0.94) 10%, rgba(21,45,69,0.82) 60%, rgba(21,45,69,0.68) 100%),
    url('../assets/images/gem-5.webp');
  background-size: cover;
  background-position: center 40%;
}
.stat-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.band-stat .num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 460;
  color: var(--white);
  line-height: 1;
}
.band-stat .label { display: block; font-size: 0.86rem; color: var(--ice); margin-top: 10px; line-height: 1.45; }

/* ==== TESTIMONIALS ==== */
.testimonials { padding: 110px 0; background: var(--paper); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.test-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(21,45,69,0.04);
  display: flex;
  flex-direction: column;
}
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--ice-pale);
  pointer-events: none;
}
.stars { color: var(--action); font-size: 0.95rem; letter-spacing: 4px; margin-bottom: 16px; }
.test-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.06rem;
  font-weight: 430;
  color: var(--text);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 24px;
}
.test-author { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--border); padding-top: 18px; }
.test-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-meta { display: flex; flex-direction: column; line-height: 1.35; }
.test-meta strong { font-size: 0.92rem; color: var(--navy); }
.test-meta span { font-size: 0.79rem; color: var(--muted); }

/* ==== FAQ ==== */
.faq { padding: 110px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 72px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro .btn { margin-top: 26px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 620;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--teal); }
.faq-question .chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--teal); transition: transform 0.25s; }
.faq-item.open .chevron { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
/* Collapse answers only when the accordion JS is armed. Without JS (or if
   setup fails) answers stay open and readable. */
html.faq-on .faq-answer { max-height: 0; }
.faq-answer p { padding: 0 44px 22px 4px; font-size: 0.96rem; color: var(--muted); line-height: 1.72; }

/* ==== FINAL CTA ==== */
.cta-final { position: relative; overflow: hidden; padding: 130px 0; text-align: center; background: var(--navy-deep); }
.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(12,28,46,0.88), rgba(21,45,69,0.82)),
    url('../assets/images/services-2.webp');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.6);
}
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 460;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-wrap: balance;
}
.cta-final h2 em { font-style: italic; color: var(--ice); }
.cta-final p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 38px; }
.cta-micro { font-size: 0.85rem !important; color: var(--ice) !important; margin: 18px auto 0 !important; letter-spacing: 0.04em; }

/* ==== DISCLAIMER ==== */
.disclaimer {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.disclaimer .container { max-width: 880px; }

/* ==== FOOTER ==== */
.site-footer { background: var(--navy-deep); padding: 38px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo img { width: 30px; height: 30px; border-radius: 5px; }
.footer-logo span { font-family: var(--serif); font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 0.88rem; color: var(--ice); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

/* ==== MOBILE STICKY CTA ==== */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12, 28, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
}
.mobile-cta.show { transform: translateY(0); visibility: visible; }
@media (min-width: 801px) { .mobile-cta { display: none; } }

/* ==== SCROLL REVEAL ==== */
@media (prefers-reduced-motion: no-preference) {
  html.reveal-on .rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  html.reveal-on .rv.in { opacity: 1; transform: translateY(0); }
  html.reveal-on .hero-card.rv.in { transform: translateY(0) rotate(0.6deg); }
  html.reveal-on .hero-card.rv { transform: translateY(20px) rotate(0.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hc-fill { animation: none; }
  .pulse-dot { animation: none; }
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
  .hero-grid { gap: 44px; }
  .why-badge { right: 12px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }

  .hero { padding: 120px 0 70px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { justify-self: start; transform: none; max-width: 460px; }
  html.reveal-on .hero-card.rv { transform: translateY(20px); }
  html.reveal-on .hero-card.rv.in { transform: translateY(0); }

  .how, .fee, .services, .why, .testimonials, .faq { padding: 72px 0; }
  .stat-band { padding: 60px 0; }
  .cta-final { padding: 88px 0; }

  .how-steps { grid-template-columns: 1fr; gap: 18px; }
  .how-step::after { display: none; }

  .fee-grid { grid-template-columns: 1fr; gap: 44px; }

  .services-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-intro { position: static; }

  .why-grid { grid-template-columns: 1fr; gap: 52px; }
  .why-badge { right: 14px; bottom: -20px; }
  .why-img { margin-bottom: 24px; }

  .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 34px; }

  .test-grid { grid-template-columns: 1fr; gap: 18px; }

  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }

  .footer-inner { flex-direction: column; text-align: center; gap: 10px; }

  body { padding-bottom: 0; }
  body.has-mobile-cta { padding-bottom: 84px; }
}

@media (max-width: 600px) {
  .nav-logo span { display: none; }
  .nav-inner { height: 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn { padding: 14px 26px; font-size: 0.96rem; }
  .btn-lg { padding: 15px 30px; font-size: 1rem; }
  .hero { padding: 108px 0 60px; }
  .hero-eyebrow { font-size: 0.64rem; letter-spacing: 0.1em; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-card { padding: 24px 20px 22px; }
  .hc-plus { font-size: 1.25rem; padding: 3px 11px; }
  .strip-inner { gap: 14px; }
  .strip-item { font-size: 0.78rem; }
  .fee-seg span { font-size: 0.72rem; }
  .why-badge { padding: 15px 18px; max-width: 175px; }
  .why-badge-num { font-size: 1.7rem; }
  .cta-final .btn { width: calc(100% - 8px); text-align: center; }
  .faq-question { font-size: 0.98rem; }
}
