/* ===== GLORYSMILE QUIZ FUNNEL — STYLES ===== */
/* Design: Clinical Authority + Warm Undertones */
/* Palette: Navy #1B2A4A, Coral #E8654A, Sage #5B9A7D, Cream #FDF8F0 */
/* Typography: Playfair Display (headings) + Plus Jakarta Sans (body) */

:root {
  --navy: #1B2A4A;
  --navy-light: #2A3B5A;
  --navy-dark: #0F1B30;
  --coral: #E8654A;
  --coral-dark: #D05438;
  --coral-light: #F0836D;
  --sage: #5B9A7D;
  --sage-light: #7BB89A;
  --sage-bg: #E8F5EF;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --text-primary: #1B2A4A;
  --text-secondary: #4A5568;
  --text-muted: #6B7A8D;
  --border: #E2D8CC;
  --danger: #DC2626;
  --danger-bg: #FEE2E2;
  --warning: #F59E0B;
  --warning-bg: #FEF3C7;
  --green: #5B9A7D;
  --green-light: #E8F5EF;
  --bg: #FDF8F0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --border-light: #f0ece6;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== TOP SCAFFOLD ===== */

.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.3px;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tb-item { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.tb-sep { opacity: 0.4; }

/* Mobile: auto-slide one benefit at a time */
@media (max-width: 480px) {
  .trust-bar { padding: 6px 16px; overflow: hidden; }
  .trust-bar-inner {
    flex-wrap: nowrap;
    gap: 0;
    position: relative;
    height: 18px;
  }
  .tb-sep { display: none; }
  .tb-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    font-size: 12px;
  }
  .tb-item.tb-active {
    opacity: 1;
  }
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 90;
}
.back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 4px;
  width: 32px;
}
.progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.progress-text-spacer { width: 32px; }

.progress-bar-track {
  height: 3px;
  background: var(--border);
  position: -webkit-sticky;
  position: sticky;
  top: 38px;
  z-index: 89;
}
.progress-bar-fill {
  height: 100%;
  background: var(--coral);
  width: 0;
  transition: width 0.4s ease;
}

/* ===== QUIZ CONTAINER ===== */

.quiz-container {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}
.quiz-container.results-wide { max-width: 720px; }

/* ===== SCREENS ===== */

.screen {
  display: none;
  animation: fadeSlideIn 0.35s ease both;
}
.screen.active { display: block; }
.screen.exit {
  animation: fadeSlideOut 0.28s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeSlideOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-12px) scale(0.98); }
}

/* ===== INTRO SCREEN ===== */

.intro-screen {
  text-align: center;
  padding: 12px 0 20px;
}
.intro-logo {
  display: none;
}
.intro-logo span { color: var(--coral); }

.intro-hero-img {
  margin: 0 -16px 16px;
  border-radius: 12px;
  overflow: hidden;
}
.intro-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.intro-headline {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}
.intro-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.55;
}

.intro-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 28px;
  text-align: left;
}
.isb-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}
.isb-text {
  font-size: 13px;
  line-height: 1.35;
  max-width: 200px;
}

.intro-cta { width: 100%; }

.intro-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.intro-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== QUESTION SCREENS ===== */

.screen-transition-label {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  text-align: center;
  margin: 16px 0 4px;
  letter-spacing: 0.3px;
}
.screen-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  text-align: center;
  margin: 8px 0 14px;
}
.screen-subtext {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin: -6px 0 12px;
}

/* Answer Buttons */
.answers-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }

.answer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.2s ease;
  position: relative;
}
.answer-btn:hover { border-color: var(--coral-light); background: #FFF8F6; }
.answer-btn.selected {
  border-color: var(--coral);
  background: #FFF5F2;
  box-shadow: 0 0 0 3px rgba(232,101,74,0.15);
}
.answer-emoji { font-size: 22px; flex-shrink: 0; width: 28px; text-align: center; }
.answer-text { flex: 1; }
.answer-sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
}
.answer-arrow { color: var(--text-muted); font-size: 20px; flex-shrink: 0; }

/* Visual Answer Card Grid (size question) */
.answers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.answer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px 14px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: center;
  transition: all 0.2s ease;
}
.answer-card:hover { border-color: var(--coral-light); background: #FFF8F6; }
.answer-card.selected {
  border-color: var(--coral);
  background: #FFF5F2;
  box-shadow: 0 0 0 3px rgba(232,101,74,0.15);
}
.answer-card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 3px solid var(--cream-dark);
}
.answer-card.selected .answer-card-img {
  border-color: var(--coral);
}
.answer-card-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.answer-card-detail {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  margin-top: 2px;
}
.answer-card-breeds {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* Checkbox Buttons */
.checkbox-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.checkbox-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s ease;
}
.checkbox-btn:hover { border-color: var(--coral-light); }
.checkbox-btn input { display: none; }
.cb-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}
.checkbox-btn input:checked ~ .cb-check {
  background: var(--coral);
  border-color: var(--coral);
}
.checkbox-btn input:checked ~ .cb-check::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-btn input:checked ~ .cb-text { font-weight: 600; }
.cb-text { flex: 1; }
.checkbox-btn-none { border-style: dashed; opacity: 0.7; }

