/* ==============================================
   NoMakeup Balm — Quiz Funnel Styles
   Elevated Warm Palette · Mobile-First
   ============================================== */

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

:root {
  /* Quiz Phase — Rose */
  --rose:              #C4827A;
  --rose-dark:         #A8685F;
  --rose-light:        #F3E0DD;
  --rose-bg:           #FDF5F3;
  --terracotta:        #D4956B;
  --terracotta-light:  #FBF0E6;

  /* Results Phase — Deeper */
  --results-accent:       #B06A5E;
  --results-accent-light: #F5E1DC;

  /* Neutrals */
  --dark:     #2C2220;
  --gray-700: #4A3F3A;
  --gray-500: #8C7B75;
  --gray-300: #D4C8C2;
  --gray-100: #F5F0ED;
  --bg:       #FDFAF8;
  --white:    #FFFFFF;

  /* Semantic */
  --sage:       #3D9E7C;
  --sage-light: #E8F5EF;
  --red:        #D4544A;
  --red-light:  #FEF2F2;
  --gold:       #D4956B;
  --gold-light: #FBF0E6;
  --trustpilot: #00B67A;

  /* Radii & Shadows */
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 2px 8px rgba(44,34,32,0.07);
  --shadow-lg: 0 4px 16px rgba(44,34,32,0.10);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-700);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

.hidden { display: none !important; }


/* ===== 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(--terracotta-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: 5px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.back-btn {
  background: none;
  border: none;
  padding: 4px;
  color: var(--white);
  display: flex;
  align-items: center;
  visibility: hidden;
  width: 30px;
}
.progress-text {
  font-size: 13px;
  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-300);
  position: sticky;
  top: 40px;
  z-index: 99;
}
.progress-bar-fill {
  height: 100%;
  background: var(--rose);
  transition: width 0.5s ease;
}


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


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

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

.screen-transition-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rose);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}


/* ===== INTRO SCREEN ===== */
.intro-screen {
  text-align: center;
  padding: 0;
}
.intro-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.intro-logo span {
  color: var(--rose);
}
.intro-headline {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.15;
}
.intro-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.intro-hero-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
}
.intro-cta {
  margin-bottom: 16px;
}
.intro-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.intro-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}


/* ===== ANSWER BUTTONS ===== */
.answers-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.answer-btn {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 18px;
  color: var(--gray-700);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  width: 100%;
  gap: 12px;
}
.answer-btn:hover {
  border-color: var(--rose);
  background: var(--rose-bg);
}
.answer-btn:active,
.answer-btn.selected {
  border-color: var(--rose);
  background: var(--rose-light);
  transform: scale(0.98);
}
.answer-emoji {
  font-size: 22px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.answer-text {
  flex: 1;
  font-weight: 500;
  line-height: 1.35;
}
.answer-text small {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.answer-arrow {
  font-size: 28px;
  color: var(--gray-300);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: auto;
}


/* ===== CTA / CONTINUE BUTTONS ===== */
.cta-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--rose);
  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;
  text-align: center;
}
.cta-btn:hover { background: var(--rose-dark); }
.cta-btn:active { transform: scale(0.98); }
.cta-btn-large {
  padding: 18px;
  font-size: 20px;
}
.continue-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--rose);
  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(--rose-dark); }
.continue-btn:active { transform: scale(0.98); }


/* ===== SHADE PICKER (Q6) ===== */
.shade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.shade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 16px 10px 14px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.shade-card:hover {
  border-color: var(--rose);
  background: var(--rose-bg);
}
.shade-card.selected {
  border-color: var(--rose);
  background: var(--rose-light);
  transform: scale(0.97);
}
.shade-swatch {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(44,34,32,0.15);
}
.shade-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
}
.shade-card-photo {
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.shade-card-photo .shade-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px 10px 0 0;
}
.shade-card-photo .shade-label {
  padding: 8px 4px 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
}


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

.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: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 8px;
}
.inter-highlight {
  color: var(--rose);
}
.inter-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 0;
}
.inter-bottom {
  text-align: center;
}
.inter-cta {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 24px auto 24px;
  padding: 16px 40px;
  font-size: 18px;
}

