/* ==========================================================================
   Face Yoga – local replica of promo.faceyoga.com /pt/asian/quiz
   Colors, type and layout extracted from the deployed Next.js bundle:
   - bg page              rgb(252, 238, 240)
   - promo bar (sticky)   rgb(13, 13, 13)  text #fff  timer rgb(255, 80, 41)
   - quiz card            #fff, border-radius 16, padding 32
   - primary (pink/red)   rgb(245, 49, 99)
   - text                 rgb(13, 13, 13)
   - track                rgb(224, 224, 224)
   ========================================================================== */

/* ---------------- Fonts (Next.js hashed files copied to assets/fonts/) ---- */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/9d5a263311222317-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/9d5a263311222317-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/9d5a263311222317-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/9d5a263311222317-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/9d5a263311222317-s.p.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/eafabf029ad39a43-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/8888a3826f4a3af4-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/0484562807a97172-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/b957ea75a84b6ea7-s.p.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/7db6c35d839a711c-s.p.woff2") format("woff2");
}

:root {
  --c-bg: rgb(252, 238, 240);
  --c-card: #ffffff;
  --c-text: rgb(13, 13, 13);
  --c-muted: rgb(99, 99, 99);
  --c-soft: rgb(245, 245, 245);
  --c-primary: rgb(245, 49, 99);
  --c-primary-dark: rgb(220, 30, 80);
  --c-accent-orange: rgb(255, 80, 41);
  --c-border: rgb(224, 224, 224);
  --c-track: rgb(224, 224, 224);
  --c-promo-bar: rgb(13, 13, 13);
  --c-success: rgb(57, 171, 116);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-cta: 0 6px 14px rgba(245, 49, 99, 0.25);
  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-sm: 12px;
  --max-quiz: 720px;
  --font-display: "Bricolage Grotesque", "Bricolage Grotesque Fallback", system-ui, sans-serif;
  --font-body: "Poppins", "Poppins Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  background-image: url("assets/images/faceyoga-bg.svg");
  background-repeat: repeat;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---------------- Promo bar (sticky, top, BLACK) ---------------- */
.promo-bar {
  background-color: var(--c-promo-bar);
  color: #fff;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.promo-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.43;
  text-align: center;
}
.promo-timer {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-accent-orange);
  min-width: 6.5ch;
  font-variant-numeric: tabular-nums;
  letter-spacing: .3px;
  text-align: center;
}

/* ---------------- Pink brand strip (logo + trustpilot) ---------------- */
.brand-strip {
  background-color: var(--c-primary);
  width: 100%;
  height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}
.brand-strip .logo {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.brand-strip .trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
}
.brand-strip .trustpilot .tp-star {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #00b67a;
  color: #fff;
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  font-weight: 700;
}

/* ---------------- Topbar (kept as legacy; collapsed) ---------------- */
.topbar { display: none; }

/* ---------------- Quiz wrapper (white card on pink) ---------------- */
main {
  flex: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 16px 32px;
}
@media (min-width: 600px) { main { padding: 24px 24px 32px; } }

.quiz-card {
  background-color: var(--c-card);
  border-radius: var(--radius-card);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .quiz-card { padding: 32px; max-width: 760px; }
}
@media (min-width: 960px) {
  .quiz-card { max-width: 720px; }
}

/* ---------------- Progress bar row ---------------- */
.progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.progress-track {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: var(--c-track);
  border-radius: 4px;
  overflow: hidden;
  grid-column: 1 / -1;
}
.progress-fill {
  position: absolute;
  inset: 0;
  background-color: var(--c-success);
  transform-origin: left center;
  transition: width 0.4s linear;
}
.progress-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.progress-back {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 0;
  color: var(--c-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.progress-back svg { width: 18px; height: 18px; }
.progress-back[hidden] { display: none; }
.progress-pct {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.43;
  font-variant-numeric: tabular-nums;
}

/* ---------------- Step typography ---------------- */
.step h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.2;
  color: var(--c-text);
  margin: 4px 0 8px;
  text-align: center;
}
.step h5 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0 0 18px;
  text-align: center;
}
.step .step-header { padding-inline: 6px; }

/* ---------------- Generic options list ---------------- */
.options {
  display: flex;
  flex-direction: column;
  padding-inline: 10px;
  gap: 8px;
}
.step[data-step-type="multi"] .options,
.options.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) {
  .step[data-step-type="multi"] .options,
  .options.options-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.opt {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-soft);
  border: 0;
  border-radius: var(--radius-card);
  padding: 14px 18px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: background .15s ease, transform .12s ease;
  min-height: 64px;
  outline: none;
}
.opt:hover { background: rgb(235, 235, 235); transform: translateY(-1px); }
.opt.selected { background: rgb(220, 220, 220); }
.opt:focus-visible { box-shadow: 0 0 0 2px var(--c-primary); }
.opt-emoji {
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
}
.opt-label {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--c-text);
  margin: 0;
}

