/* Vida Leve 40+ — funnel
   Premium wellness · mobile-first · pure CSS. */

:root {
  /* Surface */
  --cream: #F8F1E5;
  --cream-deep: #ECDFC9;
  --card: #FFFDF8;

  /* Text */
  --foreground: #1F1414;
  --foreground-soft: #3A2A28;
  --muted: #5A4B47;
  --muted-soft: #7C6B66;

  /* Brand */
  --burgundy: #5A1B2A;
  --burgundy-soft: #7C2D3F;
  --burgundy-ink: #3B1119;
  --blush: #F1DCD9;
  --blush-deep: #E8C9C5;
  --blush-edge: #D9B6B0;
  --gold: #C8A14A;
  --gold-deep: #A87E2C;

  /* Lines */
  --border: #E6D8C6;
  --border-strong: #CDB89A;
  --border-burgundy: rgba(90, 27, 42, 0.45);

  /* Geometry */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-soft: 0 1px 2px rgba(90, 27, 42, .05), 0 6px 16px rgba(90, 27, 42, .06);
  --shadow-card: 0 1px 2px rgba(90, 27, 42, .05), 0 14px 32px -10px rgba(90, 27, 42, .14);
  --shadow-elev: 0 2px 4px rgba(90, 27, 42, .06), 0 20px 40px -14px rgba(90, 27, 42, .18);
  --shadow-premium: inset 0 1px 0 rgba(255,255,255,.55), 0 2px 6px rgba(90,27,42,.12), 0 18px 36px -10px rgba(90,27,42,.30);

  --gradient-premium: linear-gradient(135deg, #6D2032, #3E121C);
  --gradient-blush: linear-gradient(180deg, #F5E2DE, #EAD0CB);
  --gradient-cream: linear-gradient(180deg, #FBF4E8, #F2E5CF);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { min-height: 100dvh; }

h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--foreground);
  margin: 0;
}

p { margin: 0; color: var(--foreground-soft); }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; color: var(--foreground); }

/* ---------- Shell ---------- */
.shell {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 22px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
}

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  padding: 22px 0 18px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 14px;
}
.topbar-spacer { display: block; width: 42px; height: 1px; }

.back {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  background: var(--card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease, border-color .15s ease;
}
.back:hover { border-color: var(--border-strong); }
.back:active { transform: scale(0.94); }
.back[hidden] { visibility: hidden; }

.progress { min-width: 0; }
.progress[hidden] { visibility: hidden; }

.progress-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress-track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--cream-deep);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(90, 27, 42, 0.06);
}
.progress-fill {
  height: 100%;
  background: var(--gradient-premium);
  border-radius: var(--radius-pill);
  position: relative;
  transition: width .45s cubic-bezier(.22,.61,.36,1);
}
.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.30), rgba(255,255,255,0) 60%);
  border-radius: inherit;
}

/* ---------- Screen ---------- */
.screen {
  display: flex;
  flex-direction: column;
  padding: 22px 0 8px;
  animation: fade .35s ease;
}
@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.medallion {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--blush-deep);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 8px 18px -10px rgba(90,27,42,.4);
}

.eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.eyebrow .gold { color: var(--gold-deep); }

/* ---------- Question / subtitle ---------- */
.question {
  font-size: 28px;
  line-height: 1.16;
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
  color: var(--foreground);
}

.subtitle {
  margin-top: 12px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--foreground-soft);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.helper {
  margin-top: 8px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Standard text options ---------- */
.options {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: border-color .15s ease, background-color .15s ease,
              transform .12s ease, box-shadow .2s ease;
  color: var(--foreground);
}
.option:hover { border-color: var(--border-strong); }
.option:active { transform: scale(0.995); }

.option .opt-body { flex: 1; min-width: 0; }
.option .opt-label {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}
.option .opt-emoji {
  font-size: 22px;
  margin-right: 4px;
  flex: none;
}
.option .opt-hint {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.option .check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  border: 1.8px solid var(--border-strong);
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--card);
  transition: background-color .15s ease, border-color .15s ease;
}
.option.multi .check { border-radius: 9px; }

.option.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-card);
}
.option.selected .opt-label { color: var(--burgundy-ink); }
.option.selected .check {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #FFFDF8;
}

