/* =============================================
   ACCOR DIAGNOSTIC — CHARTE UI LUXE
   Navy #12283B | Gold #E29C16 | Plus Jakarta Sans
   Radius 4px | Espacement généreux
   ============================================= */

:root {
  --navy: #12283B;
  --navy-light: #1a3651;
  --navy-mid: #243f55;
  --navy-pale: #f0f4f8;
  --gold: #E29C16;
  --gold-light: #f5c84a;
  --white: #ffffff;
  --off-white: #fafaf8;
  --text-primary: #12283B;
  --text-secondary: #4a6278;
  --text-muted: #7a96a8;
  --border: #dde6ed;
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 2px 16px rgba(18, 40, 59, 0.08);
  --shadow-md: 0 4px 32px rgba(18, 40, 59, 0.12);
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============ LAYOUT ============ */

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

.container {
  flex: 1;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 680px;
  padding: 80px 24px 60px;
}
.container--quiz {
  max-width: 840px;
  padding: 48px 24px 40px;
}
.container--rapport {
  max-width: 900px;
  padding: 60px 24px 40px;
}

.centered { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

/* ============ HEADER ============ */

.site-header {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-light);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
}
.header-brand { display: flex; align-items: center; gap: 16px; }
.brand-accor {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.brand-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}
.brand-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

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

.site-footer {
  text-align: center;
  padding: 24px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}

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

.intro-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.intro-headline {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.intro-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
}
.intro-sub strong { color: var(--navy); font-weight: 600; }
.intro-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.meta-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border);
}

/* ============ BOUTONS ============ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--navy-light); }
.btn-primary:active { transform: scale(0.99); }
.btn-primary:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }
.btn-secondary:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============ PROGRESS ============ */

.progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.progress-bar-track {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}
.progress-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ============ SITUATION CARD ============ */

.situation-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.situation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}
.situation-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(226, 156, 22, 0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.situation-texte {
  font-size: 18px;
  line-height: 1.65;
  color: var(--white);
  font-weight: 400;
}

/* ============ INSTRUCTIONS ============ */

.quiz-instructions {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.instr-item { display: flex; align-items: center; gap: 10px; }
.instr-badge {
  padding: 4px 12px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-plus { background: var(--navy); color: var(--white); }
.badge-moins { background: var(--navy-pale); color: var(--text-secondary); border: 1px solid var(--border); }
.instr-hint { font-size: 12px; color: var(--text-muted); }

/* ============ OPTIONS ============ */

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.option-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  user-select: none;
}
.option-item:hover {
  border-color: var(--navy-mid);
}

.option-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.option-letter {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  min-width: 20px;
  padding-top: 2px;
  text-transform: uppercase;
  transition: color 0.15s;
}
.option-texte {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-primary);
  flex: 1;
}
.option-badges {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  margin-left: 40px;
}
.option-badge {
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* États sélection */
.option-item.is-plus {
  border-color: var(--navy);
  background: var(--navy);
}
.option-item.is-plus .option-letter { color: var(--gold); }
.option-item.is-plus .option-texte { color: var(--white); }

.option-item.is-moins {
  border-color: var(--text-muted);
  background: var(--navy-pale);
}
.option-item.is-moins .option-letter { color: var(--text-secondary); }

.option-item.is-plus .option-badges .b-plus {
  background: var(--gold);
  color: var(--navy);
}
.option-item.is-moins .option-badges .b-moins {
  background: var(--text-muted);
  color: var(--white);
}

/* ============ QUIZ NAV ============ */

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ============ LOADING ============ */

.loader-ring {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============ RAPPORT ============ */

.rapport-header {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.rapport-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rapport-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.rapport-signature-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  font-style: italic;
}

/* Radar */
.radar-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.radar-wrap {
  aspect-ratio: 1;
  max-width: 360px;
}
.radar-wrap canvas { width: 100% !important; height: auto !important; }
.radar-legend { display: flex; flex-direction: column; gap: 16px; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: help;
}
.legend-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-left: auto;
}

/* Blocs rapport */
.rapport-blocs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.rapport-bloc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}
.bloc-dominante {
  border-top: 3px solid var(--navy);
  grid-column: 1 / -1;
}
.bloc-signature {
  border-top: 3px solid var(--gold);
  grid-column: 1 / -1;
}
.bloc-secondaire { border-top: 3px solid var(--text-secondary); }
.bloc-angle { border-top: 3px solid var(--text-muted); }

.bloc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.tag-dominante { color: var(--navy); }
.tag-signature { color: var(--gold); }
.tag-secondaire { color: var(--text-secondary); }
.tag-angle { color: var(--text-muted); }

.bloc-titre {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.bloc-texte {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* Scores bars */
.scores-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 40px;
}
.scores-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.scores-bars { display: flex; flex-direction: column; gap: 20px; }
.score-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  gap: 20px;
}
.score-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: help;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.score-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--navy);
  transition: width 0.6s ease;
}
.score-fill.is-dominante { background: var(--navy); }
.score-fill.is-secondaire { background: var(--navy-mid); }
.score-fill.is-angle { background: var(--border); }
.score-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: right;
}