/* Multi-select: check box on the right */
.opt-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--c-border);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #fff;
  flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease;
}
.opt.selected .opt-check {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.opt.selected .opt-check::after {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ---------------- Image cards (gender step) ---------------- */
.image-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-inline: 4px;
  margin-top: 8px;
}
.opt-image {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 12px 12px 16px;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s ease, transform .12s ease;
  font-family: inherit;
}
.opt-image:hover { border-color: var(--c-primary); transform: translateY(-2px); }
.opt-image.selected { border-color: var(--c-primary); background: rgba(245, 49, 99, 0.04); }
.opt-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f3f3f3;
}
.opt-image h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
  margin: 0;
  text-align: center;
}

/* ---------------- Pitch list (icon + paragraph) ---------------- */
.pitch-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text);
  margin: 0 0 18px;
  line-height: 1.55;
  text-align: center;
  padding-inline: 4px;
}
.pitch-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pitch-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.45;
}
.pitch-list .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}
.pitch-list p { margin: 0; }

/* ---------------- Before / After image panel ---------------- */
.before-after-panel {
  background: var(--c-soft);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  margin: 8px 4px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  width: 100%;
}
.ba-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.ba-arrows {
  color: var(--c-text);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-display);
  user-select: none;
}
.ba-caption {
  margin: 0 4px 8px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.4;
}

/* ---------------- Inputs (name, age) ---------------- */
.input-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-inline: 10px;
  margin: 12px 0 22px;
}
.input-wrap input[type="text"],
.input-wrap input[type="number"] {
  width: 100%;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  outline: none;
  transition: border-color .15s ease;
}
.input-wrap input::placeholder { color: rgb(150, 150, 150); font-weight: 400; }
.input-wrap input:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(245, 49, 99, 0.10); }
.input-wrap.age {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.input-wrap.age input {
  text-align: center;
  max-width: 160px;
  font-size: 22px;
  font-weight: 700;
}
.input-wrap.age p { margin: 0; font-family: var(--font-body); font-size: 16px; color: var(--c-text); font-weight: 500; }

/* ---------------- CTA button ---------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  cursor: pointer;
  margin: 20px 10px 0;
  width: calc(100% - 20px);
  box-shadow: 0 2px 6px rgba(245, 49, 99, 0.18);
  transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
  text-transform: uppercase;
}
.cta:hover:not(:disabled) {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
}
.cta:disabled {
  background: rgb(232, 232, 232);
  color: rgba(13, 13, 13, 0.45);
  cursor: not-allowed;
  box-shadow: none;
  letter-spacing: .5px;
}

/* ---------------- Loading step (vertical bars) ---------------- */
.step.loading-step h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  text-align: center;
  white-space: pre-line;
  margin-bottom: 24px;
}
.loading-bars {
  list-style: none;
  padding: 0;
  margin: 12px auto 0;
  max-width: 480px;
  display: grid;
  gap: 18px;
}
.lb-row { display: grid; gap: 6px; }
.lb-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.lb-label { flex: 1; padding-right: 12px; }
.lb-pct { font-variant-numeric: tabular-nums; color: var(--c-text); font-weight: 600; }
.lb-track {
  height: 6px;
  background: var(--c-track);
  border-radius: 999px;
  overflow: hidden;
}
.lb-fill {
  height: 100%;
  background: var(--c-primary);
  border-radius: 999px;
  width: 0;
  transition: width .08s linear;
}
.lb-row.done .lb-pct { color: var(--c-success); }

/* ---------------- Footer (press + locale picker) ---------------- */
.footer {
  width: 100%;
  margin-top: 16px;
  padding: 22px 16px 28px;
  display: grid;
  gap: 18px;
  text-align: center;
}
.footer-press p,
.footer-lang p {
  margin: 0 0 10px;
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}
.press-logos {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  filter: grayscale(1) opacity(0.55);
}
.press-logo {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-text);
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text);
  font-weight: 500;
}
.lang-pill img { width: 20px; height: 14px; display: inline-block; }

/* ==========================================================================
   PROMOTIONS PAGE — preserved from previous validated version
   ========================================================================== */
.promo-page {
  background: #fff;
  background-image: url("assets/images/faceyoga-bg.svg");
}