/* Micro Copy */
.micro-copy {
  font-size: 13px;
  color: var(--sage);
  text-align: center;
  padding: 8px 16px;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

/* Continue Buttons */
.continue-btn {
  width: 100%;
  margin-top: 12px;
}

/* ===== CTA BUTTON ===== */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  text-decoration: none;
}
.cta-btn:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,101,74,0.3); }
.cta-btn:active { transform: translateY(0); }
.cta-btn-large { padding: 18px 32px; font-size: 17px; border-radius: 14px; }

/* ===== INTERSTITIAL ===== */

.interstitial { padding: 40px 0 24px; text-align: center; }
.interstitial-styled { padding: 32px 0; }

.inter-headline {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.inter-highlight { color: var(--coral); }

.inter-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.inter-stat-card {
  background: var(--navy);
  color: #fff;
  padding: 16px 10px;
  border-radius: 12px;
  text-align: center;
}
.inter-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1.1;
  margin-bottom: 6px;
}
.inter-stat-label { font-size: 11px; line-height: 1.3; opacity: 0.9; }

.inter-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}
.inter-cta { width: 100%; }

/* ===== LOADER ===== */

.loader-screen { padding: 20px 0 24px; text-align: center; }

.loader-checklist {
  text-align: left;
  max-width: 320px;
  margin: 24px auto;
}
.loader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.loader-item.done { opacity: 1; }
.loader-item.done .loader-check svg circle {
  stroke: var(--sage);
  fill: var(--sage-bg);
}
.loader-item.done .loader-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
}
.loader-check {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.loader-text { font-size: 14px; color: var(--text-secondary); }

.loader-bar {
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--coral);
  width: 0;
  transition: width 0.6s ease;
  border-radius: 2px;
}

/* ===== EMAIL GATE ===== */

.email-gate {
  text-align: center;
  padding: 20px 0 32px;
}
.email-gate-icon { margin-bottom: 12px; }

.email-gate-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.email-gate-teaser {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--navy);
  border-radius: 8px;
  margin-bottom: 20px;
}
.email-gate-teaser-label { font-size: 12px; color: rgba(255,255,255,0.7); }
.email-gate-teaser-blur {
  font-size: 14px;
  font-weight: 700;
  color: var(--coral);
  filter: blur(5px);
  user-select: none;
}

.email-gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto 16px;
}
.quiz-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}
.quiz-input:focus { outline: none; border-color: var(--coral); }
.quiz-input.shake {
  animation: shake 0.4s ease;
  border-color: var(--danger);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.email-gate-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.email-gate-bonus {
  font-size: 13px;
  color: var(--navy);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.2px;
}
.email-gate-bonus strong {
  color: var(--coral);
  font-weight: 700;
}

/* ===== RESULTS PAGE ===== */

.results-page { padding-bottom: 100px; }

/* Sales copy highlight for bold text */
.trap-section p strong,
.product-text strong,
.accordion-body strong,
.battle-card-desc strong,
.timeline-desc strong,
.dismantling-text strong,
.risk-meaning-callout strong,
.cooperation-callout strong,
.results-page > div p strong {
  color: var(--coral);
}

.results-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--coral);
  text-align: center;
  margin: 32px 0 16px;
}

.risk-score-badge {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
}
.score-ring { width: 100%; height: 100%; }
.score-ring-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.score-ring-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--coral);
}
.score-ring-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 2px;
}

.results-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--navy);
  margin-bottom: 12px;
}
.risk-tier-text { color: var(--coral); }

.results-desc {
  font-size: 19px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}
.results-hero-cta { width: 100%; }
.results-cta { width: 100%; margin-top: 16px; }

/* ===== FACTOR SECTION ===== */

.factor-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.factor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.factor-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.factor-icon { font-size: 20px; }
.factor-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy);
  text-transform: uppercase;
}
.factor-text {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.factor-text strong { color: var(--coral); }
.symptom-item-text strong { color: var(--coral); }

/* Symptom breakdown items */
.symptom-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.symptom-item:last-child { border-bottom: none; }
.symptom-item-name {
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 6px;
  font-size: 18px;
}
.symptom-item-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ===== ORGAN REVEAL ===== */

.organ-reveal {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  margin: 24px 0;
}
.organ-reveal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.organ-reveal-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}
.organ-reveal-text {
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.92;
}
.organ-reveal-text p { margin-bottom: 14px; }
.organ-reveal-text p:last-child { margin-bottom: 0; }
.organ-reveal-text strong { color: var(--coral-light); }

/* ===== METRICS ===== */

