/* ==========================================================
   LANDING ROADMAP QG — thème sombre intégré à l'issue du diagnostic
   Palette : navy #0e1722, navy-light #162030, gold #c49e58
   Fonts   : Cormorant Garamond (serif) + Inter (sans)
   ========================================================== */

/* Fonts Google chargées dans index.html */

/* Quand la landing est active : on sort du layout "wrap" et on masque le header */
body.roadmap-active { background: var(--page-bg, #0e1722); }
body.roadmap-active .hdr { display: none; }
body.roadmap-active .wrap {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.roadmap-active .view-final .card { all: unset; }
body.roadmap-active #roadmap-mount { display: block; width: 100%; }

/* === Vue INTRO (avant la landing) : mêmes règles body que la roadmap === */
body.intro-active { background: var(--page-bg, #0e1722); }
body.intro-active .hdr { display: none; }
body.intro-active .wrap {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.intro-active .view-intro .card { all: unset; }
body.intro-active #view-intro { display: block; width: 100%; }

/* Conteneur racine de la vue intro : variables + typo sombres */
.intro-view .intro-root {
  --navy: #0e1722;
  --navy-light: #162030;
  --gold: #c49e58;
  --gold-hover: #d4b472;
  --gold-soft: rgba(196, 158, 88, 0.7);
  --cream: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.65);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  background: #0e1722;
  color: #f5f1e8;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.intro-view .intro-container {
  width: 100%;
  max-width: 880px;
  text-align: center;
}
.intro-view .intro-eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #c49e58;
  margin: 0 0 18px;
}
.intro-view .intro-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  color: #f5f1e8;
  margin: 0 0 36px;
  letter-spacing: -0.5px;
}
.intro-view .intro-title .accent {
  color: #c49e58;
  font-style: italic;
}
.intro-view .intro-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.intro-view .btn-intro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c49e58;
  color: #0e1722;
  border: none;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 16px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-transform: none;
}
.intro-view .btn-intro:hover {
  background: #d4b472;
  transform: translateY(-1px);
}
.intro-view .btn-intro:active { transform: translateY(0); }

/* Logo en haut à gauche de la vue intro (aligné avec les autres pages) */
.intro-view .intro-root { position: relative; }
.intro-view .intro-brand {
  position: absolute;
  top: 18px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  z-index: 2;
}
.intro-view .intro-brand img {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .intro-view .intro-root { padding: 28px 16px; }
  .intro-view .intro-title { margin-bottom: 24px; }
  .intro-view .btn-intro { width: 100%; justify-content: center; }
  .intro-view .intro-brand { top: 14px; left: 18px; }
  .intro-view .intro-brand img { height: 48px; }
}

.roadmap {
  --navy: #0e1722;
  --navy-light: #162030;
  --gold: #c49e58;
  --gold-hover: #d4b472;
  --gold-soft: rgba(196, 158, 88, 0.85);
  --gold-border: rgba(196, 158, 88, 0.30);
  --gold-border-strong: rgba(196, 158, 88, 0.45);
  --gold-line: rgba(196, 158, 88, 0.16);
  --gold-bg: rgba(196, 158, 88, 0.10);
  /* Lisibilité boostée : valeurs remontées pour que les textes secondaires
     restent lisibles sur navy. (anciennes valeurs en commentaire) */
  --white-80: rgba(255, 255, 255, 0.95);   /* était 0.80 */
  --white-70: rgba(255, 255, 255, 0.92);   /* était 0.70 */
  --white-60: rgba(255, 255, 255, 0.88);   /* était 0.60 */
  --white-55: rgba(255, 255, 255, 0.85);   /* était 0.55 */
  --white-45: rgba(255, 255, 255, 0.80);   /* était 0.45 */
  --white-40: rgba(255, 255, 255, 0.75);   /* était 0.40 */
  --white-35: rgba(255, 255, 255, 0.72);   /* était 0.35 */
  --white-25: rgba(255, 255, 255, 0.62);   /* était 0.25 */
  --white-22: rgba(255, 255, 255, 0.58);   /* était 0.22 */
  --white-18: rgba(255, 255, 255, 0.55);   /* était 0.18 */
  --white-15: rgba(255, 255, 255, 0.50);   /* était 0.15 */
  --rm-text:   #ffffff;                    /* texte principal (titres) */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;

  background: var(--navy);
  color: var(--rm-text);
  font-family: var(--sans);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.roadmap *,
.roadmap *::before,
.roadmap *::after { box-sizing: border-box; }

.roadmap ::selection {
  background: rgba(196, 158, 88, 0.25);
  color: #fff;
}

/* ----- Bannière "diagnostic reçu" intégrée à la landing ----- */
.roadmap-ack {
  background: linear-gradient(135deg, #0e1722 0%, #162030 100%);
  border-bottom: 1px solid var(--gold-line);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}
.roadmap-ack .check {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--gold-border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.roadmap-ack .txt {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--white-70);
  letter-spacing: 0.5px;
}
.roadmap-ack .txt strong {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  margin-right: 8px;
}

/* ----- Sections (common) ----- */
.roadmap section {
  padding: 96px 24px;
  border-top: 1px solid var(--gold-line);
}
.roadmap .container {
  max-width: 1152px;
  margin: 0 auto;
}
.roadmap .container.narrow { max-width: 896px; }
.roadmap .container.medium { max-width: 1024px; }
.roadmap .container.form { max-width: 672px; }
.roadmap .container.faq { max-width: 768px; }

.roadmap .eyebrow {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
}
.roadmap .h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
  color: #fff;
  margin: 18px 0 0;
}
.roadmap .h2 .dim { color: var(--white-40); }
.roadmap .h2 .gold-italic { color: var(--gold); font-style: italic; }
.roadmap .divider {
  width: 56px; height: 1px;
  background: var(--gold-border-strong);
  margin: 32px auto 0;
}
.roadmap .divider.left { margin-left: 0; }
.roadmap .section-head { text-align: center; margin-bottom: 64px; }

/* ----- NAVBAR ----- */
.roadmap-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .5s ease;
  background: transparent;
}
.roadmap-nav.scrolled {
  background: rgba(14, 23, 34, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-line);
}
.roadmap-nav .nav-inner {
  max-width: 1152px; margin: 0 auto;
  height: 80px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.roadmap-nav .nav-logo { height: 32px; width: auto; }
.roadmap-nav .nav-cta {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border-strong);
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all .3s ease;
}
.roadmap-nav .nav-cta:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.roadmap-nav .nav-cta-mobile {
  background: transparent; color: var(--gold);
  border: none;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  display: none;
}
@media (max-width: 767px) {
  .roadmap-nav .nav-cta { display: none; }
  .roadmap-nav .nav-cta-mobile { display: inline-flex; }
}

/* ----- HERO ----- */
.roadmap .hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 96px 24px 64px;
  overflow: hidden;
  border-top: none;
}
.roadmap .hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 158, 88, 0.09), transparent);
  pointer-events: none;
}
.roadmap .hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.roadmap .hero-inner { position: relative; z-index: 1; max-width: 896px; margin: 0 auto; }

