/* ═══════════════════════════════════════════════════════════════
   DIAGNOSTIC FLASH TRACFIN — AS DE CARO COACHING
   Design System : Noir / Rouge Sang / Blanc Ivoire
   ═══════════════════════════════════════════════════════════════ */

:root {
  --noir:        #0A0A0A;
  --noir-2:      #111111;
  --noir-3:      #1A1A1A;
  --rouge:       #C0001D;
  --rouge-vif:   #E0001F;
  --rouge-dark:  #8B0012;
  --rouge-glow:  rgba(192, 0, 29, 0.35);
  --blanc:       #FFFFFF;
  --blanc-ivoire:#F5F0E8;
  --gris-clair:  #CCCCCC;
  --gris-mid:    #888888;
  --gris-dark:   #333333;
  --or:          #B8960C;
  --or-light:    #D4AF37;
  --gold-glow:   rgba(212, 175, 55, 0.2);

  --font-title:  'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-btn:  0 4px 24px rgba(192,0,29,0.4);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--blanc);
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── SCREENS ─── */
.screen { display: none; min-height: 100vh; }
.screen.active { display: flex; flex-direction: column; }

/* ══════════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════════ */
#screen-landing {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192,0,29,0.12) 0%, transparent 70%),
    linear-gradient(160deg, #0f0f0f 0%, #0A0A0A 50%, #110005 100%);
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.landing-bg-overlay {
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(192,0,29,0.03) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(192,0,29,0.03) 60px
    );
  pointer-events: none;
  z-index: 0;
}

.landing-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Brand Header */
.brand-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--rouge-vif);
  text-transform: uppercase;
}
.brand-badge i { font-size: 1.1rem; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--or-light);
  letter-spacing: 0.05em;
  border: 1px solid rgba(212,175,55,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(212,175,55,0.08);
}

/* Warning Ticker */
.warning-ticker {
  width: 100%;
  background: linear-gradient(90deg, var(--rouge-dark), var(--rouge), var(--rouge-dark));
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: ticker-pulse 2.5s ease-in-out infinite;
}
.warning-ticker i { font-size: 0.85rem; opacity: 0.9; }
@keyframes ticker-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,0,29,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(192,0,29,0.4); }
}

/* Hero */
.landing-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gris-mid);
  text-transform: uppercase;
}
.eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gris-mid));
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gris-mid), transparent);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--blanc);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title .highlight-red {
  color: var(--rouge-vif);
  position: relative;
}
.hero-title .highlight-red::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--rouge-vif);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--gris-clair);
  line-height: 1.7;
  max-width: 620px;
}
.hero-subtitle strong { color: var(--blanc); font-weight: 700; }

/* Stats Row */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  padding: 18px 30px;
  text-align: center;
  flex: 1;
}
.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rouge-vif);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gris-mid);
  text-transform: uppercase;
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* Themes Preview */
.themes-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.theme-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gris-clair);
  transition: var(--transition);
}
.theme-tag:hover {
  border-color: var(--rouge);
  color: var(--blanc);
  background: rgba(192,0,29,0.1);
}
.theme-tag i { color: var(--rouge-vif); font-size: 0.8rem; }

/* Main CTA Button */
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--rouge), var(--rouge-dark));
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 18px 44px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn), 0 0 0 0 var(--rouge-glow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-cta-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.btn-cta-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-btn), 0 0 40px 8px var(--rouge-glow);
}
.btn-cta-main:active { transform: translateY(0) scale(0.99); }
.btn-cta-main i { transition: transform 0.3s ease; }
.btn-cta-main:hover i { transform: translateX(5px); }

.landing-disclaimer {
  font-size: 0.75rem;
  color: var(--gris-mid);
  display: flex;
  align-items: center;
  gap: 7px;
}
.landing-disclaimer i { color: var(--or-light); }

/* Landing Visual Row */
.landing-visual-row {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
.visual-card {
  flex: 1;
  max-width: 200px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.visual-card:hover {
  border-color: rgba(192,0,29,0.4);
  background: rgba(192,0,29,0.06);
}
.visual-card i {
  font-size: 2rem;
  color: var(--rouge-vif);
  margin-bottom: 10px;
  display: block;
}
.visual-card span {
  font-size: 0.75rem;
  color: var(--gris-mid);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   QUIZ SCREEN
══════════════════════════════════════════ */
#screen-quiz {
  background: var(--noir-2);
  min-height: 100vh;
  flex-direction: column;
}

.quiz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: var(--noir);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.quiz-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--rouge-vif);
  text-transform: uppercase;
}
.quiz-counter {
  font-size: 0.85rem;
  color: var(--gris-mid);
  font-weight: 500;
}
.quiz-counter span {
  color: var(--blanc);
  font-weight: 700;
}