/* Two-option grid for quote answers */
.options-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.options-quote .option {
  padding: 16px 14px;
  justify-content: center;
  text-align: center;
}
.options-quote .opt-body { flex: 0 0 auto; }
.options-quote .check {
  margin-left: 10px;
  width: 22px;
  height: 22px;
}

/* ---------- IMAGE OPTION GRID ---------- */
.opt-img-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.opt-img-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.opt-img-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease,
              transform .12s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.opt-img-card:hover { border-color: var(--border-strong); }
.opt-img-card:active { transform: scale(0.97); }

.opt-img-card.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  border-width: 2px;
  padding: 13px 9px 11px;
  box-shadow: var(--shadow-card);
}

.opt-img-card .card-img {
  width: 72px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy-soft);
  transition: color .15s ease;
}
.opt-img-card.selected .card-img {
  color: var(--burgundy);
}

.opt-img-card .card-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 2px;
}

.opt-img-card .card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}
.opt-img-card.selected .card-label { color: var(--burgundy-ink); }

.opt-img-card .card-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  background: var(--cream);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 10px;
}
.opt-img-card.selected .card-check {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #FFFDF8;
}

/* ---------- IMAGE OPTION ROWS (list style, like Reverse Health) ---------- */
.opt-img-row-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.opt-img-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.opt-img-row:hover { border-color: var(--border-strong); }
.opt-img-row:active { transform: scale(0.99); }
.opt-img-row.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  border-width: 2px;
  box-shadow: var(--shadow-card);
}
.opt-img-row .row-radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: transparent;
  transition: border-color .15s, background .15s;
}
.opt-img-row.selected .row-radio {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: #fff;
}
.opt-img-row .row-label {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.3;
}
.opt-img-row.selected .row-label { color: var(--burgundy-ink); font-weight: 600; }
.opt-img-row .row-img-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
}
.opt-img-row .row-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opt-img-row .row-img-wrap svg {
  width: 44px;
  height: 44px;
  color: var(--burgundy-soft);
  transition: color .15s;
}
.opt-img-row.selected .row-img-wrap svg { color: var(--burgundy); }

/* ---------- INFO SCREEN PHOTO ---------- */
.info-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 16px 0;
  box-shadow: var(--shadow-card);
}
.info-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

/* ---------- COUNTER PHOTO (social proof) ---------- */
.counter-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 18px 0 14px;
  box-shadow: var(--shadow-card);
}
.counter-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---------- THANKS PHOTO ---------- */
.thanks-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 14px 0 18px;
  box-shadow: var(--shadow-card);
}
.thanks-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---------- QUOTE SCREEN PHOTO ---------- */
.quote-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 0 0 16px;
  box-shadow: var(--shadow-card);
}
.quote-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ---------- BMI HORIZONTAL BAR ---------- */
.bmi-bar-wrap {
  margin: 20px 0 12px;
}
.bmi-bar-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(to right, #3b82f6 0%, #22c55e 30%, #f59e0b 63%, #ef4444 100%);
  margin-bottom: 8px;
}
.bmi-bar-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--foreground);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.bmi-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  margin-top: 6px;
}

/* ---------- RESULT WEEK (7-day estimate) ---------- */
.result-week-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  margin-top: 8px;
}
.result-week-bar-wrap {
  position: relative;
  margin: 18px 0 8px;
}
.result-week-bar {
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(to right, #86efac, #16a34a);
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}
.result-week-bar-tick {
  width: 1.5px;
  height: 16px;
  background: rgba(255,255,255,.4);
}
.result-week-bubble {
  position: absolute;
  top: -42px;
  right: 0;
  background: var(--card);
  border: 2px solid #3b82f6;
  border-radius: 22px;
  padding: 5px 14px;
  font-size: 18px;
  font-weight: 800;
  color: #1d4ed8;
  font-family: 'Fraunces', Georgia, serif;
  box-shadow: var(--shadow-soft);
}
.result-week-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: var(--card);
  border-right: 2px solid #3b82f6;
  border-bottom: 2px solid #3b82f6;
  transform: rotate(45deg);
}
.result-week-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted-soft);
  font-weight: 600;
  margin-top: 8px;
}