/* Reassurance callout */
.inter-reassure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--rose-bg);
  border-radius: var(--radius);
  padding: 16px;
  border-left: 3px solid var(--rose);
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.inter-reassure-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.inter-reassure-text {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Transform card */
.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(--rose);
  font-weight: 600;
}


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


/* ===== INPUT FIELDS ===== */
.quiz-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.quiz-input:focus {
  outline: none;
  border-color: var(--rose);
}
.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); }
}


/* ===== LOADER / ANALYSIS ===== */
.loader-screen {
  text-align: center;
  padding: 40px 0;
}
.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: 14px;
  font-weight: 700;
  color: var(--sage);
}
.loader-check {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.loader-text {
  font-size: 17px;
  color: var(--gray-500);
  text-align: left;
}
.loader-bar {
  height: 4px;
  background: var(--gray-300);
  border-radius: 2px;
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--rose);
  border-radius: 2px;
  width: 0;
  transition: width 0.5s ease;
}


/* ===== EMAIL GATE ===== */
.email-gate {
  text-align: center;
  padding: 24px 0;
}
.email-gate-icon {
  font-size: 48px;
  margin-bottom: 8px;
}
.email-gate-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.email-gate-teaser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 14px 20px;
  background: var(--rose-bg);
  border-radius: var(--radius);
  border: 1px solid var(--rose-light);
}
.email-gate-teaser-label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 15px;
}
.email-gate-teaser-blur {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rose);
  filter: blur(5px);
  user-select: none;
}
.email-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 16px;
}
.email-gate-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray-500);
}


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

/* ====== ENHANCED RESULTS: Section 1 — Hero Row ====== */
.results-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}
.results-hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.results-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-500);
  font-weight: 600;
}
.results-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 4px;
}
.results-highlight {
  color: var(--results-accent);
  font-weight: 700;
}
.results-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}
.results-hero-cta {
  grid-column: 1;
  justify-self: start;
  margin-top: -4px;
}

/* Projection Card */
.results-hero-visual {
  display: flex;
  justify-content: center;
}
/* ====== Shade Insight Card ====== */
.shade-insight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rose-light);
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.si-shade-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.si-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12), inset 0 1px 2px rgba(255,255,255,0.2);
  border: 2.5px solid var(--white);
  outline: 1px solid var(--gray-100);
}
.si-shade-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
}
.si-divider {
  height: 1px;
  background: var(--gray-100);
  margin-bottom: 14px;
}
.si-diagnosis-tag {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.si-diagnosis-tag strong {
  color: var(--dark);
  font-weight: 700;
}
.si-problem {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 12px;
}
.si-ingredient {
  font-size: 13.5px;
  color: var(--gray-700);
  line-height: 1.55;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.si-ingredient strong {
  color: var(--sage);
}
.si-ingredient-icon {
  margin-right: 2px;
}

/* ====== Section 2 — Expert Note ====== */
.doctor-note {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--rose-bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
  border-left: 4px solid var(--rose);
}
.doctor-note-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.doctor-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
  flex-shrink: 0;
}
.doctor-note-info {
  display: flex;
  flex-direction: column;
}
.doctor-note-name {
  font-size: 15px;
  color: var(--dark);
}
.doctor-note-title {
  font-size: 13px;
  color: var(--gray-500);
}
.doctor-note-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  font-style: italic;
}

/* ====== Section 3 — Skin Metrics ====== */
.results-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.metric-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 8px;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-value-dollar {
  color: var(--red);
}
.metric-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.metric-compare {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
}
.metric-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
}
.metric-savings {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  background: var(--sage-light);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-align: left;
}

/* ====== Section 4 — Stats Row ====== */
.results-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.stat-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ====== Section 5 — Skin Type Insight ====== */
.body-type-insight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--terracotta-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
  border-left: 4px solid var(--terracotta);
}
.bti-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bti-content {
  flex: 1;
}
.bti-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.bti-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ====== Section 6 — Transformation ====== */
.results-transform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}
.results-transform-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.results-transform-text .section-title {
  font-size: 24px;
}
.results-transform-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}
.results-transform-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ====== Confidence Shift Card ====== */
.confidence-shift {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rose-light);
  overflow: hidden;
}
.cs-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  gap: 8px;
}
.cs-now {
  background: var(--rose-bg);
}
.cs-future {
  background: var(--sage-light);
}
.cs-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--gray-500);
}
.cs-now .cs-label { color: var(--rose-dark); }
.cs-future .cs-label { color: var(--sage); }
.cs-state {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.cs-now .cs-state { color: var(--rose-dark); }
.cs-future .cs-state { color: var(--sage); }
.cs-feeling {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-500);
  max-width: 160px;
}
.cs-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  gap: 4px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--rose-bg) 0%, var(--sage-light) 100%);
}
.cs-arrow svg { opacity: 0.6; }
.cs-timeline {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  white-space: nowrap;
}

