/* ═══════════════════════════════════════════════════════════
   ROTINA LEVE — Landing Page Premium v2.0
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg:         #faf5ec;
  --bg-alt:     #f2e8d8;
  --dark:       #0b1d13;
  --dark-2:     #112619;
  --dark-3:     #1a3524;
  --green:      #1b5e40;
  --green-2:    #286b4a;
  --gold:       #c4a252;
  --gold-2:     #dfc07a;
  --gold-pale:  rgba(196,162,82,.15);
  --amber:      #d4692a;
  --amber-2:    #e8813d;
  --text:       #18271e;
  --text-2:     #4a5d52;
  --text-3:     #7c8d82;
  --border:     rgba(18,38,26,.11);
  --border-d:   rgba(255,255,255,.12);
  --shadow-sm:  0 4px 20px rgba(10,22,15,.08);
  --shadow-md:  0 16px 56px rgba(10,22,15,.13);
  --shadow-lg:  0 32px 90px rgba(10,22,15,.22);
  --f-serif:    'Cormorant Garamond', Georgia, serif;
  --f-sans:     'DM Sans', system-ui, sans-serif;
  --ease:       cubic-bezier(.16,1,.3,1);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}

/* Grain overlay — subtle film texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .032;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container  { width: min(1180px, 92vw); margin: 0 auto; }
.narrow     { max-width: 860px; }
.section    { padding: 104px 0; }
.text-center { text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }

/* ─── TYPOGRAPHY SCALE ───────────────────────────────────── */
h1, h2 {
  font-family: var(--f-serif);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
h3 { font-family: var(--f-serif); font-size: 1.7rem; font-weight: 700; line-height: 1.2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--gold-pale);
}
.eyebrow--light {
  border-color: rgba(196,162,82,.4);
  color: var(--gold-2);
  background: rgba(196,162,82,.1);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(27,94,64,.07);
}
.kicker--light { border-color: var(--border-d); color: var(--gold-2); background: rgba(255,255,255,.08); }

/* Decorative serif rule */
.serif-rule {
  display: block;
  font-family: var(--f-serif);
  font-size: 2.6rem;
  color: var(--gold);
  opacity: .6;
  margin-bottom: 12px;
  line-height: 1;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  text-align: center;
  letter-spacing: .01em;
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  transition: left .45s ease;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: linear-gradient(135deg, #e8813d 0%, #d4692a 45%, #a0411a 100%);
  color: #fff;
  box-shadow: 0 16px 44px rgba(212,105,42,.35);
}
.btn--primary:hover { box-shadow: 0 24px 58px rgba(212,105,42,.45); }

.btn--gold {
  background: linear-gradient(135deg, #dfc07a 0%, #c4a252 50%, #a07a38 100%);
  color: #18271e;
  box-shadow: 0 16px 44px rgba(196,162,82,.30);
}
.btn--gold:hover { box-shadow: 0 24px 58px rgba(196,162,82,.40); }

.btn--ghost {
  border-color: var(--border-d);
  background: rgba(255,255,255,.09);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); }

.btn--outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover { background: rgba(18,38,26,.05); }

.btn--sm  { padding: 12px 20px; font-size: .875rem; }
.btn--lg  { padding: 22px 44px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announcement {
  background: var(--dark);
  padding: 11px 0;
  border-bottom: 1px solid rgba(196,162,82,.2);
}
.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.announcement__item {
  padding: 2px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  letter-spacing: .06em;
  border-right: 1px solid rgba(196,162,82,.2);
}
.announcement__item:last-child { border-right: none; }
.announcement__dot {
  color: var(--gold);
  margin-right: 6px;
  font-size: 10px;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,236,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(250,245,236,.98);
}
.header__inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-serif);
  transition: opacity .2s;
}
.brand:hover { opacity: .8; }
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border: 1px solid rgba(196,162,82,.3);
  color: var(--gold-2);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--f-serif);
  box-shadow: 0 8px 24px rgba(10,22,15,.18);
}
.brand__text strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.brand__text small {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .05em;
  font-family: var(--f-sans);
  font-weight: 500;
  margin-top: 2px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: .04em;
  position: relative;
  transition: color .2s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 20px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: var(--f-serif);
  font-weight: 700;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 20% 0%, rgba(196,162,82,.12), transparent 50%),
              radial-gradient(ellipse at 90% 80%, rgba(27,94,64,.18), transparent 45%),
              linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  padding: 88px 0 80px;
  overflow: hidden;
  color: #fff;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero__lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero__lead strong { color: #fff; }
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-d);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  letter-spacing: .03em;
}
.trust-badge-icon { color: var(--gold-2); }

