/* ============================================
   ZAFIRA ORGANICS — GLP-1 DOPAMINE ASSESSMENT (V3)
   Skin: v1 brand (white · #035C05 green · Jitter)
   Layout: v3 (editorial welcome, parts, pull-quote statements)
   ============================================ */

@font-face {
  font-family: 'Jitter';
  src: url('https://blog.zafiraorganics.com/protocol/fonts/Jitter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --paper: #FFFFFF;
  --card: #FFFFFF;
  --ink: #1a1a1a;
  --ink-soft: #4b5563;
  --green-primary: #035C05;
  --green-dark: #022D03;
  --green-accent: #49934B;
  --green-tint: rgba(3, 92, 5, 0.05);
  --green-tint-2: rgba(73, 147, 75, 0.15);
  --hairline: rgba(3, 92, 5, 0.14);
  --hairline-soft: rgba(3, 92, 5, 0.08);
  --amber: #49934B;
  --gold: #FBCD0A;
  --red: #b91c1c;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #FFFFFF;
  --radius-pill: 50px;
  --radius-card: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(3, 92, 5, 0.06);
  --shadow-md: 0 4px 20px rgba(3, 92, 5, 0.1);
  --shadow-lg: 0 8px 32px rgba(3, 92, 5, 0.14);
  --font-display: 'Jitter', Georgia, serif;
  --font-ui: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- HEADER ---- */
.header {
  background: var(--green-dark);
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.logo-img {
  height: 36px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ---- PROGRESS BAR ---- */
.progress-bar {
  position: sticky;
  top: 64px;
  z-index: 99;
  height: 4px;
  background: var(--hairline-soft);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-accent), var(--green-primary));
  border-radius: 0 4px 4px 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- APP CONTAINER ---- */
.app {
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 22px 80px;
}

/* ============================================
   WELCOME SCREEN
   ============================================ */
.welcome-screen {
  text-align: center;
  padding: 34px 0 40px;
}

.welcome-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--amber);
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}

.welcome-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--green-primary);
  line-height: 1.16;
  margin-bottom: 14px;
}

.welcome-title em {
  font-style: italic;
  color: var(--green-accent);
}

.welcome-lead {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 18px;
}

.welcome-subtitle {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 auto 26px;
  max-width: 460px;
}

.welcome-subtitle strong {
  color: var(--green-primary);
  font-weight: 600;
}

/* CTA button */
.btn-start {
  display: block;
  width: 100%;
  padding: 19px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-align: center;
  margin-bottom: 12px;
}

.btn-start:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-start:active { transform: translateY(0); }

.welcome-cta-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Proof strip — hairline-divided editorial stats */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  margin-bottom: 26px;
}

.proof-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 8px;
}

.proof-cell + .proof-cell {
  border-left: 1px solid var(--hairline);
}

.proof-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--green-primary);
  line-height: 1;
}