/* ====== Section 7 — Mid-Results CTA ====== */
.results-mid-cta-section {
  text-align: center;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.results-mid-cta-section .final-guarantee {
  margin-top: 12px;
}

/* ====== Input Group (Age screen) ====== */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  margin: 24px auto 0;
}
.quiz-input-number {
  text-align: center;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 20px;
  letter-spacing: 1px;
}
.continue-btn {
  width: 100%;
}

/* 3. Match Score Ring */
.match-ring-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 8px;
}
.match-ring {
  width: 100%;
  height: 100%;
}
.match-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.match-ring-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.match-ring-pct {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.match-ring-label {
  text-align: center;
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

/* Consolidated Match + Benefit Card */
.match-benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rose-light);
  padding: 24px 20px;
  margin-bottom: 28px;
}
.mbc-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.mbc-top .match-ring-wrap {
  margin: 0;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.mbc-top .match-ring-number { font-size: 32px; }
.mbc-top .match-ring-pct { font-size: 16px; }
.mbc-text {
  flex: 1;
}
.mbc-match-label {
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 6px;
}
.mbc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mbc-rating .rating-stars { font-size: 16px; color: var(--gold); }
.mbc-rating .rating-text { font-size: 13px; color: var(--gray-500); }
.mbc-benefit {
  background: var(--results-accent-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.mbc-benefit p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}
.mbc-benefit em {
  color: var(--results-accent);
  font-style: normal;
  font-weight: 600;
}

/* 4. Diagnosis Explanation Card */
.diagnosis-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--results-accent);
  margin-bottom: 28px;
}
.diagnosis-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.diagnosis-card-title {
  font-size: 22px;
  color: var(--results-accent);
  margin-bottom: 8px;
}
.diagnosis-card-text {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* 5. Pain Cycle */
.pain-cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding: 20px 0;
}
.pain-cycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  min-width: 90px;
  text-align: center;
}
.pain-cycle-icon {
  font-size: 28px;
}
.pain-cycle-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.pain-cycle-arrow {
  font-size: 20px;
  color: var(--gray-300);
  font-weight: 700;
}
.pain-cycle-loop {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  margin-top: 4px;
}

/* 6. Personalized Benefit */
.personalized-benefit {
  background: var(--results-accent-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  text-align: center;
}
.personalized-benefit p {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.6;
}
.personalized-benefit em {
  color: var(--results-accent);
  font-style: normal;
  font-weight: 600;
}

/* 7. Rating Bar */
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.rating-stars {
  color: var(--gold);
  font-size: 20px;
}
.rating-text {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
}

/* 8. Coupon Banner */
.coupon-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--results-accent);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  flex-wrap: wrap;
}
.coupon-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.coupon-code {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  color: var(--sage);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}
.coupon-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}

/* 8b. Objection Handler */
.objection-handler {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.oh-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.oh-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}
.oh-text strong {
  color: var(--sage);
}

/* 9. Offer Card */
.offer-card {
  background: var(--white);
  border: 2px solid var(--results-accent);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 40px;
}
.offer-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.offer-img {
  margin: 0 auto 16px;
  max-width: 240px;
}