.roadmap .hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(196, 158, 88, 0.25);
  padding: 8px 20px;
  margin-bottom: 48px;
}
.roadmap .hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.roadmap .hero-badge .lbl {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.roadmap .hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 32px;
}
.roadmap .hero h1 .gold-italic { color: var(--gold); font-style: italic; }

.roadmap .hero-agitate {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--white-55);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.7;
  text-wrap: balance;
}

.roadmap .hero-bridge {
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 16px);
  color: var(--white-35);
  max-width: 576px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.roadmap .btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.roadmap .btn-gold:hover { background: var(--gold-hover); }
.roadmap .btn-gold .arrow { transition: transform .3s ease; }
.roadmap .btn-gold:hover .arrow { transform: translateX(4px); }

.roadmap .hero-trust {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px;
  color: var(--white-25);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sans);
}
@media (min-width: 768px) { .roadmap .hero-trust { gap: 32px; } }
.roadmap .hero-trust .sep { color: rgba(196, 158, 88, 0.2); }

.roadmap .scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(196, 158, 88, 0.3), transparent);
  animation: roadmapBounce 2s infinite;
}
@keyframes roadmapBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* ----- VSL ----- */
.roadmap .vsl-label {
  text-align: center;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 24px;
}
.roadmap .vsl-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-light);
  border: 1px solid rgba(196, 158, 88, 0.15);
  overflow: hidden;
}
.roadmap .vsl-box.play { cursor: pointer; }
.roadmap .vsl-box.play::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 88, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 88, 1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
}
.roadmap .vsl-box.play::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 158, 88, 0.3), transparent);
}
.roadmap .vsl-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.roadmap .vsl-logo { height: 56px; width: auto; opacity: 0.5; }
.roadmap .vsl-play {
  width: 80px; height: 80px;
  border: 1px solid rgba(196, 158, 88, 0.6);
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .4s ease;
}
.roadmap .vsl-box.play:hover .vsl-play {
  background: rgba(196, 158, 88, 0.15);
  border-color: var(--gold);
}
.roadmap .vsl-play svg {
  width: 28px; height: 28px;
  fill: var(--gold);
  margin-left: 6px;
}
.roadmap .vsl-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.roadmap .vsl-duration {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(14, 23, 34, 0.8);
  border: 1px solid rgba(196, 158, 88, 0.15);
  padding: 4px 12px;
  color: var(--gold);
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.roadmap .vsl-box video {
  width: 100%; height: 100%; display: block;
}

/* ----- PAIN / COST GRID (3 colonnes) ----- */
.roadmap .pain-grid,
.roadmap .cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(196, 158, 88, 0.12);
}
@media (min-width: 768px) {
  .roadmap .pain-grid,
  .roadmap .cost-grid { grid-template-columns: repeat(3, 1fr); }
}
.roadmap .pain-cell {
  padding: 40px;
  transition: background .3s ease;
  border-top: 1px solid rgba(196, 158, 88, 0.12);
}
.roadmap .pain-cell:first-child { border-top: none; }
.roadmap .pain-cell:hover { background: rgba(196, 158, 88, 0.04); }
@media (min-width: 768px) {
  .roadmap .pain-cell { border-top: none; border-right: 1px solid rgba(196, 158, 88, 0.12); }
  .roadmap .pain-cell:last-child { border-right: none; }
}
.roadmap .pain-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 60px;
  color: rgba(196, 158, 88, 0.2);
  transition: color .3s ease;
  margin-bottom: 28px;
  line-height: 1;
}
.roadmap .pain-cell:hover .pain-num { color: rgba(196, 158, 88, 0.4); }
.roadmap .pain-title {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
  font-weight: 400;
}
.roadmap .pain-desc {
  font-family: var(--sans);
  color: var(--white-45);
  font-size: 14px;
  line-height: 1.7;
}