.proof-den {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.proof-cap {
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Testimonial — editorial pull-quote */
.welcome-testimonial {
  text-align: left;
  border-left: 2px solid var(--amber);
  padding: 4px 0 4px 18px;
  margin: 0 4px 24px;
}

.welcome-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.welcome-quote {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 8px;
}

.welcome-cite {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Study line */
.welcome-study {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.welcome-study strong { color: var(--green-primary); }
.welcome-study em { font-style: italic; }

/* Trust row */
.welcome-trust-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.welcome-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.welcome-trust-item svg { flex-shrink: 0; }

/* ---- BACK BUTTON ---- */
.back-btn {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 8px;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.back-btn:hover { color: var(--green-primary); }

.question-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

/* ============================================
   QUESTION SCREENS
   ============================================ */
.question-screen {
  padding: 28px 0 20px;
  animation: fadeSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-20px); }
}

.question-screen.exiting {
  animation: fadeSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.question-step {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.part-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.part-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.question-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--green-primary);
  line-height: 1.22;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.question-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.5;
}

/* ---- STATEMENT QUESTIONS ---- */
.statement-block {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.32;
  color: var(--green-primary);
  margin-bottom: 10px;
  position: relative;
  padding-top: 34px;
}

.statement-block::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: -4px;
  font-family: Georgia, serif;
  font-size: 64px;
  font-style: normal;
  line-height: 1;
  color: var(--green-accent);
  opacity: 0.45;
}

.statement-prompt {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* ---- OPTIONS ---- */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card);
  border: 2px solid rgba(3, 92, 5, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  opacity: 0;
  transform: translateY(12px);
  animation: optionAppear 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: var(--shadow-sm);
}

.option-card:nth-child(1) { animation-delay: 0.06s; }
.option-card:nth-child(2) { animation-delay: 0.12s; }
.option-card:nth-child(3) { animation-delay: 0.18s; }
.option-card:nth-child(4) { animation-delay: 0.24s; }
.option-card:nth-child(5) { animation-delay: 0.30s; }
.option-card:nth-child(6) { animation-delay: 0.36s; }

@keyframes optionAppear {
  to { opacity: 1; transform: translateY(0); }
}

.option-card:hover {
  border-color: var(--green-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.option-card:active { transform: scale(0.985); }

.option-card.selected {
  border-color: var(--green-primary);
  background: var(--green-tint);
  box-shadow: 0 0 0 1px var(--green-primary);
}

.option-card.selected .option-check {
  background: var(--green-primary);
  border-color: var(--green-primary);
}

.option-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-tint);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 20px;
  color: var(--green-primary);
}

.option-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-primary);
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
  background: var(--green-tint-2);
  transform: scale(1.05);
}

.option-label {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.option-check {
  width: 23px;
  height: 23px;
  border: 2px solid rgba(3, 92, 5, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.option-check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: scale(0) rotate(-45deg);
  transform-origin: center;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 5px;
}

.option-card.selected .option-check::after {
  transform: scale(1) rotate(-45deg);
  opacity: 1;
}

/* ---- STATEMENT OPTIONS (radio, no icon) ---- */
.option-card.statement-option {
  padding: 17px 20px;
  gap: 14px;
}

.option-radio {
  width: 21px;
  height: 21px;
  border: 2px solid rgba(3, 92, 5, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-primary);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-card.statement-option.selected .option-radio {
  border-color: var(--green-primary);
}

.option-card.statement-option.selected .option-radio::after {
  transform: scale(1);
}

/* ---- MULTI-SELECT ---- */
.multi-select-hint {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.option-card.multi .option-check { border-radius: 7px; }
.option-card.multi.selected .option-check { border-radius: 7px; }

.btn-continue {
  display: block;
  width: 100%;
  padding: 17px;
  margin-top: 20px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(8px);
}

.btn-continue.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-continue:hover { background: var(--green-dark); }

.btn-continue:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ============================================
   HOPE INJECTION
   ============================================ */
.hope-screen {
  animation: fadeSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
  padding: 12px 0 4px;
}

.hope-screen.exiting {
  animation: fadeSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hope-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hope-card h2 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.22;
  color: var(--green-primary);
  letter-spacing: -0.2px;
}

.hope-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}

.hope-card p:last-child { margin-bottom: 0; }

.hope-card em {
  color: var(--green-accent);
  font-style: italic;
}

.hope-card strong {
  color: var(--green-primary);
  font-weight: 600;
}

.hope-stat {
  display: block;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px 14px;
  margin: 16px 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.hope-stat strong {
  font-family: var(--font-display);
  color: var(--green-primary);
  font-size: 21px;
  font-weight: 600;
}

.hope-cite {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--hairline-soft);
}

.hope-good-news {
  background: var(--green-tint);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 16px;
}

.hope-good-news p {
  color: var(--ink);
  margin-bottom: 10px;
}

.hope-good-news p:last-child { margin-bottom: 0; }

.hope-faces {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hope-faces img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.hope-faces-caption { display: none; }

.hope-cite-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 14px;
}

.hope-transition {
  text-align: center;
  padding: 4px 0 8px;
}

.hope-transition p {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 16px;
}

.btn-hope-continue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 19px 54px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-hope-continue:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
  text-align: center;
  padding: 48px 0 40px;
  animation: fadeSlideIn 0.4s ease both;
}

.loading-screen.exiting {
  animation: fadeSlideOut 0.3s ease both;
}

.loading-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}

.loading-ring-svg { width: 100%; height: 100%; }

.loading-ring-progress {
  transition: stroke-dashoffset 0.08s linear;
}

.loading-ring-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--green-primary);
}

