/* ============================================================================
   SITE PUBLIC NOOPY — feuille de style commune
   ----------------------------------------------------------------------------
   Les couleurs viennent TOUTES de `noopy-tokens.css`, source de vérité de la
   direction artistique (cf. Noopy-design/DIRECTION-ARTISTIQUE.md). Aucune
   couleur de marque en dur ici : le site doit se reconnaître comme un produit
   Noopy au premier coup d'œil, et suivre la charte quand elle bouge.

   Rappel de charte, respecté partout :
     • le BLEU est la couleur d'ACTION (boutons primaires, liens) ;
     • l'ORANGE est un accent chaud de mise en avant — jamais un bouton neutre ;
     • le NAVY est le fond de bandeau, choisi pour se fondre avec le logo.

   Deux partis pris de mise en page, tirés de la relecture du 30/07 :
     1. LARGEUR. Le texte tenait dans une colonne centrale étroite qui laissait
        les côtés vides sur un écran de bureau. La largeur utile passe à 1280 px
        et les grilles respirent.
     2. RYTHME. Une page de vente qui alterne blanc / gris clair sur toute sa
        hauteur se lit comme une notice. On alterne désormais des sections
        claires, teintées et sombres, et chaque famille d'application porte sa
        couleur — la page se parcourt au lieu de se subir.
   ============================================================================ */

@import url('noopy-tokens.css');