/* ====== Offer Photo Slider ====== */
.offer-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto 16px;
  width: 100%;
  max-width: 420px;
  background: #faf7f5;
}
.offer-slider-track {
  display: flex;
  width: 400%;
  transition: transform 0.35s ease;
  will-change: transform;
}
.offer-slide {
  width: 25%;
  flex-shrink: 0;
}
.offer-slide img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: contain;
}
@media (max-width: 480px) {
  .offer-slider { max-width: 100%; border-radius: 8px; }
  .offer-slide img { height: auto; max-height: 480px; }
}
.offer-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.offer-slider-arrow:hover { background: #fff; }
.offer-slider-prev { left: 8px; }
.offer-slider-next { right: 8px; }
.offer-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 6px;
}
.offer-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5ccc8;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.offer-dot.active {
  background: var(--rose-dark, #A8685F);
  transform: scale(1.25);
}
.offer-label {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.offer-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
}
.offer-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.offer-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
}
.offer-original {
  font-size: 20px;
  color: var(--gray-500);
}
.offer-original s { text-decoration: line-through; }
.offer-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 15px;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Shade Selector (results) */
.shade-selector {
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.shade-selector-label {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 10px;
  display: block;
}
.shade-selector-label strong {
  color: var(--gray-700);
}
.shade-selector-swatches {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.shade-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  box-shadow: 0 1px 3px rgba(44,34,32,0.12);
}
.shade-dot:hover {
  transform: scale(1.1);
}
.shade-dot.selected {
  border-color: var(--results-accent);
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(176,106,94,0.25);
}

/* Feature Checklist */
.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
  padding: 0;
}
.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.4;
}
.offer-features li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-cta-btn {
  margin-bottom: 14px;
}

/* Guarantee Row */
.offer-guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.offer-guarantee-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}
.offer-urgency {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
}
.offer-scarcity {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}


/* 10. Problem vs Solution */
.why-section {
  margin-bottom: 48px;
}
.problem-solution-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ps-col {
  border-radius: var(--radius);
  padding: 0 0 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ps-problem {
  background: #FEF2F2;
  border-top: 4px solid #EF4444;
}
.ps-solution {
  background: #ECFDF5;
  border-top: 4px solid #10B981;
}
.ps-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 20px 12px;
  margin-bottom: 0;
  text-align: center;
}
.ps-label-problem { color: #DC2626; }
.ps-label-solution { color: #059669; }
.ps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}
.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.45;
}
.ps-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.ps-icon-x {
  background: #fff;
  color: #EF4444;
  font-size: 16px;
}
.ps-icon-check {
  background: #fff;
  color: #10B981;
  font-size: 13px;
}


/* 11. Feature Banner */
.feature-banner {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-bottom: 40px;
}
.feature-banner-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-banner-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-banner-icon {
  flex-shrink: 0;
}
.feature-banner-item h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-banner-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ====== Ingredients Section ====== */
.ingredients-section {
  text-align: center;
  margin-bottom: 48px;
}
.ingredients-sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0 0 16px;
  overflow: hidden;
  text-align: left;
}
.ingredient-img-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 16px 12px;
}
.ingredient-img-wrap img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.ingredient-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  padding: 0 14px;
  margin-bottom: 6px;
}
.ingredient-benefits {
  list-style: none;
  padding: 0 14px;
}
.ingredient-benefits li {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.ingredient-benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 11px;
}
@media (max-width: 767px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 360px) {
  .ingredients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ingredient-img-wrap img {
    width: 64px;
    height: 64px;
  }
}
.ingredients-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 20px;
  text-align: left;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}
.ingredients-badge svg {
  flex-shrink: 0;
}
.ingredients-badge strong {
  color: var(--sage);
}

/* 12. Before/After */
.before-after-section {
  margin-bottom: 40px;
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.before-after-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
}
.before-after-caption {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  font-style: italic;
}


/* 13. Video Demo */
.video-section {
  margin-bottom: 40px;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  cursor: pointer;
}
.video-wrap video {
  width: 100%;
  display: block;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  transition: transform 0.2s, opacity 0.3s;
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.video-wrap.playing .video-play-btn { opacity: 0; pointer-events: none; }


/* 14. Social Proof Stat */
.social-proof-stat {
  background: var(--rose-bg);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-left: 4px solid var(--rose);
}
.social-proof-stat p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  line-height: 1.4;
  font-weight: 600;
}
.social-proof-stat strong {
  color: var(--results-accent);
}


