/* L'ACCUEIL EN CSS PUR — même DA « Instrument » (IBM Plex, filets 1 px,
   cordeau, chiffres tabulaires), nouvelles couleurs : le MARINE des panneaux
   porte l'en-tête et le pied, le JAUNE SÉCURITÉ porte l'action. Le corps de
   page reste blanc : la couleur vient des produits, pas du décor. */

/* ── Fontes : les mêmes octets que la presse ─────────────────────────── */
@font-face { font-family: "Plex Sans"; font-weight: 400; font-display: swap; src: url("/accueil/fontes/IBMPlexSans-Regular.woff2") format("woff2") }
@font-face { font-family: "Plex Sans"; font-weight: 500; font-display: swap; src: url("/accueil/fontes/IBMPlexSans-Medium.woff2") format("woff2") }
@font-face { font-family: "Plex Sans"; font-weight: 600; font-display: swap; src: url("/accueil/fontes/IBMPlexSans-SemiBold.woff2") format("woff2") }
@font-face { font-family: "Plex Sans"; font-weight: 700; font-display: swap; src: url("/accueil/fontes/IBMPlexSans-Bold.woff2") format("woff2") }
@font-face { font-family: "Plex Mono"; font-weight: 500; font-display: swap; src: url("/accueil/fontes/IBMPlexMono-Medium.woff2") format("woff2") }

/* ── Jetons ──────────────────────────────────────────────────────────── */
:root {
  --paper: #FFFFFF;
  --ink: #131720;
  --ink-2: #5A6373;
  --line: #DDE1E8;
  --line-strong: #C2C8D2;
  --fond: #F7F8FA;
  --grille: #EEF1F5;
  --accent: #1746C6;
  --marine: #0E2A5C;
  --marine-2: #143873;
  --jaune: #FFD400;
  --jaune-2: #EAC400;
  --focus: #1746C6;
}

/* ── Socle ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: "Plex Sans", system-ui, sans-serif;
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -0.015em }
h1 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 700 }
h2 { font-size: clamp(24px, 3.2vw, 32px); font-weight: 700 }
p { margin: 0 }
a { color: inherit }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px }
.wrap { max-width: 1200px; margin-inline: auto; padding-inline: 24px }
.wrap--etroit { max-width: 820px }
svg { display: block }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 10px 22px; border-radius: 8px;
  font-weight: 600; font-size: 16px; text-decoration: none; border: none; cursor: pointer;
}
.btn--jaune { background: var(--jaune); color: var(--ink) }
.btn--jaune:hover { background: var(--jaune-2) }
.btn--marine { background: var(--marine); color: #fff }
.btn--marine:hover { background: var(--marine-2) }
.lien { color: var(--accent); font-weight: 600; text-decoration: none }
.lien:hover { text-decoration: underline }
.lien-clair { color: #fff; text-decoration: underline; text-underline-offset: 3px }

/* ── Barre utilitaire ────────────────────────────────────────────────── */
.topbar { background: var(--paper); border-bottom: 1px solid var(--line); font-size: 13px }
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 34px }
.topbar__pitch { color: var(--ink-2) }
.topbar__nav { display: flex; gap: 18px; align-items: center }
.topbar__nav a { color: var(--ink); text-decoration: none; font-weight: 600 }
.topbar__nav a:hover { color: var(--accent) }
.topbar__note { color: var(--ink-2); font-family: "Plex Mono", monospace; font-size: 12px }
@media (max-width: 720px) { .topbar__pitch { display: none } .topbar__in { justify-content: flex-end } }

