/* ════════════════════════════════════════════════════════════════
   ALLURA LAB — Test Multizona
   Light editorial theme. Charcoal text on warm cream, gold accents.
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --bg:           #F0EBE3;
  --bg-card:      #FDFAF6;
  --bg-card2:     #F7F2EA;
  --charcoal:     #1C1C17;
  --charcoal-mid: #3A3A32;
  --charcoal-dim: #6B6B5E;
  --gold:         #B8922E;
  --gold-light:   #C9A84C;
  --gold-bg:      rgba(184, 146, 46, 0.1);
  --gold-border:  rgba(184, 146, 46, 0.3);
  --amber:        #8B4513;
  --amber-bg:     rgba(139, 69, 19, 0.08);
  --border:       rgba(139, 100, 40, 0.18);
  --border-hover: rgba(184, 146, 46, 0.55);
  --error:        #B23A2E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --r: 8px;
}

html { font-size: 17px; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── LAYOUT ─── */
.quiz-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 72px;
}

.quiz-container { width: 100%; max-width: 580px; }

.quiz-header {
  width: 100%;
  max-width: 580px;
  padding: 28px 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.brand-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── PROGRESS ─── */
.progress-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-dim);
  font-weight: 600;
  min-height: 15px;
}

.progress-track {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold-light));
  border-radius: 99px;
  transition: width 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* ─── CARD ─── */
.quiz-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px 36px;
  box-shadow: 0 2px 16px rgba(100,80,40,0.07), 0 1px 3px rgba(100,80,40,0.06);
  animation: slideIn 0.4s cubic-bezier(0,0,0.2,1) both;
}

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

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

.quiz-card.exiting { animation: slideOut 0.28s ease both; }

/* ─── BACK BUTTON ─── */
.back-btn {
  background: none;
  border: none;
  color: var(--charcoal-dim);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--amber); }

/* ─── TYPOGRAPHY ─── */
.question-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.question-text {
  font-family: var(--serif);
  font-size: clamp(26px, 5.5vw, 34px);
  font-weight: 600;
  line-height: 1.28;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.question-sub {
  font-size: 16px;
  color: var(--charcoal-mid);
  margin-bottom: 28px;
  line-height: 1.55;
  font-weight: 400;
}

/* ─── INTRO ─── */
.intro { text-align: center; padding: 6px 0 4px; }

.intro-icon {
  font-size: 50px;
  display: block;
  margin-bottom: 20px;
  animation: gentle 3s ease-in-out infinite;
}

.intro-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 6.2vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.intro-sub {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.65;
  max-width: 430px;
  margin: 0 auto 28px;
  font-weight: 400;
}

.intro-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--charcoal-dim);
  font-weight: 500;
}
.intro-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ─── OPTION BUTTONS (choice) ─── */
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.option-btn {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  min-height: 48px;
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.option-btn:hover {
  border-color: var(--gold-light);
  background: var(--gold-bg);
  color: var(--amber);
}

.option-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.option-btn.selected {
  border-color: var(--gold);
  background: var(--gold-bg);
  color: var(--amber);
}

.option-btn.selected .opt-dot { background: var(--gold); border-color: var(--gold); }
.option-btn.selected .opt-dot::after { opacity: 1; }

.opt-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-hover);
  flex-shrink: 0;
  position: relative;
  transition: all 0.18s;
}

.opt-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--bg-card);
  opacity: 0;
  transition: opacity 0.18s;
}

/* ─── IMAGE GRID ─── */
.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.img-option {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px 14px 18px;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  position: relative;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-option:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139,69,19,0.1);
}

.img-option:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.img-option.selected { border-color: var(--gold); background: var(--gold-bg); }

.img-option.selected::after {
  content: '✓';
  position: absolute;
  top: 9px; right: 12px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}

.img-icon { font-size: 38px; display: block; margin-bottom: 11px; }

.img-label {
  font-size: 14px;
  color: var(--charcoal-mid);
  line-height: 1.4;
  font-weight: 500;
}

.img-option.selected .img-label { color: var(--amber); }

/* ─── SLIDER ─── */
.slider-wrap { margin-top: 6px; }

.slider-value-display {
  text-align: center;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.slider-value-label {
  text-align: center;
  font-size: 14px;
  color: var(--charcoal-dim);
  margin-bottom: 24px;
  min-height: 22px;
  font-weight: 400;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--charcoal-dim);
  margin-bottom: 10px;
  font-weight: 500;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  margin-bottom: 26px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 2px 10px rgba(184,146,46,0.35);
  cursor: pointer;
  transition: transform 0.15s;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  border: none; cursor: pointer;
}

/* ─── TIMELINE MONTH SELECTOR ─── */
.month-selector { margin-top: 6px; }

