/* ============================================================
   MamaWillow — Angebot (Sales) page
   Brand design system carried over from the Home/Contact pages:
   Fraunces serif headlines · Caveat hand-script kickers · Inter body
   Cream grounds · forest-green primary · rust accent · warm yellow hero
   The source page's harsh red (#DC2626) is mapped to brand --rust,
   its assorted greens to --green, its #F9F9F6 alt grounds to --cream-warm.
   ============================================================ */

:root {
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-hand: "Caveat", "Comic Sans MS", cursive;

  --green: #2f5d36;
  --green-deep: #234627;
  --rust: #974822;
  --rust-deep: #7d3a1a;
  --cream: #fdfcf7;
  --cream-warm: #f6f1e6;
  --hero-yellow: #f3eab4;
  --hero-cream: #f8ecc0;
  --ink: #1d1c19;
  --ink-soft: #2c2620;
  --muted: #6c624e;
  --line: #e3d9c2;
  --sage: #eef3e9;
  --gold: #caa45a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  font-family: var(--font-sans);
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
sup { font-size: .62em; vertical-align: super; line-height: 0; }

::-webkit-scrollbar { height: 10px; width: 10px; }
::-webkit-scrollbar-thumb { background: #d8ccaf; border-radius: 999px; }
::-webkit-scrollbar-track { background: transparent; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ── Shared type helpers ───────────────────────────────────── */
.kicker {
  font-family: var(--font-hand);
  color: var(--rust);
  font-size: 28px; line-height: 1;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 6px;
}
.serif { font-family: var(--font-serif); }
.h-display {
  font-family: var(--font-serif); font-weight: 500;
  letter-spacing: -.025em; line-height: 1.02; color: var(--ink);
  margin: 0;
}
.h-section {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px, 4.6vw, 48px);
  letter-spacing: -.02em; line-height: 1.05; color: var(--ink); margin: 0;
}
.h-section em, .h-display em { font-style: italic; color: var(--green); font-weight: 600; }
.lead {
  font-family: var(--font-serif); font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5; color: #3a342a; letter-spacing: -.005em;
}
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--rust);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  padding: 18px 30px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn svg { flex-shrink: 0; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 14px 28px -16px rgba(47,93,54,.55); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-rust { background: var(--rust); color: #fff; box-shadow: 0 16px 30px -16px rgba(151,72,34,.6); }
.btn-rust:hover { background: var(--rust-deep); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 34px; font-size: 14px; }
.link-underline {
  text-decoration: underline; text-decoration-color: var(--gold);
  text-underline-offset: 5px; font-size: 14px; font-weight: 600;
  letter-spacing: .04em; color: var(--ink-soft);
}

/* ── Announcement bar ──────────────────────────────────────── */
.announce {
  background: #f4ead0; color: var(--ink-soft);
  border-bottom: 1px solid rgba(151,72,34,.14);
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: 10px 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap;
}
.announce .dot { color: var(--rust); }
.announce strong { color: var(--green); font-weight: 700; }
.announce-clock { color: var(--rust); font-weight: 700; font-variant-numeric: tabular-nums; }
.announce .calm-only { display: none; }
body.no-urgency .announce .urgency-only { display: none !important; }
body.no-urgency .announce .calm-only { display: inline; }

/* ── Header / nav ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253,252,247,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.logo-lockup { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { height: 36px; width: auto; display: block; }
.logo-lockup .wordmark {
  display: inline-flex; flex-direction: column; line-height: .9;
  font-family: var(--font-serif); font-weight: 600; font-size: 19px;
  color: var(--green); letter-spacing: -.005em;
}
.logo-lockup .wordmark em { font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding-bottom: 3px;
  border-bottom: 1.5px solid transparent; transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--green); border-bottom-color: var(--green); }
.nav-cta { display: inline-flex; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(95deg, #f8eec0 0%, #f4e6b0 40%, #f1dfa1 70%, #ead693 100%);
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; padding: 30px 24px 38px;
  display: grid; grid-template-columns: 1fr 0.92fr; gap: 52px; align-items: center;
}
.hero-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.hero-rating img { height: 16px; }
.hero-rating span { font-size: 13px; font-weight: 600; color: #5a5240; line-height: 1; }
.hero .kicker { font-size: 21px; margin-bottom: 6px; }
.hero h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.0; letter-spacing: -.025em;
  color: var(--ink); margin: 0;
}
.hero h1 em { font-style: italic; color: var(--green); font-weight: 600; }
.hero-sub {
  margin: 13px 0 0; font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.5;
  color: #4a4434; max-width: 440px; letter-spacing: -.003em;
}

/* compact price figure — replaces the bulky cost box */
.hero-price {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,251,230,.72); border: 1px solid rgba(202,164,90,.45);
  border-radius: 14px; padding: 10px 16px;
}
.hero-price-fig { display: inline-flex; align-items: baseline; gap: 6px; }
.hero-price-fig .now { font-family: var(--font-serif); font-weight: 700; font-size: 30px; color: var(--rust); line-height: 1; }
.hero-price-fig .per { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.hero-price-vs { font-size: 12.5px; color: var(--muted); line-height: 1.3; max-width: 150px; }
.hero-price-vs .was { text-decoration: line-through; }

.hero-cta-row { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-trust {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
}
.hero-trust li { font-size: 13px; font-weight: 600; color: var(--green); display: inline-flex; gap: 6px; align-items: center; }

/* ── Carousel ──────────────────────────────────────────────── */
.carousel { position: relative; }
.carousel-frame {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid rgba(151,72,34,.14);
  box-shadow: 0 40px 70px -38px rgba(40,30,10,.5);
  background: #fff;
}
.carousel-track { display: flex; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.carousel-track img { width: 100%; flex-shrink: 0; object-fit: cover; }
/* keep the hero compact: cap the carousel to a square plate */
.hero-media .carousel-frame { aspect-ratio: 1 / 1; }
.hero-media .carousel-track { height: 100%; }
.hero-media .carousel-track img { height: 100%; object-position: center; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(253,252,247,.92); color: var(--green);
  display: grid; place-items: center; box-shadow: 0 6px 16px -6px rgba(0,0,0,.3);
}
.carousel-arrow:hover { background: #fff; }
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0;
  background: rgba(151,72,34,.25); transition: all .2s;
}
.carousel-dots button.active { background: var(--rust); width: 22px; }

/* ── Section scaffolding ───────────────────────────────────── */
.section { padding: clamp(48px, 7vw, 84px) 0; }
.section.warm { background: var(--cream-warm); }
.section.tight { padding: clamp(36px, 5vw, 60px) 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(28px,4vw,44px); }
.section-head .lead { margin-top: 10px; }
.hr { border: none; border-top: 1px solid var(--line); max-width: 900px; margin: 0 auto; }

/* ── Press logos — minimal logo strip ──────────────────────── */
.press-strip {
  padding: clamp(30px,4.5vw,48px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  text-align: center;
}
.press-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px,2.8vw,32px); letter-spacing: -.02em; line-height: 1.1;
  color: var(--ink); margin: 0 0 clamp(22px,3vw,32px);
}
.press-title sup { font-size: .5em; }
.press-title em { font-style: italic; color: var(--green); font-weight: 600; }
.press-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(20px,5vw,56px); flex-wrap: wrap;
  max-width: 920px; margin: 0 auto;
}
.press-row img {
  height: clamp(46px,5vw,62px); width: auto; max-width: 132px; object-fit: contain;
  flex: 0 1 auto;
  filter: grayscale(1) opacity(.55); transition: filter .25s ease;
}
.press-row img:hover { filter: grayscale(0) opacity(1); }

/* ── Two-column science block ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,4vw,56px); align-items: center; }
.split p { font-size: 16px; line-height: 1.65; }
.ing-list { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 12px; }
.ing-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; }
.ing-list .em { font-size: 20px; line-height: 1; margin-top: 1px; flex-shrink: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sage); color: var(--green-deep);
  font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
}
.pull-quote {
  border-left: 3px solid var(--green); padding: 6px 0 6px 16px; margin: 20px 0 0;
  font-family: var(--font-serif); font-style: italic; font-size: 16px;
  line-height: 1.6; color: #4a4434;
}
.framed-img { border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 56px -34px rgba(0,0,0,.3); }
.caption { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ── Statement band — premium editorial moment ─────────────── */
.statement-band { position: relative; overflow: hidden; padding: clamp(56px,8vw,100px) 0; text-align: center; }
.statement-band.light { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); }
.statement-band.green { background: linear-gradient(135deg, #2f5d36 0%, #28522e 52%, #1f4525 100%); }
.statement-mark { position: absolute; width: 480px; height: auto; right: -100px; bottom: -130px; opacity: .06; pointer-events: none; }
.statement-band.green .statement-mark { filter: brightness(0) invert(1); opacity: .09; }
.statement-inner { position: relative; z-index: 1; max-width: 720px; }
.statement-orn { display: inline-block; font-size: 22px; color: var(--rust); margin-bottom: 14px; }
.statement-band.green .statement-orn { color: #f3e29d; }
.statement-title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px,4.6vw,52px); line-height: 1.06; letter-spacing: -.025em; color: var(--ink); margin: 0; }
.statement-band.green .statement-title { color: #fff; }
.statement-rule { display: block; width: 54px; height: 2px; background: var(--rust); margin: 22px auto 26px; border-radius: 2px; opacity: .85; }
.statement-band.green .statement-rule { background: #f3e29d; }
.statement-copy p { font-size: clamp(16px,1.9vw,18px); line-height: 1.8; margin: 0 0 18px; color: #4a4434; }
.statement-band.green .statement-copy p { color: rgba(238,242,232,.84); }
.statement-copy p:last-child { margin-bottom: 0; }
.statement-copy .punch { font-family: var(--font-serif); font-size: clamp(19px,2.4vw,24px); line-height: 1.5; color: var(--green); font-weight: 500; margin-top: 26px; letter-spacing: -.01em; }
.statement-band.green .statement-copy .punch { color: #f3e29d; }
.statement-copy strong { color: var(--ink); }
.statement-band.green .statement-copy strong { color: #fff; }

/* ── Feature cards (4 + center product) ────────────────────── */
.feature-3 { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: clamp(24px,4vw,64px); align-items: center; }
.feature-col { display: grid; gap: 36px; }
.feature-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.feature-card img.badge { width: 60px; height: 60px; margin-bottom: 12px; }
.feature-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 19px; color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.feature-card strong { color: var(--ink-soft); }

/* ── How it works ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,3vw,28px); }
.step img { width: 100%; border-radius: 18px; margin-bottom: 14px; aspect-ratio: 1/1; object-fit: cover; }
.step .num {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 999px;
  background: var(--green); color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 15px;
  margin-bottom: 10px;
}
.step h3 { font-family: var(--font-serif); font-weight: 600; font-size: 19px; color: var(--ink); margin: 0 0 6px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }
.run-row { text-align: center; font-size: 14px; color: var(--muted); margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.run-row span { display: inline-flex; gap: 6px; align-items: center; }

/* disclosure (ingredient reveal) */
.disclosure { max-width: 900px; margin: 28px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.disclosure-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; font-family: var(--font-serif); font-weight: 600; color: var(--green); font-size: 17px; }
.disclosure-head svg { transition: transform .3s; }
.disclosure[open] .disclosure-head svg, .disclosure.open .disclosure-head svg { transform: rotate(180deg); }
.disclosure-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .4s ease, opacity .3s ease; padding: 0 20px; }
.disclosure.open .disclosure-body { padding: 0 20px 20px; }
.ing-hero { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 18px; }
.ing-hero .card { text-align: center; }
.ing-hero img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; margin-bottom: 8px; }
.ing-hero p.name { font-family: var(--font-serif); font-weight: 600; font-size: 15px; margin: 0 0 4px; color: var(--ink); }
.ing-hero p.desc { font-size: 13px; line-height: 1.45; margin: 0; color: var(--muted); }
.ing-tags { border-top: 1px solid var(--line); padding-top: 14px; }
.ing-tags .tag { display: inline-flex; align-items: center; gap: 5px; background: var(--cream-warm); font-size: 12px; line-height: 1.3; border-radius: 999px; padding: 5px 11px; }
.ing-tags .tag img { width: 14px; height: 14px; }
.ing-tags .tag .k { font-size: 10px; color: var(--muted); }

/* ── Why-it-works trio ─────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3vw,40px); }
.why-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 14px; margin-bottom: 18px; }
.why-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--ink); margin: 0 0 8px; letter-spacing: -.01em; }
.why-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.why-card strong { color: var(--ink-soft); }

/* ── Science / enzyme cards ────────────────────────────────── */
.sci-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; align-items: stretch; }
.sci-card { background: var(--sage); border-radius: 14px; padding: 18px; }
.sci-card.warn { background: #fbf1ea; border: 1px solid #ecd3c4; }
.sci-card .em { font-size: 24px; margin-bottom: 8px; }
.sci-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 15.5px; margin: 0 0 6px; line-height: 1.25; color: var(--ink); }
.sci-card p { font-size: 13.5px; line-height: 1.5; color: #51493b; margin: 0; }
.sci-card ul { margin: 0; padding-left: 16px; font-size: 13.5px; line-height: 1.8; color: #51493b; }

/* ── Reviews ───────────────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
}
.review .stars { display: inline-flex; gap: 2px; }
.review .head { font-family: var(--font-serif); font-size: 18px; line-height: 1.4; color: var(--ink); margin: 0; letter-spacing: -.01em; }
.review .body { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.review .who { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.review .who .name { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0 0 6px; letter-spacing: .02em; }
.review .who .src { display: flex; align-items: center; gap: 8px; }
.review .who .src .tp { font-size: 13px; font-weight: 700; color: #191919; }
.review .who .src img { height: 18px; }

/* ── Reviews · clean Amazon screenshot masonry (mamawillow.com) ── */
.rev-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(22px,5vw,60px);
  max-width: 720px; margin: 0 auto clamp(30px,4vw,44px); padding: 22px 30px;
  background: var(--cream-warm); border: 1px solid var(--line); border-radius: 16px;
}
.rev-stat { text-align: center; }
.rev-stat .num { display: block; font-family: var(--font-serif); font-weight: 600; font-size: clamp(26px,3vw,34px); color: var(--green); line-height: 1; }
.rev-stat .lbl { display: block; margin-top: 7px; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.rev-grid { column-count: 2; column-gap: 22px; max-width: 1080px; margin: 0 auto; }

/* live mamawillow.com reviews wall */
.hm-reviews__wall { column-count: 3; column-gap: 20px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 980px) { .hm-reviews__wall { column-count: 2; } }
@media (max-width: 620px) { .hm-reviews__wall { column-count: 1; max-width: 460px; } }
.hm-reviews__card {
  break-inside: avoid; margin: 0 0 20px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 34px -24px rgba(40,30,10,.32);
}
.hm-reviews__cardImg { position: relative; }
.hm-reviews__cardImg img { display: block; width: 100%; height: auto; }
.hm-reviews__cardImg.is-collapsed { max-height: 340px; overflow: hidden; }
.hm-reviews__cardFade { position: absolute; left: 0; right: 0; bottom: 0; height: 96px; background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 86%); pointer-events: none; }
.hm-reviews__cardMore {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  background: var(--cream-warm); color: var(--green); border: 1px solid var(--line);
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 8px 16px; border-radius: 999px; box-shadow: 0 6px 16px -8px rgba(0,0,0,.25);
}
.hm-reviews__cardMore:hover { background: #fff; }
.hm-reviews__cardLess {
  display: block; width: 100%; background: transparent; border: none; border-top: 1px solid var(--line);
  color: var(--muted); font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; padding: 10px; cursor: pointer;
}
.hm-reviews__cardLess:hover { color: var(--green); }
.rev-more { display: flex; justify-content: center; margin-top: 28px; }
.rev-foot { text-align: center; font-family: var(--font-hand); font-size: 25px; color: var(--rust); margin: 26px 0 4px; }
.amz-foot { text-align: center; color: var(--muted); margin: 4px auto 0; max-width: 56ch; font-size: 12.5px; font-style: italic; }

/* ── Offer section ─────────────────────────────────────────── */
.offer { background: linear-gradient(160deg, #2f5d36 0%, #28522e 55%, #1f4525 100%); color: #f4efe2; }
.offer .container { padding-top: clamp(40px,6vw,68px); padding-bottom: clamp(40px,6vw,68px); }
.offer-head { text-align: center; margin-bottom: 28px; }
.offer-head .kicker { color: #f3e29d; }
.offer-head h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(28px,4vw,46px); letter-spacing: -.02em; line-height: 1.05; margin: 0; }
.offer-head h2 em { font-style: italic; color: #f3e29d; }

.countdown { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 18px 0 4px; }
.countdown .lbl { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #e7dcb6; }
.countdown .clock { display: inline-flex; gap: 6px; }
.countdown .unit { background: rgba(255,255,255,.1); border: 1px solid rgba(243,226,157,.4); border-radius: 10px; padding: 6px 10px; min-width: 44px; text-align: center; }
.countdown .unit b { font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: #fff; line-height: 1; display: block; }
.countdown .unit span { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #cdbf93; }

.offer-card {
  background: var(--cream); color: var(--ink-soft);
  border-radius: 24px; overflow: hidden; max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: .78fr 1.22fr; align-items: stretch;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.5);
}
.offer-media { background: var(--cream-warm); position: relative; overflow: hidden; min-height: 100%; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.offer-body { padding: clamp(22px,2.4vw,32px); }
.offer-body h3 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(19px,2.2vw,23px); color: var(--ink); margin: 0 0 10px; line-height: 1.15; letter-spacing: -.01em; }
.offer-chips { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0 0 16px; }
.offer-chips span { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--green); }
.opt-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }

.opt {
  display: block; border: 1.5px solid var(--line); border-radius: 16px;
  margin-bottom: 12px; cursor: pointer; background: #fff;
  transition: border-color .15s, box-shadow .15s, background .15s; overflow: hidden;
}
.opt-min { padding: 15px 18px; }
.opt.active { border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,93,54,.12); background: #fbfcf8; }
.opt-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.opt-left { display: flex; gap: 12px; align-items: flex-start; }
.opt-radio { width: 20px; height: 20px; border-radius: 999px; border: 2px solid var(--line); flex-shrink: 0; margin-top: 2px; display: grid; place-items: center; transition: border-color .15s; }
.opt.active .opt-radio { border-color: var(--green); }
.opt.active .opt-radio::after { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--green); }
.opt-title { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--ink); line-height: 1.15; }
.opt-sub { font-size: 13px; color: var(--muted); margin: 4px 0 0; line-height: 1.4; }
.opt-sub .free { color: var(--rust); font-weight: 700; }
.opt-right { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; text-align: right; }
.price-line { display: flex; align-items: baseline; gap: 8px; justify-content: flex-end; }
.price-line .old { text-decoration: line-through; color: #9a8e74; font-size: 16px; }
.price-line .price { font-family: var(--font-serif); font-weight: 700; font-size: 24px; color: var(--ink); line-height: 1; }
.opt-right small { font-size: 11.5px; color: var(--muted); margin-top: 4px; }

/* hero option (saver) — the visual no-brainer */
.opt-hero { border-width: 2px; border-color: rgba(47,93,54,.45); }
.opt-hero.active { border-color: var(--green); box-shadow: 0 20px 44px -22px rgba(47,93,54,.5); }
.opt-ribbon {
  background: var(--green); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 9px 16px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.opt-pad { padding: 16px; }
.opt-hero .price-line .price { font-size: 34px; }
.opt-hero .opt-right small { color: var(--green); font-weight: 700; font-size: 12.5px; }
.save-chip { display: inline-block; background: var(--rust); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; margin-bottom: 6px; letter-spacing: .03em; }
.opt-stack { list-style: none; margin: 14px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.opt-stack li { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; line-height: 1.35; color: #51493b; }
.opt-stack li svg { margin-top: 1px; flex-shrink: 0; }
.opt-stack strong { color: var(--ink); }

.offer-assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 18px; margin: 14px 0 0; }
.offer-assure span { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--green); }
.offer-note { font-size: 13px; color: var(--muted); text-align: center; margin: 8px 0 0; }
.offer-fine { text-align: center; font-size: 11px; color: #9a8e74; line-height: 1.4; margin-top: 8px; }
.bought-line { text-align: center; font-size: 13px; color: var(--muted); margin: 14px 0 0; }
.bought-line b { color: var(--rust); }

/* ── Guarantee band ────────────────────────────────────────── */
.guarantee { background: var(--cream-warm); text-align: center; }
.guarantee .seal { width: 84px; height: 84px; border-radius: 999px; background: var(--sage); display: grid; place-items: center; margin: 0 auto 18px; }
.guarantee p { font-size: clamp(15px,1.8vw,17px); line-height: 1.75; color: #51493b; max-width: 560px; margin: 0 auto 16px; }
.guarantee strong { color: var(--ink); }
.tier-rows { max-width: 480px; margin: 0 auto 24px; display: grid; gap: 10px; }
.tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 600; }
.tier.best { background: #eef5ec; border: 1px solid var(--green); color: var(--ink); }
.tier.std { background: #f3eee3; border: 1px solid var(--line); color: var(--ink); }
.tier .ok { color: var(--green); font-weight: 700; }
.tier.std .ok { color: var(--muted); }
.trust-line { font-size: 13.5px; color: var(--muted); margin: 0 0 24px; }
.trust-line .ok { color: var(--green); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { background: var(--cream-warm); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; cursor: pointer; font-family: var(--font-serif); font-weight: 600; font-size: 16.5px; color: var(--ink); line-height: 1.35; }
.faq-q svg { flex-shrink: 0; transition: transform .3s; color: var(--green); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .25s ease; }
.faq-a-inner { padding: 0 20px 18px; font-size: 15px; line-height: 1.65; color: #51493b; }
.faq-a-inner a { color: var(--green); }
.faq-a-inner strong { color: var(--ink); }

/* ── Trust badges + sources + footer ───────────────────────── */
.payment { text-align: center; padding: 28px 24px; background: var(--cream); }
.payment img { max-width: 540px; width: 100%; margin: 0 auto; }
.sources { background: var(--cream); }
.sources .container { padding-top: 8px; padding-bottom: 40px; }
.sources h4 { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.sources ul { margin: 0; padding-left: 18px; font-size: 12px; line-height: 1.7; color: #9a8e74; word-break: break-word; }
.sources p.note { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }

.site-footer { background: var(--green); color: #cdd9c6; padding: 60px 24px 96px; position: relative; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px;
}
.footer-brand .logo-lockup, .footer-brand .logo-lockup .wordmark { color: #f3efe3; }
.footer-brand .brand-logo { height: 44px; filter: brightness(0) invert(1); opacity: .95; }
.footer-tag { font-family: var(--font-serif); font-size: 17px; line-height: 1.5; color: #eaf0e4; max-width: 300px; margin: 20px 0 0; letter-spacing: -.005em; }
.footer-made { font-size: 13px; color: #a8baa0; margin: 16px 0 0; }
.footer-ps { font-size: 13px; color: #a8baa0; margin: 5px 0 0; }
.footer-ps a { color: #f3e29d; text-decoration: none; }
.footer-ps a:hover { text-decoration: underline; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #f3e29d; margin: 2px 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: #cdd9c6; text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-fine { max-width: 1180px; margin: 44px auto 0; font-size: 11px; line-height: 1.6; color: #93a78b; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); }
.footer-fine p { margin: 0 0 5px; }
.footer-fine strong { color: #d3ddcc; }
.footer-bottom { max-width: 1180px; margin: 16px auto 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: #93a78b; }
.footer-bottom a { color: #93a78b; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── Sticky bottom CTA ─────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 80;
  background: rgba(253,252,247,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); padding: 10px 16px;
  box-shadow: 0 -6px 24px -12px rgba(0,0,0,.25);
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .row { max-width: 720px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.sticky-cta .info { display: none; }
.sticky-cta .info .price { font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--ink); }
.sticky-cta .info .small { font-size: 11px; color: var(--muted); }
.sticky-cta .btn { flex: 1; }
.sticky-cta .countmini { font-size: 12px; color: var(--rust); font-weight: 700; }

/* hide urgency elements when toggled off */
body.no-urgency .urgency-only { display: none !important; }

/* ── Responsive ────────────────────────────────────────────── */
/* ===== v2 CRO additions ===== */
/* AOV upgrade nudge (progress toward the better deal) */
.aov-nudge { display: block; width: 100%; text-align: left; margin: 14px 0 0; padding: 12px 14px; border-radius: 14px; cursor: pointer; background: #fbf3e9; border: 1.5px dashed var(--rust); transition: background .15s, transform .1s; }
.aov-nudge[hidden] { display: none; }   /* fix: hidden attr must win over the display:block above */
.aov-nudge:hover { background: #f8ecdc; }
.aov-nudge:active { transform: scale(.995); }
.aov-nudge.done { cursor: default; background: #eef5ec; border: 1px solid var(--green); }
.aov-bar { height: 6px; border-radius: 999px; background: rgba(151,72,34,.16); overflow: hidden; margin-bottom: 9px; }
.aov-nudge.done .aov-bar { background: rgba(47,93,54,.16); }
.aov-bar span { display: block; height: 100%; border-radius: 999px; background: var(--rust); transition: width .4s ease; }
.aov-nudge.done .aov-bar span { background: var(--green); }
.aov-text { font-size: 13px; line-height: 1.45; color: #51493b; }
.aov-text strong { color: var(--ink); }
.aov-nudge.done .aov-text { display: flex; align-items: center; gap: 7px; }
.aov-cta { display: inline-block; margin-left: 4px; font-weight: 700; color: var(--rust); white-space: nowrap; }

/* Desire band */
.desire-img img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.desire-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; }
.desire-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--muted); }
.desire-list strong { color: var(--ink); font-size: 16px; }
.desire-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; background: #f6e7dd; display: grid; place-items: center; margin-top: 1px; }

/* Proof band — stats + authority */
.proof-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.proof-stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 16px; text-align: center; box-shadow: 0 16px 34px -26px rgba(40,30,10,.3); }
.proof-stat .num { display: block; font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px,3.4vw,40px); color: var(--green); line-height: 1; letter-spacing: -.02em; }
.proof-stat .lbl { display: block; margin-top: 10px; font-size: 12.5px; line-height: 1.35; color: var(--muted); }
.proof-auth { margin-top: 30px; text-align: center; }
.proof-auth__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.proof-auth__logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(22px,5vw,52px); }
.proof-auth__logos img { max-width: 168px; width: 100%; opacity: .8; filter: saturate(.9); }

/* Offer bridge re-motivator */
.offer-bridge { padding-bottom: 0; }

/* Statement band optional image */
.statement-figure { margin: clamp(28px,4vw,40px) auto 0; max-width: 440px; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 36px 64px -38px rgba(0,0,0,.6); }
.statement-band.light .statement-figure { border-color: var(--line); box-shadow: 0 30px 56px -34px rgba(0,0,0,.3); }
.statement-figure img { display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; height: auto; }

@media (max-width: 860px) {
  .proof-stats { grid-template-columns: repeat(2,1fr); }
  .desire-img { order: -1; }
}
@media (max-width: 560px) {
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 980px) {
  .offer-card { grid-template-columns: 1fr; max-width: 560px; }
  .offer-media { min-height: 0; height: 230px; }
  .sci-grid { grid-template-columns: repeat(2,1fr); }
  .sci-card.warn { grid-column: span 2; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { order: -1; }
  .split { grid-template-columns: 1fr; }
  .feature-3 { grid-template-columns: 1fr; gap: 28px; }
  .feature-col { grid-template-columns: 1fr 1fr; display: grid; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card img { height: 200px; }
  .review-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; gap: 22px; }
  .step img { aspect-ratio: 16/10; }
  .ing-hero { grid-template-columns: 1fr; }
  .sticky-cta .info { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .hero-grid { padding: 28px 16px 40px; }
  .feature-col { grid-template-columns: 1fr; }
  .sci-grid { grid-template-columns: 1fr; }
  .sci-card.warn { grid-column: span 1; }
  .press-grid img { max-width: 150px; }
  .announce { font-size: 11px; letter-spacing: .04em; gap: 6px; }
  .announce-suffix { display: none; }
  .footer-bottom { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .press-div { display: none; }
  .opt-stack { grid-template-columns: 1fr; }
  .rev-grid { column-count: 1; }
}
