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

:root {
  --plum: #7C3AED;
  --plum-dark: #5B21B6;
  --plum-light: #E9D5FF;
  --plum-bg: #F5F0FF;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --sage: #10B981;
  --sage-light: #D1FAE5;
  --dark: #1E1B4B;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --trustpilot: #00B67A;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-800);
  background: var(--gray-50);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== TRUSTPILOT BAR ===== */
.trustpilot-bar {
  background: var(--trustpilot);
  color: var(--white);
  text-align: center;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
}
.trustpilot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tp-label { font-weight: 700; }
.tp-stars { display: flex; align-items: center; }
.tp-stars svg { display: block; }
.tp-score { font-weight: 700; }
.tp-based { opacity: 0.85; }

/* ===== TRUST BADGES BAR ===== */
.trust-badges-bar {
  background: var(--gold-light);
  color: var(--dark);
  text-align: center;
  padding: 5px 6px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.tb-item svg { width: 12px; height: 12px; flex-shrink: 0; }
.tb-sep { color: var(--gray-300); font-size: 12px; }

/* ===== HEADER BAR ===== */
.header-bar {
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-bar-light {
  background: var(--white);
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.header-bar-light .back-btn {
  color: var(--gray-700);
}
.header-bar-light .progress-text {
  color: var(--gray-600);
}
.back-btn {
  background: none;
  border: none;
  padding: 4px;
  color: var(--white);
  display: flex;
  align-items: center;
  visibility: hidden;
  width: 30px;
}
.progress-text {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.3s;
  text-align: center;
}
.progress-text-spacer {
  width: 30px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar-track {
  height: 3px;
  background: var(--gray-200);
  position: sticky;
  top: 50px;
  z-index: 99;
}
.progress-bar-fill {
  height: 100%;
  background: var(--plum);
  transition: width 0.5s ease;
}

/* ===== QUIZ CONTAINER ===== */
.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
.quiz-container.results-wide {
  max-width: 820px;
}

/* ===== SCREEN TRANSITIONS ===== */
.screen {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 20px 0 24px;
}
.screen.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.screen.exit {
  opacity: 0;
  transform: translateY(-16px);
}

.screen-heading {
  font-size: 28px;
  text-align: center;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ===== ANSWER BUTTONS (Sema 7 style) ===== */
.answers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.answer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 18px;
  color: var(--gray-800);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  width: 100%;
}
.answer-btn:hover {
  border-color: var(--plum);
  background: var(--plum-bg);
}
.answer-btn:active,
.answer-btn.selected {
  border-color: var(--plum);
  background: var(--plum-light);
  transform: scale(0.98);
}
.answer-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 500;
}
.answer-text small {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 400;
}
.answer-arrow {
  font-size: 28px;
  color: var(--gray-400);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
}

/* ===== CONTINUE BUTTON ===== */
.continue-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--plum);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 21px;
  font-weight: 700;
  margin-top: 24px;
  transition: background 0.2s, transform 0.15s;
}
.continue-btn:hover { background: var(--plum-dark); }
.continue-btn:active { transform: scale(0.98); }

/* ===== INPUT SCREENS ===== */
.unit-toggle {
  display: flex;
  gap: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 0 auto 24px;
  max-width: 240px;
}
.toggle-btn {
  flex: 1;
  padding: 10px 16px;
  background: var(--white);
  border: none;
  font-size: 19px;
  font-weight: 600;
  color: var(--gray-500);
  transition: background 0.2s, color 0.2s;
}
.toggle-btn.active {
  background: var(--plum);
  color: var(--white);
}

.input-group { margin-bottom: 16px; }
.input-group label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.quiz-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 22px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.quiz-input:focus {
  outline: none;
  border-color: var(--plum);
}
.quiz-input.shake {
  animation: shake 0.4s ease;
  border-color: var(--red);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.input-row { display: flex; gap: 12px; }
.input-half { flex: 1; }

.hidden { display: none !important; }

/* ===== BODY TYPE ===== */
.body-type-grid {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.body-type-card {
  flex: 1;
  max-width: 160px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 10px 14px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.body-type-card:hover {
  border-color: var(--plum);
  background: var(--plum-bg);
}
.body-type-card.selected {
  border-color: var(--plum);
  background: var(--plum-light);
  transform: scale(0.97);
}
.body-type-img {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.body-type-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 4px;
}
.body-type-arrow {
  font-size: 20px;
  color: var(--gray-400);
}

/* ===== INTERSTITIALS ===== */
.interstitial { text-align: center; padding: 8px 0; }

/* Styled interstitial (Sema7-style) */
.interstitial-styled {
  text-align: left;
  padding: 0;
}
.inter-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.inter-content {
  margin-bottom: 0;
}
.inter-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 8px;
}
.inter-highlight {
  color: var(--plum);
}
.inter-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0;
}
.inter-bottom {
  text-align: center;
}
.inter-cta {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 24px;
  padding: 16px 40px;
  font-size: 18px;
}
.inter-reassure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--plum-bg);
  border-radius: var(--radius);
  padding: 16px;
  border-left: 3px solid var(--plum);
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.inter-reassure-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.inter-reassure-text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.5;
}
.inter-transform {
  margin-top: 0;
}
.inter-transform-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.inter-transform-img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}
.inter-transform-label {
  padding: 8px 16px;
  text-align: center;
}
.inter-transform-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 2px;
}
.inter-transform-result {
  font-size: 16px;
  color: var(--plum);
  font-weight: 600;
}

