/* ═══════════════════════════════════════════════════════════════════
   THE PREGNANCY IRON PROTOCOL — style.css
   Aesthetic: Cinematic editorial × Clinical authority × Warmth
   Palette: Deep forest green, warm cream, terracotta, gold
═══════════════════════════════════════════════════════════════════ */

:root {
  --ink:       #0f1a14;
  --forest:    #1a3d2a;
  --sage:      #2e6b47;
  --sage-lt:   #4a9366;
  --cream:     #f4f0e8;
  --warm-wht:  #faf8f3;
  --terra:     #b85c38;
  --terra-lt:  #d4795a;
  --gold:      #c9963a;
  --gold-lt:   #e0b355;
  --muted:     #7a8a7f;
  --border:    rgba(26,61,42,0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-stamp:   'Bebas Neue', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 32px rgba(15,26,20,0.10);
  --shadow-lg: 0 12px 64px rgba(15,26,20,0.18);
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--warm-wht);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ────────────────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.centered { text-align: center; }

.section-label {
  font-family: var(--font-stamp);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.section-label.centered { text-align: center; }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-sub.centered { margin: 0 auto 48px; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 60px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(26,61,42,0.25);
}
.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(26,61,42,0.32);
}
.btn-primary.large { font-size: 1.05rem; padding: 20px 44px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--sage); border-color: var(--sage); }

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(244,240,232,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 40px;
}
.nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest);
  background: var(--cream);
  border: 1.5px solid var(--forest);
  padding: 10px 22px;
  border-radius: 60px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--forest); color: var(--cream); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--forest);
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2e6b47 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #b85c38 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: drift 15s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #2e6b47 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-stamp);
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(196,203,180,0.7);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp 1s ease forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.h1-accent {
  display: block;
  font-style: italic;
  color: rgba(196,203,180,0.55);
  font-size: 0.85em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(244,240,232,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  animation: fadeUp 1s 0.15s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-actions .btn-ghost { color: var(--cream); border-color: rgba(244,240,232,0.5); }
.hero-actions .btn-ghost:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.45s ease both;
}
.proof-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(244,240,232,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 60px;
  padding: 7px 16px;
  backdrop-filter: blur(4px);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: fadeUp 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-cue span {
  font-family: var(--font-stamp);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cream);
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(1.3); opacity: 0.8; }
}

/* ── CONFESSION ─────────────────────────────────────────────────── */
.confession {
  padding: 120px 40px;
  background: var(--cream);
  position: relative;
}
.confession::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.confession-inner {
  max-width: 760px;
  margin: 0 auto;
}
.confession-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--forest);
  margin-bottom: 40px;
}
.confession-h2 em { font-style: italic; color: var(--terra); }

.confession-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3a4a3f;
  margin-bottom: 20px;
}
.bold-line {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: var(--forest) !important;
}

.symptom-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}
.sc-tag {
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 60px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: transparent;
  transition: all 0.3s;
}
.sc-tag.active {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.pull-quote {
  margin-top: 48px;
  padding: 32px 40px;
  border-left: 3px solid var(--gold);
  background: rgba(201,150,58,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--forest);
}
.pull-quote strong { font-style: normal; font-weight: 600; }

/* ── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--forest);
  padding: 64px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px 32px;
}
.stat-n {
  font-family: var(--font-stamp);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 0.85rem;
  color: rgba(244,240,232,0.55);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── COMPARE ────────────────────────────────────────────────────── */
.compare-section {
  padding: 120px 0;
  background: var(--warm-wht);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: 40px;
}
.compare-col.bad {
  background: #faf5f3;
  border: 1.5px solid #e8d5cc;
}
.compare-col.good {
  background: #f2f7f4;
  border: 1.5px solid var(--border);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--forest);
}
.compare-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  font-style: normal;
  flex-shrink: 0;
}
.bad .compare-icon { background: #f9ddd5; color: var(--terra); }
.good .compare-icon { background: #d5e9dc; color: var(--sage); }
.bad .compare-head { color: #6b3a2a; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: #3a4a3f;
}
.bad .compare-list li { color: #6b4a3a; }
.compare-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-weight: 300;
}
.bad .compare-list li::before { color: var(--terra); }
.good .compare-list li::before { content: '→'; color: var(--sage); }

/* ── PATHWAYS ────────────────────────────────────────────────────── */
.pathways-section {
  padding: 120px 0;
  background: var(--forest);
}
.pathways-section .section-label { color: rgba(196,203,180,0.6); }
.pathways-section .section-h2 { color: var(--cream); }
.pathways-section .section-sub { color: rgba(244,240,232,0.55); }

.pathway-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}

.pathway-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  transition: background 0.3s;
}
.pathway-card:hover { background: rgba(255,255,255,0.07); }
.pathway-card.locked {
  background: rgba(0,0,0,0.2);
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
}

.pathway-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.pathway-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.pathway-label {
  font-family: var(--font-stamp);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--gold-lt);
  line-height: 1.3;
}
.pathway-label span {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,240,232,0.4);
  font-weight: 400;
}