/* COST variant */
.roadmap .cost-cell {
  padding: 32px;
  text-align: left;
  border-top: 1px solid rgba(196, 158, 88, 0.12);
}
.roadmap .cost-cell:first-child { border-top: none; }
@media (min-width: 768px) {
  .roadmap .cost-cell { border-top: none; border-right: 1px solid rgba(196, 158, 88, 0.12); }
  .roadmap .cost-cell:last-child { border-right: none; }
}
.roadmap .cost-line {
  width: 24px; height: 1px;
  background: rgba(196, 158, 88, 0.5);
  margin-bottom: 24px;
}
.roadmap .cost-title {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 400;
}
.roadmap .cost-desc {
  font-family: var(--sans);
  color: var(--white-40);
  font-size: 14px;
  line-height: 1.7;
}

/* ----- SOLUTION SECTION ----- */
.roadmap .solution {
  padding: 96px 24px;
}
.roadmap .solution-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 64px; align-items: center;
}
@media (min-width: 768px) {
  .roadmap .solution-grid { grid-template-columns: 1fr 1fr; }
}
.roadmap .solution-copy p {
  font-family: var(--sans);
  color: var(--white-55);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.roadmap .solution-copy strong { color: var(--white-80); font-weight: 500; }
.roadmap .solution-quote {
  border-left: 2px solid var(--gold-border-strong);
  padding-left: 20px;
  margin: 32px 0 0;
}
.roadmap .solution-quote p {
  font-family: var(--serif);
  color: var(--white-40);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.roadmap .solution-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(196, 158, 88, 0.2);
  background: var(--navy);
}
.roadmap .solution-image-wrap::before,
.roadmap .solution-image-wrap::after {
  content: ''; position: absolute;
  width: 28px; height: 28px;
  z-index: 2;
}
.roadmap .solution-image-wrap::before {
  top: -10px; left: -10px;
  border-top: 2px solid rgba(196, 158, 88, 0.5);
  border-left: 2px solid rgba(196, 158, 88, 0.5);
}
.roadmap .solution-image-wrap::after {
  bottom: -10px; right: -10px;
  border-bottom: 2px solid rgba(196, 158, 88, 0.5);
  border-right: 2px solid rgba(196, 158, 88, 0.5);
}
.roadmap .solution-image-wrap img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* ----- DELIVERABLES ----- */
.roadmap .deliverables {
  background: var(--navy-light);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.roadmap .deliv-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .roadmap .deliv-grid { grid-template-columns: repeat(3, 1fr); }
}
.roadmap .deliv-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(196, 158, 88, 0.12);
  background: var(--navy);
  transition: all .4s ease;
  overflow: hidden;
}
.roadmap .deliv-card:hover { border-color: rgba(196, 158, 88, 0.35); }
.roadmap .deliv-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(196, 158, 88, 0.04), transparent);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.roadmap .deliv-card:hover::before { opacity: 1; }
.roadmap .deliv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 158, 88, 0.3), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.roadmap .deliv-card:hover::after { transform: scaleX(1); }
.roadmap .deliv-icon {
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
}
.roadmap .deliv-icon svg { width: 24px; height: 24px; }
.roadmap .deliv-title {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
  font-weight: 400;
  position: relative;
}
.roadmap .deliv-desc {
  font-family: var(--sans);
  color: var(--white-45);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
}