/* 15. Testimonials Grid */
.results-testimonials {
  margin-bottom: 40px;
}
.tp-header-badge {
  text-align: center;
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.tp-mini-stars {
  background: var(--trustpilot);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 1px;
  font-size: 14px;
}
.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: 18px;
  margin-bottom: 8px;
}
.rt-tc-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.rt-tc-text {
  font-size: 16px;
  color: var(--gray-500);
  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-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  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-mid-cta {
  max-width: 420px;
  margin: 0 auto;
}


/* 16. Content Images */
.content-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.content-img-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-img-item img {
  width: 100%;
  display: block;
}


/* 17. UGC Section */
.ugc-section {
  margin-bottom: 40px;
}
.ugc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ugc-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}


/* 18. Bonus Gifts */
.bonus-section {
  margin-bottom: 40px;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 1px solid var(--gray-100);
}
.bonus-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.bonus-title {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 4px;
}
.bonus-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 8px;
}
.bonus-value span {
  font-weight: 400;
  color: var(--gray-500);
  font-size: 14px;
}
.bonus-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
}


/* 19. Expert Endorsements */
.expert-section {
  margin-bottom: 40px;
}
.expert-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.expert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expert-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.expert-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose);
  flex-shrink: 0;
}
.expert-info {
  display: flex;
  flex-direction: column;
}
.expert-info strong {
  font-size: 16px;
  color: var(--dark);
}
.expert-info span {
  font-size: 14px;
  color: var(--gray-500);
}
.expert-quote {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.55;
  font-style: italic;
}


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


/* ===== 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-300);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: left;
  gap: 12px;
}
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-500);
  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: 16px;
  color: var(--gray-500);
  line-height: 1.6;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }


/* 21. Final CTA */
.final-cta {
  text-align: center;
  background: var(--rose-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;
}
.final-cta .cta-btn-large {
  max-width: 400px;
  margin: 0 auto;
}
.final-guarantee {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 12px !important;
}


/* ===== PRODUCT BADGES BAR ===== */
.product-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  flex-wrap: wrap;
  background: var(--dark);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
}
.pbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.pbadge svg {
  flex-shrink: 0;
  stroke: var(--white);
}


/* ===== MARQUEE BENEFITS BANNER ===== */
.marquee-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: var(--rose-light);
  padding: 14px 0;
  margin-bottom: 32px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}
.marquee-content {
  display: flex;
  gap: 32px;
  padding-right: 32px;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: 0.5px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== GLOW IN 3 STEPS (V2 — Designed) ===== */
.steps-section-v2 {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #FDF6F0;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 32px;
}
.steps-v2-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.steps-v2-title em { font-style: italic; }
.steps-v2-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.steps-v2-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.steps-v2-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.steps-v2-line {
  flex: 1;
  height: 2px;
  border-top: 2px dashed var(--rose-dark);
  opacity: 0.5;
}
.steps-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.steps-v2-card { text-align: center; }
.steps-v2-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #e8ddd8;
  cursor: pointer;
}
.steps-v2-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.steps-v2-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.steps-v2-video-wrap.playing .steps-v2-play { opacity: 0; }
.steps-v2-video-wrap:hover .steps-v2-play { opacity: 1; }
.steps-v2-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
.steps-v2-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.steps-v2-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== ONE BALM. SO MANY WINS — Skin Concerns ===== */
.skin-concerns-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #FDF6F0;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 32px;
}
.sc-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.sc-title em { font-style: italic; }
.sc-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
}
.sc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 28px;
}
.sc-item { text-align: center; }
.sc-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}
.sc-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.sc-cta { margin: 0 auto 12px; max-width: 320px; display: block; }
.sc-tagline {
  font-size: 13px;
  color: var(--gray-500);
}
@media (max-width: 480px) {
  .sc-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 280px; }
}