.loading-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
  min-height: 22px;
}

.loading-divider {
  width: 60px;
  height: 1px;
  background: var(--hairline);
  margin: 0 auto 24px;
}

.loading-stat {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.loading-stat strong { color: var(--green-primary) !important; }

/* ============================================
   POST-QUIZ FUNNEL SCREENS
   ============================================ */
.funnel-screen {
  padding: 8px 0 20px;
  animation: fadeSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.funnel-screen.exiting {
  animation: fadeSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.funnel-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--amber);
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.funnel-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--green-primary);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.funnel-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}

.funnel-text em { color: var(--green-accent); }
.funnel-text strong { color: var(--green-primary); }
.funnel-text-sm { font-size: 14px; color: var(--text-muted); }

.funnel-btn {
  display: block;
  width: 100%;
  padding: 19px;
  margin-top: 24px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.sticky-btn-wrap {
  position: sticky;
  bottom: 0;
  padding: 12px 0 16px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%);
  z-index: 10;
  margin-top: 16px;
}

.funnel-btn-sticky { margin-top: 0; }

.funnel-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---- SCREEN 1: GAUGE ---- */
.gauge-wrap {
  text-align: center;
  margin: 8px 0 24px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 24px 18px 20px;
  box-shadow: var(--shadow-sm);
}

.gauge-svg {
  width: 210px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.gauge-label {
  font-family: var(--font-display);
  font-size: 18px;
  margin-top: 8px;
  color: var(--ink);
}

.gauge-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.score-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.score-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.score-card-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 11.5px;
}

.score-card-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.score-card-green {
  border: 1px solid var(--green-accent);
  background: var(--green-tint);
}

/* ---- SCREEN 2: SPLIT BEFORE/AFTER ---- */
.ba-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px -8px 0;
}

.ba-col {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
}

.ba-col-bad {
  border: 1px solid rgba(166, 58, 43, 0.15);
  border-bottom: none;
}

.ba-col-good {
  border: 1px solid rgba(10, 74, 42, 0.18);
  border-bottom: none;
}

.ba-img-half {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background-image: url('before-after.png');
  background-size: 202% auto;
  background-position: -1% 35%;
}

.ba-img-right { background-position: 101% 35%; }

.ba-labels-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 -8px;
}

.ba-labels-row span {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  padding: 10px 8px 8px;
}

.ba-label-bad { color: var(--red); }
.ba-label-good { color: var(--green-primary); }

.ba-rows { margin: 0 -8px 20px; }

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--hairline-soft);
}

.ba-row:last-child { border-bottom: none; }

.ba-row span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  padding: 10px 10px;
}

.ba-row span:first-child {
  background: rgba(166, 58, 43, 0.03);
  border-left: 1px solid rgba(166, 58, 43, 0.12);
  border-right: 1px solid rgba(166, 58, 43, 0.06);
}

.ba-row span:last-child {
  background: rgba(10, 74, 42, 0.03);
  border-right: 1px solid rgba(10, 74, 42, 0.12);
  border-left: 1px solid rgba(10, 74, 42, 0.06);
}

.ba-row:last-child span:first-child {
  border-radius: 0 0 0 var(--radius-sm);
  border-bottom: 1px solid rgba(166, 58, 43, 0.12);
}

.ba-row:last-child span:last-child {
  border-radius: 0 0 var(--radius-sm) 0;
  border-bottom: 1px solid rgba(10, 74, 42, 0.12);
}

.ba-explanation { margin-bottom: 4px; }

.ba-explanation p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 12px;
}

.ba-explanation em { color: var(--green-accent); }
.ba-explanation strong { color: var(--green-primary); }