/* ---------- MEDIA LOGOS ---------- */
.media-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 8px;
  margin: 20px 0;
}
.media-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.media-logo-item span {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--muted-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.media-coach-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow-card);
}
.media-coach-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Large emoji options (3-col) */
.opt-emoji-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.opt-emoji-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, transform .12s ease;
  box-shadow: var(--shadow-soft);
}
.opt-emoji-card:hover { border-color: var(--border-strong); }
.opt-emoji-card:active { transform: scale(0.97); }
.opt-emoji-card.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  border-width: 2px;
}
.opt-emoji-card .ec-emoji { font-size: 34px; line-height: 1; }
.opt-emoji-card .ec-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.25;
}
.opt-emoji-card.selected .ec-label { color: var(--burgundy-ink); }

/* ---------- UNIT TOGGLE ---------- */
.unit-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 4px;
}
.unit-toggle {
  display: inline-flex;
  background: var(--cream-deep);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 2px;
}
.unit-toggle button {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.unit-toggle button.active {
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
}

/* Height imperial sub-fields */
.height-imperial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* ---------- Number inputs ---------- */
.field-label {
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-align: center;
}

.num-field {
  margin-top: 12px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  transition: border-color .15s ease;
}
.num-field:focus-within { border-color: var(--burgundy); }

.num-field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 26px;
  font-weight: 600;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
  padding: 4px 0;
  min-width: 0;
  appearance: textfield;
  font-family: "Fraunces", Georgia, serif;
}
.num-field input::-webkit-outer-spin-button,
.num-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.num-field .suffix {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 10px;
}

/* ---------- Quote / statement screens ---------- */
.statement-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 14px;
}

.statement-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.18;
  text-align: center;
  color: var(--foreground);
  max-width: 380px;
  margin: 0 auto;
  letter-spacing: -0.018em;
}

.quote-card {
  margin-top: 22px;
  background: var(--gradient-blush);
  border: 1.5px solid var(--blush-edge);
  border-radius: var(--radius-xl);
  padding: 28px 24px 26px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
}
.quote-card .quote-deco {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--card);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-soft);
}
.quote-card .quote-text {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  line-height: 1.32;
  color: var(--burgundy-ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.quote-card .quote-text::before { content: "\201C"; margin-right: 2px; }
.quote-card .quote-text::after  { content: "\201D"; margin-left: 2px; }

.helper-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Quote screen row buttons (Sim / Não) */
.options-quote-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.option-quote-btn {
  flex: 1;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--card);
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  box-shadow: var(--shadow-soft);
}
.option-quote-btn.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  border-width: 2px;
  color: var(--burgundy-ink);
}

/* BMI note */
.bmi-note {
  display: flex;
  gap: 10px;
  background: #fff8e7;
  border: 1px solid #f59e0b33;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-top: 10px;
  align-items: flex-start;
}
.bmi-note-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.bmi-note p { font-size: 13px; line-height: 1.55; color: var(--foreground-soft); margin: 0; }

/* ---------- Lesson / info screens ---------- */
.lesson-card {
  margin-top: 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.lesson-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--gradient-blush);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid var(--blush-edge);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.lesson-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.lesson-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--foreground);
  margin: 0;
}
.lesson-body {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--foreground-soft);
}
.lesson-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}
.lesson-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--foreground);
  font-weight: 500;
}
.lesson-tick {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--blush-deep);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.proof-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.stars {
  color: var(--gold-deep);
  letter-spacing: 3px;
  font-size: 13px;
}

/* ---------- SOCIAL PROOF COUNTER ---------- */
.counter-card {
  margin-top: 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.counter-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--foreground-soft);
}
.counter-divider {
  width: 48px;
  height: 2px;
  background: var(--gradient-premium);
  margin: 18px auto;
  border-radius: var(--radius-pill);
}
.counter-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}
.counter-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--foreground);
  font-weight: 500;
}

/* ---------- Result ---------- */
.result-summary {
  margin-top: 24px;
  background: var(--gradient-blush);
  border: 1.5px solid var(--blush-edge);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.summary-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  padding: 6px 6px 12px;
}
.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  box-shadow: var(--shadow-soft);
}
.tile .lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--burgundy);
}
.tile .val {
  margin-top: 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}