:root {
  /* Largeur utile. Le contenu ne doit pas se recroqueviller au centre. */
  --site-largeur: 1280px;
  --site-marge: clamp(20px, 4vw, 56px);
  /* Teintes dérivées, pour rythmer les sections sans sortir de la charte. */
  --site-bleu-pale: #EDF3FD;
  --site-orange-pale: #FEF2EA;
  --site-navy-doux: #0D1633;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--noopy-police);
  color: var(--noopy-texte);
  background: var(--noopy-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* PIED DE PAGE COLLÉ EN BAS. Sur une page courte — l'écran de connexion en est
     l'exemple —, le pied remontait au milieu de la fenêtre avec du blanc en
     dessous : on croyait la page tronquée. Le corps occupe donc toute la hauteur
     et le pied prend la marge restante (voir `footer { margin-top: auto }`). */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.enveloppe { max-width: var(--site-largeur); margin: 0 auto; padding: 0 var(--site-marge); }
/* Le bandeau colle davantage au bord : le logo doit être en haut À GAUCHE, pas au centre. */
.enveloppe-large { max-width: 1600px; margin: 0 auto; padding: 0 clamp(14px, 2.2vw, 30px); }

/* ── Bandeau ─────────────────────────────────────────────────────────────── */
.bandeau {
  position: sticky; top: 0; z-index: 50;
  background: var(--noopy-navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.bandeau .enveloppe-large {
  display: flex; align-items: center; gap: 20px;
  min-height: 76px; flex-wrap: wrap;
}
.marque { display: flex; align-items: center; gap: 14px; text-decoration: none; margin-right: auto; }
.marque img { height: 52px; width: auto; display: block; }
/* Le mot-symbole en dégradé orange → bleu : chrome produit uniquement. */
.mot-symbole {
  font-size: 30px; font-weight: 800; letter-spacing: -1px; line-height: 1;
  background: var(--noopy-wordmark);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.marque .baseline {
  display: block; font-size: 11.5px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255, 255, 255, .45); text-transform: uppercase; margin-top: 2px;
}
.bandeau nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.bandeau nav a {
  color: rgba(255, 255, 255, .74); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: var(--noopy-r-sm);
}
.bandeau nav a:hover { color: #fff; background: rgba(255, 255, 255, .09); }
.bandeau nav a.actif { color: #fff; background: rgba(255, 255, 255, .13); }

/* ── Boutons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none; text-align: center; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 700;
  padding: 13px 26px; border-radius: var(--noopy-r-sm); border: 1px solid transparent;
  transition: background .15s, border-color .15s, transform .06s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-pri {
  background: var(--noopy-bleu); color: #fff;
  box-shadow: 0 6px 18px rgba(47, 111, 214, .28);
}
.btn-pri:hover { background: #2560bd; box-shadow: 0 8px 24px rgba(47, 111, 214, .38); }
.btn-sec { background: var(--noopy-surface); color: var(--noopy-navy); border-color: var(--noopy-bord); }
.btn-sec:hover { background: var(--noopy-fond); border-color: var(--noopy-bleu); }
.btn-fantome { background: rgba(255, 255, 255, .10); color: #fff; border-color: rgba(255, 255, 255, .26); }
.btn-fantome:hover { background: rgba(255, 255, 255, .19); }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn-large { display: block; width: 100%; padding: 15px 20px; font-size: 15.5px; }
.btn-petit { padding: 9px 17px; font-size: 13.5px; }

/* ── Héros ───────────────────────────────────────────────────────────────── */
.heros {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(232, 98, 29, .26), transparent 62%),
    radial-gradient(900px 480px at 6% 108%, rgba(47, 111, 214, .34), transparent 60%),
    linear-gradient(165deg, var(--noopy-navy) 0%, var(--site-navy-doux) 55%, #101E44 100%);
  color: #fff; padding: clamp(54px, 8vw, 104px) 0 clamp(46px, 7vw, 88px);
}
.heros-grille {
  display: grid; gap: clamp(28px, 4vw, 60px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center;
}
.heros h1 {
  font-size: clamp(33px, 4.9vw, 58px); line-height: 1.06; letter-spacing: -1.6px;
  font-weight: 800; margin: 0 0 20px;
}
.heros h1 .surligne {
  background: var(--noopy-wordmark);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.heros .accroche {
  font-size: clamp(16px, 1.4vw, 19.5px); color: rgba(255, 255, 255, .82);
  max-width: 60ch; margin: 0 0 32px;
}
.heros .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.pastille {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  padding: 6px 15px; border-radius: var(--noopy-r-lg); margin-bottom: 20px;
  background: rgba(232, 98, 29, .17); color: var(--noopy-orange-clair);
  border: 1px solid rgba(232, 98, 29, .38);
}
.pastille::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--noopy-orange); box-shadow: 0 0 0 3px rgba(232, 98, 29, .25);
}
/* Chiffres clés du héros — une page de vente sans preuve chiffrée n'engage à rien. */
.chiffres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.chiffres .valeur {
  font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; line-height: 1;
  background: var(--noopy-wordmark); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.chiffres .quoi { font-size: 12.5px; color: rgba(255, 255, 255, .62); margin-top: 6px; line-height: 1.4; }

/* Vignette d'illustration du héros. */
.heros-visuel {
  border-radius: var(--noopy-r-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
  background: rgba(255, 255, 255, .04);
}
.heros-visuel img { display: block; width: 100%; height: auto; }

/* ── Sections ────────────────────────────────────────────────────────────── */
section { padding: clamp(52px, 6.5vw, 96px) 0; }
section.alt { background: var(--noopy-fond); }
section.teinte { background: linear-gradient(180deg, var(--site-bleu-pale), #fff); }
section.sombre {
  background:
    radial-gradient(800px 400px at 92% 0%, rgba(47, 111, 214, .22), transparent 60%),
    var(--noopy-navy);
  color: rgba(255, 255, 255, .78);
}
section.sombre .titre-section, section.sombre h3 { color: #fff; }
section.sombre .sous-titre { color: rgba(255, 255, 255, .62); }

.oeil {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .09em;
  text-transform: uppercase; color: var(--noopy-orange); margin-bottom: 10px;
}
section.sombre .oeil { color: var(--noopy-orange-clair); }
.titre-section {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1.1px;
  color: var(--noopy-navy); margin: 0 0 12px; line-height: 1.14;
}
.sous-titre { font-size: clamp(15px, 1.2vw, 17px); color: var(--noopy-gris); max-width: 76ch; margin: 0 0 38px; }
h3 { font-size: 17.5px; font-weight: 700; color: var(--noopy-navy); margin: 0 0 8px; }
p { margin: 0 0 14px; }

/* ── Grilles et cartes ───────────────────────────────────────────────────── */
.grille { display: grid; gap: 20px; }
.grille-2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.grille-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grille-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.carte {
  background: var(--noopy-surface); border: 1px solid var(--noopy-bord);
  border-radius: var(--noopy-r-md); padding: 24px;
  box-shadow: var(--noopy-ombre);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.carte p:last-child { margin-bottom: 0; }
.carte small { display: block; font-size: 14px; color: var(--noopy-gris); line-height: 1.62; }
section.sombre .carte {
  background: rgba(255, 255, 255, .055); border-color: rgba(255, 255, 255, .13); box-shadow: none;
}
section.sombre .carte small { color: rgba(255, 255, 255, .68); }

/* Carte à liseré de couleur : c'est elle qui casse la monotonie d'une grille. */
.carte-liseree { border-top: 4px solid var(--teinte, var(--noopy-bleu)); }
.carte-liseree:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(14, 26, 53, .12); }

.puce-icone {
  width: 44px; height: 44px; border-radius: var(--noopy-r-sm); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  background: color-mix(in srgb, var(--teinte, var(--noopy-bleu)) 13%, white);
  color: var(--teinte, var(--noopy-bleu));
}

/* ── Applications de la suite — pastilles à LETTRES, comme sur le poste ──── */
/* Le hub affiche DA, TDB, PV, CF, EV, DG. Le site reprend exactement les mêmes
   initiales : c'est ce que l'utilisateur verra sur son bureau, il doit le
   reconnaître ici. Un pictogramme abstrait n'aurait rien reconnu du tout. */
.app { display: flex; gap: 16px; align-items: flex-start; }
.app .initiales {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 13px;
  background: linear-gradient(145deg, var(--teinte, var(--noopy-bleu)),
              color-mix(in srgb, var(--teinte, var(--noopy-bleu)) 62%, black));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--teinte, var(--noopy-bleu)) 35%, transparent);
}
.app h3 { margin-bottom: 5px; }
.app .role {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 6px;
  padding: 2px 9px; border-radius: var(--noopy-r-lg);
  background: color-mix(in srgb, var(--teinte, var(--noopy-bleu)) 13%, white);
  color: var(--teinte, var(--noopy-bleu));
}
.app ul { margin: 10px 0 0; padding-left: 18px; }
.app ul li { font-size: 13.5px; color: var(--noopy-gris); margin-bottom: 5px; }

/* ── Carrousel de captures ───────────────────────────────────────────────────
   Un vrai carrousel : une piste qui COULISSE, des flèches sur l'image, des
   points dessous. Pas de colonne de vignettes, pas de bouton lecture — le
   défilement est automatique et se suspend au survol, ce qui rend le bouton
   inutile et l'interface plus calme.

   Les neuf captures font toutes 1040 × ~536 px. Le `aspect-ratio` fixé sur ce
   rapport garantit qu'aucune diapositive ne change la hauteur du bloc : c'est
   ce sautillement qui donne l'impression qu'un carrousel est cassé. */
.carrousel { max-width: 1000px; margin: 0 auto; outline: none; }

.fenetre {
  position: relative; overflow: hidden;
  border-radius: var(--noopy-r-lg); border: 1px solid var(--noopy-bord);
  box-shadow: 0 22px 54px rgba(14, 26, 53, .18); background: #0B1330;
}
.piste {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
/* `margin: 0` N'EST PAS DÉCORATIF. Une diapositive est un <figure>, auquel le
   navigateur applique par défaut 1em de marge verticale et 40 px de chaque
   côté. Chaque diapositive avançait donc de « largeur + 80 px » alors que la
   piste ne se translatait que d'une largeur : le décalage s'accumulait d'une
   diapositive à l'autre et, au sixième écran, on en voyait deux à la fois. */
.diapo { flex: 0 0 100%; min-width: 100%; margin: 0; padding: 0; }
.diapo img {
  display: block; width: 100%; aspect-ratio: 1040 / 536; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}

/* Flèches posées SUR l'image, centrées verticalement. Discrètes au repos,
   franches au survol : on ne les cherche pas, on les trouve. */
.fleche {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: none; background: rgba(255, 255, 255, .86); color: var(--noopy-navy);
  font-size: 24px; line-height: 1; font-family: inherit; padding: 0 0 3px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
  opacity: .55; transition: opacity .18s, background .18s, transform .18s;
}
.fenetre:hover .fleche { opacity: 1; }
.fleche:hover { background: #fff; }
.fleche:focus-visible { opacity: 1; outline: 3px solid var(--noopy-bleu); outline-offset: 2px; }
.fleche-g { left: 14px; }
.fleche-d { right: 14px; }

.legende {
  margin-top: 18px; min-height: 74px; text-align: center;
  transition: opacity .2s ease;
}
.legende.change { opacity: 0; }
.legende strong { display: block; color: var(--noopy-navy); font-size: 18px; margin-bottom: 5px; }
.legende span { font-size: 14.5px; color: var(--noopy-gris); }

/* Points de pagination — ils disent où l'on est et combien il en reste. */
.points { display: flex; gap: 9px; justify-content: center; margin-top: 16px; }
.points button {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: none; background: var(--noopy-bord); transition: background .18s, width .18s;
}
.points button:hover { background: #A9BBD6; }
.points button.actif { background: var(--noopy-bleu); width: 26px; border-radius: 5px; }

@media (prefers-reduced-motion: reduce) {
  .piste { transition: none; }
  .legende { transition: none; }
  /* Le défilement animé vers une ancre déclenche des malaises chez les personnes
     sensibles au mouvement. Le réglage système doit primer sur notre confort visuel. */
  html { scroll-behavior: auto; }
  .carte-liseree:hover { transform: none; }
}

/* ── Tarifs ──────────────────────────────────────────────────────────────── */
.tarif { display: flex; flex-direction: column; position: relative; }
.tarif.mis-en-avant {
  border-color: var(--noopy-bleu); border-width: 2px;
  box-shadow: 0 16px 42px rgba(47, 111, 214, .18);
}
.tarif .ruban {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--noopy-orange); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: 4px 14px; border-radius: var(--noopy-r-lg);
  white-space: nowrap;
}
.tarif .segment {
  font-size: 12.5px; font-weight: 800; letter-spacing: .07em;
  color: var(--teinte, var(--noopy-bleu)); text-transform: uppercase;
}
.tarif .prix {
  font-size: 38px; font-weight: 800; color: var(--noopy-navy); line-height: 1.05; margin-top: 12px;
  letter-spacing: -1.4px;
}
.tarif .prix .unite { font-size: 14px; font-weight: 500; color: var(--noopy-gris); letter-spacing: 0; }
.tarif .alternative {
  font-size: 13.5px; color: var(--noopy-gris); margin-top: 7px;
  padding-top: 7px; border-top: 1px dashed var(--noopy-bord);
}
.tarif .detail { font-size: 14px; color: #475569; margin-top: 14px; flex: 1; line-height: 1.6; }
.tarif ul { margin: 14px 0 0; padding-left: 0; list-style: none; }
.tarif ul li { position: relative; padding-left: 24px; font-size: 13.5px; margin-bottom: 7px; color: #475569; }
.tarif ul li::before { content: '✓'; position: absolute; left: 0; color: var(--noopy-ok); font-weight: 800; }
.tarif .btn { margin-top: 18px; }

.etiquette {
  display: inline-block; font-size: 11.5px; font-weight: 700; padding: 3px 11px;
  border-radius: var(--noopy-r-lg); margin-top: 12px;
  background: var(--noopy-ok-fond); color: var(--noopy-ok);
}
.etiquette.bleue { background: var(--site-bleu-pale); color: var(--noopy-bleu); }
.etiquette.orange { background: var(--site-orange-pale); color: var(--noopy-warn); }

/* Bascule mensuel / annuel. */
.bascule {
  display: inline-flex; background: var(--noopy-fond); border: 1px solid var(--noopy-bord);
  border-radius: var(--noopy-r-lg); padding: 4px; margin-bottom: 26px;
}
.bascule button {
  border: none; background: none; cursor: pointer; font-family: inherit;
  font-size: 13.5px; font-weight: 700; color: var(--noopy-gris);
  padding: 8px 20px; border-radius: var(--noopy-r-lg);
}
.bascule button.actif { background: var(--noopy-surface); color: var(--noopy-navy); box-shadow: var(--noopy-ombre); }

/* ── Encadrés ────────────────────────────────────────────────────────────── */
.encadre {
  border-radius: var(--noopy-r-md); padding: 22px 24px; margin: 24px 0;
  background: var(--noopy-info-fond); border: 1px solid #d8dcfa;
}
.encadre.attention { background: var(--noopy-warn-fond); border-color: #fed7aa; }
.encadre.reussite { background: var(--noopy-ok-fond); border-color: #a7f3d0; }
.encadre h3 { margin-bottom: 6px; }
.encadre p:last-child { margin-bottom: 0; }
section.sombre .encadre {
  background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); color: rgba(255, 255, 255, .78);
}
section.sombre .encadre h3 { color: #fff; }

/* ── Listes ──────────────────────────────────────────────────────────────── */
ul.liste { margin: 0 0 14px; padding-left: 20px; }
ul.liste li { margin-bottom: 8px; }
ul.nue { list-style: none; margin: 0; padding: 0; }
ul.nue li { position: relative; padding-left: 28px; margin-bottom: 11px; }
ul.nue li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--noopy-ok); font-weight: 800;
}
section.sombre ul.nue li::before { color: #34D399; }

/* ── Étapes numérotées ───────────────────────────────────────────────────── */
.etape .numero {
  width: 36px; height: 36px; border-radius: 50%; margin-bottom: 14px;
  background: linear-gradient(145deg, var(--noopy-bleu), #1E4E9E);
  color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 14px rgba(47, 111, 214, .3);
}

/* ── Bande de rappel ─────────────────────────────────────────────────────── */
.bande-appel {
  background: linear-gradient(120deg, var(--noopy-bleu), #1B47A0 55%, var(--noopy-navy));
  color: #fff; border-radius: var(--noopy-r-lg); padding: clamp(30px, 4vw, 52px);
  display: flex; gap: 26px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.bande-appel h2 { margin: 0 0 6px; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.7px; }
.bande-appel p { margin: 0; color: rgba(255, 255, 255, .78); max-width: 58ch; }

/* ── Pages de texte (mentions, CGV, confidentialité) ─────────────────────── */
.document { max-width: 82ch; padding: clamp(34px, 5vw, 60px) 0; }
.document h1 { font-size: clamp(28px, 4vw, 40px); color: var(--noopy-navy); letter-spacing: -1.1px; margin: 0 0 6px; }
.document .maj { font-size: 13px; color: var(--noopy-gris); margin-bottom: 30px; }
.document h2 {
  font-size: 20px; color: var(--noopy-navy); margin: 38px 0 12px;
  padding-bottom: 7px; border-bottom: 2px solid var(--noopy-navy);
}
.document h3 { font-size: 16px; margin: 22px 0 6px; }
.document p, .document li { font-size: 14.8px; color: #303a4d; }
.document table { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14px; }
.document th, .document td { border: 1px solid var(--noopy-bord); padding: 10px 12px; text-align: left; vertical-align: top; }
.document th { background: var(--noopy-fond); font-weight: 700; color: var(--noopy-navy); }
.document a { color: var(--noopy-bleu); }
.sommaire {
  background: var(--noopy-fond); border: 1px solid var(--noopy-bord);
  border-radius: var(--noopy-r-md); padding: 18px 22px; margin-bottom: 30px;
}
.sommaire ol { margin: 0; padding-left: 20px; font-size: 14px; columns: 2; column-gap: 34px; }
.sommaire li { margin-bottom: 4px; break-inside: avoid; }

/* ── Pied de page ────────────────────────────────────────────────────────── */
footer {
  background: var(--noopy-navy); color: rgba(255, 255, 255, .66);
  padding: 54px 0 32px; font-size: 14px;
  margin-top: auto;   /* absorbe la hauteur restante : le pied reste en bas */
}
footer .colonnes { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
footer h4 { color: #fff; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
footer a { color: rgba(255, 255, 255, .66); text-decoration: none; display: block; margin-bottom: 8px; }
footer a:hover { color: #fff; text-decoration: underline; }
footer .bas {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px;
}

/* ── Utilitaires ─────────────────────────────────────────────────────────── */
.centre { text-align: center; }
.gris { color: var(--noopy-gris); }
.petit { font-size: 13.5px; }
.nowrap { white-space: nowrap; }
.mt0 { margin-top: 0; }

/* ── Adaptation aux écrans étroits ───────────────────────────────────────── */
@media (max-width: 980px) {
  .heros-grille { grid-template-columns: 1fr; }
  .heros-visuel { order: -1; }
}
@media (max-width: 640px) {
  /* Sur un portable, on balaie : les flèches se font discrètes plutôt que de
     recouvrir le tiers de la capture. */
  .fleche { width: 34px; height: 34px; font-size: 19px; opacity: .85; }
  .fleche-g { left: 8px; }
  .fleche-d { right: 8px; }
  .legende { min-height: 96px; }
  .legende strong { font-size: 16px; }
}
@media (max-width: 640px) {
  .bandeau .enveloppe-large { min-height: 64px; padding-top: 10px; padding-bottom: 10px; }
  .bandeau nav { width: 100%; }
  .marque img { height: 42px; }
  .mot-symbole { font-size: 25px; }
  .sommaire ol { columns: 1; }
  .chiffres { grid-template-columns: 1fr; gap: 14px; }
  .bande-appel { flex-direction: column; align-items: flex-start; }
}