.results-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.metric-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.metric-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.metric-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.metric-value-dollar::before { content: '$'; font-size: 22px; }
.metric-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 10px;
}
.metric-compare {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.metric-warning, .metric-savings {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  line-height: 1.4;
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
}
.metric-warning {
  background: var(--danger-bg);
  color: var(--danger);
}
.metric-savings {
  background: var(--sage-bg);
  color: var(--sage);
}
@media (max-width: 480px) {
  .metric-label {
    font-size: 11px;
  }
  .metric-sub {
    font-size: 13px;
  }
  .metric-compare {
    font-size: 14px;
    line-height: 1.5;
  }
  .metric-warning, .metric-savings {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* ===== TRAP SECTION ===== */

.trap-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.trap-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
}
.trap-text {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.trap-text p { margin-bottom: 16px; }
.trap-text strong { color: var(--coral); }

/* Trap Comparison Cards */
.trap-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.trap-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #E8CCCC;
  text-align: left;
}
.trap-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.trap-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--navy);
  padding: 12px 12px 4px;
  margin: 0;
}
.trap-card-list {
  list-style: none;
  padding: 0 12px 12px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.trap-card-list li {
  padding: 3px 0 3px 16px;
  position: relative;
}
.trap-card-list li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #D9534F;
  font-weight: 700;
}
.trap-punchline {
  text-align: center;
  font-size: 18px;
  color: var(--coral);
  margin: 20px 0 8px;
}
.trap-reveal {
  text-align: center;
  font-size: 15px;
  color: var(--navy);
  margin-top: 12px;
}