/* Legacy (keep for other interstitials) */
.social-proof-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 8px;
}
.social-proof-text {
  font-size: 22px;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.before-after-img {
  max-width: 320px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.as-seen-in { margin-bottom: 24px; }
.as-seen-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.media-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table { margin-bottom: 20px; overflow-x: auto; }
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 17px;
}
.comparison-table th,
.comparison-table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table thead th {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
}
.col-rejuvit { color: var(--plum); }
.col-diet { color: var(--gray-500); }
.feature-name { font-weight: 600; color: var(--gray-700); }
.cell-check { color: var(--sage); font-weight: 500; }
.cell-cross { color: var(--gray-400); }
.icon-check { color: var(--sage); font-weight: 700; }
.icon-cross { color: var(--red); }

/* ===== LOADER ===== */
.loader-checklist {
  max-width: 340px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.loader-item.done { opacity: 1; }
.loader-item.done .loader-check svg circle {
  stroke: var(--sage);
  fill: var(--sage-light);
}
.loader-item.done .loader-check::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  color: var(--sage);
}
.loader-check {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.loader-text {
  font-size: 19px;
  color: var(--gray-600);
}
.loader-bar {
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--plum);
  border-radius: 2px;
  width: 0;
  transition: width 0.5s ease;
}

/* ===== RESULTS PAGE ===== */
.results-page { padding-bottom: 40px; }

/* Hero: two-column on desktop, stacked on mobile */
.results-hero-row {
  margin-bottom: 28px;
}
.results-hero-text {
  text-align: center;
}
.results-hero-visual {
  margin-top: 20px;
}
.results-eyebrow {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 12px;
  font-weight: 600;
}
.results-title {
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.results-highlight {
  color: var(--plum);
  font-weight: 700;
}
.results-desc {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
}
.cta-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--plum);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.cta-btn:hover { background: var(--plum-dark); }
.cta-btn:active { transform: scale(0.98); }
.cta-btn-large {
  padding: 18px;
  font-size: 20px;
}
.results-cta {
  margin-bottom: 24px;
}

/* Projection Card */
.projection-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px 12px;
  box-shadow: var(--shadow);
}
.projection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.proj-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.proj-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
  font-weight: 600;
}
.proj-weight {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.proj-weight-target {
  color: var(--sage);
}
.proj-date {
  font-size: 15px;
  color: var(--gray-400);
}
.proj-diff-badge {
  background: var(--plum-bg);
  color: var(--plum);
  font-size: 18px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.projection-chart {
  border-top: 1px solid var(--gray-200);
  padding-top: 8px;
}
.proj-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Doctor Note */
.doctor-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--plum-bg);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 28px;
  border-left: 4px solid var(--plum);
}
.doctor-avatar-wrap {
  flex-shrink: 0;
}
.doctor-note-text {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Results Metrics (BMI + Metabolic Age) */
.results-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.metric-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.metric-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 8px;
  font-weight: 600;
}
.metric-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-sub {
  font-size: 17px;
  color: var(--gray-500);
}
.metric-compare {
  font-size: 16px;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.4;
  display: none;
}
.metric-compare strong {
  color: var(--plum);
  font-weight: 700;
}
.metric-warning {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* BMI Scale Blocks */
.bmi-scale-blocks {
  display: flex;
  gap: 3px;
  margin: 12px 0 4px;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.bmi-block {
  flex: 1;
  border-radius: 3px;
}
.bmi-normal { background: #10B981; }
.bmi-overweight { background: #F59E0B; }
.bmi-obese { background: #EF4444; }
.bmi-scale-pos {
  position: relative;
  height: 12px;
  margin-bottom: 4px;
}
.bmi-marker-block {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--dark);
  transform: translateX(-50%);
  transition: left 0.5s ease;
}
.bmi-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64748B;
  letter-spacing: 0.2px;
  padding: 0 2px;
}
.bmi-scale-labels span {
  flex: 1;
  text-align: center;
}

/* Results Stats Row */
.results-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.stat-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  font-weight: 600;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

/* Body Type Insight */
.body-type-insight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--plum-light);
  border-left: 4px solid var(--plum);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.bti-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.bti-label {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 6px;
}
.bti-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700);
}