/* Logo bar (centered) */
.brand-bar { background: #fff; padding: 14px 0; text-align: center; }
.brand-logo { height: 32px; margin: 0 auto; }

/* Reserved-price red strip */
.reserved-strip {
  background: linear-gradient(90deg, #ff2e63, #e3194c);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}
.reserved-clock { font-variant-numeric: tabular-nums; letter-spacing: .5px; }

.promo-page main { max-width: 720px; padding: 0 16px 32px; }

/* Antes/Depois */
.before-after-real { margin: 18px 0 14px; border-radius: var(--radius-sm); overflow: hidden; background: #4a6275; }
.before-after-real img { width: 100%; display: block; height: auto; }

/* Hero copy */
.hero-copy { text-align: center; font-family: var(--font-body); }
.trustpilot-line {
  font-size: 14px;
  color: var(--c-text);
  margin: 14px 0 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.4;
}
.trustpilot-line.center { margin-top: 12px; margin-bottom: 0; }
.tp-svg { height: 18px; vertical-align: middle; }
.tp-badge { background: #00b67a; padding: 4px 8px; border-radius: 4px; display: inline-flex; }
.tp-stars { color: #fff; letter-spacing: 1px; font-size: 14px; }
.checkout-safe-row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; color: var(--c-muted); margin: 12px 0 6px; flex-wrap: wrap;
}
.cards-img { height: 18px; }

.media-logo-real { display: inline-block; margin-top: 12px; }
.media-logo-real img { height: 32px; max-width: 100%; }

.reviews-grid-real {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 720px) { .reviews-grid-real { grid-template-columns: 1fr; } }
.review-card-real { display: block; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card); }
.review-card-real img { width: 100%; display: block; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin: 8px 0 16px;
}
.hero-title b { font-weight: 900; }
.hero-sub { font-size: 16px; line-height: 1.5; margin: 0 0 22px; color: var(--c-text); }
.hero-sub b { font-weight: 700; }

.coupon-card { background: #e6f9ef; border-radius: var(--radius-sm); padding: 18px 18px 20px; margin: 0 0 22px; text-align: left; }
.coupon-title { margin: 0 0 12px; font-size: 16px; color: var(--c-text); }
.coupon-title b { font-weight: 700; }
.coupon-input {
  background: #fff; border-radius: 8px; padding: 16px; text-align: center;
  font-size: 22px; font-weight: 800; color: var(--c-text);
  border: 1px solid #cfeedb; letter-spacing: .5px; margin-bottom: 8px;
}
.coupon-expires { margin: 0; font-size: 14px; color: var(--c-text); }
.coupon-expires strong { font-weight: 700; }

.plans-rows { display: flex; flex-direction: column; gap: 14px; margin: 0 0 18px; text-align: left; }
.plan-row {
  position: relative;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-card);
  padding: 22px 16px 16px;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.plan-row:hover { transform: translateY(-1px); }
.plan-row.selected { border-color: var(--badge-color, var(--c-primary)); box-shadow: 0 0 0 2px color-mix(in srgb, var(--badge-color, var(--c-primary)) 20%, transparent); }
.plan-row-badge {
  position: absolute; top: -12px; left: 16px;
  background: var(--badge-color, #a04dff); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.plan-row-inner { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.plan-row-left h5.plan-row-label { margin: 0 0 4px; font-size: 18px; font-weight: 800; font-family: var(--font-display); }
.plan-row-price { margin: 0 0 4px; font-size: 14px; color: var(--c-muted); }
.plan-row-price s { color: #e83e6c; margin-right: 6px; }
.plan-row-price strong { color: var(--c-text); font-size: 22px; font-weight: 800; }
.plan-row-feature { margin: 0; font-size: 13px; color: var(--c-muted); }
.plan-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 180px; }
.per-day { margin: 0; font-size: 13px; color: var(--c-muted); display: flex; align-items: center; gap: 6px; }
.per-day s { color: var(--c-muted); }
.per-day-pill {
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-dark));
  color: #fff; padding: 3px 10px; border-radius: 999px; font-weight: 700; font-size: 13px;
}
.plan-row-cta {
  background: #e9e3df; color: var(--c-text);
  border: 0; border-radius: 999px;
  padding: 10px 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .3px; cursor: pointer; white-space: nowrap;
  transition: background .15s ease;
  font-family: var(--font-display);
}
.plan-row.selected .plan-row-cta {
  background: linear-gradient(90deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
}
.plan-row-cta:hover { filter: brightness(1.04); }

@media (max-width: 520px) {
  .plan-row-inner { grid-template-columns: 1fr; }
  .plan-row-right { align-items: stretch; min-width: 0; }
  .per-day { justify-content: flex-end; }
}

.cta-block { display: block; margin: 18px auto 8px; max-width: 100%; }

.section { background: #fff; border-radius: var(--radius-card); padding: 22px; margin: 18px 0; box-shadow: var(--shadow-card); text-align: center; }
.section h2 { font-family: var(--font-display); font-size: clamp(20px, 3vw, 26px); margin: 0 0 12px; font-weight: 700; }
.section p { color: var(--c-text); margin: 0 0 12px; }

.video-wrap { border-radius: var(--radius-sm); overflow: hidden; background: #000; aspect-ratio: 16/9; margin: 12px auto; max-width: 720px; }
.video-wrap video { width: 100%; height: 100%; display: block; object-fit: cover; }

.media-logo { display: inline-flex; align-items: baseline; gap: 4px; background: #410093; color: #fff; text-decoration: none; padding: 10px 18px; border-radius: 8px; font-weight: 800; font-size: 22px; margin-top: 8px; }
.media-logo small { font-weight: 400; font-size: 14px; opacity: .8; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; margin-top: 18px; }
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff7f4; border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); padding: 16px; display: block;
  color: var(--c-text); text-decoration: none;
  transition: transform .12s ease, border-color .15s ease;
}
.review-card:hover { transform: translateY(-2px); border-color: var(--c-primary); }
.review-stars { color: #00b67a; font-size: 18px; letter-spacing: 1px; margin-bottom: 8px; }
.review-text { font-size: 14px; line-height: 1.5; margin: 0 0 8px; }
.review-author { font-size: 13px; color: var(--c-muted); margin: 0; }

.cta-secondary { max-width: 360px; margin: 16px auto 0; display: block; }
.cta-compact { padding: 12px 18px; font-size: 15px; width: auto; }

.savings { text-align: left; }
.savings-list { list-style: none; padding: 0; margin: 12px 0 0; }
.savings-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--c-border);
  font-size: 15px;
}
.savings-list li > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--c-text);
  flex: 1;
}
.savings-list li > span:first-child::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--c-primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.5 8 7 11.5 12.5 5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.savings-list li b {
  font-weight: 800;
  color: var(--c-primary);
  font-variant-numeric: tabular-nums;
}

.savings-list .row-total,
.savings-list .row-monthly,
.savings-list .row-saved {
  border: 0;
  border-radius: 8px;
  padding: 14px;
  margin-top: 8px;
}
.savings-list .row-total { background: #fff7f4; font-weight: 700; }
.savings-list .row-monthly { background: #fff0f4; font-weight: 700; }
.savings-list .row-saved { background: #e6f9ef; font-weight: 800; font-size: 17px; }
.savings-list .row-total > span:first-child::before,
.savings-list .row-monthly > span:first-child::before,
.savings-list .row-saved > span:first-child::before { display: none; }
.savings-list .row-total b,
.savings-list .row-monthly b { color: var(--c-text); }
.savings-list .row-saved > span:first-child,
.savings-list .row-saved b { color: #1ea65f; }

.faq { text-align: left; margin-top: 12px; }
.faq details { border-bottom: 1px solid var(--c-border); padding: 14px 4px; }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 15px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--c-primary); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 10px 4px 4px; font-size: 14px; color: var(--c-muted); }

.legal { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--c-muted); margin: 14px 0; }
.legal input { margin-top: 3px; }
.checkout-row { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 12px; color: var(--c-muted); margin-top: 8px; }
.legal-footer { text-align: center; font-size: 12px; color: var(--c-muted); margin: 28px 0 100px; line-height: 1.5; }
.legal-footer a { color: var(--c-muted); text-decoration: underline; margin: 0 6px; }
.legal-mini { font-size: 11px; color: var(--c-muted); margin-top: 8px; text-align: center; line-height: 1.5; }

.sticky-gate {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff; border-top: 1px solid var(--c-border);
  padding: 12px 14px;
  box-shadow: 0 -6px 18px rgba(0,0,0,.10);
  transform: translateY(110%);
  transition: transform .35s ease;
  z-index: 50;
}
.sticky-gate.show { transform: translateY(0); }
.gate-inner {
  max-width: var(--max-quiz);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 12px;
  align-items: center;
}
@media (max-width: 600px) { .gate-inner { grid-template-columns: 1fr; } }
.gate-text { font-size: 14px; color: var(--c-text); }
.gate-form { display: flex; gap: 8px; }
.gate-form input { flex: 1; border: 1.5px solid var(--c-border); border-radius: 999px; padding: 10px 14px; font-size: 14px; outline: none; }
.gate-form input:focus { border-color: var(--c-primary); }