/* ---------- BMI GAUGE ---------- */
.bmi-section {
  margin-top: 20px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.bmi-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.bmi-gauge-svg {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto;
}
.bmi-value-row {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.bmi-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1;
  letter-spacing: -0.02em;
}
.bmi-category {
  font-size: 14px;
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.bmi-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: 4px;
}
.bmi-labels span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- WEIGHT CHART ---------- */
.chart-card {
  margin-top: 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 18px 16px;
  box-shadow: var(--shadow-card);
}
.chart-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--burgundy);
  text-align: center;
  margin-bottom: 16px;
}
.chart-svg { width: 100%; display: block; }
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--foreground-soft);
}
.chart-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.result-card {
  margin-top: 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-card);
}
.result-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--foreground);
}
.bar {
  margin-top: 20px;
  height: 10px;
  background: var(--cream-deep);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(90, 27, 42, 0.06);
}
.bar > div {
  height: 100%;
  background: var(--gradient-premium);
  border-radius: var(--radius-pill);
}
.bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.bar-meta strong { color: var(--foreground); }

.benefits {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.benefit {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 8px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: var(--shadow-soft);
}
.benefit .ico {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--blush-deep);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
  padding: 0 6px;
}

/* ---------- Email ---------- */
.email-field {
  margin-top: 24px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  transition: border-color .15s ease;
}
.email-field:focus-within { border-color: var(--burgundy); }
.email-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--foreground);
}
.email-field input::placeholder { color: #B7A89E; }

.privacy {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

/* ---------- Plans ---------- */
.plans { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.plan {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .2s ease;
}
.plan:hover { border-color: var(--border-strong); }
.plan .plan-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
}
.plan .plan-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
.plan .plan-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1;
  letter-spacing: -0.01em;
}
.plan .plan-price-suffix {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-family: "Inter", sans-serif;
}
.plan .badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--gradient-premium);
  color: #FFFDF8;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px -2px rgba(90,27,42,.35);
}
.plan.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-card);
}
.plan .radio {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  border: 1.8px solid var(--border-strong);
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--card);
}
.plan.selected .radio {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #FFFDF8;
}

/* ---------- Features + FAQ ---------- */
.features-card {
  margin-top: 22px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
}
.features-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
}
.features-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--foreground);
}
.features-list .dot {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--blush-deep);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  flex: none;
}

.section-title {
  margin-top: 26px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-align: center;
}

.faq {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq details {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px 18px;
  box-shadow: var(--shadow-soft);
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--foreground);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--burgundy);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p {
  padding: 0 0 16px;
  font-size: 13.5px;
  color: var(--foreground-soft);
  line-height: 1.6;
}

/* ---------- Thank-you / centered stage ---------- */
.center-stage {
  margin-top: 24px;
  text-align: center;
}
.center-stage h1 {
  font-size: 28px;
  line-height: 1.18;
  color: var(--foreground);
}
.center-stage p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--foreground-soft);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Loading dots */
.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.loading-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.3;
  animation: dot-pulse 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: .18s; }
.loading-dots span:nth-child(3) { animation-delay: .36s; }
@keyframes dot-pulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

.analysis-items {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.analysis-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground-soft);
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.analysis-item .ai-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blush-deep);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  flex: none;
  animation: ai-check 3s ease-in-out forwards;
}
@keyframes ai-check {
  0%, 70% { opacity: 0.4; }
  100% { opacity: 1; background: var(--burgundy); color: #FFFDF8; }
}
.analysis-item:nth-child(2) .ai-dot { animation-delay: .5s; }
.analysis-item:nth-child(3) .ai-dot { animation-delay: 1s; }
.analysis-item:nth-child(4) .ai-dot { animation-delay: 1.5s; }

/* ---------- Footer / CTA ---------- */
.footer {
  margin-top: 28px;
  padding: 6px 0 0;
  text-align: center;
  background: transparent;
}

.cta {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--gradient-premium);
  color: #FFFDF8;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-premium);
  transition: transform .12s ease, opacity .12s ease, filter .15s ease;
}
.cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (hover: hover) {
  .cta:not(:disabled):hover { filter: brightness(1.06); }
}
.cta:not(:disabled):active { transform: scale(0.99); }