/* Progress Bar */
.progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: var(--noir);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.progress-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rouge-dark), var(--rouge-vif));
  border-radius: 10px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--rouge-glow);
}
.progress-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rouge-vif);
  min-width: 36px;
  text-align: right;
}

/* Quiz Body */
.quiz-body {
  flex: 1;
  padding: 40px 28px 60px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.question-theme {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rouge-vif);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.question-theme::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--rouge-vif);
  border-radius: 1px;
}

.question-number-badge {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
}

.question-text {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--blanc);
  position: relative;
  z-index: 1;
}

/* Answers Grid */
.answers-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.answer-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}
.answer-btn:hover {
  border-color: var(--rouge);
  background: rgba(192,0,29,0.1);
  transform: translateX(6px);
}
.answer-btn:active { transform: translateX(3px) scale(0.99); }

.answer-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gris-mid);
  transition: var(--transition);
  flex-shrink: 0;
}
.answer-btn:hover .answer-letter {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--blanc);
}
.answer-btn.selected {
  border-color: var(--rouge-vif);
  background: rgba(192,0,29,0.15);
  transform: translateX(6px);
}
.answer-btn.selected .answer-letter {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--blanc);
}
.answer-text { flex: 1; }

/* Quiz Nav Hint */
.quiz-nav { margin-top: 8px; }
.quiz-nav-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gris-mid);
}
.quiz-nav-hint i { color: var(--rouge); }

/* ══════════════════════════════════════════
   LOADING SCREEN
══════════════════════════════════════════ */
#screen-loading {
  background:
    radial-gradient(circle at 50% 40%, rgba(192,0,29,0.1) 0%, transparent 60%),
    var(--noir);
  align-items: center;
  justify-content: center;
}

.loading-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 24px;
  max-width: 480px;
}

.loading-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spin linear infinite;
}
.ring-1 {
  width: 120px; height: 120px;
  border-top-color: var(--rouge-vif);
  animation-duration: 1.2s;
}
.ring-2 {
  width: 90px; height: 90px;
  border-right-color: rgba(192,0,29,0.5);
  animation-duration: 1.8s;
  animation-direction: reverse;
}
.ring-3 {
  width: 64px; height: 64px;
  border-bottom-color: rgba(192,0,29,0.25);
  animation-duration: 2.4s;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.loading-shield {
  font-size: 1.8rem;
  color: var(--rouge-vif);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.92); }
}

.loading-title {
  font-family: var(--font-title);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--blanc);
}
.loading-subtitle {
  font-size: 0.9rem;
  color: var(--gris-mid);
  margin-top: -20px;
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: left;
}
.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  font-size: 0.88rem;
  color: var(--gris-clair);
  transition: var(--transition);
}
.loading-step.hidden { opacity: 0; transform: translateY(8px); }
.loading-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.loading-step i { color: var(--rouge-vif); font-size: 1rem; flex-shrink: 0; }
.loading-step:last-child i { color: #22c55e; }

/* ══════════════════════════════════════════
   RESULT SCREEN
══════════════════════════════════════════ */
#screen-result {
  background: var(--noir);
  flex-direction: column;
}

.result-header {
  background: var(--noir-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 28px;
  text-align: center;
}
.result-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rouge-vif);
  text-transform: uppercase;
}

.result-body {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

/* Score Circle */
.result-score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.result-score-circle {
  position: relative;
  width: 180px;
  height: 180px;
}
.score-svg {
  width: 180px;
  height: 180px;
  transform: rotate(-90deg);
}
.score-track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 8;
}
.score-progress {
  fill: none;
  stroke: var(--rouge-vif);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px var(--rouge-glow));
}
.score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-pct {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blanc);
  line-height: 1;
}
.score-label-sm {
  font-size: 0.7rem;
  color: var(--gris-mid);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.score-detail {
  font-size: 0.88rem;
  color: var(--gris-mid);
}
.score-detail span {
  color: var(--blanc);
  font-weight: 700;
}

/* Verdict */
.result-verdict {
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}
.result-verdict::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(30px);
  transform: scale(1.5);
  opacity: 0.2;
  pointer-events: none;
}

/* Zone Danger */
.verdict-danger {
  background: rgba(192,0,29,0.12);
  border-color: var(--rouge-vif);
}
.verdict-danger .verdict-icon { color: var(--rouge-vif); }
.verdict-danger .verdict-badge {
  background: var(--rouge);
  color: var(--blanc);
}