/* Results Transformation (two-column on desktop) */
.results-transform-row {
  margin-bottom: 28px;
}
.results-transform-text {
  margin-bottom: 20px;
}
.results-transform-visual {
  position: relative;
}
.results-transform-desc {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Weekly Chart */
.weekly-chart {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 12px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.weekly-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Monthly Loss Badge */
.monthly-loss-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  background: var(--sage-light);
  border-radius: 24px;
  padding: 8px 16px;
}
.loss-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}
.loss-label {
  font-size: 17px;
  color: var(--gray-600);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 28px;
  text-align: center;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ===== PRODUCT RECOMMENDATION ===== */
.product-recommendation {
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.offer-countdown-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 18px;
  font-weight: 600;
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-unit strong {
  font-size: 26px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1;
}
.countdown-unit span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  margin-top: 2px;
}
.countdown-colon {
  font-size: 26px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1;
  align-self: flex-start;
}
.offer-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.offer-badge {
  position: absolute;
  top: -14px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}
.offer-img {
  margin: 0 auto 16px;
  max-width: 220px;
}
.offer-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.offer-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.offer-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
}
.offer-price small { font-size: 26px; }
.offer-per {
  font-size: 17px;
  color: var(--gray-500);
}
.offer-total {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.offer-total s { color: var(--gray-400); margin-right: 6px; }
.offer-total strong { color: var(--dark); }
.offer-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
}
.offer-tested {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ===== RESULTS TESTIMONIALS ===== */
.results-testimonials {
  margin-bottom: 40px;
}
.tp-header-badge {
  text-align: center;
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.tp-mini-stars {
  color: var(--trustpilot);
  font-size: 18px;
  background: var(--trustpilot);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 1px;
}
.results-testimonials-sub {
  text-align: center;
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.results-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.rt-tc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.rt-tc-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}
.rt-tc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.rt-tc-text {
  font-size: 19px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 12px;
}
.rt-tc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}
.rt-tc-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rt-tc-name {
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}
.rt-tc-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* Results FAQ */
/* ===== FAQ ===== */
.faq-section { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: left;
  gap: 12px;
}
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 16px 14px;
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }
.results-faq {
  margin-bottom: 32px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  background: var(--plum-bg);
  padding: 32px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.final-cta h2 {
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 8px;
}
.final-cta p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.cta-btn-large {
  max-width: 400px;
  margin: 0 auto;
  font-size: 20px;
  padding: 18px;
}
.final-guarantee {
  font-size: 16px;
  color: var(--gray-400);
  margin-top: 12px !important;
}

/* ===== BOTTOM SCAFFOLD (shared with quiz) ===== */

/* Privacy Line */
.privacy-line {
  text-align: center;
  padding: 16px;
  border-top: 1px solid var(--gray-200);
}
.privacy-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-badges-img {
  max-height: 28px;
  width: auto;
}

/* Rotating Testimonial */
.rotating-testimonial {
  padding: 0 16px 16px;
  max-width: 600px;
  margin: 0 auto;
}
.rt-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: opacity 0.4s ease;
}
.rt-card.rt-fade-out { opacity: 0; }
.rt-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rt-stars { color: var(--gold); font-size: 18px; margin-bottom: 4px; }
.rt-quote {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 6px;
}
.rt-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Product Badges */
.product-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 16px;
  flex-wrap: wrap;
  background: var(--plum-dark);
  margin-left: -16px;
  margin-right: -16px;
}
.pbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: none;
  padding: 0;
  border-radius: 0;
}
.pbadge svg {
  flex-shrink: 0;
  stroke: var(--white);
}

/* ===== AS SEEN IN BAR (persistent) ===== */
.as-seen-in-bar {
  text-align: center;
  padding: 24px 16px;
  max-width: none;
  margin-left: -16px;
  margin-right: -16px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.as-seen-in-bar .as-seen-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 16px;
  font-weight: 600;
}
.as-seen-in-bar .media-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
}
.media-logo-img {
  height: 32px;
  width: auto;
  max-width: 18%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
}

/* ===== RESPONSIVE: DESKTOP ===== */
@media (min-width: 768px) {
  .quiz-container { padding: 0 24px; }

  .trust-badges-bar { font-size: 12px; gap: 8px; padding: 5px 12px; }

  .screen-heading { font-size: 32px; }

  .answer-btn { padding: 16px 22px; }

  /* Styled interstitial side-by-side */
  .inter-row {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-bottom: 28px;
  }
  .inter-content {
    flex: 1;
    padding-top: 10px;
  }
  .inter-headline {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .inter-transform {
    flex: 1.1;
  }
  .inter-transform-img {
    max-height: none;
  }

  .results-hero-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }
  .results-hero-text {
    flex: 1;
    text-align: left;
  }
  .results-hero-visual {
    flex: 1.2;
    margin-top: 0;
    min-width: 340px;
  }
  .results-title { font-size: 36px; }

  .results-transform-row {
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }
  .results-transform-text {
    flex: 1;
    margin-bottom: 0;
  }
  .results-transform-visual {
    flex: 1;
  }

  .results-testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-metrics { gap: 16px; }

  .results-stats-row { gap: 12px; }
}

/* Very small screens */
@media (max-width: 360px) {
  .trustpilot-bar { font-size: 14px; }
  .trust-badges-bar { font-size: 11px; gap: 4px; }
  .screen-heading { font-size: 26px; }
  .social-proof-number { font-size: 48px; }
  .body-type-card { padding: 14px 8px 12px; }
  .results-title { font-size: 26px; }
  .results-metrics { grid-template-columns: 1fr; }
  .results-stats-row { grid-template-columns: repeat(2, 1fr); }
  .metric-value { font-size: 36px; }
}