.disclaimer-sm {
  max-width: 500px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 380px) {
  .shell { padding: 0 18px; }
  .question { font-size: 24px; }
  .statement-title { font-size: 23px; }
  .quote-card .quote-text { font-size: 20px; }
  .option { padding: 16px 16px; }
  .option .opt-label { font-size: 14.5px; }
  .num-field input { font-size: 23px; }
  .lesson-title { font-size: 22px; }
  .center-stage h1 { font-size: 25px; }
  .opt-img-card .card-img { width: 60px; height: 68px; }
  .bmi-number { font-size: 34px; }
  .counter-number { font-size: 42px; }
}

@media (min-width: 520px) {
  .shell { padding: 0 28px; padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 32px); }
  .question { font-size: 30px; max-width: 420px; }
  .statement-title { font-size: 28px; max-width: 420px; }
  .quote-card { padding: 32px 28px; }
  .quote-card .quote-text { font-size: 24px; }
  .lesson-card { padding: 28px 26px; }
  .lesson-title { font-size: 26px; }
  .opt-img-grid { gap: 14px; }
  .opt-img-card .card-img { width: 80px; height: 90px; }
}

@media (prefers-reduced-motion: reduce) {
  .screen, .progress-fill, .cta, .option, .plan, .back,
  .loading-dots span, .analysis-item .ai-dot { animation: none !important; transition: none !important; }
}

/* ============================================
   OFFER PAGE
   ============================================ */

body.offer-page .topbar { display: none; }
body.offer-page .shell { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 24px); }
body.offer-page .screen { padding-top: 0; animation: none; }
body.offer-page .footer { display: none; }

@keyframes vlFooterSlide {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 719px) {
  body.offer-page.sticky-cta-on .footer {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    margin: 0;
    padding: 14px 22px calc(env(safe-area-inset-bottom, 0px) + 12px);
    background: linear-gradient(to top,
      var(--cream) 70%,
      rgba(248, 241, 229, 0.94) 88%,
      rgba(248, 241, 229, 0) 100%);
    box-shadow: 0 -12px 28px -10px rgba(90, 27, 42, 0.16);
    animation: vlFooterSlide .28s cubic-bezier(.22,.61,.36,1);
  }
  body.offer-page.sticky-cta-on .shell {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 116px);
  }
  body.offer-page.sticky-cta-on .footer .disclaimer-sm {
    margin-top: 6px;
    font-size: 10.5px;
  }
}

.offer-root {
  display: flex;
  flex-direction: column;
}

/* ---- Urgency strip ---- */
.urgency-strip {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 -22px;
  padding: 14px 22px;
  background: rgba(248, 241, 229, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--blush-edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 6px 18px -12px rgba(90, 27, 42, 0.18);
}
.urgency-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.urgency-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #14B26C;
  box-shadow: 0 0 0 0 rgba(20, 178, 108, 0.5);
  animation: vlPulse 2.2s infinite;
  flex: none;
}
@keyframes vlPulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 178, 108, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(20, 178, 108, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 178, 108, 0); }
}
.urgency-label { display: flex; flex-direction: column; min-width: 0; }
.urgency-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.urgency-time {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-top: 3px;
  letter-spacing: -0.01em;
}
.urgency-cta {
  flex: none;
  background: var(--gradient-premium);
  color: #FFFDF8;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px -8px rgba(90, 27, 42, 0.45);
  cursor: pointer;
  transition: filter .15s ease, transform .12s ease;
}
@media (hover: hover) { .urgency-cta:hover { filter: brightness(1.06); } }
.urgency-cta:active { transform: scale(0.97); }

/* ---- Offer hero ---- */
.offer-hero { margin-top: 26px; text-align: center; }
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-blush);
  border: 1px solid var(--blush-edge);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.offer-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  line-height: 1.12;
  color: var(--foreground);
  max-width: 420px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}
