/* ============================================================
   SOPINHAS QUE SECAM — estilo tropical "Playa"
   Paleta quente (abóbora/couve/coral) + energia praiana
   ============================================================ */

:root {
  /* base */
  --cream: #FFF4E0;
  --cream-2: #FFEAC9;
  --paper: #FFFBF3;
  --ink: #2C1B10;
  --ink-soft: #6B5340;

  /* tropical pops */
  --coral: #FF5535;
  --coral-d: #E63E1E;
  --yellow: #FFC22E;
  --yellow-d: #F2A900;
  --teal: #15A8B6;
  --teal-d: #0C8794;
  --green: #2E9258;
  --green-d: #1F7A45;
  --pumpkin: #FF8A1E;
  --berry: #D6356B;

  --shadow-sm: 0 4px 0 rgba(44,27,16,.12);
  --shadow-pop: 6px 6px 0 var(--ink);
  --shadow-pop-coral: 6px 6px 0 var(--coral-d);
  --radius: 26px;
  --radius-lg: 38px;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-script: "Pacifico", cursive;
  --font-body: "Figtree", system-ui, sans-serif;

  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 18px;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- type helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.01em; }
.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: 13px;
}
.tilt { display: inline-block; transform: rotate(-3deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  padding: 18px 34px; border-radius: 999px; border: 3px solid var(--ink);
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease;
  text-align: center; line-height: 1.1;
}
.btn--coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-pop); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-pop); }
.btn--white { background: #fff; color: var(--ink); box-shadow: var(--shadow-pop); }
.btn:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.btn--lg { font-size: 22px; padding: 22px 44px; }

.cta-note { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink-soft); margin-top: 12px; }

/* ---------- pill / chip ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.topbar {
  background: var(--coral); color: #fff; font-family: var(--font-display); font-weight: 700;
  text-align: center; font-size: 14px; padding: 10px 18px; line-height: 1.5;
}
.topbar__txt { display: inline; }
.topbar .timer {
  background: var(--ink); color: var(--yellow); border-radius: 999px;
  padding: 2px 11px; font-variant-numeric: tabular-nums; letter-spacing: .04em; white-space: nowrap;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper); border-bottom: 3px solid var(--ink);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 50%; background: var(--coral);
  border: 3px solid var(--ink); display: grid; place-items: center; color: #fff; flex: none;
}
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 20px; line-height: 1; }
.brand__name span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--coral-d); }
.nav .btn { padding: 12px 24px; font-size: 16px; box-shadow: 4px 4px 0 var(--ink); }
.nav .btn:hover { box-shadow: 6px 6px 0 var(--ink); }

/* ============================================================
   SECTION SHELL + WAVE DIVIDERS
   ============================================================ */
section { position: relative; }
.sec { padding: 92px 0; }
.sec--tight { padding: 64px 0; }