/* ---- SCREEN 3: RECEPTOR ANIMATION ---- */
.rx-anim {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0 24px;
}

.rx-scene {
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  position: relative;
}

.rx-scene-blocked {
  background: var(--card);
  border: 1px solid var(--hairline);
}

.rx-scene-open {
  background: var(--green-tint);
  border: 1px solid var(--green-accent);
}

.rx-scene-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 16px;
}

.rx-label-bad { color: #9BA39C; }
.rx-label-good { color: var(--green-primary); }

.rx-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 14px;
}

.rx-sender {
  text-align: center;
  flex-shrink: 0;
}

.rx-sender-icon { font-size: 36px; line-height: 1; }

.rx-sender-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

.rx-signal-path {
  flex: 1;
  text-align: center;
  position: relative;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rx-signals-sent {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.rx-sig { font-size: 18px; display: inline-block; }

.rx-sig-fade { animation: sigFade 2.5s infinite; }
.rx-sig-fade.rx-sig-1 { animation-delay: 0s; }
.rx-sig-fade.rx-sig-2 { animation-delay: 0.4s; }
.rx-sig-fade.rx-sig-3 { animation-delay: 0.8s; }

@keyframes sigFade {
  0% { opacity: 1; transform: translateX(0); }
  40% { opacity: 0.5; transform: translateX(8px); }
  70% { opacity: 0.1; transform: translateX(14px); }
  100% { opacity: 0; transform: translateX(18px); }
}

.rx-sig-flow { animation: sigFlow 2s infinite; }
.rx-sig-flow.rx-sig-1 { animation-delay: 0s; }
.rx-sig-flow.rx-sig-2 { animation-delay: 0.3s; }
.rx-sig-flow.rx-sig-3 { animation-delay: 0.6s; }

@keyframes sigFlow {
  0% { opacity: 0.3; transform: translateX(0) scale(0.9); }
  50% { opacity: 1; transform: translateX(10px) scale(1.1); }
  100% { opacity: 0.3; transform: translateX(20px) scale(0.9); }
}

.rx-arrow-line {
  width: 60%;
  height: 2px;
  margin: 2px auto;
  border-radius: 2px;
}

.rx-arrow-blocked {
  background: repeating-linear-gradient(90deg, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
}

.rx-arrow-open {
  background: var(--green-accent);
  box-shadow: 0 0 6px rgba(62, 122, 84, 0.35);
}

.rx-signal-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.rx-scene-open .rx-signal-label {
  color: var(--green-primary);
  font-weight: 600;
}

.rx-receptor-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.rx-receptor {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-rec-body {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-receptor-gray .rx-rec-body {
  background: #d1d5db;
  border: 2px solid #b0b5bc;
}

.rx-receptor-green .rx-rec-body {
  background: var(--green-primary);
  border: 2px solid var(--green-accent);
  box-shadow: 0 0 16px rgba(10, 74, 42, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  animation: receptorPulse 2s infinite;
}

@keyframes receptorPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(10, 74, 42, 0.2); }
  50% { box-shadow: 0 0 24px rgba(10, 74, 42, 0.45); }
}

.rx-rec-x {
  position: absolute;
  font-size: 16px;
  color: var(--red);
  font-weight: 700;
}

.rx-rec-check {
  position: absolute;
  font-size: 18px;
  color: white;
  font-weight: 700;
}

.rx-ingredients {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: orbitSpin 8s linear infinite;
}

.rx-ing {
  position: absolute;
  font-size: 14px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.rx-ing-1 { top: -8px; left: 50%; transform: translateX(-50%); }
.rx-ing-2 { right: -8px; top: 50%; transform: translateY(-50%); }
.rx-ing-3 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.rx-ing-4 { left: -8px; top: 50%; transform: translateY(-50%); }

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rx-ing { animation: counterSpin 8s linear infinite; }

@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.rx-ing-1 { animation: counterSpin1 8s linear infinite; }
.rx-ing-2 { animation: counterSpin2 8s linear infinite; }
.rx-ing-3 { animation: counterSpin3 8s linear infinite; }
.rx-ing-4 { animation: counterSpin4 8s linear infinite; }

@keyframes counterSpin1 { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(-360deg); } }
@keyframes counterSpin2 { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(-360deg); } }
@keyframes counterSpin3 { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(-360deg); } }
@keyframes counterSpin4 { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(-360deg); } }

.rx-result {
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 8px;
}

.rx-result-bad {
  background: rgba(166, 58, 43, 0.06);
  color: var(--text-muted);
}

.rx-result-bad span {
  color: var(--red);
  font-weight: 600;
}

.rx-result-good {
  background: rgba(10, 74, 42, 0.08);
  color: var(--ink);
}

.rx-result-good span {
  color: var(--green-primary);
  font-weight: 700;
}

.compounds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.compound {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.compound-icon { font-size: 20px; }

/* ---- SCREEN 4: TIMELINE ---- */
.timeline-graph {
  margin: 16px 0;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 16px 8px 8px;
  box-shadow: var(--shadow-sm);
}

.timeline-svg { width: 100%; height: auto; }

.timeline-personal {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px;
  margin-bottom: 8px;
}

.timeline-personal p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-personal p:last-child { margin-bottom: 0; }
.timeline-personal em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-accent);
}
.timeline-personal strong { color: var(--green-primary); }