.offer-hero p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--foreground-soft);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Discount strip ---- */
.discount-strip {
  margin-top: 26px;
  background: linear-gradient(135deg, #15A85F, #0F7E48);
  color: #FFFDF8;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 14px 32px -12px rgba(15, 126, 72, 0.45);
}
.discount-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.discount-title .timer { font-variant-numeric: tabular-nums; font-weight: 700; margin-left: 4px; }
.discount-sub { margin-top: 6px; font-size: 13px; opacity: 0.92; line-height: 1.5; }

/* ---- Plan section ---- */
.plan-section { margin-top: 32px; }
.plan-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  line-height: 1.16;
  color: var(--foreground);
  text-align: center;
  letter-spacing: -0.02em;
}
.plan-section p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--foreground-soft);
  text-align: center;
  line-height: 1.55;
}
.plans-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 18px; }
.plan-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .15s ease, background-color .15s ease, transform .12s ease, box-shadow .2s ease;
}
.plan-card:hover { border-color: var(--border-strong); }
.plan-card:active { transform: scale(0.997); }
.plan-card.selected {
  background: var(--gradient-blush);
  border-color: var(--burgundy);
  border-width: 2px;
  padding: 21px 21px 19px;
  box-shadow: var(--shadow-elev);
}
.plan-card .plan-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.plan-card .plan-meta { min-width: 0; }
.plan-card .plan-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.plan-card .plan-sub { margin-top: 5px; font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.plan-card .plan-pricing { text-align: right; flex: none; }
.plan-card .plan-old { font-size: 12.5px; color: var(--muted); text-decoration: line-through; }
.plan-card .plan-price-main {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
}
.plan-card .plan-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-card .plan-price-suffix { font-size: 13px; font-weight: 500; color: var(--muted); }
.plan-card .plan-features { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.plan-card .plan-features li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
}
.plan-card .plan-features .ft-dot {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: var(--blush-deep);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  flex: none;
}
.plan-card.selected .plan-features .ft-dot { background: var(--burgundy); color: #FFFDF8; }
.plan-card .plan-check {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--cream);
  border: 1.8px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--card);
  transition: background-color .15s ease, border-color .15s ease;
}
.plan-card.selected .plan-check { background: var(--burgundy); border-color: var(--burgundy); color: #FFFDF8; }
.plan-card .plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-premium);
  color: #FFFDF8;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 16px -4px rgba(90,27,42,.45);
  white-space: nowrap;
}
.plan-card .plan-badge.gold {
  background: linear-gradient(135deg, #D6AC5E, #A87E2C);
  box-shadow: 0 8px 16px -4px rgba(168,126,44,.45);
}
@media (min-width: 720px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan-card { gap: 14px; }
}

/* ---- Bonus ---- */
.bonus-card {
  margin-top: 36px;
  background: linear-gradient(135deg, #FBEFD3, #ECD8A6);
  border: 1.5px solid #D9BD79;
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  box-shadow: 0 16px 32px -14px rgba(168, 126, 44, 0.4);
}
.bonus-head { display: flex; align-items: center; gap: 14px; }
.bonus-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: #FFFDF8;
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.bonus-eyebrow { font-size: 10.5px; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold-deep); }
.bonus-title { margin-top: 2px; font-family: "Fraunces", Georgia, serif; font-size: 19px; font-weight: 600; color: var(--burgundy-ink); letter-spacing: -0.01em; }
.bonus-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.bonus-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; font-weight: 500; color: var(--burgundy-ink); line-height: 1.4; }
.bonus-list .bn-dot { width: 24px; height: 24px; border-radius: var(--radius-pill); background: #FFFDF8; color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.bonus-note { margin-top: 14px; font-size: 12.5px; color: var(--burgundy-ink); opacity: 0.78; text-align: center; }

/* ---- Value stack ---- */
.value-stack { margin-top: 36px; }
.value-stack h2 { font-family: "Fraunces", Georgia, serif; font-size: 24px; line-height: 1.18; color: var(--foreground); text-align: center; letter-spacing: -0.02em; max-width: 380px; margin: 0 auto; }
.value-grid { margin-top: 20px; display: grid; grid-template-columns: 1fr; gap: 12px; }
.value-item { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-soft); display: flex; gap: 14px; align-items: flex-start; }
.value-item .vi-icon { width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--gradient-blush); color: var(--burgundy); display: grid; place-items: center; flex: none; border: 1px solid var(--blush-edge); }
.value-item .vi-text { min-width: 0; }
.value-item .vi-title { font-family: "Inter", sans-serif; font-size: 14.5px; font-weight: 700; color: var(--foreground); line-height: 1.3; }
.value-item .vi-body { margin-top: 4px; font-size: 13.5px; line-height: 1.55; color: var(--foreground-soft); }
@media (min-width: 620px) { .value-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Trust ---- */
.trust-card { margin-top: 36px; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 22px 20px; box-shadow: var(--shadow-card); }
.trust-card h2 { font-family: "Fraunces", Georgia, serif; font-size: 20px; line-height: 1.2; text-align: center; color: var(--foreground); letter-spacing: -0.01em; }
.trust-grid { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 10px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--foreground); line-height: 1.3; }
.trust-item .ti-dot { width: 30px; height: 30px; border-radius: var(--radius-pill); background: var(--blush-deep); color: var(--burgundy); display: grid; place-items: center; flex: none; }
.trust-disclaimer { margin-top: 20px; font-size: 12px; color: var(--muted); line-height: 1.55; text-align: center; }