.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-coral { background: var(--coral); color: #fff; }
.bg-teal { background: var(--teal); color: #fff; }
.bg-green { background: var(--green); color: #fff; }
.bg-yellow { background: var(--yellow); }
.bg-ink { background: var(--ink); color: var(--cream); }

/* wave divider — sits at top of a section, fills with that section's color */
.wave { display: block; width: 100%; height: 56px; }
.wave svg { display: block; width: 100%; height: 100%; }

.sectitle { font-size: clamp(34px, 5vw, 60px); line-height: 1.04; max-width: 16ch; }
.sec-lead { text-align: center; }
.sec-lead .sectitle { margin: 14px auto 0; }
.sec-lead p { max-width: 56ch; margin: 20px auto 0; font-size: 19px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--cream); padding: 70px 0 40px; position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6.6vw, 88px); line-height: .98; margin: 18px 0 0; }
.hero h1 .script { color: var(--coral); font-size: .82em; }
.hero h1 .kg { color: var(--teal-d); }
.hero__lead { font-size: 20px; margin-top: 22px; max-width: 46ch; }
.hero__lead strong { color: var(--coral-d); }
.hero__cta { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.stars { color: var(--yellow-d); letter-spacing: 2px; font-size: 18px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--cream);
  margin-left: -12px; background: var(--pumpkin); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.proof-quote { font-style: italic; color: var(--ink-soft); font-size: 15px; max-width: 40ch; margin-top: 16px; }

/* hero image */
.hero__media { position: relative; }
.hero__bowl {
  border-radius: 50%; border: 5px solid var(--ink); aspect-ratio: 1; object-fit: cover;
  width: 100%; box-shadow: 12px 14px 0 var(--coral);
}
.hero__badge {
  position: absolute; font-family: var(--font-display); font-weight: 800; text-align: center;
  border: 3px solid var(--ink); border-radius: 22px; padding: 12px 16px; line-height: 1; background: #fff;
}
.hero__badge b { display: block; font-size: 30px; }
.hero__badge small { font-size: 11.5px; font-weight: 700; color: var(--ink-soft); }
.hero__badge--kg { top: 6%; left: -4%; background: var(--yellow); transform: rotate(-7deg); }
.hero__badge--time { bottom: 8%; right: -5%; background: var(--teal); color: #fff; transform: rotate(6deg); }
.hero__badge--time small { color: rgba(255,255,255,.85); }

/* ingredient marquee */
.marquee { background: var(--ink); color: var(--cream); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); overflow: hidden; padding: 14px 0; }
.marquee__track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; letter-spacing: .02em; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; }
.marquee__track span::after { content: "✦"; color: var(--yellow); font-size: 14px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   METHOD strip
   ============================================================ */
.method__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.method__img { border-radius: var(--radius-lg); border: 4px solid var(--ink); object-fit: cover; width: 100%; aspect-ratio: 4/3; box-shadow: var(--shadow-pop); }
.method__txt h2 { font-size: clamp(30px,4vw,48px); }

/* ============================================================
   FEATURE checklist
   ============================================================ */
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 38px auto 0; max-width: 760px; }
.check {
  display: flex; align-items: center; gap: 14px; background: var(--paper);
  border: 3px solid var(--ink); border-radius: 18px; padding: 16px 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.check .tick { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }

/* ============================================================
   RECIPE grid
   ============================================================ */
.recipes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.card {
  background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-pop); transition: transform .14s ease, box-shadow .14s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 var(--ink); }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; border-bottom: 3px solid var(--ink); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__tag {
  position: absolute; top: 12px; left: 12px; background: var(--coral); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 12px; padding: 6px 12px; border-radius: 999px; border: 2.5px solid var(--ink);
}
.card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { font-size: 23px; line-height: 1.05; }
.card__body h3 em { font-style: normal; color: var(--coral-d); }
.card__sub { color: var(--ink-soft); font-size: 15px; margin-top: 6px; font-weight: 600; }
.card__meta { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; }
.meta-stat { display: flex; flex-direction: column; line-height: 1.1; background: var(--cream); border: 2.5px solid var(--ink); border-radius: 14px; padding: 9px 14px; }
.meta-stat b { font-family: var(--font-display); font-size: 16px; color: var(--teal-d); }
.meta-stat small { font-weight: 700; font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }

/* inline cta row between cards */
.recipes .cta-inline { grid-column: 1 / -1; text-align: center; padding: 8px 0; }

/* ============================================================
   COMBO section
   ============================================================ */
.combo__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.combo h2 { font-size: clamp(32px,4.4vw,54px); }
.combo h2 .plus { color: var(--yellow); }
.combo__media { position: relative; }
.combo__media img { border-radius: var(--radius-lg); border: 4px solid var(--ink); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 10px 10px 0 var(--coral); }
.combo .float-pill { position: absolute; bottom: -16px; left: 24px; background: var(--yellow); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-shell { max-width: 920px; margin: 40px auto 0; border: 4px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-pop); background: #000; }
.video-shell .ratio { position: relative; padding-top: 56.25%; }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   BONUS
   ============================================================ */
.bonus { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.bonus__card { background: var(--paper); border: 3px solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-pop); display: flex; flex-direction: column; }
.bonus__card .card__media { aspect-ratio: 4/3; }
.bonus__num { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--yellow); font-family: var(--font-display); font-weight: 800; font-size: 12px; padding: 6px 12px; border-radius: 999px; }
.bonus__body { padding: 18px 20px 22px; }
.bonus__body h3 { font-size: 20px; }
.bonus__body h3 em { font-style: normal; color: var(--coral-d); }
.bonus__price { margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.bonus__price s { color: var(--ink-soft); font-weight: 600; }
.bonus__price .free { background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 999px; }

/* ============================================================
   PAIN list
   ============================================================ */
.pain__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.pain__list { display: grid; gap: 14px; margin-top: 30px; }
.pain__item { display: flex; align-items: flex-start; gap: 14px; font-size: 18px; font-weight: 600; }
.pain__item .x { width: 28px; height: 28px; flex: none; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; display: grid; place-items: center; font-weight: 900; margin-top: 2px; }
.pain .turn { margin-top: 30px; font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1.2; }
.pain .turn em { font-style: normal; color: var(--yellow); }
.pain__media { position: relative; }
.pain__media img { border-radius: var(--radius-lg); border: 4px solid var(--ink); width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: 10px 10px 0 var(--yellow); }
.pain__media .float-pill { position: absolute; top: -14px; right: 18px; background: var(--coral); color: #fff; }
.pain__cap { margin-top: 16px; font-size: 17px; color: #fff; }
.pain__cap strong { color: var(--yellow); }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  max-width: 720px; margin: 44px auto 0; background: var(--paper);
  border: 4px solid var(--ink); border-radius: var(--radius-lg); box-shadow: 12px 12px 0 var(--ink);
  overflow: hidden;
}
.price-card__head { background: var(--teal); color: #fff; padding: 24px 32px; border-bottom: 3px solid var(--ink); }
.price-card__head h3 { font-size: 26px; }
.price-card__head h3 em { font-style: normal; color: var(--yellow); }
.price-list { padding: 8px 32px; }
.price-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 2px dashed rgba(44,27,16,.16); }
.price-row:last-child { border-bottom: 0; }
.price-row .pn { width: 38px; height: 38px; flex: none; border-radius: 12px; background: var(--coral); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; border: 2.5px solid var(--ink); }
.price-row .pn.star { background: var(--yellow); color: var(--ink); }
.price-row .pn.bonus { background: var(--green); }
.price-row__txt { flex: 1; }
.price-row__txt b { font-family: var(--font-display); }
.price-row__val { font-family: var(--font-display); font-weight: 800; white-space: nowrap; }
.price-row__val s { color: var(--ink-soft); font-weight: 600; margin-right: 6px; }
.price-row__val .free { color: var(--green-d); }

.price-total { padding: 18px 32px; background: var(--cream-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); text-align: center; font-family: var(--font-display); font-weight: 700; }
.price-total s { font-size: 22px; }
.price-final { padding: 30px 32px 36px; text-align: center; }
.price-final .arrow { font-family: var(--font-display); font-weight: 800; color: var(--coral-d); letter-spacing: .1em; font-size: 14px; text-transform: uppercase; }
.price-big { font-family: var(--font-display); font-weight: 800; line-height: 1; margin: 10px 0 4px; }
.price-big .x { font-size: 30px; vertical-align: middle; color: var(--ink-soft); }
.price-big .num { font-size: 68px; color: var(--coral); }
.price-big .cents { font-size: 34px; vertical-align: top; }
.price-alt { font-weight: 700; color: var(--ink-soft); }
.price-save { display: inline-block; margin: 16px 0 6px; background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 800; padding: 8px 18px; border-radius: 999px; border: 2.5px solid var(--ink); }
.trust-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 20px; color: var(--ink-soft); font-weight: 600; font-size: 14px; }
.pay-row { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.pay-row .pill { font-size: 13px; }

/* guarantee ribbon marquee */
.ribbon { background: var(--yellow); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); padding: 12px 0; overflow: hidden; }
.ribbon .marquee__track { animation-duration: 22s; }
.ribbon .marquee__track span { color: var(--ink); }
.ribbon .marquee__track span::after { content: "●"; color: var(--coral); }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guar__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.guar__seal {
  width: 200px; height: 200px; border-radius: 50%; background: var(--green); color: #fff;
  border: 5px solid var(--ink); display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); box-shadow: var(--shadow-pop); margin: 0 auto;
}
.guar__seal b { display: block; font-size: 56px; line-height: 1; }
.guar__seal small { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.guar h2 { font-size: clamp(30px,4vw,46px); }
.guar h2 em { font-style: normal; color: var(--green-d); }
.guar__points { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 20px; font-family: var(--font-display); font-weight: 700; }
.guar__points span { color: var(--green-d); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.about__photo { border-radius: var(--radius-lg); border: 4px solid var(--ink); width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: 12px 12px 0 var(--teal); }
.about h2 { font-size: clamp(32px,4.4vw,54px); }
.about h2 em { font-style: normal; color: var(--coral); }
.about p { margin-top: 16px; font-size: 18px; }
.about p strong { color: var(--coral-d); }
.about__quote { border-left: 5px solid var(--yellow); padding: 8px 0 8px 20px; font-style: italic; margin-top: 20px; color: var(--ink-soft); }
.about__stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.stat { background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; padding: 14px 20px; box-shadow: var(--shadow-sm); }
.stat b { font-family: var(--font-display); font-size: 30px; display: block; line-height: 1; color: var(--coral); }
.stat small { font-weight: 700; color: var(--ink-soft); font-size: 13px; }

/* ============================================================
   TESTIMONIALS carousel
   ============================================================ */
.testi__rail { display: flex; gap: 22px; overflow-x: auto; padding: 40px 4px 28px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.testi__rail::-webkit-scrollbar { height: 10px; }
.testi__rail::-webkit-scrollbar-thumb { background: rgba(255,255,255,.5); border-radius: 999px; }
.testi {
  flex: 0 0 320px; scroll-snap-align: center; background: var(--paper); color: var(--ink);
  border: 3px solid var(--ink); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-pop);
}
.testi .stars { font-size: 16px; }
.testi__print { display: block; width: 100%; height: 300px; border: 3px solid var(--ink); border-radius: 16px; overflow: hidden; background: var(--cream); }
.testi__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.testi__foot .testi__name { margin-top: 0; }
.testi__name { font-family: var(--font-display); font-weight: 800; margin-top: 8px; }
.testi__name span { color: var(--ink-soft); font-weight: 600; font-size: 13px; }
.testi__text { margin-top: 10px; font-size: 16px; }
.testi__chat { background: var(--green); color: #fff; border-radius: 16px 16px 16px 4px; padding: 14px 16px; margin-top: 14px; font-size: 15px; line-height: 1.4; }
.testi-controls { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 4px; }
.tcbtn { width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--ink); background: #fff; color: var(--ink); font-size: 22px; cursor: pointer; display: grid; place-items: center; box-shadow: 3px 3px 0 var(--ink); transition: transform .1s; }
.tcbtn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.testi-score { text-align: center; font-family: var(--font-display); font-weight: 700; margin-top: 18px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 40px auto 0; display: grid; gap: 14px; }
.faq__item { background: var(--paper); border: 3px solid var(--ink); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); }
.faq__q .sign { width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; font-size: 22px; transition: transform .2s; }
.faq__item.open .faq__q .sign { transform: rotate(45deg); background: var(--teal); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--ink-soft); font-weight: 500; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { text-align: center; }
.final h2 { font-size: clamp(38px,5.6vw,76px); line-height: .98; }
.final h2 .script { color: var(--yellow); }
.final p { font-size: 20px; margin: 22px auto 0; max-width: 44ch; }
.final .btn { margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding: 70px 0 36px; }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer h4 { font-size: 16px; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a, .footer li { color: rgba(255,244,224,.78); font-weight: 600; font-size: 15px; }
.footer a:hover { color: #fff; }
.footer .pay-row { justify-content: flex-start; margin-top: 14px; }
.footer .pill { background: rgba(255,255,255,.06); color: var(--cream); border-color: rgba(255,255,255,.25); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 48px; padding-top: 24px; font-size: 13px; color: rgba(255,244,224,.55); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__disc { font-size: 12px; color: rgba(255,244,224,.45); margin-top: 18px; max-width: 78ch; line-height: 1.5; }

/* image fallback placeholder */
.img-ph { width: 100%; height: 100%; display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 14px, var(--cream) 14px, var(--cream) 28px);
  color: var(--ink-soft); font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid, .method__grid, .combo__grid, .pain__grid, .guar__grid, .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .recipes, .bonus { grid-template-columns: repeat(2, 1fr); }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .guar__grid { text-align: center; }
  .pain__media, .about__photo { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .sec { padding: 64px 0; }
  .checks, .recipes, .bonus, .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .nav .brand__name { font-size: 17px; }
  .price-card__head, .price-list, .price-final { padding-left: 20px; padding-right: 20px; }
  .price-big .num { font-size: 54px; }
  .footer__bottom { flex-direction: column; }
}