/* ---- COST TRANSLATION BOX (screen 1) ---- */
.cost-box {
  background: var(--green-tint);
  border: 1px solid var(--green-tint-2);
  border-left: 3px solid var(--green-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin: 16px 0 8px;
}

.cost-box p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 10px;
}

.cost-box p:last-child { margin-bottom: 0; }
.cost-box strong { color: var(--green-primary); }

/* ---- MECHANISM IMAGE (screen 3) ---- */
.mechanism-img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  margin: 16px 0 10px;
  box-shadow: var(--shadow-sm);
}

.mechanism-caption {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 20px;
  max-width: 420px;
}

.mechanism-caption strong { color: var(--green-primary); }

/* ---- TIMELINE STEPS (screen 4) ---- */
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 24px;
}

.tl-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tl-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.tl-orange { background: #f97316; }
.tl-green { background: var(--green-primary); }

.tl-step strong {
  display: block;
  font-size: 15px;
  color: var(--green-primary);
  margin-bottom: 2px;
}

.tl-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---- OBJECTION NOTE (screen 6) ---- */
.objection-note {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 18px;
}

/* ---- TRUSTPILOT HEADER ---- */
.trustpilot-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tp-stars { display: flex; gap: 3px; }

.tp-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-score {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.tp-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.tp-logo { margin-top: 2px; }

/* ---- SCREEN 5: REVIEWS ---- */
.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 8px;
}

.review-img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hairline-soft);
}

/* ---- SCREEN 6: CTA ---- */
.product-img {
  display: block;
  width: 72%;
  max-width: 290px;
  margin: 16px auto 24px;
  border-radius: var(--radius-sm);
}

.cta-personal {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.cta-personal p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 6px;
}

.cta-personal p:last-child { margin-bottom: 0; }
.cta-personal em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-accent);
}
.cta-personal strong { color: var(--green-primary); }

.btn-cta {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  margin-bottom: 16px;
  text-decoration: none;
  text-align: center;
}

.btn-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.results-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1.5px;
}

.guarantee-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
  .header { padding: 14px 16px; }
  .logo-img { height: 30px; }
  .progress-bar { top: 58px; }
  .app { padding: 12px 18px 80px; }
  .welcome-screen { padding: 26px 0 30px; }
  .welcome-title { font-size: 29px; }
  .welcome-lead { font-size: 17px; }
  .question-text { font-size: 23px; }
  .statement-block { font-size: 22px; padding-top: 30px; }
  .option-card { padding: 14px 15px; gap: 12px; }
  .option-icon { width: 38px; height: 38px; }
  .option-icon svg { width: 18px; height: 18px; }
  .option-label { font-size: 14px; }
  .hope-card { padding: 26px 20px; }
  .hope-card h2 { font-size: 23px; }
  .funnel-title { font-size: 24px; }
  .proof-num { font-size: 20px; }
  .proof-cap { font-size: 9.5px; }
}