/* Actions */
.rapport-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

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

@media (max-width: 720px) {
  .container--narrow { padding: 48px 20px 40px; }
  .container--quiz { padding: 32px 16px 32px; }
  .container--rapport { padding: 40px 16px 32px; }

  .situation-card { padding: 28px 24px; }
  .situation-texte { font-size: 16px; }

  .radar-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .radar-wrap { max-width: 280px; margin: 0 auto; }

  .rapport-blocs { grid-template-columns: 1fr; }
  .bloc-dominante, .bloc-signature { grid-column: auto; }

  .score-row { grid-template-columns: 120px 1fr 40px; gap: 12px; }

  .quiz-instructions { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 16px 20px; }
  .brand-sep, .brand-title { display: none; }
  .option-item { padding: 18px 20px; }
  .option-inner { gap: 14px; }
  .quiz-nav { gap: 12px; }
  .btn-primary, .btn-secondary { padding: 14px 20px; font-size: 13px; }
}

/* ============ PDF ============ */

@media print {
  .rapport-actions { display: none; }
  .site-header { display: none; }
  .screen { display: block !important; }
}

/* ============================================================

/* ============================================================
   PAGE DE PRÉSENTATION — REFONTE COMPLÈTE
   Remplace tout le CSS de présentation précédent
   ============================================================ */