.pathway-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pathway-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(244,240,232,0.6);
  margin-bottom: 20px;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 60px;
  letter-spacing: 0.01em;
}
.tag.green  { background: rgba(46,107,71,0.5);  color: #a8d4b8; border: 1px solid rgba(46,107,71,0.4); }
.tag.terra  { background: rgba(184,92,56,0.4);  color: #f0b8a0; border: 1px solid rgba(184,92,56,0.3); }
.tag.gold   { background: rgba(201,150,58,0.35); color: #f0d08a; border: 1px solid rgba(201,150,58,0.3); }

.pathway-connector {
  display: flex;
  align-items: center;
  padding: 0 0 0 80px;
  height: 40px;
  gap: 0;
}
.connector-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(201,150,58,0.3), rgba(255,255,255,0.1));
}
.connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: -4px;
  box-shadow: 0 0 12px var(--gold);
}

.unlock-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gold-lt);
  border-bottom: 1px solid rgba(224,179,85,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.unlock-link:hover { border-color: var(--gold-lt); }

/* ── CHART ──────────────────────────────────────────────────────── */
.chart-section {
  padding: 120px 0;
  background: var(--cream);
}
.chart-wrapper {
  position: relative;
  background: var(--warm-wht);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px 60px;
  box-shadow: var(--shadow);
}
.chart-callouts {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.callout-box {
  padding: 16px 24px;
  border-radius: var(--radius);
  min-width: 180px;
}
.green-box { background: rgba(46,107,71,0.08); border: 1.5px solid rgba(46,107,71,0.2); }
.red-box   { background: rgba(184,92,56,0.07); border: 1.5px solid rgba(184,92,56,0.15); }
.cb-val {
  font-family: var(--font-stamp);
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.red-box .cb-val { color: var(--terra); }
.cb-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.chart-target-label {
  position: absolute;
  right: 48px; bottom: 24px;
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--warm-wht);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-card.featured {
  background: var(--forest);
  border-color: var(--forest);
  grid-column: span 1;
}
.stars {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--forest);
  margin-bottom: 20px;
}
.testi-card.featured p { color: var(--cream); }
.testi-card cite {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.02em;
}
.testi-card.featured cite { color: rgba(244,240,232,0.5); }

/* ── INCLUDED ────────────────────────────────────────────────────── */
.included-section {
  padding: 120px 0;
  background: var(--forest);
}
.included-section .section-label { color: rgba(196,203,180,0.6); }
.included-section .section-h2 { color: var(--cream); margin-bottom: 56px; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.included-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.25s, transform 0.25s;
}
.included-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.inc-icon { font-size: 1.8rem; margin-bottom: 16px; }
.included-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}
.included-item p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(244,240,232,0.5);
}

/* ── PRICING ─────────────────────────────────────────────────────── */
.pricing-section {
  padding: 120px 0;
  background: var(--cream);
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  margin: 56px auto 0;
  max-width: 860px;
  align-items: start;
}

.price-card {
  background: var(--warm-wht);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.price-card.featured-card {
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 60px;
  white-space: nowrap;
}

.price-card-label {
  font-family: var(--font-stamp);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.featured-card .price-card-label { color: rgba(244,240,232,0.5); }

.price-amount {
  font-family: var(--font-stamp);
  font-size: 4rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.featured-card .price-amount { color: var(--gold-lt); }

.price-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.featured-card .price-desc { color: rgba(244,240,232,0.55); border-color: rgba(255,255,255,0.1); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-features li {
  font-size: 0.9rem;
  color: #3a4a3f;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.featured-card .price-features li { color: rgba(244,240,232,0.8); }

.btn-price-primary {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 60px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,150,58,0.35);
  margin-bottom: 16px;
}
.btn-price-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,150,58,0.45);
}

.btn-price-secondary {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 15px 32px;
  border-radius: 60px;
  border: 1.5px solid var(--forest);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 16px;
}
.btn-price-secondary:hover { background: var(--forest); color: var(--cream); }

.price-note {
  font-size: 0.78rem;
  color: rgba(244,240,232,0.4);
  text-align: center;
  line-height: 1.5;
}

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 860px;
  margin: 48px auto 0;
  background: rgba(201,150,58,0.07);
  border: 1.5px solid rgba(201,150,58,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.guarantee-icon { font-size: 2rem; flex-shrink: 0; }
.guarantee-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--forest);
}
.guarantee-text strong { font-weight: 600; }

.disclaimer {
  max-width: 760px;
  margin: 32px auto 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ── FINAL CTA ──────────────────────────────────────────────────── */
.final-cta {
  background: var(--forest);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.final-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.final-h2 em { font-style: italic; color: var(--gold-lt); }
.final-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244,240,232,0.6);
  margin-bottom: 48px;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(244,240,232,0.4);
}
.footer-legal {
  font-size: 0.76rem;
  color: rgba(244,240,232,0.25);
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
}

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .compare-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: 1fr; max-width: 480px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pathway-card { grid-template-columns: 120px 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .stats-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 24px 80px; }
  .confession, .stats-bar, .compare-section, .pathways-section,
  .chart-section, .testimonials, .included-section,
  .pricing-section, .final-cta { padding: 80px 24px; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .wrap { padding: 0 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .pathway-card { grid-template-columns: 1fr; }
  .pathway-time { flex-direction: row; justify-content: flex-start; }
  .chart-wrapper { padding: 24px; }
  .chart-callouts { flex-direction: column; }
}