/* ---- Testimonials ---- */
.testimonials { margin-top: 36px; }
.testimonials h2 { font-family: "Fraunces", Georgia, serif; font-size: 22px; text-align: center; color: var(--foreground); letter-spacing: -0.02em; }
.testimonial-grid { margin-top: 20px; display: grid; gap: 12px; }
.testimonial { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-soft); }
.testimonial-stars { color: var(--gold-deep); font-size: 13px; letter-spacing: 3px; }
.testimonial-quote { margin-top: 10px; font-family: "Fraunces", Georgia, serif; font-size: 15.5px; line-height: 1.5; color: var(--foreground); font-style: italic; }
.testimonial-quote::before { content: "\201C"; margin-right: 1px; }
.testimonial-quote::after { content: "\201D"; margin-left: 1px; }
.testimonial-author { margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 34px; height: 34px; border-radius: var(--radius-pill); background: var(--gradient-blush); color: var(--burgundy); display: grid; place-items: center; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; flex: none; border: 1px solid var(--blush-edge); }
.testimonial-name { font-size: 12.5px; font-weight: 700; color: var(--foreground); }
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- FAQ offer ---- */
.offer-faq { margin-top: 36px; }
.offer-faq h2 { font-family: "Fraunces", Georgia, serif; font-size: 22px; text-align: center; color: var(--foreground); letter-spacing: -0.02em; }
.offer-faq .faq { margin-top: 18px; }

/* ---- Final CTA block ---- */
.final-cta-block {
  margin-top: 36px;
  background: var(--gradient-premium);
  color: #FFFDF8;
  border-radius: var(--radius-xl);
  padding: 32px 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-elev);
  position: relative;
  overflow: hidden;
}
.final-cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(200, 161, 74, 0.18), transparent 60%);
  pointer-events: none;
}
.final-cta-block > * { position: relative; }
.final-cta-block h2 { font-family: "Fraunces", Georgia, serif; font-size: 26px; line-height: 1.18; color: #FFFDF8; letter-spacing: -0.02em; }
.final-cta-block p { margin-top: 12px; font-size: 14.5px; color: rgba(255, 253, 248, 0.90); line-height: 1.55; max-width: 360px; margin-left: auto; margin-right: auto; }
.final-btn { margin-top: 22px; display: inline-flex; align-items: center; justify-content: center; background: #FFFDF8; color: var(--burgundy); font-weight: 800; font-size: 15px; padding: 16px 30px; border-radius: var(--radius-pill); border: 0; box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.28); letter-spacing: 0.02em; cursor: pointer; transition: filter .15s ease, transform .12s ease; }
@media (hover: hover) { .final-btn:hover { filter: brightness(1.02); } }
.final-btn:active { transform: scale(0.99); }
.final-small { margin-top: 14px; font-size: 12px; color: rgba(255, 253, 248, 0.78); }

/* ---- Mobile tightening ---- */
@media (max-width: 380px) {
  .urgency-strip { padding: 12px 18px; margin: 0 -18px; }
  .urgency-time { font-size: 20px; }
  .urgency-cta { padding: 11px 14px; font-size: 12px; }
  .offer-hero h1 { font-size: 26px; }
  .plan-card { padding: 20px 18px 18px; }
  .plan-card .plan-price { font-size: 26px; }
  .plan-section h2 { font-size: 23px; }
  .discount-title { font-size: 17px; }
  .final-cta-block h2 { font-size: 23px; }
}

@media (min-width: 520px) {
  body.offer-page .shell { max-width: 720px; padding: 0 28px; padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 160px); }
  .urgency-strip { margin: 0 -28px; padding: 16px 28px; }
  .offer-hero { margin-top: 32px; }
  .offer-hero h1 { font-size: 34px; }
}