/* ----- HOW IT WORKS ----- */
.roadmap .steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(196, 158, 88, 0.1);
}
.roadmap .steps-row:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .roadmap .steps-row { grid-template-columns: 140px 1fr; gap: 48px; }
}
.roadmap .step-meta {
  display: flex; align-items: center; gap: 16px;
}
@media (min-width: 768px) {
  .roadmap .step-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.roadmap .step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(196, 158, 88, 0.22);
  transition: color .4s ease;
  line-height: 1;
}
.roadmap .steps-row:hover .step-num { color: rgba(196, 158, 88, 0.5); }
.roadmap .step-dur {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--white-25);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.roadmap .step-title {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 400;
}
.roadmap .step-desc {
  font-family: var(--sans);
  color: var(--white-45);
  font-size: 14px;
  line-height: 1.7;
  max-width: 512px;
}

/* ----- URGENCY ----- */
.roadmap .urgency {
  background: var(--navy-light);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
}
.roadmap .urgency .urgency-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  color: #fff;
  margin: 24px 0 0;
  text-wrap: balance;
}
.roadmap .urgency .urgency-h2 .gold-italic {
  color: var(--gold);
  font-style: italic;
}
.roadmap .urgency .divider { margin: 32px auto 56px; }
.roadmap .urgency .cost-grid { text-align: left; }

.roadmap .urgency-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--white-55);
  font-style: italic;
  margin: 64px 0 48px;
  text-wrap: balance;
  line-height: 1.4;
}

/* ----- TESTIMONIALS ----- */
.roadmap .testim-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .roadmap .testim-grid { grid-template-columns: repeat(3, 1fr); }
}
.roadmap .testim-card {
  border: 1px solid rgba(196, 158, 88, 0.12);
  padding: 32px;
  background: var(--navy-light);
  display: flex; flex-direction: column;
  transition: border-color .3s ease;
}
.roadmap .testim-card:hover { border-color: rgba(196, 158, 88, 0.25); }
.roadmap .testim-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.roadmap .testim-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(196, 158, 88, 0.35);
  background: var(--navy);
  flex-shrink: 0;
}
.roadmap .testim-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.roadmap .testim-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.roadmap .testim-name {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--white-80);
  font-size: 15px;
}
.roadmap .testim-role {
  font-family: var(--sans);
  color: var(--white-25);
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
}
.roadmap .testim-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold-bg);
  border: 1px solid rgba(196, 158, 88, 0.2);
  padding: 6px 12px;
  color: var(--gold);
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.roadmap .testim-text {
  font-family: var(--sans);
  color: var(--white-60);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}
.roadmap .testim-note {
  text-align: center;
  color: var(--white-15);
  font-size: 10px;
  font-family: var(--sans);
  margin-top: 32px;
  letter-spacing: 0.02em;
}

/* ----- BOOKING FORM ----- */
.roadmap .booking {
  background: var(--navy-light);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.roadmap .booking-head { text-align: center; margin-bottom: 56px; }
.roadmap .booking-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin: 20px 0 16px;
  line-height: 1.2;
}
.roadmap .booking-head h2 .gold-italic { color: var(--gold); font-style: italic; }
.roadmap .booking-head p {
  font-family: var(--sans);
  color: var(--white-35);
  font-size: 14px;
  line-height: 1.7;
  max-width: 448px;
  margin: 0 auto;
}
.roadmap .booking-head .divider { margin: 32px auto 0; }

.roadmap .booking form { display: flex; flex-direction: column; gap: 28px; }
.roadmap .fld-row {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) {
  .roadmap .fld-row.two { grid-template-columns: 1fr 1fr; }
}
.roadmap .fld label {
  display: block;
  font-family: var(--sans);
  color: var(--white-40);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.roadmap .fld input,
.roadmap .fld textarea,
.roadmap .fld select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--gold-border);
  padding: 14px 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color .2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.roadmap .fld input::placeholder,