/* ===== BEFORE/AFTER GRID ===== */
.ba-grid-section {
  text-align: center;
  margin: 40px 0;
}
.ba-grid-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.ba-grid-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  margin: 0 auto;
  display: block;
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #FDF6F0;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 32px;
}
.compare-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.compare-title em { font-style: italic; }
.compare-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.compare-table {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: end;
  padding: 16px 16px 12px;
  border-bottom: 2px solid #f0e8e3;
}
.compare-feature-col { /* empty cell */ }
.compare-col {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.compare-product-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}
.compare-col-balm {
  background: var(--rose-light);
  border-radius: 8px 8px 0 0;
  padding: 12px 4px 8px;
}
.compare-col-found {
  padding: 12px 4px 8px;
  color: var(--gray-500);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #f5f0ed;
}
.compare-row:nth-child(even) { background: #fdfaf8; }
.compare-row:last-child { border-bottom: none; }
.compare-feature {
  font-size: 13px;
  color: var(--dark);
  text-align: left;
}
.compare-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E8F5EF;
  color: #3D9E7C;
  font-weight: 700;
  font-size: 16px;
}
.compare-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FEE2E2;
  color: #DC2626;
  font-weight: 700;
  font-size: 18px;
}
.compare-yes-bad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E8F5EF;
  color: #3D9E7C;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 420px) {
  .compare-header, .compare-row {
    grid-template-columns: 1fr 70px 70px;
    padding: 8px 10px;
  }
  .compare-feature { font-size: 12px; }
  .compare-yes, .compare-no, .compare-yes-bad { width: 24px; height: 24px; font-size: 14px; }
}

/* ===== FIND YOUR SHADE ===== */
.shade-section {
  text-align: center;
  margin: 40px 0;
  padding: 0 0 20px;
}
.shade-section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.shade-section-title em { font-style: italic; }
.shade-section-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.shade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 24px;
}
.shade-card { text-align: center; }
.shade-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin-bottom: 6px;
}
.shade-card-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark);
}
.shade-pick { transition: box-shadow 0.2s, border-color 0.2s; border: 2px solid transparent; }
.shade-pick:hover { border-color: var(--rose); }
.shade-pick-selected { border-color: var(--rose-dark); box-shadow: 0 0 0 3px rgba(196, 130, 122, 0.25); }
@media (max-width: 420px) {
  .shade-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CLINICALLY TESTED STATS ===== */
/* ====== Proof V2 — Clinically Tested (Redesigned) ====== */
.proof-v2-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #FDF6F0;
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 32px;
}
.proof-v2-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.proof-v2-title em { font-style: italic; }
.proof-v2-sub {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.proof-v2-sub strong { color: var(--dark); }
.proof-v2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
}
.proof-v2-ba {
  border-radius: 12px;
  overflow: hidden;
}
.proof-v2-ba-single {
  overflow: hidden;
}
.proof-v2-ba-single img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.proof-v2-ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}
.proof-v2-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof-v2-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border-left: 3px solid var(--rose);
  text-align: left;
}
.proof-v2-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.proof-v2-ring svg { width: 100%; height: 100%; }
.proof-v2-val {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.proof-v2-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}
.proof-v2-desc strong { color: var(--dark); }
@media (max-width: 600px) {
  .proof-v2-layout { grid-template-columns: 1fr; }
  .proof-v2-ba-single img { border-radius: 10px; }
}

/* ===== TESTIMONIAL AVATAR IMAGES ===== */
.rt-tc-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== AS SEEN IN BAR ===== */
.as-seen-in-bar {
  text-align: center;
  padding: 24px 16px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
}
.as-seen-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 14px;
  font-weight: 600;
}
.media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.media-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 1px;
}


/* ===== BOTTOM SCAFFOLD ===== */

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