/* ============================================
   NUMBER INPUT + SELECT (weight-loss funnel additions)
   ============================================ */
.num-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.num-field {
  width: 100%;
  padding: 18px 64px 18px 20px;
  border: 2px solid #e2e6e2;
  border-radius: 16px;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark, #04340a);
  background: var(--white, #fff);
  outline: none;
  transition: var(--transition);
  -moz-appearance: textfield;
}
.num-field::-webkit-outer-spin-button,
.num-field::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.num-field:focus { border-color: var(--green-primary); box-shadow: 0 0 0 4px rgba(3,92,5,0.08); }
.num-field::placeholder { color: #b3bab3; font-weight: 500; }
.num-unit {
  position: absolute;
  right: 20px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: #8a938a;
  pointer-events: none;
}

.select-wrap {
  position: relative;
  margin-top: 8px;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid #8a938a;
  border-bottom: 2px solid #8a938a;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-field {
  width: 100%;
  padding: 18px 48px 18px 20px;
  border: 2px solid #e2e6e2;
  border-radius: 16px;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark, #04340a);
  background: var(--white, #fff);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: var(--transition);
}
.select-field:focus { border-color: var(--green-primary); box-shadow: 0 0 0 4px rgba(3,92,5,0.08); }
.select-field:invalid { color: #b3bab3; font-weight: 500; }

/* ---- Embedded first question on the welcome screen ---- */
.welcome-q {
  margin: 24px 0 18px;
  padding: 22px 20px 20px;
  border: 1.5px solid #e4e8e4;
  border-radius: 22px;
  background: #fbfcfb;
  box-shadow: 0 6px 24px rgba(3,92,5,0.05);
  text-align: left;
}
.welcome-q .part-eyebrow { margin-top: 2px; }
.welcome-q .question-text { margin: 6px 0 4px; font-size: 24px; text-align: left; }
.welcome-q .question-step { color: #9aa39a; }
.welcome-q .btn-continue { margin-top: 16px; }
.welcome-q .welcome-cta-note { margin-top: 12px; margin-bottom: 0; }

/* ============================================
   EVALUATION SCREENS (weight-loss funnel)
   ============================================ */
.eval-factor {
  border: 1.5px solid #e4e8e4;
  border-radius: 18px;
  padding: 18px 18px 14px;
  margin: 14px 0;
  background: #fff;
  text-align: left;
}
.eval-factor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.eval-factor-title { font-weight: 700; font-size: 17px; color: var(--green-dark, #04340a); }
.eval-pill {
  font-size: 13px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.eval-pill.good { background: #e4f3e5; color: #1f7a33; }
.eval-pill.mild { background: #fdf2dc; color: #b7791f; }
.eval-pill.bad  { background: #fbe6e4; color: #c0392b; }

.eval-seg-bar { display: flex; gap: 6px; margin-bottom: 12px; }
.eval-seg {
  flex: 1; text-align: center; padding: 8px 4px; border-radius: 9px;
  background: #f1f3f1; color: #9aa39a; font-size: 12px; font-weight: 600;
  border: 1.5px solid transparent; transition: var(--transition);
}
.eval-seg.active.good { background: #e4f3e5; color: #1f7a33; border-color: #1f7a33; }
.eval-seg.active.mild { background: #fdf2dc; color: #b7791f; border-color: #e0b350; }
.eval-seg.active.bad  { background: #fbe6e4; color: #c0392b; border-color: #d9614f; }

.eval-why-btn {
  background: none; border: none; padding: 4px 0; cursor: pointer;
  color: var(--green-primary); font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.eval-why-btn .chev { transition: transform .2s; display: inline-block; }
.eval-why-btn.open .chev { transform: rotate(180deg); }
.eval-why {
  list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden;
  transition: max-height .3s ease; font-size: 14px; color: #555;
}
.eval-why.open { max-height: 500px; margin-top: 8px; }
.eval-why li { padding: 6px 0 6px 18px; position: relative; line-height: 1.45; border-top: 1px solid #f0f2f0; }
.eval-why li:first-child { border-top: none; }
.eval-why li::before { content: "✓"; position: absolute; left: 0; color: var(--green-primary); font-weight: 700; }

.eval-overall {
  margin: 18px 0 6px; padding: 16px 18px; border-radius: 16px;
  background: #f6f8f6; border: 1.5px solid #e4e8e4;
}
.eval-overall-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 600; color: var(--green-dark, #04340a); padding: 4px 0;
}
.eval-overall-score { font-size: 26px; font-weight: 800; color: var(--green-primary); }
.eval-overall-score small { font-size: 14px; color: #9aa39a; font-weight: 600; }
.eval-room { font-weight: 800; color: #c0392b; }

.eval-explain { text-align: left; }
.eval-explain p { margin: 0 0 14px; line-height: 1.55; color: #333; }
.eval-explain strong { color: var(--green-dark, #04340a); }
.eval-you {
  background: #f6f8f6; border-left: 3px solid var(--green-primary);
  padding: 10px 14px; border-radius: 8px; font-style: italic; color: #444 !important;
}
.eval-mild-note { color: #777 !important; font-size: 15px; }

/* ---- Eval screen 3 (forecast) ---- */
.graph-card {
  border: 1.5px solid #e8ece8; border-radius: 18px; padding: 18px 14px 10px; margin: 8px 0 18px; background: #fff;
  box-shadow: 0 6px 22px rgba(3,92,5,0.07);
}
.fc-graph { width: 100%; height: auto; display: block; }
.graph-caption { margin: 8px 0 0; font-size: 14px; color: #555; text-align: center; }
.graph-caption strong { color: #c0392b; }

.sfx-box {
  border: 1.5px solid #f2d9d5; background: #fdf3f1; border-radius: 14px; padding: 14px 18px; margin: 0 0 16px; text-align: left;
}
.sfx-title { font-weight: 700; color: #b23b2c; margin: 0 0 8px; font-size: 15px; }
.sfx-list { margin: 0; padding-left: 4px; list-style: none; }
.sfx-list li { position: relative; padding: 4px 0 4px 24px; color: #7a3b32; font-size: 15px; }
.sfx-list li::before { content: "⚠"; position: absolute; left: 0; }

.verdict-box {
  border-left: 4px solid var(--green-primary); background: #f6f8f6; border-radius: 10px;
  padding: 14px 18px; margin: 0 0 18px; text-align: left;
}
.verdict-label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--green-primary); font-weight: 700; margin-bottom: 4px; }
.verdict-box p { margin: 0; line-height: 1.55; color: #333; }

/* ---- Eval screen 4 (fixes) ---- */
.fix-card {
  border: 1.5px solid #e4e8e4; border-radius: 16px; padding: 18px; margin: 14px 0; background: #fff; text-align: left;
}
.fix-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 6px; }
.fix-title { font-weight: 700; font-size: 17px; color: var(--green-dark, #04340a); }
.fix-tag { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.fix-tag.bad { background: #fbe6e4; color: #c0392b; }
.fix-tag.mild { background: #fdf2dc; color: #b7791f; }
.fix-tag.good { background: #e4f3e5; color: #1f7a33; }
.fix-ing { font-weight: 700; color: var(--green-primary); font-size: 15px; margin-bottom: 8px; }
.fix-lead { font-weight: 600; color: #333; margin: 0 0 8px; }
.fix-body { margin: 0 0 8px; line-height: 1.5; color: #555; font-size: 15px; }
.fix-body:last-child { margin-bottom: 0; }

/* ---- Eval screen 5 (success plan) ---- */
.plan-milestone {
  text-align: center; background: #f6f8f6; border: 1.5px solid #e4e8e4;
  border-radius: 16px; padding: 18px; margin: 4px 0 18px;
}
.plan-milestone p { margin: 0; color: #555; font-size: 15px; }
.plan-big { font-size: 40px; font-weight: 800; color: var(--green-primary); line-height: 1.1; margin: 6px 0 2px; }
.plan-size { font-size: 17px; font-weight: 700; color: var(--green-dark, #04340a); }

/* ---- Eval screen 6 (reuse trustpilot/reviews look) ---- */
.eval6-safety { text-align: center; }

/* ---- Interstitial extras: hero image, quote, testimonials ---- */
.inter-img {
  display: block; width: 100%; max-height: 300px; object-fit: cover;
  border-radius: 14px; margin: 14px 0 4px;
}
.inter-quote {
  margin: 16px 0 0; padding: 14px 16px; border-left: 4px solid var(--green-primary);
  background: #f6f8f6; border-radius: 8px; font-style: italic; color: #384; color: #3a4a3a;
  font-size: 15px; line-height: 1.55;
}
.inter-quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700; font-size: 13px; color: var(--green-primary); }

.inter-testimonials { margin: 14px 0 4px; }
.inter-testi {
  border: 1.5px solid #e8ece8; border-radius: 16px; padding: 16px; margin-bottom: 12px;
  background: #fff; text-align: left; box-shadow: 0 4px 16px rgba(3,92,5,0.05);
}
.inter-testi-stars { color: #e8b309; font-size: 15px; letter-spacing: 1px; margin-bottom: 4px; }
.inter-testi-title { font-weight: 700; color: var(--green-dark, #04340a); margin-bottom: 6px; }
.inter-testi-quote { margin: 0 0 10px; font-size: 15px; line-height: 1.5; color: #444; font-style: italic; }
.inter-testi-name { font-weight: 600; font-size: 14px; color: #333; }
.inter-verified { color: #1f7a33; font-weight: 600; font-size: 13px; margin-left: 6px; }

/* welcome first-question: no eyebrow now, give the title a touch more room */
.welcome-q-title { margin-top: 2px; }

/* Ingredient icon badge on eval-4 fix cards */
.fix-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; min-width: 34px; border-radius: 10px;
  background: #f1f5f0; font-size: 19px; margin-right: 4px;
}
.fix-head { align-items: center; }

/* hair pop-up emphasis */
.highlight-red { color: #c0392b; font-weight: 700; font-style: italic; }

/* ---- EVAL 2 · article-style hormone sections ---- */
.ev2-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 18px 16px;
  margin-bottom: 14px;
  text-align: left;
}

.ev2-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline-soft);
}

.ev2-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev2-icon svg { width: 22px; height: 22px; }
.ev2-icon.bad { background: #fbe6e4; color: #c0392b; }
.ev2-icon.mild { background: #fdf2dc; color: #b7791f; }
.ev2-icon.good { background: #e4f3e5; color: #1f7a33; }

.ev2-name-wrap { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ev2-name { font-weight: 700; font-size: 16.5px; color: var(--ink); line-height: 1.2; }
.ev2-sub { font-size: 12.5px; color: var(--text-muted); }

.ev2-body p { margin: 0 0 12px; line-height: 1.55; color: #333; font-size: 15px; }
.ev2-body p:last-child { margin-bottom: 0; }
.ev2-body strong { color: var(--green-dark, #04340a); }

.ev2-bullets { list-style: none; margin: 0 0 12px; padding: 0; }
.ev2-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px dashed var(--hairline-soft);
}
.ev2-bullets li:last-child { border-bottom: none; }
.ev2-bicon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--green-tint-2);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev2-bicon svg { width: 16px; height: 16px; }

.ev2-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-tint);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 0 0 12px;
}
.ev2-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--green-primary);
  line-height: 1;
}
.ev2-stat-txt { font-size: 14px; line-height: 1.4; color: #333; font-weight: 500; }

.ev2-closer { margin-top: 22px; }
.ev2-closer-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
  margin: 16px 0 6px;
  text-align: center;
}
.ev2-closer-q {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.35;
  color: var(--green-primary);
  text-align: center;
  margin: 0;
}
.ev2-closer-q strong { color: var(--green-dark, #04340a); }
