/* ═══════════════════════════════════════
   ADEUS LATIDO DE SOLIDÃO — Stylesheet
   ═══════════════════════════════════════ */

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

:root {
  --cream: #f7f2ec;
  --cream-mid: #ede4d6;
  --cream-dark: #e2d5c3;
  --brown: #261a13;
  --brown-mid: #4a3728;
  --terra: #c05a35;
  --terra-dark: #a04828;
  --terra-light: #f5e4da;
  --text: #2a1c14;
  --muted: #7a6355;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: var(--brown);
  color: #f7f2ec;
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
  position: sticky;
  top: 0;
  z-index: 100;
}
.urgency-bar b { color: #e8b48a; }
#bar-cd {
  display: inline;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #e8b48a;
  margin-left: 4px;
}

/* ── HERO ── */
#hero {
  padding: 64px 20px 48px;
  text-align: center;
  background: var(--cream);
}
#hero .pre-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra-light);
  border: 1px solid #dfc4b5;
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
}
#hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.12;
}
#hero h1 em { font-style: italic; color: var(--terra); }
#hero .sub {
  max-width: 560px;
  margin: 0 auto 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
#hero .italic-note {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown-mid);
  font-size: 16px;
  margin-bottom: 36px;
}
.arrow-down {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--terra);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: bounce 1.8s ease-in-out infinite;
}
.arrow-down svg { width: 22px; height: 22px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── PHOTO STRIP ── */
.photo-strip {
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  overflow: hidden;
  position: relative;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-strip .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 18%, transparent 72%, var(--brown) 100%);
}
.photo-strip .caption {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #f7f2ec;
  max-width: 580px;
  padding: 0 24px;
}
.photo-strip .caption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 24px);
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* ── VSL ── */
#vsl {
  background: var(--brown);
  padding: 0 0 56px;
  position: relative;
}
.vsl-top-band {
  background: var(--terra);
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.vsl-top-band span {
  opacity: .8;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 8px;
}
.vsl-inner { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.vsl-headline { text-align: center; padding: 36px 0 28px; }
.vsl-headline h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #f7f2ec;
  line-height: 1.2;
  margin-bottom: 12px;
}
.vsl-headline h2 em { font-style: italic; color: #e8b48a; }
.vsl-headline p { color: rgba(247,242,236,.65); font-size: 16px; max-width: 520px; margin: 0 auto; }
.vsl-player-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 80px rgba(0,0,0,.5);
  background: #111;
}
.vsl-player-wrap vturb-smartplayer { display: block; width: 100%; }
.vsl-player-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.vsl-cta-zone { padding: 32px 0 0; text-align: center; }
.vsl-cta-zone .cta-note {
  color: rgba(247,242,236,.75);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 22px;
}
.vsl-cta-zone .cta-note strong { color: #f7f2ec; }
.vsl-cta-sub {
  color: rgba(247,242,236,.55);
  font-size: 14px;
  margin-top: 14px;
  font-style: italic;
  font-family: var(--serif);
}
.vsl-bullets {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.vsl-bullets span {
  color: rgba(247,242,236,.6);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vsl-bullets span::before { content: '✓'; color: #e8b48a; font-weight: 700; }

/* ── SOCIAL PROOF BAR ── */
.sp-bar {
  background: #1d120b;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.04);
}
.sp-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.sp-item .num {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: #e8b48a;
  line-height: 1;
  display: block;
}
.sp-item .desc { font-size: 14px; color: rgba(247,242,236,.5); margin-top: 4px; }

/* ── GENERIC SECTIONS ── */
section { padding: 80px 20px; }
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}
.label::before { content: '● '; font-size: 9px; }
h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 700; line-height: 1.15; }
h3 { font-family: var(--serif); font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; line-height: 1.2; }

/* ── CTA BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  padding: 18px 42px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 28px rgba(192,90,53,.3);
}
.btn:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(192,90,53,.38);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { font-size: 19px; padding: 20px 52px; }

/* ── TRUST PILLS ── */
.trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.trust span { display: flex; align-items: center; gap: 5px; }

/* ── PAIN ── */
#pain { background: var(--cream); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.illus-box {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.illus-box img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.italic-big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--brown);
  border-left: 3px solid var(--terra);
  padding-left: 22px;
  margin-top: 24px;
  line-height: 1.5;
}

/* ── BELIEF ── */
#belief {
  background: linear-gradient(180deg, #eee8e0 0%, var(--cream) 100%);
  text-align: center;
}
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.b-card {
  background: #fff;
  border: 1px solid #e2d6c8;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}
.b-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(38,26,19,.08); }
.b-icon {
  width: 44px;
  height: 44px;
  background: var(--terra-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--terra);
}
.b-card h3 { font-size: 18px; margin-bottom: 10px; }
.b-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.b-card p em { color: var(--terra); font-style: normal; font-weight: 500; }

/* ── METHOD ── */
#method { background: var(--cream); text-align: center; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.m-step {
  background: #fff;
  border: 1px solid #e8ddd4;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.m-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--terra);
}
.step-n {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--terra-light);
  line-height: 1;
  margin-bottom: 10px;
}
.m-step h3 { font-size: 19px; margin-bottom: 10px; }
.m-step p { font-size: 14px; color: var(--muted); margin-top: 10px; }