/* Security Badges (Norton/McAfee) */
.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-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.rt-avatar-img {
  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: 15px;
  color: var(--gray-500);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 6px;
}
.rt-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* Quiz As Seen In (scaffold version — full width) */
.quiz-as-seen {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.media-logo-img {
  height: 28px;
  width: auto;
  max-width: 18%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
}

/* Certification Badges (full width) */
.cert-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  flex-wrap: wrap;
  background: var(--rose-dark);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.cbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

/* Site Footer */
.site-footer {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-sep {
  color: var(--gray-300);
}
.site-footer a {
  color: var(--gray-500);
  text-decoration: underline;
  font-size: 13px;
}
.site-footer a:hover {
  color: var(--rose);
}
.site-footer p {
  margin-top: 4px;
  font-size: 12px;
  color: var(--gray-300);
}


/* ===== STICKY BOTTOM BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  box-shadow: 0 -2px 12px rgba(44,34,32,0.08);
  z-index: 200;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  padding: 10px 16px;
}
.sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-bar-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar-info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--gray-500);
}
.sticky-bar-info strong {
  font-size: 16px;
  color: var(--dark);
}
.sticky-bar-info s {
  color: var(--gray-300);
  margin-left: 4px;
}
.sticky-bar-btn {
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.sticky-bar-btn:hover { background: var(--rose-dark); }
.sticky-bar-btn:active { transform: scale(0.98); }


/* ===== SOCIAL PROOF TOAST POPUP ===== */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(44,34,32,0.14);
  border: 1px solid var(--gray-300);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  max-width: 320px;
  z-index: 300;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.social-proof-popup.spp-visible {
  transform: translateX(0);
  opacity: 1;
}
.spp-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.spp-product-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
.spp-content {
  flex: 1;
  min-width: 0;
}
.spp-name {
  font-size: 15px;
  color: var(--gray-700);
  margin-bottom: 1px;
}
.spp-action {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.spp-time {
  font-size: 13px;
  color: var(--gray-300);
  margin-bottom: 3px;
}
.spp-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
}
.spp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray-300);
  line-height: 1;
  padding: 2px;
}
.spp-close:hover { color: var(--gray-500); }


/* ==============================================
   RESPONSIVE: TABLET (768px+)
   ============================================== */