/* ── Utilitaires ── */
.gold { color: #E29C16; }

.container-pres {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container-pres { padding: 0 20px; } }

.pres-page { background: #FAFAF7; }

/* Fade-in au scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E29C16;
  margin-bottom: 16px;
}

/* Section heading */
.s-heading {
  font-size: 40px;
  font-weight: 600;
  color: #12283B;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.s-heading--light { color: #FFFFFF; }
@media (max-width: 768px) { .s-heading { font-size: 28px; } }

/* Section intro text */
.s-intro-text {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 56px;
}
.s-intro-text--light { color: rgba(255,255,255,0.7); }

/* Skip button */
.btn-skip {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 250ms, color 250ms;
  white-space: nowrap;
}
.btn-skip:hover { border-color: #E29C16; color: #E29C16; }

/* ── S1 : HERO ── */
.s-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12283B;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226,156,22,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,156,22,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(226,156,22,0.06) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 80px 40px;
}
@media (max-width: 768px) { .hero-inner { padding: 60px 20px; } }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.hero-h1 {
  font-size: 72px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 28px;
}
@media (max-width: 768px) { .hero-h1 { font-size: 42px; letter-spacing: -1px; } }

.hero-accroche {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold-cta {
  background: #E29C16 !important;
  color: #12283B !important;
  font-size: 15px !important;
  padding: 16px 40px !important;
  border: none;
}
.btn-gold-cta:hover { background: #FFFFFF !important; color: #12283B !important; }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 16px 32px;
  text-decoration: none;
  transition: border-color 250ms, color 250ms;
}
.btn-ghost-white:hover { border-color: #E29C16; color: #E29C16; }

/* ── S2 : ENJEU ── */
.s-enjeu {
  background: #F5F0E8;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-enjeu { padding: 64px 0; } }

.enjeu-paragraphes {
  max-width: 720px;
}
.enjeu-paragraphes p {
  font-size: 16px;
  color: #12283B;
  line-height: 1.8;
  margin-bottom: 24px;
}
.enjeu-paragraphes p:last-child { margin-bottom: 0; }

/* ── S3 : COMPÉTENCES ── */
.s-competences {
  background: #FAFAF7;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-competences { padding: 64px 0; } }

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .comp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .comp-grid { grid-template-columns: 1fr; } }

.comp-card {
  background: #FFFFFF;
  border: 1px solid #E5E0D6;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 250ms;
}
.comp-card:hover { border-color: rgba(226,156,22,0.4); }
.comp-icon { margin-bottom: 20px; }
.comp-titre {
  font-size: 14px;
  font-weight: 600;
  color: #12283B;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}
.comp-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 16px;
}
.comp-source {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #E29C16;
  margin-top: auto;
}

/* ── S4 : MÉTHODE ── */
.s-methode {
  background: #12283B;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-methode { padding: 64px 0; } }
.s-methode .s-heading { color: #FFFFFF; }
.s-methode .section-label { color: rgba(226,156,22,0.8); }

.methode-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 56px;
}

.methode-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .methode-cards { grid-template-columns: 1fr; } }

.methode-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #E29C16;
  border-radius: 4px;
  padding: 28px;
  transition: background 250ms;
}
.methode-card:hover { background: rgba(255,255,255,0.08); }
.methode-card-icon { margin-bottom: 16px; }
.methode-card-titre {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.methode-card-body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* ── S5 : PROTO ── */
.s-proto {
  background: #FAFAF7;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-proto { padding: 64px 0; } }

.proto-quote {
  font-style: italic;
  font-size: 17px;
  color: #12283B;
  line-height: 1.75;
  border-left: 3px solid #E29C16;
  padding-left: 24px;
  margin: 0 0 56px;
  max-width: 680px;
}

.proto-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 680px) { .proto-cards { grid-template-columns: 1fr; } }

.proto-card {
  background: #FFFFFF;
  border: 1px solid #E5E0D6;
  border-radius: 4px;
  padding: 32px;
  transition: border-color 250ms;
}
.proto-card:hover { border-color: rgba(226,156,22,0.4); }
.proto-card-icon { margin-bottom: 16px; }
.proto-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #12283B;
  margin-bottom: 10px;
}
.proto-card p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
}

/* ── S6 : COMMENT ÇA MARCHE ── */
.s-how {
  background: #FFFFFF;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-how { padding: 64px 0; } }

.steps-row {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
}
.step-item { flex: 1; padding: 0 40px; text-align: center; }
.step-item:first-child { padding-left: 0; }
.step-item:last-child { padding-right: 0; }
.step-sep {
  width: 1px;
  height: 60px;
  background: #E5E0D6;
  margin-top: 28px;
  flex-shrink: 0;
}
.step-num {
  font-size: 56px;
  font-weight: 300;
  color: #E29C16;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.step-titre {
  font-size: 16px;
  font-weight: 600;
  color: #12283B;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 680px) {
  .steps-row { flex-direction: column; align-items: center; }
  .step-item { padding: 0; margin-bottom: 8px; }
  .step-sep { width: 60px; height: 1px; margin: 8px 0; }
}

/* ── S7 : CE QUE CHAQUE MANAGER REÇOIT ── */
.s-reçoit {
  background: #F5F0E8;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-reçoit { padding: 64px 0; } }

.recoit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
}
@media (max-width: 600px) { .recoit-grid { grid-template-columns: 1fr; } }

.recoit-card {
  background: #FFFFFF;
  border: 1px solid #E5E0D6;
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 250ms;
}
.recoit-card:hover { border-color: rgba(226,156,22,0.4); }
.recoit-icon {}
.recoit-titre {
  font-size: 15px;
  font-weight: 600;
  color: #12283B;
  margin: 0;
}
.recoit-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0;
}

/* ── S8 : ROADMAP ── */
.s-roadmap {
  background: #12283B;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-roadmap { padding: 64px 0; } }

.roadmap-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #12283B;
  background: #E29C16;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 24px;
}

.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.roadmap-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #E29C16;
  border-radius: 4px;
  padding: 24px;
  transition: background 250ms;
}
.roadmap-item:hover { background: rgba(255,255,255,0.07); }
.roadmap-item-icon { flex-shrink: 0; margin-top: 2px; }
.roadmap-item-titre {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.roadmap-item-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

/* ── S9 : CTA FINAL ── */
.s-cta-final {
  background: #0D1E2D;
  padding: 120px 0;
}
@media (max-width: 768px) { .s-cta-final { padding: 80px 0; } }
.s-cta-final-inner { text-align: center; }

.cta-final-h2 {
  font-size: 48px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
@media (max-width: 768px) { .cta-final-h2 { font-size: 32px; } }

.cta-final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
}

.btn-gold-large {
  background: #E29C16 !important;
  color: #12283B !important;
  font-size: 16px !important;
  padding: 18px 48px !important;
  font-weight: 600 !important;
  border: none;
}
.btn-gold-large:hover { background: #FFFFFF !important; color: #12283B !important; }

/* Overrides header on pres page (dark background) */
#header-intro .brand-accor { color: #FFFFFF; }
#header-intro .brand-title { color: rgba(255,255,255,0.7); }
#header-intro .brand-sep { background: rgba(255,255,255,0.2); }
#header-intro { background: rgba(18,40,59,0.95); border-bottom: 1px solid rgba(255,255,255,0.08); }

/* Bouton retour accueil (header quiz) */
.btn-back-home {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  background: transparent;
  border: 1px solid #E5E0D6;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 250ms ease, color 250ms ease;
}
.btn-back-home:hover { border-color: #12283B; color: #12283B; }

/* Header quiz — bouton accueil poussé à droite */
.site-header--quiz .header-inner { justify-content: space-between; }

/* Fix hover bouton accueil sur header navy */
.site-header--quiz .btn-back-home {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.site-header--quiz .btn-back-home:hover {
  color: #E29C16;
  border-color: #E29C16;
}

/* ── BLOC PROCHAINE MESURE ── */
.prochaine-mesure-bloc {
  background: #F5F0E8;
  border-left: 3px solid #E29C16;
  border-radius: 4px;
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 32px;
}
.pm-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #12283B;
  background: #E29C16;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}
.pm-titre {
  font-size: 24px;
  font-weight: 600;
  color: #12283B;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.pm-texte {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 32px;
  max-width: 680px;
}
.pm-radar-wrap {
  max-width: 400px;
  margin: 0 auto 28px;
}
.pm-radar-legende {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}
.pm-legende-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
}
.pm-legende-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pm-dot-today { background: #12283B; }
.pm-dot-proj  { background: #E29C16; }

.pm-recap {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-recap li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #12283B;
  line-height: 1.5;
}
.pm-recap li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E29C16;
  flex-shrink: 0;
  margin-top: 6px;
}
.pm-mention {
  font-size: 11px;
  font-style: italic;
  color: #8A8A8A;
  text-align: center;
  margin: 0;
}

/* Fix radar projection coupé */
.pm-radar-wrap { max-width: 480px; padding: 16px; box-sizing: border-box; }

/* Centrage bloc prochaine mesure */
.prochaine-mesure-bloc { text-align: center; }
.pm-texte { margin-left: auto; margin-right: auto; text-align: center; }
.pm-recap { align-items: center; }

/* Radar projection — canvas plus grand pour labels visibles */
.pm-radar-wrap { max-width: 560px !important; padding: 0 !important; overflow: visible; }
#radar-projection { width: 100% !important; height: auto !important; }

/* Mention visualisation plus visible */
.pm-mention {
  font-size: 13px !important;
  font-style: italic;
  color: #12283B !important;
  background: rgba(226,156,22,0.1);
  border: 1px solid rgba(226,156,22,0.3);
  border-radius: 4px;
  padding: 12px 20px;
  margin-top: 8px;
  display: inline-block;
}

/* Alignement puces récap */
.pm-recap { display: inline-flex; flex-direction: column; align-items: flex-start; text-align: left; }
.pm-recap li { justify-content: flex-start; }

/* Fix mention sous les puces */
.pm-recap { display: flex !important; width: 100%; max-width: 480px; margin-left: auto; margin-right: auto; }
.pm-mention { display: block; width: 100%; margin-top: 20px; clear: both; }

/* ============================================================
   RESPONSIVE MOBILE — CORRECTIONS COMPLÉMENTAIRES
   ============================================================ */

/* Header — mobile */
@media (max-width: 480px) {
  #header-intro .header-inner, #header-quiz .header-inner {
    padding: 14px 16px;
  }
  .btn-back-home { font-size: 12px; padding: 6px 12px; }
}

/* Hero — petit mobile */
@media (max-width: 480px) {
  .hero-h1 { font-size: 32px; }
  .hero-accroche { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-ghost-white { width: 100%; text-align: center; justify-content: center; }
  .btn-hero { width: 100%; }
}

/* Rapport — rapport-actions boutons empilés sur mobile */
@media (max-width: 600px) {
  .rapport-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px 16px;
  }
  .rapport-actions button { width: 100%; text-align: center; }
}

/* Bloc prochaine mesure — mobile */
@media (max-width: 600px) {
  .prochaine-mesure-bloc { padding: 24px 20px; }
  .pm-titre { font-size: 20px; }
  .pm-radar-wrap { max-width: 100% !important; }
}

/* Steps — mobile (texte centré, padding réduit) */
@media (max-width: 680px) {
  .step-item { text-align: center; }
}

/* Roadmap — mobile */
@media (max-width: 600px) {
  .roadmap-item { flex-direction: column; gap: 12px; }
}

/* CTA final — mobile */
@media (max-width: 480px) {
  .btn-gold-large { width: 100%; padding: 18px 24px !important; }
}

/* Options quiz — mobile : boutons most/least sous le texte */
@media (max-width: 560px) {
  .option-item { flex-direction: column; }
  .option-controls { flex-direction: row; justify-content: flex-end; margin-top: 12px; gap: 8px; }
}

/* ============================================================
   IMPRESSION / EXPORT PDF — window.print()
   ============================================================ */
@media print {
  /* Cache tout le body sauf le rapport */
  body.printing-rapport > * { display: none !important; }

  /* Affiche uniquement l'écran rapport */
  body.printing-rapport #screen-rapport {
    display: block !important;
    position: static !important;
    min-height: auto !important;
    background: #ffffff;
  }

  /* Contenu rapport */
  body.printing-rapport #rapport-content {
    display: block !important;
    background: #ffffff;
    padding: 10mm 12mm;
    box-sizing: border-box;
    width: 100%;
  }

  /* Cache les boutons */
  body.printing-rapport .rapport-actions { display: none !important; }
  body.printing-rapport .site-header { display: none !important; }

  /* Footer */
  body.printing-rapport #screen-rapport .site-footer {
    display: block !important;
    text-align: center;
    font-size: 10px;
    color: #8A8A8A;
  }

  /* Anti-coupure */
  .rapport-bloc, .prochaine-mesure-bloc { page-break-inside: avoid; }

  /* Canvas */
  canvas { max-width: 100% !important; height: auto !important; }
}
}