/* ── RESULTS ── */
#results { background: var(--brown); color: #f7f2ec; }
#results .label { color: #e8b48a; }
.res-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
#results h2 { color: #f7f2ec; margin-bottom: 12px; }
#results .lead { color: rgba(247,242,236,.6); margin-bottom: 28px; font-size: 15px; }
.res-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.res-list li {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  color: rgba(247,242,236,.88);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.res-list li::before { content: '✓'; color: #e8b48a; font-weight: 700; flex-shrink: 0; }
.res-illus { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.res-illus img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── FOR WHO ── */
#for-who { background: var(--cream); text-align: center; }
.fw-list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fw-item {
  background: #fff;
  border: 1px solid #e8ddd4;
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  text-align: left;
  cursor: default;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.fw-item:hover {
  border-color: var(--terra);
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(192,90,53,.1);
}
.fw-icon {
  width: 42px; height: 42px;
  background: var(--terra-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: linear-gradient(180deg, #eee8e0 0%, var(--cream) 100%);
  text-align: center;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.t-card {
  background: #fff;
  border: 1px solid #e2d6c8;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
}
.stars { color: #d48040; font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.t-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 20px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: var(--terra-light);
  background-size: 300% auto;
  overflow: hidden;
  flex-shrink: 0;
}
.t-av-1 { background-position: 0% center; }
.t-av-2 { background-position: 50% center; }
.t-av-3 { background-position: 100% center; }
.t-name { font-size: 14px; font-weight: 600; color: var(--brown); }
.t-meta { font-size: 12px; color: var(--muted); }

/* ── INCLUDED ── */
#included { background: var(--cream); text-align: center; }
.inc-box {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #e2d6c8;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(38,26,19,.08);
}
.inc-head {
  background: var(--brown);
  color: #f7f2ec;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.inc-grid { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--brown-mid);
}
.inc-item::before {
  content: '✓';
  width: 22px; height: 22px; min-width: 22px;
  background: var(--brown);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ── BONUS ── */
#bonus { background: var(--cream); padding-top: 0; }
.bonus-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--cream-mid);
  border: 1.5px solid var(--cream-dark);
  border-radius: 22px;
  padding: 52px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  align-items: center;
}
.book-visual {
  border-radius: 12px;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 6px 6px 32px rgba(38,26,19,.22), -2px -2px 8px rgba(255,255,255,.3);
}
.book-visual img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.bonus-text h3 { font-size: 28px; margin-bottom: 12px; }
.bonus-text p { color: var(--muted); margin-bottom: 20px; font-size: 15px; line-height: 1.65; }
.bonus-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.bonus-mini li {
  list-style: none;
  font-size: 13px;
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bonus-mini li::before { content: '✓'; color: var(--terra); font-weight: 700; }
.bonus-free {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--cream-dark);
  padding-top: 14px;
}

/* ── COUNTDOWN ── */
.cd-band {
  background: var(--terra);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}
.cd-band p { font-size: 15px; margin-bottom: 16px; opacity: .9; }
.clock { display: flex; justify-content: center; gap: 16px; align-items: center; }
.cu { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cn {
  background: rgba(0,0,0,.22);
  border-radius: 10px;
  padding: 12px 18px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 72px;
  text-align: center;
  line-height: 1;
}
.cl { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.csep { font-size: 34px; font-weight: 700; opacity: .45; margin-bottom: 16px; }

/* ── OFFER ── */
#offer { background: var(--cream); text-align: center; }
.offer-box {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 2px solid #e0d4c8;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(38,26,19,.1);
}
.offer-head {
  background: var(--brown);
  color: #f7f2ec;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.offer-lines { padding: 32px 36px 0; }
.o-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0e8e0;
  font-size: 15px;
  color: var(--brown-mid);
}
.o-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--terra);
  background: var(--terra-light);
  padding: 4px 12px;
  border-radius: 100px;
}
.offer-price { padding: 28px 36px 20px; text-align: center; }
.p-from { font-size: 15px; color: var(--muted); text-decoration: line-through; margin-bottom: 4px; }
.p-main {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 6px;
}
.p-main sup { font-size: 34px; vertical-align: super; }
.p-main sub { font-size: 30px; }
.p-desc {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.offer-cta { padding: 0 36px; }
.offer-cta .btn { width: 100%; justify-content: center; font-size: 18px; padding: 20px; border-radius: 14px; }
.offer-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  padding: 14px 20px 20px;
}
.offer-trust span { display: flex; align-items: center; gap: 4px; }
.guar-strip {
  background: var(--cream-mid);
  border-top: 1px solid #e0d4c8;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}
.guar-icon {
  width: 50px; height: 50px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}
.guar-text strong { display: block; font-size: 15px; margin-bottom: 3px; color: var(--brown); }
.guar-text span { font-size: 13px; color: var(--muted); }

/* ── FAQ ── */
#faq {
  background: linear-gradient(180deg, #eee8e0 0%, var(--cream) 100%);
  text-align: center;
}
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid #e8ddd4; border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--terra); }
.faq-ic {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  border: 1.5px solid #d4c8bc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s, border-color .2s;
  color: var(--terra);
}
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--terra); color: #fff; border-color: var(--terra); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  text-align: left;
}
.faq-item.open .faq-a { display: block; }

/* ── DARK CTA ── */
#dark-cta { background: var(--brown); color: #f7f2ec; padding: 100px 20px; text-align: center; }
#dark-cta .label { color: #e8b48a; margin-bottom: 20px; }
#dark-cta h2 { color: #f7f2ec; max-width: 720px; margin: 0 auto 22px; font-size: clamp(28px, 4.5vw, 52px); }
#dark-cta p { color: rgba(247,242,236,.65); max-width: 540px; margin: 0 auto 40px; font-size: 17px; }
#dark-cta .btn { font-size: 19px; padding: 20px 52px; margin-bottom: 20px; }
#dark-cta .trust { color: rgba(247,242,236,.45); }

/* ── FOOTER ── */
footer {
  background: #160d07;
  color: rgba(247,242,236,.35);
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}
footer strong { color: rgba(247,242,236,.65); }
footer .disclaimer { display: block; margin-top: 6px; font-size: 11px; }

/* ── STICKY MOBILE ── */
.sticky-mob {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  padding: 12px 20px;
  z-index: 200;
  box-shadow: 0 -4px 30px rgba(0,0,0,.35);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sm-price {
  color: #e8b48a;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.sm-price small {
  display: block;
  font-size: 11px;
  color: rgba(247,242,236,.4);
  font-family: var(--sans);
  font-weight: 400;
  text-decoration: line-through;
}
.sticky-mob .btn { flex: 1; justify-content: center; padding: 14px 20px; font-size: 15px; border-radius: 12px; }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.rv.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .two-col { grid-template-columns: 1fr; }
  .illus-box { aspect-ratio: 16/9; order: -1; }
  .belief-grid, .method-grid, .test-grid { grid-template-columns: 1fr; }
  .res-two { grid-template-columns: 1fr; }
  .res-list { grid-template-columns: 1fr; }
  .res-illus { display: none; }
  .inc-grid { grid-template-columns: 1fr; }
  .bonus-wrap { grid-template-columns: 1fr; padding: 32px 24px; }
  .book-visual { aspect-ratio: 5/2; max-width: 180px; }
  .bonus-mini { grid-template-columns: 1fr; }
  .offer-lines, .offer-price, .offer-cta { padding-left: 20px; padding-right: 20px; }
  .sticky-mob { display: flex; }
  body { padding-bottom: 74px; }
  .vsl-bullets { gap: 14px; }
  .sp-row { gap: 32px; }
}