@media (min-width: 768px) {
  .quiz-container { padding: 0 24px; }
  .trust-badges-bar { font-size: 12px; gap: 8px; padding: 5px 12px; }
  .screen-heading { font-size: 26px; }
  .answer-btn { padding: 16px 20px; }

  /* Intro */
  .intro-headline { font-size: 38px; }
  .intro-meta { flex-direction: row; gap: 16px; }

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

  /* Comparison table */
  .comparison-table table { font-size: 16px; }

  /* Results heading */
  .results-title { font-size: 36px; }

  /* Problem vs Solution side-by-side */
  .problem-solution-row {
    flex-direction: row;
    gap: 24px;
  }
  .ps-col { flex: 1; }

  /* Feature banner 3-col */
  .feature-banner-row {
    flex-direction: row;
    gap: 28px;
  }
  .feature-banner-item { flex: 1; }

  /* Content images 2-col */
  .content-images {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonials 2-col */
  .results-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bonus 2-col */
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Expert 2-col */
  .expert-grid {
    flex-direction: row;
    gap: 16px;
  }
  .expert-card { flex: 1; }

  /* Enhanced Results — Hero row side-by-side on tablet+ */
  .results-hero-row {
    gap: 36px;
  }
  .results-title { font-size: 32px; }

  /* Stats row stays 4-col on tablet */
  .results-stats-row {
    gap: 16px;
  }
  .stat-value { font-size: 24px; }

  /* Transformation side-by-side on tablet+ */
  .results-transform-row {
    gap: 36px;
  }

  /* Social proof popup */
  .social-proof-popup {
    bottom: 80px; /* above sticky bar */
  }
}


/* ==============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================== */
@media (min-width: 1024px) {
  /* Results wider container */
  .quiz-container.results-wide {
    max-width: 860px;
  }

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

  .section-title { font-size: 30px; }
}


/* ==============================================
   RESPONSIVE: MOBILE — Enhanced Results (< 768px)
   ============================================== */
@media (max-width: 767px) {
  /* Hero row: stack vertically */
  .results-hero-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .results-hero-visual {
    order: 1; /* shade card below hero text on mobile */
  }
  .results-hero-cta {
    order: 2; /* CTA below shade card on mobile */
    justify-self: stretch;
  }
  .projection-card {
    max-width: 100%;
  }

  /* Metrics: stack vertically */
  .results-metrics {
    grid-template-columns: 1fr;
  }

  /* Stats row: 2x2 grid on mobile */
  .results-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Transformation: stack vertically */
  .results-transform-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Doctor note: stack on narrow */
  .doctor-note {
    flex-direction: column;
    gap: 12px;
  }

  /* Results page: bump all fonts +2px on mobile */
  .results-page { font-size: 20px; }
  .results-page .results-eyebrow { font-size: 14px; }
  .results-page .results-title { font-size: 30px; }
  .results-page .results-desc { font-size: 17px; }
  .results-page .doctor-note-text { font-size: 17px; }
  .results-page .doctor-note-name { font-size: 17px; }
  .results-page .doctor-note-title { font-size: 15px; }
  .results-page .metric-label { font-size: 14px; }
  .results-page .metric-sub { font-size: 15px; }
  .results-page .metric-compare { font-size: 16px; }
  .results-page .metric-warning { font-size: 15px; }
  .results-page .section-title { font-size: 22px; }
  .results-page .si-diagnosis-tag { font-size: 15px; }
  .results-page .si-problem { font-size: 15.5px; }
  .results-page .si-ingredient { font-size: 15.5px; }
  .results-page .si-shade-name { font-size: 22px; }
  .results-page .body-type-insight p { font-size: 17px; }
  .results-page .transform-title { font-size: 20px; }
  .results-page .transform-desc { font-size: 17px; }
  .results-page .cs-label { font-size: 12px; }
  .results-page .cs-state { font-size: 20px; }
  .results-page .cs-feeling { font-size: 15px; }
  .results-page .cs-timeline { font-size: 12px; }
  .results-page .match-ring-label { font-size: 18px; }
  .results-page .match-benefit-text { font-size: 17px; }
  .results-page .oh-text { font-size: 16px; }
  .results-page .coupon-text { font-size: 16px; }
  .results-page .offer-card p,
  .results-page .offer-card li { font-size: 16px; }
  .results-page .offer-scarcity { font-size: 15px; }
  .results-page .ingredients-sub { font-size: 19px; }
  .results-page .ingredient-name { font-size: 16px; }
  .results-page .ingredient-benefit { font-size: 14px; }
  .results-page .ingredients-badge { font-size: 15px; }
  .results-page .social-proof-stat { font-size: 20px; }
  .results-page .testimonial-text { font-size: 16px; }
  .results-page .testimonial-name { font-size: 16px; }
  .results-page .testimonial-detail { font-size: 14px; }
  .results-page .bonus-title { font-size: 18px; }
  .results-page .bonus-desc { font-size: 17px; }
  .results-page .expert-quote { font-size: 18px; }
  .results-page .expert-name { font-size: 16px; }
  .results-page .expert-title { font-size: 14px; }
  .results-page .faq-question { font-size: 17px; }
  .results-page .faq-answer { font-size: 16px; }
  .results-page .final-cta-heading { font-size: 24px; }
  .results-page .final-cta-sub { font-size: 17px; }
}


/* ==============================================
   RESPONSIVE: SMALL SCREENS (360px-)
   ============================================== */
@media (max-width: 360px) {
  .trustpilot-bar { font-size: 13px; }
  .trust-badges-bar { font-size: 11px; gap: 3px; }
  .screen-heading { font-size: 20px; }
  .results-title { font-size: 26px; }

  .shade-grid { grid-template-columns: repeat(2, 1fr); }

  /* Enhanced results small screen tweaks */
  .results-title { font-size: 24px; }
  .metric-value { font-size: 36px; }
  .stat-value { font-size: 16px; }
  .stat-label { font-size: 9px; }
  .proj-state { font-size: 12px; }
  .proj-diff-badge { font-size: 12px; padding: 4px 8px; }

  .coupon-banner { flex-direction: column; text-align: center; gap: 6px; }

  .social-proof-popup {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 12px;
  }
}


/* ==============================================
   ANIMATIONS & KEYFRAMES
   ============================================== */

/* Match ring fill animation — triggered by JS */
@keyframes ringFill {
  to { stroke-dashoffset: var(--ring-target); }
}

/* Pulse for CTA buttons */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,130,122,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(196,130,122,0); }
}
.offer-cta-btn,
.sticky-bar-btn {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* Fade-in for results sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.results-page .results-hero-row,
.results-page .doctor-note,
.results-page .results-metrics,
.results-page .results-stats-row,
.results-page .body-type-insight,
.results-page .results-transform-row,
.results-page .results-mid-cta-section,
.results-page .match-ring-wrap,
.results-page .offer-card,
.results-page .before-after-section,
.results-page .results-testimonials,
.results-page .bonus-section,
.results-page .expert-section,
.results-page .faq-section,
.results-page .final-cta {
  animation: fadeInUp 0.5s ease both;
}