.hero__visual { position: relative; }
.hero__img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.hero__img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Floating stat cards */
.stat-pill {
  position: absolute;
  background: rgba(250,245,236,.96);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.stat-pill strong {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-pill span { font-size: 12px; font-weight: 700; color: var(--text-2); line-height: 1.2; }
.stat-pill--tl { top: -18px; left: -24px; }
.stat-pill--br { bottom: -18px; right: -20px; }

/* Gold badge */
.gold-badge {
  position: absolute;
  top: 20px; right: -16px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border: 1px solid rgba(196,162,82,.35);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 100px;
}
.gold-badge strong { display: block; font-family: var(--f-serif); font-size: 2rem; color: var(--gold-2); line-height: 1; }
.gold-badge span { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 700; letter-spacing: .04em; }

/* ─── METRICS BAR ────────────────────────────────────────── */
.metrics { position: relative; z-index: 2; margin-top: -36px; }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.metric-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.metric-card strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-card span { font-size: .85rem; font-weight: 700; color: var(--text-2); }
.metric-card .metric-icon { font-size: 1.4rem; margin-bottom: 10px; }

/* ─── SECTION STYLES ─────────────────────────────────────── */
.section-dark {
  background: radial-gradient(ellipse at 10% 0%, rgba(196,162,82,.12), transparent 40%),
              radial-gradient(ellipse at 90% 100%, rgba(27,94,64,.2), transparent 40%),
              linear-gradient(150deg, var(--dark) 0%, var(--dark-2) 60%, var(--dark) 100%);
  color: #fff;
}
.section-cream {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.section-warm {
  background: linear-gradient(150deg, #f7efe1 0%, #ecdcc6 100%);
}

/* ─── MEDIA CARD (image wrapper) ──────────────────────────── */
.media-card img {
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  object-fit: cover;
}
.section-dark .media-card img { border-color: var(--border-d); }

/* ─── SECTION TITLE BLOCK ────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.section-head p {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-top: 14px;
}
.section-dark .section-head p { color: rgba(255,255,255,.65); }
.section-head h2 { margin-top: 8px; }

/* ─── PAIN SECTION ───────────────────────────────────────── */
.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-2);
  transition: border-color .2s;
}
.pain-item:hover { border-color: rgba(212,105,42,.3); }
.pain-icon { color: #c0392b; flex-shrink: 0; font-size: .85rem; }

.callout {
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: linear-gradient(90deg, var(--gold-pale), transparent);
  color: var(--text);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.7;
  margin-top: 28px;
}

/* ─── RECIPE GRID ────────────────────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.recipe-card {
  padding: 28px 22px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,162,82,.35);
}
.recipe-card__icon { font-size: 2.2rem; margin-bottom: 18px; }
.recipe-card h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 10px; }
.recipe-card p { font-size: .9rem; color: var(--text-2); line-height: 1.65; }

/* ─── STEPS ──────────────────────────────────────────────── */
.steps { display: grid; gap: 14px; margin-top: 28px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color .2s, transform .25s var(--ease);
}
.step:hover { transform: translateX(4px); border-color: rgba(196,162,82,.35); }
.step__num {
  min-width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  color: var(--gold-2);
  font-weight: 800;
  font-size: .95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(196,162,82,.3);
}
.step__text { font-weight: 700; color: var(--text); line-height: 1.5; padding-top: 10px; }

/* ─── BONUS GRID ─────────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-d);
  border-radius: 26px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
  border-color: rgba(196,162,82,.35);
}
.bonus-card img {
  width: 100%;
  aspect-ratio: 1.15/1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,.1);
}
.bonus-card__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(196,162,82,.35);
  color: var(--gold-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--gold-pale);
}
.bonus-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.bonus-card p { color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.65; }

.bonus-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
}
.bonus-card--wide img { aspect-ratio: 1.3/1; margin: 0; }

/* ─── ICON LIST ──────────────────────────────────────────── */
.icon-list { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: .95rem;
  background: var(--bg);
  border: 1px solid var(--border);
}
.icon-list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: 3px;
}
.icon-list--light li {
  background: rgba(255,255,255,.07);
  border-color: var(--border-d);
  color: rgba(255,255,255,.88);
}
.icon-list--light li::before { color: var(--gold-2); }

/* ─── COMPARE ────────────────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare-card {
  border-radius: 26px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.compare-card p { font-size: .97rem; color: var(--text-2); line-height: 1.75; }
.compare-card--no  { background: #fff5f0; border-color: rgba(192,57,43,.14); }
.compare-card--no h3 { color: #c0392b; }
.compare-card--yes { background: #f0faf4; border-color: rgba(39,174,96,.18); }
.compare-card--yes h3 { color: #1e8449; }

/* ─── OFFER / PRICE ──────────────────────────────────────── */
.offer-bundle {
  text-align: center;
  margin-bottom: 52px;
}
.offer-bundle img {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-d);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}
.offer-grid h2 { color: #fff; }
.offer-grid .copy p { color: rgba(255,255,255,.68); line-height: 1.8; font-size: 1.05rem; margin-top: 14px; }

.price-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(196,162,82,.3);
  border-radius: 32px;
  padding: 38px 34px;
  box-shadow: 0 0 0 1px rgba(196,162,82,.1), var(--shadow-lg);
  backdrop-filter: blur(16px);
}
.price-card__badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold-pale);
  border: 1px solid rgba(196,162,82,.35);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-card__label { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.price-card__price {
  font-family: var(--f-serif);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: .95;
  margin-bottom: 6px;
}
.price-card__recurrence {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 26px;
  display: block;
}
.price-card__includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.price-card__includes span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.price-card__includes span::before { content: '✓'; color: var(--gold-2); }
.price-card small {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(196,162,82,.35); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 800;
  font-size: .97rem;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--green); }