.month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.month-btn {
  position: relative;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 6px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.month-btn:hover { border-color: var(--gold-light); background: var(--gold-bg); }
.month-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.month-btn.selected { border-color: var(--gold); background: var(--gold-bg); }

.month-flag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), var(--gold-light));
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 99px;
  white-space: nowrap;
}

.month-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.month-btn.selected .month-num { color: var(--amber); }

.month-unit {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-dim);
  font-weight: 600;
}

.month-result {
  background: linear-gradient(135deg, rgba(139,69,19,0.06), rgba(184,146,46,0.06));
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r);
  padding: 20px 22px;
  transition: all 0.3s ease;
}

.month-result-pct {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.month-result-bar-track {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}

.month-result-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold-light));
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

.month-result-desc {
  font-size: 15px;
  color: var(--charcoal-mid);
  font-weight: 400;
  line-height: 1.5;
}

/* ─── INTERSTITIAL ─── */
.interstitial { text-align: center; padding: 8px 0 4px; }

.interstitial-icon {
  font-size: 54px;
  display: block;
  margin-bottom: 22px;
  animation: gentle 3s ease-in-out infinite;
}

@keyframes gentle {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.interstitial-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 5.5vw, 36px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}

.gold-line {
  width: 44px; height: 2px;
  background: var(--gold-light);
  margin: 0 auto 20px;
  opacity: 0.5;
}

.interstitial-body {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 30px;
  font-weight: 400;
}

/* ─── BUTTONS ─── */
.cta-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--amber), var(--gold-light));
  border: none;
  border-radius: var(--r);
  padding: 18px 24px;
  min-height: 48px;
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(139,69,19,0.22);
}

.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(139,69,19,0.32); }
.cta-btn:active { transform: scale(0.98); }
.cta-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.next-btn {
  width: 100%;
  margin-top: 20px;
  background: transparent;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r);
  padding: 14px 24px;
  min-height: 48px;
  color: var(--charcoal-dim);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: none;
}

.next-btn.visible { display: block; animation: fadeIn 0.3s ease; }
.next-btn:hover { border-color: var(--gold); color: var(--amber); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ─── LEAD FORM ─── */
.lead-form { display: flex; flex-direction: column; gap: 16px; margin-top: 4px; }

.field { display: flex; flex-direction: column; gap: 7px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--charcoal-mid);
}

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  background: var(--bg-card2);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 15px 16px;
  min-height: 48px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s;
}

.field input::placeholder { color: var(--charcoal-dim); opacity: 0.7; }

.field input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-card);
}

.field input.invalid { border-color: var(--error); }

.field-error {
  font-size: 13px;
  color: var(--error);
  font-weight: 500;
  min-height: 0;
  transition: min-height 0.2s;
}
.field-error:not(:empty) { min-height: 18px; margin-top: -2px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--charcoal-mid);
  line-height: 1.5;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1.5px solid var(--border-hover);
  border-radius: 5px;
  background: var(--bg-card2);
  cursor: pointer;
  position: relative;
  transition: all 0.18s;
}

.checkbox-row input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-row input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.checkbox-row input[type="checkbox"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.checkbox-row a { color: var(--amber); text-decoration: underline; }

.lead-reassure {
  text-align: center;
  font-size: 13px;
  color: var(--charcoal-dim);
  margin-top: 4px;
  font-weight: 400;
}

/* ─── LOADING ─── */
.loader-screen { text-align: center; padding: 56px 32px; }

.loader-wordmark {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.pulse-ring {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 1.8s cubic-bezier(0.2,0.6,0.3,1) infinite;
}
.pulse-ring::after { animation-delay: 0.9s; }

.pulse-ring .pulse-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes pulse {
  0%   { transform: scale(0.35); opacity: 0.9; }
  100% { transform: scale(1.1);  opacity: 0; }
}

.loader-text {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.loader-sub { font-size: 14px; color: var(--charcoal-dim); }

/* ─── RESULTS ─── */
.results-page {
  width: 100%;
  max-width: 580px;
  animation: slideIn 0.5s cubic-bezier(0,0,0.2,1) both;
}

.reveal { opacity: 0; transform: translateY(14px); animation: revealUp 0.55s cubic-bezier(0,0,0.2,1) forwards; }
.reveal.d1 { animation-delay: 0.05s; }
.reveal.d2 { animation-delay: 0.25s; }
.reveal.d3 { animation-delay: 0.45s; }
.reveal.d4 { animation-delay: 0.65s; }
.reveal.d5 { animation-delay: 0.85s; }

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

.results-intro { text-align: center; padding: 18px 0 24px; }

.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-bg);
  border: 1.5px solid var(--gold-border);
  border-radius: 99px;
  padding: 9px 20px 9px 16px;
  margin-bottom: 20px;
}
.profile-badge .badge-icon { font-size: 22px; }
.profile-badge .badge-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}