/* ===== ACCORDION SECTIONS ===== */
.accordion-section { margin: 20px 0; }
.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: all 0.2s ease;
}
.accordion-toggle:hover { border-color: var(--coral-light); }
.accordion-toggle.open { border-radius: 12px 12px 0 0; border-bottom-color: transparent; }
.accordion-chevron {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}
.accordion-toggle.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 0 16px;
}
.accordion-body.open {
  max-height: 2000px;
  padding: 0 16px 16px;
}
.accordion-body p { margin-top: 12px; font-size: 19px; line-height: 1.65; color: var(--text-secondary); }
.accordion-body strong { color: var(--coral); }
@media (max-width: 480px) {
  .accordion-body p { font-size: 18px; }
}
.accordion-preview {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}
.accordion-stat-chip {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ===== PULL QUOTES ===== */
.pull-quote {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--navy);
  text-align: center;
  padding: 24px 16px;
  margin: 24px 0;
  border-left: 4px solid var(--coral);
  background: linear-gradient(135deg, #FFF8F6 0%, #FFF 100%);
  border-radius: 0 12px 12px 0;
  line-height: 1.5;
}
.pull-quote em { color: var(--coral); font-style: normal; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BATTLEGROUND CARDS ===== */
.battle-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.battle-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}
.battle-card-old { border: 2px solid #E8CCCC; }
.battle-card-new { border: 2px solid var(--green); }
.battle-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.battle-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 10px 10px 4px;
  margin: 0;
}
.battle-card-old .battle-card-title { color: #D9534F; }
.battle-card-new .battle-card-title { color: var(--green); }
.battle-card-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding: 0 10px 12px;
}
@media (max-width: 480px) {
  .battle-card-img {
    height: 110px;
  }
  .battle-card-title {
    font-size: 12px;
    padding: 6px 8px 2px;
  }
  .battle-card-desc {
    font-size: 11px;
    line-height: 1.4;
    padding: 0 8px 10px;
  }
}

/* ===== PALATABILITY COMPARISON ===== */
.palat-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.palat-card {
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  background: #fff;
}
.palat-card-bad { border: 2px solid #E8CCCC; }
.palat-card-good { border: 2px solid var(--green); }
.palat-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.palat-card-label {
  font-size: 13px;
  font-weight: 700;
  padding: 8px 8px 6px;
}
.palat-card-bad .palat-card-label { color: #D9534F; }
.palat-card-good .palat-card-label { color: var(--green); }

/* ===== MARQUEE BANNER ===== */

/* Full-bleed utility: breaks out of max-width container to fill viewport */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marquee-banner {
  background: var(--navy);
  padding: 12px 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-content {
  display: flex;
  gap: 32px;
  padding: 0 16px;
  flex-shrink: 0;
}
.marquee-item {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== PRODUCT SECTION ===== */

.product-section {
  padding: 32px 0;
}
.product-lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
  text-align: center;
  margin-bottom: 20px;
}
.product-text {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.product-text p { margin-bottom: 16px; }
.product-text strong { color: var(--coral); }

.cooperation-callout {
  background: var(--sage-bg);
  border-left: 4px solid var(--sage);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.cooperation-callout:empty { display: none; }

/* Ingredients Grid */
.ingredients-section { margin-top: 28px; }
.ingredients-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.ingredient-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.ingredient-icon { font-size: 28px; margin-bottom: 8px; }
.ingredient-mechanism-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border: 1px solid var(--border);
}
.ingredient-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ingredient-desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.ingredients-closer {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 16px;
  line-height: 1.5;
}

/* ===== DISMANTLING SECTION ===== */

.dismantling-section { padding: 16px 0; }
.dismantling-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  padding: 18px;
  margin-bottom: 14px;
}
.dismantling-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 8px;
}
.dismantling-text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ===== BEFORE / AFTER PHOTOS ===== */

.before-after-photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.ba-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,42,74,0.08);
}
.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}
.ba-label-before { background: var(--coral); color: #fff; }
.ba-label-after { background: var(--sage); color: #fff; }
.ba-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ba-caption {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
}
.ba-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
}
.ba-before { border: 2px solid rgba(232,101,74,0.2); }
.ba-after { border: 2px solid rgba(91,154,125,0.3); }

/* Post before/after CTA */
.post-ba-cta {
  display: block;
  width: 100%;
  margin: 20px auto 0;
  max-width: 420px;
  font-size: 17px;
  padding: 16px 24px;
}

/* Inline before/after (after steps) */
.ba-inline {
  margin-top: 20px;
  text-align: center;
}
.ba-inline-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.ba-inline-row {
  display: flex;
  gap: 10px;
}
.ba-inline-img-wrap {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(27,42,74,0.08);
}
.ba-inline-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ba-tag {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ba-tag-before { background: rgba(232,101,74,0.85); color: #fff; }
.ba-tag-after { background: rgba(91,154,125,0.85); color: #fff; }
@media (max-width: 480px) {
  .ba-inline-row {
    gap: 8px;
    margin: 0 -8px;
  }
  .ba-inline-img {
    aspect-ratio: 3/4;
  }
  .ba-inline-label {
    font-size: 16px;
  }
}

/* ===== TRANSFORMATION ===== */

.transform-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.confidence-shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}
.cs-side {
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
}
.cs-now {
  background: var(--danger-bg);
  border: 1px solid rgba(220,38,38,0.2);
}
.cs-future {
  background: var(--sage-bg);
  border: 1px solid rgba(91,154,125,0.2);
}
.cs-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.cs-state {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cs-feeling {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .cs-label {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .cs-state {
    font-size: 18px;
  }
  .cs-feeling {
    font-size: 14px;
    line-height: 1.5;
  }
}
.cs-arrow { text-align: center; }
.cs-timeline {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sage);
  margin-top: 2px;
}

/* ===== HOW IT WORKS ===== */

.steps-section {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.steps-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.steps-title em { color: var(--coral); font-style: normal; }
.steps-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
}
.steps-dot {
  width: 32px;
  height: 32px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.steps-line {
  width: 40px;
  height: 2px;
  background: var(--coral);
  opacity: 0.4;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.steps-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
}
.steps-card-icon { font-size: 32px; margin-bottom: 8px; }
.steps-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.steps-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.steps-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* ===== COUPON BANNER ===== */

.coupon-banner {
  position: relative;
  background: #FFFDF8;
  border: 2px dashed var(--coral);
  border-radius: 14px;
  margin: 28px 0;
  overflow: visible;
}
.coupon-notch {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 2px dashed var(--coral);
  z-index: 2;
}
.coupon-notch-left { left: -10px; border-right-color: transparent; }
.coupon-notch-right { right: -10px; border-left-color: transparent; }
.coupon-inner {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
}
.coupon-scissors {
  font-size: 18px;
  opacity: 0.4;
  flex-shrink: 0;
}
.coupon-main { flex: 1; }
.coupon-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.coupon-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.coupon-code-box {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
  background: rgba(27,42,74,0.06);
  padding: 4px 14px;
  border-radius: 6px;
  border: 1px solid rgba(27,42,74,0.1);
}
.coupon-applied {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
}
.coupon-divider {
  width: 1px;
  height: 48px;
  background: repeating-linear-gradient(to bottom, var(--coral) 0, var(--coral) 4px, transparent 4px, transparent 8px);
  opacity: 0.4;
  flex-shrink: 0;
}
.coupon-timer-wrap {
  text-align: center;
  flex-shrink: 0;
}
.coupon-timer-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.coupon-timer-value {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
}

/* Mobile coupon adjustments */
@media (max-width: 480px) {
  .coupon-inner { padding: 14px 18px; gap: 12px; }
  .coupon-code-box { font-size: 18px; padding: 3px 10px; }
  .coupon-timer-value { font-size: 20px; }
  .coupon-notch { width: 14px; height: 14px; }
  .coupon-notch-left { left: -8px; }
  .coupon-notch-right { right: -8px; }
}

/* ===== BUNDLE SELECTOR (3-Card Offer) ===== */

.bundle-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f5ee 100%);
  border: 1px solid rgba(91,154,125,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--navy);
}
.bib-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  white-space: nowrap;
}
.bib-item svg { color: var(--sage); flex-shrink: 0; }
.bib-shipping strong { color: var(--sage); }
.bib-divider {
  color: rgba(27,42,74,0.2);
  font-weight: 300;
  font-size: 16px;
}
.bib-pulse {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.bib-stock { font-weight: 600; color: var(--coral); }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@media (max-width: 480px) {
  .bundle-info-bar { gap: 6px; padding: 8px 10px; }
  .bib-divider { display: none; }
  .bundle-info-bar { flex-direction: column; gap: 4px; }
  .bib-item { font-size: 12px; }
}

/* Bouncy social proof badge */
.social-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 481px) {
  .social-badge-wrap {
    margin-bottom: 32px;
  }
}
.social-badge {
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  animation: badgeBounce 2s ease-in-out infinite;
  border: 2px solid #c94e33;
  box-shadow: 0 2px 8px rgba(232,101,74,0.35);
}
.social-badge-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--coral);
  animation: badgeBounce 2s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bundle-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.bundle-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bundle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,42,74,0.12);
}
.bundle-card.popular {
  border-color: var(--coral);
  border-width: 2.5px;
  box-shadow: 0 4px 24px rgba(232,101,74,0.25);
  animation: coralGlow 2s ease-in-out infinite;
}
@keyframes coralGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(232,101,74,0.25); }
  50% { box-shadow: 0 8px 36px rgba(232,101,74,0.5), 0 0 12px rgba(232,101,74,0.2); }
}
.bundle-rec-for {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  margin: -4px 0 8px;
  padding: 0;
  letter-spacing: 0.3px;
}
.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 1;
}
.popular-badge {
  background: var(--coral);
  color: #fff;
}
.value-badge {
  background: var(--sage);
  color: #fff;
}
.bundle-card-inner {
  padding: 24px 20px 20px;
  text-align: center;
}
.bundle-header {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.bundle-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.bundle-img {
  text-align: center;
  margin-bottom: 14px;
}
.bundle-img img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}
.bundle-img-placeholder {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.bundle-price {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
}
.bundle-price small { font-size: 24px; }
.bundle-per {
  font-size: 17px;
  color: var(--text-secondary);
}
.bundle-you-save {
  font-size: 17px;
  color: var(--sage);
  margin-bottom: 12px;
  font-weight: 500;
}
.bundle-you-save strong { font-weight: 700; }
.bundle-price-details {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  margin-bottom: 14px;
}
.bundle-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--text-secondary);
  padding: 3px 0;
}
.bundle-price-row s { color: var(--text-muted); }
.bundle-price-row.total-row { font-weight: 600; color: var(--text-primary); }
.bundle-price-row.total-row strong { color: var(--navy); }
.bundle-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  text-align: left;
}
.bundle-details li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 700;
  margin-right: 6px;
}
.bundle-cta {
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
}
.bundle-card.popular .bundle-cta {
  background: var(--coral);
  color: #fff;
}
.bundle-card.popular .bundle-cta:hover {
  background: #d45a40;
}
.bundle-secure-badge {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 12px auto 0;
}
.bundle-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Price Anchor (below bundle selector) */
.price-anchor {
  background: var(--cream-dark);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.price-anchor:empty { display: none; }
.price-anchor strong { color: var(--navy); }

/* Risk reinforcement + guarantee note */
.offer-urgency {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
}
.offer-guarantee-note {
  font-size: 13px;
  color: var(--sage);
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}
.offer-guarantee-note:empty { display: none; }

/* ===== CLINICAL PROOF ===== */

.proof-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.proof-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 8px;
}
.proof-ring {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
}
.proof-ring svg { width: 100%; height: 100%; }
.proof-val {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.proof-desc {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* ===== TESTIMONIALS ===== */

.testimonials-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.rt-tc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.rt-tc-stars {
  color: var(--coral);
  font-size: 16px;
  margin-bottom: 6px;
}
.rt-tc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.rt-tc-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.rt-tc-photo {
  display: none;
}
.rt-tc-photo-img {
  width: 100%;
  height: auto;
  display: none;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}
.rt-tc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.rt-tc-avatar-circle {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.rt-tc-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.rt-tc-name { font-weight: 600; }
.rt-tc-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--sage);
  font-weight: 500;
}
.results-mid-cta { width: 100%; }

/* ===== FAQ ===== */

.faq-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.faq-list { margin-top: 16px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 12px;
}
.faq-icon {
  font-size: 20px;
  color: var(--coral);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-bottom: 16px;
}

/* ===== FINAL CTA ===== */

.final-cta {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.final-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.final-cta .cta-btn { width: 100%; }
.final-guarantee {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== PRODUCT BADGES ===== */

.product-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}
.pbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== SECTION TITLE ===== */

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-title em { color: var(--coral); font-style: normal; }

/* ===== STICKY BAR ===== */

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar-info {
  font-size: 13px;
  line-height: 1.3;
}
.sticky-bar-info strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}
.sticky-bar-info span { color: var(--text-muted); }
.sticky-bar-info s { color: var(--text-muted); opacity: 0.6; }
.sticky-bar-middle {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  line-height: 1.3;
  margin-top: 2px;
}
@media (max-width: 480px) {
  .sticky-bar-middle { font-size: 11px; }
  .sticky-bar-free-ship { display: none; }
}
.sticky-bar-btn {
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.sticky-bar-btn:hover { background: var(--coral-dark); }

/* ===== SOCIAL PROOF TOAST ===== */

.social-proof-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 110;
  max-width: 320px;
  animation: toastSlide 0.4s ease;
}
@keyframes toastSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.spp-icon { font-size: 28px; flex-shrink: 0; }
.spp-bundle-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.spp-icon-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.spp-content { flex: 1; }
.spp-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.spp-action { font-size: 12px; color: var(--text-secondary); }
.spp-time { font-size: 11px; color: var(--text-muted); }
.spp-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

/* ===== TIER RECOMMENDATION BANNER ===== */
.tier-recommendation {
  background: linear-gradient(135deg, #E8F5EF 0%, #f0faf5 100%);
  border: 1px solid var(--sage);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.tier-rec-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-rec-icon {
  flex-shrink: 0;
  color: var(--sage);
  margin-top: 2px;
}
.tier-rec-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0;
}
.tier-rec-text strong {
  color: var(--coral);
}
.tier-rec-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(91,154,125,0.2);
  font-size: 12px;
  color: var(--text-secondary);
}
.tier-rec-info-bar .bib-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tier-rec-info-bar .bib-item strong {
  color: var(--sage);
  font-weight: 700;
}
.bib-dot {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
}

/* ===== EMAIL GATE SOCIAL PROOF ===== */
.email-gate-social-proof {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.email-gate-counter {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}
.email-gate-counter strong {
  color: var(--coral);
  font-weight: 800;
  font-size: 15px;
}

/* ===== MISSING CLASS FIXES ===== */
.email-error-msg {
  font-size: 13px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}
.bundle-product-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}
.results-hero { margin-bottom: 20px; }
.inter-content { text-align: center; }
.final-urgency-line {
  font-size: 14px;
  color: var(--coral);
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

/* ===== NEW V2 SECTIONS ===== */

.risk-meaning-callout {
  background: var(--cream-dark);
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 19px;
  line-height: 1.7;
}
.risk-meaning-callout p { margin-bottom: 12px; }
.risk-meaning-callout p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--coral);
  margin-bottom: 8px;
}