/* Vigilance */
.verdict-vigilance {
  background: rgba(234,88,12,0.1);
  border-color: #ea580c;
}
.verdict-vigilance .verdict-icon { color: #f97316; }
.verdict-vigilance .verdict-badge {
  background: #ea580c;
  color: var(--blanc);
}

/* Conformité Fragile */
.verdict-conforme {
  background: rgba(212,175,55,0.1);
  border-color: var(--or-light);
}
.verdict-conforme .verdict-icon { color: var(--or-light); }
.verdict-conforme .verdict-badge {
  background: var(--or);
  color: var(--blanc);
}

.verdict-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}
.verdict-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.verdict-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--blanc);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.verdict-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gris-clair);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.verdict-desc strong { color: var(--blanc); }

/* Breakdown */
.result-breakdown {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
}
.breakdown-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gris-mid);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breakdown-title::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--rouge-vif);
}
.breakdown-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.breakdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.breakdown-label {
  font-size: 0.83rem;
  color: var(--gris-clair);
  min-width: 180px;
  font-weight: 500;
}
.breakdown-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.breakdown-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  width: 0%;
}
.bar-rouge { background: linear-gradient(90deg, var(--rouge-dark), var(--rouge-vif)); }
.bar-or    { background: linear-gradient(90deg, #a37800, var(--or-light)); }
.bar-vert  { background: linear-gradient(90deg, #15803d, #22c55e); }

.breakdown-score {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blanc);
  min-width: 36px;
  text-align: right;
}

/* CTA Block */
.result-cta-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-urgency {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(192,0,29,0.08);
  border: 1px solid rgba(192,0,29,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--gris-clair);
  line-height: 1.5;
}
.cta-urgency i { color: var(--rouge-vif); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.cta-offer-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius-md);
  padding: 24px;
}
.cta-offer-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rouge-dark), var(--rouge));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blanc);
  flex-shrink: 0;
  box-shadow: 0 4px 20px var(--rouge-glow);
}
.cta-offer-text h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
  line-height: 1.4;
}
.cta-offer-text p {
  font-size: 0.88rem;
  color: var(--gris-clair);
  line-height: 1.6;
}
.cta-offer-text p strong { color: var(--or-light); }

.btn-cta-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--rouge), var(--rouge-dark));
  color: var(--blanc);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-cta-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.btn-cta-result:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn), 0 0 40px 8px var(--rouge-glow);
}
.btn-cta-result i:first-child { font-size: 1rem; }
.btn-cta-result i:last-child { margin-left: auto; opacity: 0.8; }

.cta-trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--gris-mid);
}
.cta-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-trust-row i { color: var(--or-light); }

/* Restart Button */
.btn-restart {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gris-mid);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-restart:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--blanc);
}

/* ══════════════════════════════════════════
   ANIMATIONS GLOBALES
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.screen.active .landing-hero > * {
  animation: fadeInUp 0.6s ease backwards;
}
.screen.active .landing-hero > *:nth-child(1) { animation-delay: 0.1s; }
.screen.active .landing-hero > *:nth-child(2) { animation-delay: 0.2s; }
.screen.active .landing-hero > *:nth-child(3) { animation-delay: 0.3s; }
.screen.active .landing-hero > *:nth-child(4) { animation-delay: 0.4s; }
.screen.active .landing-hero > *:nth-child(5) { animation-delay: 0.5s; }
.screen.active .landing-hero > *:nth-child(6) { animation-delay: 0.6s; }
.screen.active .landing-hero > *:nth-child(7) { animation-delay: 0.7s; }

.question-text { animation: fadeInUp 0.4s ease backwards; }
.answers-grid  { animation: fadeInUp 0.4s ease 0.1s backwards; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .landing-content { padding: 24px 16px 40px; gap: 20px; }
  .stats-row { flex-direction: column; gap: 0; }
  .stat-divider { width: 80%; height: 1px; margin: 0 auto; }
  .stat-item { padding: 14px 20px; }
  .brand-header { flex-direction: column; gap: 10px; text-align: center; }
  .cta-offer-box { flex-direction: column; }
  .cta-trust-row { gap: 14px; }
  .landing-visual-row { flex-direction: column; align-items: center; }
  .visual-card { max-width: 100%; width: 100%; }
  .quiz-body { padding: 28px 16px 40px; }
  .progress-bar-wrap, .quiz-header { padding: 12px 16px; }
  .result-body { padding: 28px 16px 40px; }
  .breakdown-label { min-width: 120px; font-size: 0.76rem; }
  .btn-cta-result { font-size: 0.95rem; padding: 17px 24px; }
}