.results-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.results-headline {
  font-family: var(--serif);
  font-size: clamp(27px, 5.6vw, 36px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.24;
  margin-bottom: 18px;
}

.results-body {
  font-size: 16px;
  color: var(--charcoal-mid);
  line-height: 1.7;
  max-width: 490px;
  margin: 0 auto;
  font-weight: 400;
}

/* PROGRESS CHART */
.chart-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 14px rgba(100,80,40,0.07);
}

.chart-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  text-align: center;
}

.chart-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.3;
}

.chart-svg-wrap { width: 100%; overflow: visible; }
.chart-svg-wrap svg { width: 100%; height: auto; display: block; }

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--charcoal-dim);
  font-weight: 500;
}

.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.chart-date-note {
  text-align: center;
  font-size: 13px;
  color: var(--charcoal-dim);
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}
.chart-date-note strong { color: var(--amber); font-weight: 600; }

/* TIMER BANNER */
.timer-banner {
  background: linear-gradient(135deg, rgba(139,69,19,0.1), rgba(184,146,46,0.1));
  border: 1.5px solid var(--gold-border);
  border-radius: var(--r);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--charcoal-mid);
  font-weight: 500;
}

.timer-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-dim);
  font-weight: 600;
}

.timer-countdown {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--amber);
  min-width: 52px;
  text-align: center;
}

/* PRODUCT IMAGE FRAME */
.product-image-frame {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


/* PRODUCT CARD */
.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(100,80,40,0.1);
  margin-bottom: 18px;
}

.product-banner {
  background: linear-gradient(135deg, rgba(139,69,19,0.12), rgba(184,146,46,0.1));
  border-bottom: 1px solid var(--border);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-badge {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}

.product-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

.product-body { padding: 28px; }

.product-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.product-sub {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.product-tagline {
  font-size: 15px;
  color: var(--charcoal-mid);
  margin-bottom: 22px;
  line-height: 1.6;
}

.product-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  color: var(--charcoal-mid);
  font-weight: 400;
}

.include-check {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

/* DISCOUNT BLOCK */
.discount-strip {
  background: linear-gradient(135deg, rgba(139,69,19,0.09), rgba(184,146,46,0.09));
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r);
  padding: 18px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.discount-badge-big {
  background: linear-gradient(135deg, var(--amber), var(--gold-light));
  color: #fff;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}

.discount-info { flex: 1; }

.discount-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 6px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 17px;
  color: var(--charcoal-dim);
  text-decoration: line-through;
  font-weight: 400;
}

.price-now {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.price-saving {
  font-size: 13px;
  color: var(--charcoal-dim);
  width: 100%;
  margin-top: 4px;
  font-weight: 400;
}

.price-saving strong { color: var(--amber); font-weight: 700; }

.result-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--amber), var(--gold-light));
  border: none;
  border-radius: var(--r);
  padding: 19px;
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139,69,19,0.28);
}

.result-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,69,19,0.38); }

.guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--charcoal-dim);
  font-weight: 500;
}

.social-proof {
  text-align: center;
  font-size: 14px;
  color: var(--charcoal-mid);
  font-weight: 500;
  margin: 18px auto;
  max-width: 440px;
  line-height: 1.5;
}
.social-proof strong { color: var(--amber); font-weight: 700; }

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 18px 0 4px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
}

.trust-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  border-right: 1px solid var(--border);
  padding: 0 10px;
}

.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 24px; }

.trust-label {
  font-size: 12px;
  color: var(--charcoal-dim);
  line-height: 1.4;
  font-weight: 500;
  max-width: 90px;
}

.testimonial-mini {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-top: 16px;
}

.testimonial-stars { color: var(--gold); font-size: 15px; margin-bottom: 9px; }

.testimonial-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.65;
  margin-bottom: 12px;
  font-weight: 400;
}

.testimonial-author {
  font-size: 12px;
  color: var(--charcoal-dim);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .quiz-card { padding: 28px 20px 24px; }
  .img-grid { gap: 9px; }
  .img-icon { font-size: 32px; }
  .product-body { padding: 20px; }
  .discount-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
  .price-now { font-size: 34px; }
  .trust-label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Optional email gate (v2 results) ──────────────────────────────────── */
.email-gate-optional {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  margin-top: 24px;
  text-align: center;
}
.email-gate-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.email-gate-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}
.email-gate-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.opt-success {
  font-size: 16px;
  color: #5a9a5a;
  padding: 16px 0 4px;
  font-weight: 500;
}