.vet-check-preemption {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
}
.vet-check-preemption p { margin-bottom: 14px; }
.vet-check-preemption p:last-child { margin-bottom: 0; }

.palatability-section {
  background: var(--cream-dark);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
}
.palatability-section p { margin-bottom: 14px; }
.palatability-section p:last-child { margin-bottom: 0; }

.section-subhead {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}

.two-battlegrounds-section {
  padding: 32px 0;
  margin-bottom: 8px;
}
.two-battlegrounds-section p { margin-bottom: 14px; font-size: 19px; line-height: 1.7; }
.two-battlegrounds-section p:last-child { margin-bottom: 0; }
/* Override: battle card desc inside two-battlegrounds must stay small (specificity fix) */
.two-battlegrounds-section .battle-card-desc,
.two-battlegrounds-section p.battle-card-desc {
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .two-battlegrounds-section .battle-card-desc,
  .two-battlegrounds-section p.battle-card-desc {
    font-size: 13px;
    line-height: 1.4;
  }
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.timeline-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.timeline-card .timeline-period,
.timeline-card .timeline-desc {
  padding: 0 16px;
}
.timeline-card .timeline-period { padding-top: 14px; }
.timeline-card .timeline-desc { padding-bottom: 16px; }
.timeline-period {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== TRUSTPILOT RATING BAR ===== */

.trustpilot-bar {
  background: #f7f7f7;
  padding: 8px 16px;
  border-bottom: 1px solid #e5e5e5;
}
.trustpilot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #4a4a4a;
}
.tp-label {
  font-weight: 700;
  color: #191919;
}
.tp-stars svg { vertical-align: middle; }
.tp-score { font-weight: 600; color: #191919; }
.tp-based { color: #6b7a8d; }
.tp-based strong { color: #191919; }
.tp-logo { vertical-align: middle; }
@media (max-width: 480px) {
  .tp-logo { display: none; }
}

/* ===== ROTATING TESTIMONIAL (quiz question screens) ===== */

.rotating-testimonial {
  padding: 0 16px 16px;
  max-width: 480px;
  margin: 20px auto 0;
}
.rt-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(27,42,74,0.08);
  transition: opacity 0.4s ease;
}
.rt-avatar-circle {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.rt-avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.rt-card-content { flex: 1; }
.rt-stars-row {
  color: var(--coral);
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.rt-quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 6px;
}
.rt-reviewer {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== AS SEEN IN BAR (interstitials + loader) ===== */

.as-seen-in-bar {
  text-align: center;
  padding: 20px 40px;
  background: #f5f0e8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.as-seen-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.media-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
/* Mobile: 2 rows for As Seen In */
@media (max-width: 480px) {
  .as-seen-in-bar { padding: 16px 16px; }
  .media-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    max-width: 360px;
  }
  .media-logo-styled {
    flex: 0 0 auto;
  }
}
.media-logo-styled {
  color: var(--navy);
  opacity: 0.35;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.mls-petmd { font-family: 'Georgia', serif; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.mls-akc { font-family: 'Times New Roman', serif; font-size: 26px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; }
.mls-vpn { font-family: 'Arial Narrow', 'Helvetica Neue', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.mls-wdj { font-family: 'Georgia', serif; font-size: 17px; font-weight: 700; font-style: italic; }
.mls-aw { font-family: 'Helvetica Neue', 'Arial', sans-serif; font-size: 17px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; }
@media (min-width: 481px) {
  .mls-petmd { font-size: 28px; }
  .mls-akc { font-size: 32px; }
  .mls-vpn { font-size: 20px; }
  .mls-wdj { font-size: 22px; }
  .mls-aw { font-size: 22px; }
}

/* ===== INVENTORY NOTICE ===== */

/* Inventory + Shipping + Viewing folded into .bundle-subtitle-text */

/* ===== SELLING FAST BADGE ===== */

.selling-fast-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 0;
}
.sf-dot {
  width: 6px;
  height: 6px;
  background: var(--danger);
  border-radius: 50%;
  animation: vcPulse 1.5s ease-in-out infinite;
}

/* ===== CERTIFICATION BADGES ===== */

/* ===== POST-BUNDLE TRUST (consolidated) ===== */

.post-bundle-trust {
  text-align: center;
  padding: 16px 0 24px;
}
.cert-badges-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 12px;
}
.cert-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.cert-inline svg { flex-shrink: 0; }
.guarantee-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.guarantee-row svg { flex-shrink: 0; }

/* ===== COMPARISON TABLE ===== */

.comparison-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.comparison-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  padding: 0 20px;
}
.comparison-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 13px;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 10px 8px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.comparison-table th:first-child { border-radius: 8px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 8px 0 0; }
.comparison-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tr.ct-highlight {
  background: #FFF5F2;
}
.comparison-table tr.ct-highlight td {
  font-weight: 600;
  border-bottom-color: rgba(232,101,74,0.2);
}
.ct-good { color: var(--sage); font-weight: 700; }
.ct-bad { color: var(--danger); }
.ct-ok { color: var(--warning); }
.ct-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* Mobile: stacked comparison cards */
@media (max-width: 480px) {
  .comparison-table-wrap { overflow-x: visible; margin: 0; padding: 0; }
  .comparison-table { min-width: 0; }
  .comparison-table thead { display: none; }
  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td { display: block; width: 100%; }
  .comparison-table tr {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(27,42,74,0.07);
    padding: 14px 16px;
    margin-bottom: 12px;
    border-bottom: none;
  }
  .comparison-table tr.ct-highlight {
    border: 2px solid var(--coral);
    box-shadow: 0 3px 14px rgba(232,101,74,0.12);
  }
  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light, #f0ece6);
    font-size: 15px;
  }
  .comparison-table td:last-child { border-bottom: none; }
  .comparison-table td:first-child {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    display: block;
    border-bottom: none;
    padding-bottom: 2px;
  }
  .comparison-table td:before {
    content: attr(data-label);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .comparison-table td:first-child:before { content: ''; }
  .comparison-table tr.ct-highlight td { border-bottom-color: rgba(232,101,74,0.12); }
  .comparison-table tr.ct-highlight td:last-child { border-bottom: none; }
}

/* ===== DAILY COST COMPARISON BARS ===== */

.cost-bars-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.cost-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cost-bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: center;
  gap: 8px;
}
.cb-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
}
.cb-track {
  height: 24px;
  background: var(--cream-dark);
  border-radius: 6px;
  overflow: hidden;
}
.cb-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s ease;
}
.cb-fill.cb-bad { background: #ef4444; }
.cb-fill.cb-mid { background: #f59e0b; }
.cb-fill.cb-good { background: var(--sage); }
.cb-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.cb-value-accent { color: var(--sage); }
.cb-highlight {
  background: var(--sage-bg);
  border-radius: 8px;
  padding: 4px 8px;
  margin: 0 -8px;
}

/* ===== REVIEWS AGGREGATE HEADER ===== */

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.ra-stars {
  color: var(--coral);
  font-size: 18px;
  letter-spacing: 1px;
}
.ra-text strong { color: var(--navy); }

/* ===== EXIT-INTENT OVERLAY ===== */

.exit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,27,48,0.85);
}
.exit-overlay-card {
  position: relative;
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: exitSlideIn 0.35s ease both;
}
@keyframes exitSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.exit-close:hover { color: var(--text-primary); }
.exit-ring-mini {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}
.exit-ring-score {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--coral);
}
.exit-headline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.exit-tier {
  font-size: 14px;
  font-weight: 800;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.exit-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}
.exit-desc strong { color: var(--navy); }
.exit-cta {
  width: 100%;
  cursor: pointer;
}
.exit-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== FOOTER ===== */

.site-footer {
  text-align: center;
  padding: 20px 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-sep { margin: 0 6px; opacity: 0.4; }

/* ===== RESPONSIVE ===== */

@media (max-width: 480px) {
  .intro-headline { font-size: 22px; }
  .results-title { font-size: 19px; }
  .inter-stat-grid { grid-template-columns: 1fr; gap: 8px; }
  .results-metrics { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; gap: 10px; }
  .steps-grid { grid-template-columns: 1fr; gap: 10px; }
  .timeline-grid { grid-template-columns: 1fr; gap: 10px; }
  .confidence-shift { grid-template-columns: 1fr; text-align: center; }
  .cs-arrow { transform: rotate(90deg); }
}

@media (min-width: 481px) {
  .quiz-container { padding: 0 24px; }
  .intro-headline { font-size: 30px; }
  .screen-heading { font-size: 24px; }
  .ingredients-grid { grid-template-columns: 1fr 1fr 1fr; }
  /* Desktop: same +2pt bump as mobile */
  .factor-text { font-size: 19px; }
  .symptom-item-name { font-size: 18px; }
  .symptom-item-text { font-size: 17px; }
  /* Desktop: before/after side-by-side */
  .before-after-photos {
    flex-direction: row;
    gap: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .ba-card { width: auto; flex: 1; }
  .ba-arrow { transform: rotate(0deg); }
}

/* ===== BUNDLE SELECTOR: DESKTOP ===== */
@media (min-width: 768px) {
  .bundle-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 90vw;
    max-width: 960px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .bundle-card.popular {
    transform: scale(1.05);
    z-index: 1;
  }
  .bundle-card.popular:hover {
    transform: scale(1.05) translateY(-2px);
  }
  .bundle-header { font-size: 20px; }
  .bundle-price { font-size: 32px; }
  .bundle-card-inner { padding: 24px 16px 18px; }
  .bundle-img-placeholder { max-width: 140px; padding: 30px 16px; }
}

/* BUNDLE SELECTOR: MOBILE (reorder popular to top) */
@media (max-width: 767px) {
  .bundle-card.popular { order: -1; }
  .bundle-price { font-size: 40px; }
  .bundle-price small { font-size: 26px; }
}

@media (max-width: 360px) {
  .bundle-price { font-size: 32px; }
  .bundle-price small { font-size: 20px; }
}

/* ===== GAP FALLBACKS (iOS 13 / early iOS 14 WebViews) ===== */
@supports not (gap: 1px) {
  .trust-bar-inner > * + * { margin-left: 8px; }
  .tb-item > * + * { margin-left: 4px; }
  .answers-list > * + * { margin-top: 10px; }
  .answer-btn > * + * { margin-left: 12px; }
  .checkbox-list > * + * { margin-top: 8px; }
  .checkbox-label > * + * { margin-left: 12px; }
  .intro-meta > * + * { margin-top: 10px; }
  .inter-stat-grid > * + * { margin-top: 12px; }
  .loading-checklist > * + * { margin-top: 10px; }
  .email-gate-inner > * + * { margin-top: 16px; }
  .risk-badge-inner > * + * { margin-left: 10px; }
  .factor-cards > * + * { margin-top: 12px; }
  .results-metrics > * + * { margin-top: 12px; }
  .steps-grid > * + * { margin-top: 10px; }
  .ingredients-grid > * + * { margin-top: 10px; }
  .proof-stats > * + * { margin-top: 10px; }
  .testimonials-grid > * + * { margin-top: 12px; }
  .faq-list > * + * { margin-top: 8px; }
  .social-badge-wrap > * + * { margin-top: 0; }
  .sticky-bar-inner > * + * { margin-left: 12px; }
  .product-badges > * + * { margin-top: 10px; }
  .timeline-grid > * + * { margin-top: 12px; }
  .bundle-selector > * + * { margin-top: 16px; }
  .bundle-details > * + * { margin-top: 6px; }
  .bundle-pricing > * + * { margin-left: 2px; }
  .bundle-guarantee > * + * { margin-left: 4px; }
  .rt-card > * + * { margin-left: 12px; }
  .trustpilot-inner > * + * { margin-left: 8px; }
  .media-logos > * + * { margin-left: 16px; }
  .cert-badges-inline > * + * { margin-left: 14px; }
  .cost-bars > * + * { margin-top: 10px; }
  .reviews-aggregate > * + * { margin-left: 8px; }
  .guarantee-row > * + * { margin-left: 8px; }
  .bundle-info-bar > * + * { margin-left: 8px; }
  .bib-item > * + * { margin-left: 5px; }
  .before-after-photos > * + * { margin-left: 12px; }
  .ba-inline-row > * + * { margin-left: 10px; }
}