.faq-body {
  padding: 0 26px 22px;
  font-size: .95rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  text-align: center;
  background: radial-gradient(ellipse at 50% -10%, rgba(196,162,82,.14), transparent 55%),
              var(--bg-alt);
}
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { font-size: 1.05rem; color: var(--text-2); max-width: 600px; margin: 0 auto 36px; line-height: 1.75; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 40px 0 100px;
  border-top: 1px solid rgba(196,162,82,.15);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.footer__brand p { font-size: .85rem; }
.footer__links { font-size: .85rem; text-align: right; }
.footer__links a {
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold-2); }
.footer__links p { margin-top: 6px; }

/* ─── STICKY CTA ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 50%; bottom: 20px;
  transform: translateX(-50%);
  z-index: 200;
  min-width: min(92vw, 520px);
  display: inline-flex;
  justify-content: center;
  background: linear-gradient(135deg, #e8813d 0%, #d4692a 45%, #a0411a 100%);
  color: #fff;
  border-radius: 999px;
  padding: 17px 28px;
  font-weight: 800;
  font-size: .93rem;
  letter-spacing: .02em;
  box-shadow: 0 18px 50px rgba(212,105,42,.38), 0 0 0 1px rgba(255,255,255,.15) inset;
  transition: transform .25s var(--ease), box-shadow .25s;
  white-space: nowrap;
}
.sticky-cta:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 26px 62px rgba(212,105,42,.48), 0 0 0 1px rgba(255,255,255,.15) inset;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── COPY HELPERS ───────────────────────────────────────── */
.copy p { font-size: 1.03rem; color: var(--text-2); line-height: 1.78; }
.copy p + p { margin-top: 14px; }
.section-dark .copy p { color: rgba(255,255,255,.65); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1040px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero__grid, .split, .offer-grid { grid-template-columns: 1fr; }
  .split--rev { direction: ltr; }
  .metrics__grid, .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-card--wide { grid-column: span 2; grid-template-columns: 1fr; }
  .stat-pill--tl, .stat-pill--br { position: static; margin: 8px 0; }
  .gold-badge { top: 16px; right: 16px; }
  .hero__visual { margin-top: 20px; }
  .offer-bundle img { max-width: 100%; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .hero { padding: 56px 0 48px; }
  .hero__actions .btn { width: 100%; }
  .metrics__grid, .recipe-grid, .bonus-grid, .compare-grid, .price-card__includes, .pain-list { grid-template-columns: 1fr; }
  .bonus-card--wide { grid-column: span 1; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { text-align: left; }
  .sticky-cta { font-size: .85rem; padding: 15px 20px; min-width: min(95vw, 380px); }
  .price-card { padding: 26px 22px; }
  .announcement__item { padding: 2px 12px; font-size: 11px; }
  .compare-grid { grid-template-columns: 1fr; }
}