/* ── En-tête marine ──────────────────────────────────────────────────── */
.header { background: var(--marine); color: #fff; position: sticky; top: 0; z-index: 50 }
.header__in { display: flex; align-items: center; gap: 28px; min-height: 64px }
.logo { display: inline-flex; flex-direction: column; gap: 4px; text-decoration: none; color: inherit }
.logo__word { font-weight: 700; font-size: 22px; letter-spacing: -0.01em }
.logo__rule {
  height: 2px; background: var(--jaune); position: relative; width: 64px;
}
.logo__rule::before, .logo__rule::after {
  content: ""; position: absolute; top: -1px; width: 4px; height: 4px; background: var(--jaune);
}
.logo__rule::before { left: 0 } .logo__rule::after { right: 0 }
.logo__rule--clair { background: var(--jaune) }

.nav { display: flex; align-items: center; gap: 4px; flex: 1 }
.nav__lien {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 8px; color: #fff; text-decoration: none;
  font-weight: 600; font-size: 15px; background: none; border: none; cursor: pointer;
  font-family: inherit;
}
.nav__lien:hover { background: var(--marine-2) }
.nav__caret { font-size: 11px; opacity: .8 }
.nav__item--menu { position: relative }
.header__cta { margin-left: auto; flex-shrink: 0 }

.menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: 0 18px 44px rgba(14, 42, 92, .22);
  padding: 16px; min-width: 420px;
}
.menu__grille { display: grid; grid-template-columns: 1fr 1fr; gap: 4px }
.menu__modele {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px;
}
.menu__modele:hover { background: var(--fond) }
.menu__tout { display: block; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--accent); font-weight: 600; text-decoration: none; font-size: 14px }
.chip { width: 34px; height: 22px; border-radius: 4px; border: 1px solid var(--line); flex-shrink: 0 }
.chip--cordeau { background: linear-gradient(to bottom, #FFF 68%, #384FA6 68%, #384FA6 80%, #FFF 80%) }
.chip--securite { background: linear-gradient(to bottom, #FFE000 45%, #FFF 45%) }
.chip--marine { background: #002A6D; border-color: #002A6D }
.chip--graphite { background: #1E1E1F; border-color: #1E1E1F }
.chip--bande { background: linear-gradient(to right, #384FA6 14%, #FFF 14%) }
.chip--cadre { background: #FFF; border: 2px solid #F20C24 }
.chip--vert { background: linear-gradient(to bottom, #1D9900 45%, #FFF 45%) }
.chip--terracotta { background: linear-gradient(to bottom, #BC3A1F 45%, #FFF 45%) }

.burger { display: none }

/* ── Hero carrousel ──────────────────────────────────────────────────── */
.hero { background: var(--marine); color: #fff; position: relative }
.hero__piste {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hero__piste::-webkit-scrollbar { display: none }
.slide { flex: 0 0 100%; scroll-snap-align: start }
.slide__in {
  display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px;
  padding-block: 48px 64px; align-items: center;
}
@media (min-width: 900px) {
  .slide__in { grid-template-columns: minmax(0, 1fr) 460px; gap: 64px; padding-block: 64px 80px }
}
.flash {
  display: inline-block; background: var(--jaune); color: var(--ink);
  font-family: "Plex Mono", monospace; font-weight: 500; font-size: 14px;
  padding: 5px 10px; border-radius: 6px; margin-bottom: 18px;
}
.slide__sub { margin-top: 16px; font-size: 17px; line-height: 1.6; color: #C9D4E8; max-width: 52ch }
.slide__actions { margin-top: 26px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap }
.slide__visuel { display: flex; justify-content: center }
.slide__visuel svg {
  width: 100%; height: auto; background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .25), 0 24px 60px rgba(0, 0, 0, .35);
  border-radius: 3px;
}
@media (min-width: 900px) {
  /* Au bureau, le permis (portrait) ne doit pas imposer sa hauteur au
     carrousel : les visuels se bornent, l'aspect est gardé. */
  .slide__visuel svg { width: auto; max-width: 100%; max-height: 420px }
}
/* Sur mobile, le portrait se borne par sa LARGEUR (width:auto casse le
   rendu flex sous 900 px) : 62 % de la colonne ≈ 320 px de haut. */
@media (max-width: 899.5px) {
  .slide__visuel--portrait svg { max-width: 62% }
}
.hero__points {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 16px;
  display: flex; gap: 10px; padding: 7px 12px; border-radius: 999px;
  background: rgba(14, 42, 92, .45);
}
.point {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, .38); padding: 0;
}
.point[aria-selected="true"] { background: var(--jaune) }

/* ── Forces ──────────────────────────────────────────────────────────── */
.forces { border-bottom: 1px solid var(--line); background: var(--paper) }
.forces__in {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; padding-block: 26px;
}
@media (min-width: 1000px) { .forces__in { grid-template-columns: repeat(5, 1fr) } }
.force { display: flex; gap: 12px; align-items: flex-start }
.force svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.6; flex-shrink: 0 }
.force strong { display: block; font-size: 14px; line-height: 1.3 }
.force span span { display: block; margin-top: 2px; color: var(--ink-2); font-size: 12.5px; line-height: 1.4 }

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding-block: 64px }
.section--fond { background: var(--fond); border-block: 1px solid var(--line) }
.section__tete { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap }

/* ── Cartes de la sélection ──────────────────────────────────────────── */
.cartes {
  margin-top: 32px; display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 960px) { .cartes { grid-template-columns: repeat(4, 1fr) } }
.carte {
  display: block; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  text-decoration: none; background: var(--paper); transition: box-shadow .2s ease, border-color .2s ease;
}
.carte:hover { border-color: var(--line-strong); box-shadow: 0 12px 32px rgba(19, 23, 32, .10) }
.carte__visuel {
  display: block; padding: 16px 16px 12px;
  background:
    repeating-linear-gradient(to right, var(--grille) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(to bottom, var(--grille) 0 1px, transparent 1px 20px);
}
.carte__visuel svg { width: 100%; height: auto; background: #fff; box-shadow: 0 1px 2px rgba(19,23,32,.10), 0 8px 20px rgba(19,23,32,.12) }
.carte__pied {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 12px 16px; border-top: 1px solid var(--line);
}
.carte__pied strong { font-size: 15px }
.carte__metier { display: block; color: var(--ink-2); font-size: 13px }
.carte__prix { font-family: "Plex Mono", monospace; font-size: 13px; color: var(--marine); white-space: nowrap }
@media (max-width: 540px) {
  .carte__pied { flex-direction: column; align-items: flex-start; gap: 4px }
}

/* ── Gammes ──────────────────────────────────────────────────────────── */
.gammes { margin-top: 32px; display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr) }
@media (min-width: 960px) { .gammes { grid-template-columns: repeat(4, 1fr) } }
.gamme {
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  padding: 22px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.gamme:hover { border-color: var(--line-strong); box-shadow: 0 12px 32px rgba(19, 23, 32, .10) }
.gamme__nom { font-weight: 700; font-size: 17px }
.gamme__detail { color: var(--ink-2); font-size: 14px; line-height: 1.5; flex: 1 }
.gamme__prix { font-family: "Plex Mono", monospace; font-size: 22px; font-weight: 500; color: var(--marine) }
.gamme__prix em { font-style: normal; font-size: 13px; color: var(--ink-2) }

/* ── Blocs symétriques ───────────────────────────────────────────────── */
.duo { display: grid; gap: 40px; align-items: center; grid-template-columns: minmax(0, 1fr) }
@media (min-width: 960px) {
  .duo { grid-template-columns: minmax(0, 1fr) 480px; gap: 72px }
  .duo--inverse { grid-template-columns: 480px minmax(0, 1fr) }
  .duo--inverse .duo__texte { order: 2 }
  .duo--inverse .duo__visuel { order: 1 }
}
.duo__texte p { margin-top: 16px; color: var(--ink-2); line-height: 1.65; max-width: 56ch }
.duo__texte p:has(.btn) { margin-top: 24px }
.duo__visuel { margin: 0 }
.duo__visuel svg { width: 100%; height: auto; background: #fff; box-shadow: 0 2px 4px rgba(19,23,32,.10), 0 18px 44px rgba(19,23,32,.16) }
.note { font-size: 13.5px; color: var(--ink-2) }

/* ── Table de série ──────────────────────────────────────────────────── */
.serie { width: 100%; margin-top: 20px; border-collapse: collapse; font-variant-numeric: tabular-nums }
.serie th, .serie td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); font-size: 15px }
.serie th { font-family: "Plex Mono", monospace; font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-2) }
.serie td:nth-child(2) { font-weight: 600 }
.serie tr:last-child td { border-bottom: 2px solid var(--marine) }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { border-bottom: 1px solid var(--line); padding-block: 4px }
.faq:first-of-type { margin-top: 28px; border-top: 1px solid var(--line) }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 17px; padding-block: 16px;
  list-style: none; position: relative; padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: "Plex Mono", monospace; color: var(--accent); font-size: 20px;
}
.faq[open] summary::after { content: "−" }
.faq p { padding-bottom: 18px; color: var(--ink-2); line-height: 1.65; max-width: 68ch }

/* ── Compte ──────────────────────────────────────────────────────────── */
.compte { text-align: center }
.compte p { margin-top: 16px; color: var(--ink-2); max-width: 56ch; margin-inline: auto }
.compte p:has(.btn) { margin-top: 24px }

/* ── Pied marine ─────────────────────────────────────────────────────── */
.pied { background: var(--marine); color: #C9D4E8; margin-top: 24px }
.pied__in {
  display: grid; gap: 36px; padding-block: 52px 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .pied__in { grid-template-columns: 1.4fr 1fr 1fr 1fr } }
.pied__marque .logo__word { color: #fff }
.pied__marque .logo__rule { margin-top: 6px }
.pied__marque p { margin-top: 14px; font-size: 14px; line-height: 1.6; max-width: 34ch }
.pied__col { display: flex; flex-direction: column; gap: 10px }
.pied__col h3 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px }
.pied__col a { color: #C9D4E8; text-decoration: none; font-size: 14.5px }
.pied__col a:hover { color: #fff; text-decoration: underline }
.pied__legal { border-top: 1px solid rgba(255, 255, 255, .16); padding-block: 18px 26px }
.pied__legal p { font-size: 12.5px; line-height: 1.6; color: #8FA3C8 }

/* ── Mobile : burger et navigation empilée ───────────────────────────── */
@media (max-width: 899.5px) {
  .burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; margin-left: auto;
    background: none; border: none; cursor: pointer;
  }
  .burger span { display: block; height: 2px; background: #fff; border-radius: 1px }
  .header__cta { display: none }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--marine); flex-direction: column; align-items: stretch;
    padding: 8px 16px 20px; gap: 2px; border-top: 1px solid var(--marine-2);
    box-shadow: 0 24px 44px rgba(0, 0, 0, .3);
  }
  .nav.nav--ouverte { display: flex }
  .nav__lien { width: 100%; text-align: left; min-height: 48px }
  .menu { position: static; min-width: 0; margin-top: 4px }
  .slide__visuel { max-width: 420px; margin-inline: auto }
}

@media (prefers-reduced-motion: reduce) {
  .hero__piste { scroll-behavior: auto }
  .carte, .gamme { transition: none }
}

/* ══ L'enrichissement « Exaprint » : plus d'étages, plus de détail ══════ */

.kicker {
  font-family: "Plex Mono", monospace; font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 10px;
}
.section__sous { margin-top: 12px; color: var(--ink-2); max-width: 62ch; line-height: 1.6 }

/* Dessins au trait, la main de la DA */
.d-edge { fill: #fff; stroke: var(--ink); stroke-width: 1.6 }
.d-fort { fill: none; stroke: var(--ink); stroke-width: 2.6 }
.d-fin { fill: none; stroke: var(--line-strong); stroke-width: 1.4 }
.d-accent { fill: none; stroke: var(--accent); stroke-width: 2 }

/* Puces factuelles des cartes */
.carte__puces { display: flex; gap: 6px; flex-wrap: wrap; width: 100%; margin-top: 2px }
.puce {
  display: inline-block; font-family: "Plex Mono", monospace; font-size: 11px;
  color: var(--ink-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 2px 8px; white-space: nowrap;
}
.puce--jaune { background: var(--jaune); border-color: var(--jaune); color: var(--ink); font-weight: 500; margin-left: 6px }
.carte__pied { flex-wrap: wrap }

/* ── Les métiers ── */
.metiers { margin-top: 28px; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr) }
@media (min-width: 640px) { .metiers { grid-template-columns: repeat(3, 1fr) } }
@media (min-width: 1000px) { .metiers { grid-template-columns: repeat(5, 1fr) } }
.metier {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 16px; min-height: 96px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 14px; line-height: 1.3;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.metier:hover { border-color: var(--marine); box-shadow: 0 8px 20px rgba(14, 42, 92, .10) }
.metier svg { width: 26px; height: 26px; stroke: var(--marine); fill: none; stroke-width: 1.7 }

/* ── Les gammes illustrées ── */
.gamme__art { display: block; margin: -4px 0 8px }
.gamme__art svg { width: 100%; height: auto }

/* ── Les formats ── */
.formats { margin-top: 28px; display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr) }
@media (min-width: 960px) { .formats { grid-template-columns: repeat(4, 1fr) } }
.format {
  display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.format:hover { border-color: var(--line-strong); box-shadow: 0 12px 32px rgba(19, 23, 32, .10) }
.format__cadre {
  display: block; padding: 14px;
  background:
    repeating-linear-gradient(to right, var(--grille) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(to bottom, var(--grille) 0 1px, transparent 1px 20px);
  border-bottom: 1px solid var(--line);
}
.format__cadre svg { width: 100%; height: auto }
.format__pied { display: block; padding: 14px 16px 16px }
.format__pied strong { font-size: 16px }
.format__usage { display: block; margin-top: 3px; color: var(--ink-2); font-size: 13px }
.format__prix { display: block; margin-top: 8px; font-family: "Plex Mono", monospace; font-size: 14px; color: var(--marine) }
.mt-16 { margin-top: 16px }

/* ── Les étapes ── */
.etapes { margin-top: 32px; display: grid; gap: 20px; grid-template-columns: 1fr }
@media (min-width: 700px) { .etapes { grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 1050px) { .etapes { grid-template-columns: repeat(4, 1fr) } }
.etape {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
}
.etape__no {
  position: absolute; top: 18px; right: 20px;
  font-family: "Plex Mono", monospace; font-size: 13px; color: var(--line-strong); font-weight: 500;
}
.etape svg { width: 30px; height: 30px; stroke: var(--accent); fill: none; stroke-width: 1.7 }
.etape strong { display: block; margin-top: 14px; font-size: 16px }
.etape p { margin-top: 6px; color: var(--ink-2); font-size: 14px; line-height: 1.55 }

/* ── Le hero jaune (3ᵉ diapositive) ── */
.slide--jaune { background: var(--jaune); color: var(--ink) }
.slide--jaune .slide__sub { color: #5C4E00 }
.slide--jaune .lien-clair { color: var(--ink) }
.slide--jaune .btn--jaune { background: var(--marine); color: #fff }
.slide--jaune .btn--jaune:hover { background: var(--marine-2) }
.flash--marine { background: var(--marine); color: #fff }

/* ── La bande de paiement du pied ── */
.pied__paiement {
  display: flex; gap: 14px; align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, .16); padding-block: 20px 4px;
}
.pied__paiement svg { width: 26px; height: 26px; stroke: var(--jaune); fill: none; stroke-width: 1.6; flex-shrink: 0 }
.pied__paiement p { font-size: 13px; line-height: 1.6; color: #C9D4E8; max-width: 72ch }
@media (min-width: 800px) { .pied__in { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr } }

/* ══ La passe « 60x » : scène, chiffres, méthode, comparatif, détails ═══ */

/* ── Le sélecteur de métier de l'en-tête ── */
.header__metier { display: flex; align-items: stretch; flex-shrink: 0 }
.header__metier select {
  appearance: none; background: var(--marine-2); color: #fff;
  border: 1px solid rgba(255, 255, 255, .22); border-right: none;
  border-radius: 8px 0 0 8px; padding: 9px 12px; font: inherit; font-size: 14px;
  font-weight: 600; cursor: pointer; max-width: 180px;
}
.header__metier select:focus-visible { outline: 2px solid var(--jaune); outline-offset: -2px }
.header__metier button {
  background: var(--marine-2); color: var(--jaune); border: 1px solid rgba(255, 255, 255, .22);
  border-left: none; border-radius: 0 8px 8px 0; padding-inline: 12px;
  font-size: 18px; cursor: pointer;
}
.header__metier button:hover { background: #1A4488 }
@media (max-width: 1180px) { .header__metier { display: none } }

/* ── Les flèches du carrousel ── */
.hero__fleche {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(14, 42, 92, .5); color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; padding-bottom: 4px;
}
.hero__fleche:hover { background: rgba(20, 56, 115, .85) }
.hero__fleche--prec { left: 14px }
.hero__fleche--suiv { right: 14px }
@media (max-width: 899.5px) { .hero__fleche { display: none } }

/* ── Les puces techniques du visuel du hero ── */
.slide__visuel--compose { position: relative }
.spec {
  position: absolute; background: var(--paper); color: var(--ink);
  font-family: "Plex Mono", monospace; font-size: 12px; padding: 6px 10px;
  border-radius: 6px; box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  border-left: 3px solid var(--accent); white-space: nowrap;
}
.spec--haut { top: -12px; right: -8px }
.spec--bas { bottom: -12px; left: -8px }
@media (max-width: 899.5px) { .spec { display: none } }

/* ── La scène de chantier ── */
.scene-sec { padding-block: 64px 56px; background: var(--paper) }
.scene-sec__titre { margin-top: 0 }
.scene { position: relative; margin-top: 36px }
.scene__dessin { width: 100% ; height: auto }
.sc-ink { fill: none; stroke: var(--ink); stroke-width: 2.4 }
.sc-fin { fill: none; stroke: var(--line-strong); stroke-width: 1.4 }
.sc-grillage { fill: none; stroke: var(--line); stroke-width: 1 }
.sc-cadre { stroke: var(--ink); stroke-width: 1.8 }
.sc-plot { fill: var(--fond); stroke: var(--ink); stroke-width: 1.6 }
.sc-accent { fill: none; stroke: var(--accent); stroke-width: 2 }
.sc-accent-plein { fill: var(--accent) }
.scene__panneau {
  position: absolute; left: 42.6%; top: 34%; width: 16.4%;
}
.scene__panneau svg {
  width: 100%; height: auto; background: #fff;
  box-shadow: 0 1px 2px rgba(19, 23, 32, .18), 0 10px 26px rgba(19, 23, 32, .22);
}
.scene__cote {
  position: absolute; left: 46%; bottom: -4px; transform: translateX(-8%);
  font-size: 12.5px; color: var(--accent);
}
@media (max-width: 720px) {
  .scene__cote { position: static; transform: none; margin-top: 10px; text-align: center }
}

/* ── La bande de chiffres ── */
.chiffres { background: var(--marine); color: #fff }
.chiffres__in {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 28px; padding-block: 30px;
}
@media (min-width: 900px) { .chiffres__in { grid-template-columns: repeat(5, 1fr) } }
.chiffres p { display: flex; flex-direction: column; gap: 3px }
.chiffres strong {
  font-family: "Plex Mono", monospace; font-weight: 500; font-size: 32px;
  color: var(--jaune); font-variant-numeric: tabular-nums; line-height: 1;
}
.chiffres span { font-size: 13.5px; color: #C9D4E8; line-height: 1.4 }

/* ── Pourquoi Cordoir ── */
.pourquoi { margin-top: 32px; display: grid; gap: 24px; grid-template-columns: 1fr }
@media (min-width: 900px) { .pourquoi { grid-template-columns: repeat(3, 1fr); gap: 40px } }
.raison svg { width: 64px; height: 40px }
.raison h3 { margin-top: 16px; font-size: 18px }
.raison p { margin-top: 8px; color: var(--ink-2); font-size: 14.5px; line-height: 1.6 }

/* ── Le comparatif imprimé / PDF ── */
.compare { width: 100%; margin-top: 28px; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden }
.compare th, .compare td { padding: 13px 16px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line) }
.compare thead th {
  font-family: "Plex Mono", monospace; font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--marine);
  background: var(--fond);
}
.compare tbody th { font-weight: 600; color: var(--ink-2); font-size: 13.5px; width: 20% }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none }
@media (max-width: 560px) { .compare th, .compare td { padding: 10px 10px; font-size: 13.5px } }

/* ── L'apparition au défilement (coupée en motion réduite) ── */
.rvl { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease }
.rvl--vu { opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce) { .rvl { opacity: 1; transform: none; transition: none } }