.roadmap .fld textarea::placeholder {
  color: var(--white-18);
}
.roadmap .fld input:focus,
.roadmap .fld textarea:focus,
.roadmap .fld select:focus {
  outline: none;
  border-color: rgba(196, 158, 88, 0.55);
}
.roadmap .fld textarea { resize: none; min-height: 110px; }
.roadmap .fld select option { background: var(--navy); color: #fff; }
.roadmap .fld input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

.roadmap .slots-head .t {
  font-family: var(--sans);
  color: var(--white-55);
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.roadmap .slots-head .d {
  color: var(--white-25);
  font-size: 12px;
  font-family: var(--sans);
  line-height: 1.7;
  margin: 0 0 20px;
}
.roadmap .slot-row {
  display: grid;
  grid-template-columns: 24px 1fr 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.roadmap .slot-num {
  font-family: var(--serif);
  color: rgba(196, 158, 88, 0.4);
  font-size: 18px;
  text-align: center;
  line-height: 1;
}

.roadmap .booking-error {
  font-family: var(--sans);
  color: rgba(248, 113, 113, 0.8);
  font-size: 12px;
  border: 1px solid rgba(248, 113, 113, 0.2);
  padding: 12px 16px;
  background: rgba(248, 113, 113, 0.05);
}

.roadmap .submit-wrap { padding-top: 8px; }
.roadmap .btn-gold-block {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  padding: 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.roadmap .btn-gold-block:hover:not(:disabled) { background: var(--gold-hover); }
.roadmap .btn-gold-block:disabled { opacity: 0.4; cursor: not-allowed; }
.roadmap .btn-gold-block .arrow { transition: transform .3s ease; }
.roadmap .btn-gold-block:hover:not(:disabled) .arrow { transform: translateX(4px); }
.roadmap .submit-note {
  text-align: center;
  color: var(--white-18);
  font-size: 10px;
  font-family: var(--sans);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* CTA secondaire : "Je ne veux pas d'appel" */
.roadmap .nocall-wrap {
  margin-top: 40px;
  padding-top: 32px;
}
.roadmap .nocall-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--white-18);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.roadmap .nocall-divider::before,
.roadmap .nocall-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(196, 158, 88, 0.18);
}
.roadmap .btn-nocall {
  width: 100%;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(196, 158, 88, 0.35);
  cursor: pointer;
  transition: all .3s ease;
}
.roadmap .btn-nocall:hover:not(:disabled) {
  background: rgba(196, 158, 88, 0.08);
  border-color: var(--gold);
}
.roadmap .btn-nocall:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.roadmap .nocall-note {
  text-align: center;
  color: var(--white-18);
  font-size: 10px;
  font-family: var(--sans);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* Success state */
.roadmap .booking-success {
  text-align: center;
  max-width: 512px;
  margin: 0 auto;
}
.roadmap .booking-success .check-lg {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-border-strong);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  color: var(--gold);
}
.roadmap .booking-success h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  color: #fff;
  margin: 0 0 16px;
}
.roadmap .booking-success p {
  font-family: var(--sans);
  color: var(--white-45);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.roadmap .booking-success p strong { color: var(--white-70); font-weight: 500; }

/* ----- FAQ ----- */
.roadmap .faq-item {
  border-bottom: 1px solid var(--gold-line);
}
.roadmap .faq-item:last-child { border-bottom: none; }
.roadmap .faq-btn {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.roadmap .faq-q {
  font-family: var(--sans);
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.7;
  transition: color .2s ease;
  flex: 1;
}
.roadmap .faq-btn:hover .faq-q { color: rgba(255, 255, 255, 0.9); }
.roadmap .faq-icon {
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.roadmap .faq-icon svg { width: 20px; height: 20px; }
.roadmap .faq-item.open .faq-icon { transform: rotate(45deg); }
.roadmap .faq-a {
  display: none;
  padding: 0 40px 28px 0;
}
.roadmap .faq-item.open .faq-a { display: block; }
.roadmap .faq-a p {
  font-family: var(--sans);
  color: var(--white-45);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ----- FOOTER ----- */
.roadmap .roadmap-footer {
  border-top: 1px solid var(--gold-line);
  padding: 48px 24px;
}
.roadmap .footer-inner {
  max-width: 1152px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .roadmap .footer-inner { flex-direction: row; justify-content: space-between; }
}
.roadmap .footer-logo { height: 28px; width: auto; opacity: 0.6; }
.roadmap .footer-links {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 24px;
  color: var(--white-22);
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.roadmap .footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.roadmap .footer-links a:hover { color: var(--white-55); }
.roadmap .footer-copy {
  color: var(--white-18);
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}

/* Spinner for submit */
.roadmap .spin {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid var(--navy);
  border-top-color: transparent;
  border-radius: 50%;
  animation: roadmapSpin .8s linear infinite;
}
@keyframes roadmapSpin { to { transform: rotate(360deg); } }

/* ----- Mobile padding refinements ----- */
@media (max-width: 640px) {
  .roadmap section { padding: 64px 20px; }
  .roadmap .hero { padding: 96px 20px 48px; }
  .roadmap .pain-cell, .roadmap .cost-cell { padding: 28px 24px; }
  .roadmap .deliv-card { padding: 28px 24px; }
}

/* ==========================================================
   VSL player — re-scopé pour la vue INTRO (avant le questionnaire)
   Mêmes règles visuelles que .roadmap .vsl-*
   ========================================================== */
.intro-view .vsl-wrap { max-width: 760px; margin: 0 auto; }
.intro-view .vsl-label {
  text-align: center;
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 24px;
}
.intro-view .vsl-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-light);
  border: 1px solid rgba(196, 158, 88, 0.15);
  overflow: hidden;
}
.intro-view .vsl-box.play { cursor: pointer; }
.intro-view .vsl-box.play::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196, 158, 88, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 158, 88, 1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.06;
}
.intro-view .vsl-box.play::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 158, 88, 0.3), transparent);
}
.intro-view .vsl-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.intro-view .vsl-logo { height: 56px; width: auto; opacity: 0.5; }
.intro-view .vsl-play {
  width: 80px; height: 80px;
  border: 1px solid rgba(196, 158, 88, 0.6);
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .4s ease;
}
.intro-view .vsl-box.play:hover .vsl-play {
  background: rgba(196, 158, 88, 0.15);
  border-color: var(--gold);
}
.intro-view .vsl-play svg {
  width: 28px; height: 28px;
  fill: var(--gold);
  margin-left: 6px;
}
.intro-view .vsl-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-family: var(--sans);
  letter-spacing: 0.02em;
  margin: 0;
}
.intro-view .vsl-duration {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(14, 23, 34, 0.8);
  border: 1px solid rgba(196, 158, 88, 0.15);
  padding: 4px 12px;
  color: var(--gold);
  font-size: 10px;
  font-family: var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.intro-view .vsl-box video {
  width: 100%; height: 100%; display: block;
}

/* ==========================================================
   NAVBAR — bloc droit (toggle + CTA)
   ========================================================== */
.roadmap-nav .nav-right {
  display: flex; align-items: center; gap: 12px;
}

/* ==========================================================
   VSL-SECTION en 1ère section (post-diagnostic)
   ========================================================== */
.roadmap .vsl-section--first {
  padding-top: 24px;
  padding-bottom: 64px;
  border-top: none;
}
.roadmap .vsl-section--first .section-head {
  text-align: center;
  margin-bottom: 32px;
}
.roadmap .vsl-section--first .section-head .eyebrow { margin: 0; }
.roadmap .vsl-section--first .h2 { margin: 10px 0 0; }
.roadmap .vsl-section--first .divider { margin-top: 20px; }
.roadmap .vsl-cta {
  display: flex; justify-content: center;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .roadmap .vsl-section--first { padding-top: 16px; padding-bottom: 48px; }
  .roadmap .vsl-cta { margin-top: 28px; }
}

/* ==========================================================
   THÈME CLAIR — overrides pour la landing finale + intro
   On remappe les variables --navy*, --gold-*, --white-XX
   et on corrige les couleurs hardcodées #fff / rgba(255,255,255,..)
   ========================================================== */
:root[data-theme="light"] body.roadmap-active,
:root[data-theme="light"] body.intro-active {
  background: var(--page-bg);
}

/* --- Vue INTRO --- */
:root[data-theme="light"] .intro-view .intro-root {
  --navy: #ffffff;
  --navy-light: #f7f3ea;
  --gold: #a8852f;
  --gold-hover: #8b6c1f;
  --gold-soft: rgba(168, 133, 47, 0.85);
  --cream: #0e1722;
  --muted: rgba(14, 23, 34, 0.62);
  background: var(--page-bg);
  color: #0e1722;
}
:root[data-theme="light"] .intro-view .intro-eyebrow,
:root[data-theme="light"] .intro-view .intro-title .accent {
  color: #a8852f;
}
:root[data-theme="light"] .intro-view .intro-title { color: #0e1722; }
:root[data-theme="light"] .intro-view .btn-intro {
  background: #a8852f;
  color: #ffffff;
}
:root[data-theme="light"] .intro-view .btn-intro:hover { background: #8b6c1f; }

/* VSL box dans la vue intro (mode clair) */
:root[data-theme="light"] .intro-view .vsl-box {
  background: #f0e8d5;
  border-color: rgba(168, 133, 47, 0.35);
}
:root[data-theme="light"] .intro-view .vsl-caption {
  color: rgba(14, 23, 34, 0.65);
}
:root[data-theme="light"] .intro-view .vsl-play {
  border-color: rgba(168, 133, 47, 0.55);
}
:root[data-theme="light"] .intro-view .vsl-play svg { fill: #a8852f; }
:root[data-theme="light"] .intro-view .vsl-duration {
  background: rgba(255, 255, 255, 0.85);
  color: #a8852f;
  border-color: rgba(168, 133, 47, 0.30);
}

/* --- Landing finale (.roadmap) en mode clair --- */
:root[data-theme="light"] .roadmap {
  --navy: #ffffff;
  --navy-light: #f7f3ea;
  --gold: #a8852f;
  --gold-hover: #8b6c1f;
  --gold-soft: rgba(168, 133, 47, 0.85);
  --gold-border: rgba(168, 133, 47, 0.30);
  --gold-border-strong: rgba(168, 133, 47, 0.50);
  --gold-line: rgba(168, 133, 47, 0.18);
  --gold-bg: rgba(168, 133, 47, 0.10);
  /* On remappe les --white-XX (= ex-opacités blanches sur navy) vers
     des opacités navy sur clair, en conservant la même hiérarchie. */
  --white-80: rgba(14, 23, 34, 0.92);
  --white-70: rgba(14, 23, 34, 0.88);
  --white-60: rgba(14, 23, 34, 0.82);
  --white-55: rgba(14, 23, 34, 0.78);
  --white-45: rgba(14, 23, 34, 0.72);
  --white-40: rgba(14, 23, 34, 0.68);
  --white-35: rgba(14, 23, 34, 0.62);
  --white-25: rgba(14, 23, 34, 0.55);
  --white-22: rgba(14, 23, 34, 0.50);
  --white-18: rgba(14, 23, 34, 0.45);
  --white-15: rgba(14, 23, 34, 0.40);
  --rm-text: #0e1722;
  background: var(--page-bg);
  color: var(--rm-text);
}
:root[data-theme="light"] .roadmap ::selection {
  background: rgba(168, 133, 47, 0.30);
  color: #0e1722;
}

/* Couleurs hardcodées #fff → navy */
:root[data-theme="light"] .roadmap .h2,
:root[data-theme="light"] .roadmap .hero h1,
:root[data-theme="light"] .roadmap .pain-title,
:root[data-theme="light"] .roadmap .cost-title,
:root[data-theme="light"] .roadmap .deliv-title,
:root[data-theme="light"] .roadmap .step-title,
:root[data-theme="light"] .roadmap .urgency-h2,
:root[data-theme="light"] .roadmap .booking-head h2,
:root[data-theme="light"] .roadmap .booking-success h2 {
  color: #0e1722;
}
:root[data-theme="light"] .roadmap .h2 .gold-italic,
:root[data-theme="light"] .roadmap .hero h1 .gold-italic,
:root[data-theme="light"] .roadmap .urgency-h2 .gold-italic,
:root[data-theme="light"] .roadmap .booking-head h2 .gold-italic {
  color: #a8852f;
}

/* Bannière "diagnostic reçu" */
:root[data-theme="light"] .roadmap-ack {
  background: linear-gradient(135deg, #ffffff 0%, #f7f3ea 100%);
  border-bottom-color: rgba(168, 133, 47, 0.18);
}
:root[data-theme="light"] .roadmap-ack .txt { color: rgba(14, 23, 34, 0.78); }
:root[data-theme="light"] .roadmap-ack .txt strong { color: #a8852f; }

/* Navbar */
:root[data-theme="light"] .roadmap-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(168, 133, 47, 0.20);
}
:root[data-theme="light"] .roadmap-nav .nav-cta {
  color: #a8852f;
  border-color: rgba(168, 133, 47, 0.40);
}
:root[data-theme="light"] .roadmap-nav .nav-cta:hover {
  border-color: #a8852f;
  background: rgba(168, 133, 47, 0.08);
}
:root[data-theme="light"] .roadmap-nav .nav-cta-mobile { color: #a8852f; }

/* Hero gradient subtil */
:root[data-theme="light"] .roadmap .hero::before {
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(168, 133, 47, 0.10), transparent);
}

/* CTA gold */
:root[data-theme="light"] .roadmap .btn-gold,
:root[data-theme="light"] .roadmap .btn-gold-block {
  background: #a8852f;
  color: #ffffff;
}
:root[data-theme="light"] .roadmap .btn-gold:hover,
:root[data-theme="light"] .roadmap .btn-gold-block:hover:not(:disabled) {
  background: #8b6c1f;
}

/* CTA secondaire "Je ne veux pas d'appel" */
:root[data-theme="light"] .roadmap .btn-nocall {
  color: #a8852f;
  border-color: rgba(168, 133, 47, 0.45);
}
:root[data-theme="light"] .roadmap .btn-nocall:hover:not(:disabled) {
  background: rgba(168, 133, 47, 0.08);
  border-color: #a8852f;
}

/* VSL box (mode clair) */
:root[data-theme="light"] .roadmap .vsl-box {
  background: #f0e8d5;
  border-color: rgba(168, 133, 47, 0.35);
}
:root[data-theme="light"] .roadmap .vsl-caption { color: rgba(14, 23, 34, 0.65); }
:root[data-theme="light"] .roadmap .vsl-play { border-color: rgba(168, 133, 47, 0.55); }
:root[data-theme="light"] .roadmap .vsl-play svg { fill: #a8852f; }
:root[data-theme="light"] .roadmap .vsl-duration {
  background: rgba(255, 255, 255, 0.85);
  color: #a8852f;
  border-color: rgba(168, 133, 47, 0.30);
}

/* Sections sombres → claires (deliverables, urgency, booking) */
:root[data-theme="light"] .roadmap .deliverables,
:root[data-theme="light"] .roadmap .urgency,
:root[data-theme="light"] .roadmap .booking {
  background: #f7f3ea;
  border-color: rgba(168, 133, 47, 0.18);
}
:root[data-theme="light"] .roadmap .deliv-card {
  background: #ffffff;
  border-color: rgba(168, 133, 47, 0.20);
}
:root[data-theme="light"] .roadmap .testim-card {
  background: #ffffff;
  border-color: rgba(168, 133, 47, 0.22);
}
:root[data-theme="light"] .roadmap .solution-image-wrap {
  border-color: rgba(168, 133, 47, 0.22);
}

/* Inputs du booking en mode clair */
:root[data-theme="light"] .roadmap .fld input,
:root[data-theme="light"] .roadmap .fld textarea,
:root[data-theme="light"] .roadmap .fld select {
  background: #ffffff;
  color: #0e1722;
  border-color: rgba(168, 133, 47, 0.30);
}
:root[data-theme="light"] .roadmap .fld input::placeholder,
:root[data-theme="light"] .roadmap .fld textarea::placeholder {
  color: rgba(14, 23, 34, 0.40);
}
:root[data-theme="light"] .roadmap .fld input:focus,
:root[data-theme="light"] .roadmap .fld textarea:focus,
:root[data-theme="light"] .roadmap .fld select:focus {
  border-color: #a8852f;
}
:root[data-theme="light"] .roadmap .fld select option { background: #ffffff; color: #0e1722; }
:root[data-theme="light"] .roadmap .fld input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none;
}

/* Eyebrow & accents or */
:root[data-theme="light"] .roadmap .eyebrow,
:root[data-theme="light"] .intro-view .intro-eyebrow {
  color: #a8852f;
}

/* Border-color des grilles pain/cost */
:root[data-theme="light"] .roadmap .pain-grid,
:root[data-theme="light"] .roadmap .cost-grid {
  border-color: rgba(168, 133, 47, 0.22);
}
:root[data-theme="light"] .roadmap .pain-cell,
:root[data-theme="light"] .roadmap .cost-cell {
  border-color: rgba(168, 133, 47, 0.22);
}
:root[data-theme="light"] .roadmap .pain-cell:hover {
  background: rgba(168, 133, 47, 0.05);
}

/* Spinner dans CTA gold (mode clair : fond or, spinner blanc) */
:root[data-theme="light"] .roadmap .spin {
  border-color: rgba(255, 255, 255, 0.6);
  border-top-color: transparent;
}

/* Solution-quote */
:root[data-theme="light"] .roadmap .solution-quote {
  border-left-color: rgba(168, 133, 47, 0.55);
}
:root[data-theme="light"] .roadmap .solution-quote p {
  color: rgba(14, 23, 34, 0.62);
}

/* Footer */
:root[data-theme="light"] .roadmap .roadmap-footer {
  border-top-color: rgba(168, 133, 47, 0.18);
}
:root[data-theme="light"] .roadmap .footer-links { color: rgba(14, 23, 34, 0.62); }
:root[data-theme="light"] .roadmap .footer-links a:hover { color: rgba(14, 23, 34, 0.88); }
:root[data-theme="light"] .roadmap .footer-copy { color: rgba(14, 23, 34, 0.55); }

/* Loader (overlay) en mode clair */
:root[data-theme="light"] .qg-loader {
  background: radial-gradient(ellipse at center, #ffffff 0%, #f7f3ea 60%, #efe8d6 100%);
}
:root[data-theme="light"] .qg-loader-bar {
  background: rgba(168, 133, 47, 0.20);
}
:root[data-theme="light"] .qg-loader-fill {
  background: linear-gradient(90deg, transparent 0%, #a8852f 25%, #c49e58 50%, #a8852f 75%, transparent 100%);
}
:root[data-theme="light"] .qg-loader-brand { color: #a8852f; }
:root[data-theme="light"] .qg-loader-logo {
  filter: drop-shadow(0 10px 28px rgba(14, 23, 34, 0.18));
}
