/* ═══════════════════════════════════════════════════════════════════════
   CGK INFORMATIQUE — Charte graphique 2026
   Papier bone · encre noire · vermillon. Aucun dégradé, aucune lueur.
   Type massive, couleur franche, animations pilotées par le scroll.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 0. Polices, servies par le site ────────────────────────────────────
   Auto-hébergées plutôt que chargées depuis Google Fonts : une requête
   tierce en moins sur le chemin critique, deux résolutions DNS et deux
   négociations TLS évitées, et plus aucune adresse IP de visiteur
   transmise à un tiers. Les deux familles sont variables : un seul
   fichier couvre toute la plage de graisses. Le sous-ensemble latin-ext
   n'est téléchargé que si un caractère de sa plage apparaît.          */

@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/fonts/bricolage-latin.woff2?v=e8a27852) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/fonts/bricolage-latin-ext.woff2?v=4db04620) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/inter-tight-latin.woff2?v=35babd43) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/inter-tight-latin-ext.woff2?v=fdac46ab) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── 1. Jetons ──────────────────────────────────────────────────────── */

:root {
  /* Surfaces — neutres froids, accordés au dégradé du logo */
  --bone:    #f4f5f8;
  --bone-2:  #e7e9f0;
  --paper:   #ffffff;
  --ink:     #0e1016;
  --ink-2:   #171a22;

  /* Texte */
  --tx:      #0e1016;
  --tx-2:    #585f70;
  --tx-3:    #656c7e;  /* #8b92a3 tombait à 2,86:1 sur bone — sous AA */
  --tx-inv:  #f4f5f8;
  --tx-inv-2:#9aa1b2;

  /* Traits */
  --line:    #dcdfe7;
  --line-2:  #c2c7d4;
  --line-dk: #252935;

  /* Marque — relevée sur le logo */
  --logo-a:  #a21efc;   /* extrémité violette */
  --logo-b:  #1e8afc;   /* extrémité bleue */
  --grad:    linear-gradient(118deg, var(--logo-a) 0%, var(--logo-b) 100%);

  /* Triade relevée sur l'axe du dégradé du logo : 276° → 250° → 209°.
     Aucune teinte verte — le logo n'en contient pas.
     Densités calculées pour porter du texte : ≥4,6:1 sur la page ET
     sous du blanc. */
  --violet: #a227f4;   /* 276° — réseau & infrastructure */
  --indigo: #4d2cf2;   /* 250° — sécurité & vidéoprotection */
  --blue:   #096ece;   /* 209° — audio & multimédia */
  --violet-dk: #7a1cba;
  /* Variante éclaircie, pour rester lisible sur les fonds sombres */
  --violet-lt: #b24af7;

  /* Rythme */
  --gut:  clamp(18px, 4.5vw, 56px);
  --sec:  clamp(80px, 10vw, 168px);
  --maxw: 1440px;
  --read: 62ch;

  /* Type */
  --f-d: 'Bricolage Grotesque', 'Archivo', Helvetica, Arial, sans-serif;
  --f-b: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease:   cubic-bezier(.22, .61, .36, 1);
  --ease-o: cubic-bezier(.16, 1, .3, 1);
}

/* ── 2. Base ────────────────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--f-b);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tx);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; text-wrap: pretty; }

h1, h2, h3, h4 {
  font-family: var(--f-d);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.035em;
  margin: 0;
  text-wrap: balance;
}

::selection { background: var(--violet); color: #fff; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }

/* ── 3. Grille & sections ───────────────────────────────────────────── */

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-tight { max-width: 1040px; }

.section      { padding-block: var(--sec); }
.section-sm   { padding-block: clamp(56px, 6.5vw, 104px); }
.section-dark { background: var(--ink); color: var(--tx-inv); }

/* Le gris tertiaire a deux valeurs selon le fond. Assombri pour passer AA
   sur le papier, il devenait illisible sur l'encre. Plutôt que de corriger
   chaque sélecteur — et d'en oublier — on redéfinit le jeton dans les
   zones sombres : tout `var(--tx-3)` qui s'y trouve suit automatiquement. */
.section-dark, .phero, .ftr, .cta, .mob, .show, .parti { --tx-3: #9aa1b2; }
.section-dark p { color: var(--tx-inv-2); }
.section-paper { background: var(--paper); }

.skip { position: fixed; left: -9999px; top: 0; z-index: 999; background: var(--ink); color: #fff; padding: 14px 22px; font-weight: 600; }
.skip:focus { left: 0; }

/* ── 4. Typographie ─────────────────────────────────────────────────── */

.h-xl { font-size: clamp(2.8rem, 8vw, 6.4rem); }
.h-lg { font-size: clamp(2.2rem, 5.6vw, 4.2rem); }
.h-md { font-size: clamp(1.65rem, 3.4vw, 2.6rem); letter-spacing: -.032em; }
.h-sm { font-size: clamp(1.14rem, 1.9vw, 1.38rem); letter-spacing: -.024em; line-height: 1.16; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--tx-2); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 30px; height: 3px; background: var(--violet); flex-shrink: 0; }
.section-dark .eyebrow, .phero .eyebrow, .cta .eyebrow { color: var(--tx-inv-2); }

/* Surtitre porté PAR le h1, pas à côté.
   Rendu identique à .eyebrow, mais le mot-clé est bien dans le titre. */
.h1-kw {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-b);
  font-size: 11.5px; font-weight: 700; line-height: 1.35; letter-spacing: .17em; text-transform: uppercase;
  color: var(--tx-inv-2); margin-bottom: 22px;
}
.h1-kw::before { content: ''; width: 30px; height: 3px; background: var(--violet); flex-shrink: 0; }
.hero-h .h1-kw { color: var(--tx-2); margin-bottom: 18px; }
.cta .eyebrow { color: rgba(255,255,255,.82); }
.cta .eyebrow::before { background: #fff; }

.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.5; color: var(--tx-2); max-width: var(--read); }
.section-dark .lead, .phero .lead { color: var(--tx-inv-2); }

.muted { color: var(--tx-2); }
.small { font-size: 14.5px; line-height: 1.55; }
.tiny  { font-size: 12.5px; line-height: 1.5; }

.sec-head { margin-bottom: clamp(40px, 5vw, 72px); }
@media (min-width: 940px) {
  .sec-head.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 64px; align-items: end; }
}

/* ── Accents dégradés ────────────────────────────────────────────────
   Le dégradé de la marque ne sert que de signal : filet de surtitre,
   soulignement d'onglet actif, barre de progression, numéros de section.
   Jamais en fond de page ni en remplissage de bouton.               */

.eyebrow::before { background: var(--grad); }
.nav-a::after,
.sld-tab::after,
.hero-dot.is-on s::after { background: var(--grad); }
.sld-bar i { background: var(--grad); }
.show-n::after { background: currentColor; }
.grad-tx {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
/* Filet de marque en haut de page */
.hdr::before {
  content: ''; display: block; height: 3px; background: var(--grad);
}

/* ── 5. Boutons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  background: var(--ink); color: #fff;
  border: 2px solid var(--ink); border-radius: 0;
  font-size: 15.5px; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--violet);
  transform: translateY(101%);
  transition: transform .42s var(--ease-o);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { border-color: var(--violet); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
/* Dans un article, `.prose a` (0,1,1) l'emportait sur `.btn` (0,1,0) et
   repeignait le libellé en violet sur fond encre — 3,74:1. */
.prose a.btn { color: #fff; font-weight: 600; }
.prose a.btn-ghost { color: var(--ink); }
.prose a.btn-ghost:hover, .prose a.btn:hover { color: #fff; }
.btn-ghost:hover { color: #fff; }

.btn-light { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-light:hover { color: #fff; border-color: var(--violet); }

.section-dark .btn-ghost, .phero .btn-ghost, .mob .btn-ghost {
  color: var(--tx-inv); border-color: rgba(242, 239, 232, .34);
}
.section-dark .btn-ghost:hover, .phero .btn-ghost:hover, .mob .btn-ghost:hover { color: #fff; border-color: var(--violet); }

.btn-sm { padding: 11px 20px; font-size: 14.5px; }
.btn .arw { transition: transform .35s var(--ease-o); }
.btn:hover .arw { transform: translateX(4px); }

.lnk { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15.5px; padding: 7px 0 10px; position: relative; }
.lnk::after { content: ''; position: absolute; left: 0; right: 0; bottom: 7px; height: 2px; background: currentColor; transform-origin: right; transition: transform .4s var(--ease-o); }
.lnk:hover::after { transform: scaleX(0); transform-origin: left; }
.lnk:hover { color: var(--violet); }
.lnk svg { transition: transform .35s var(--ease-o); }
.lnk:hover svg { transform: translateX(4px); }

/* ── 6. En-tête ─────────────────────────────────────────────────────── */

.hdr { position: sticky; top: 0; z-index: 100; background: var(--bone); border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), background .3s var(--ease); }
.hdr.scrolled { border-bottom-color: var(--line); background: rgba(242, 239, 232, .93); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { height: 40px; width: 40px; object-fit: contain; }
.brand-tx {
  font-family: var(--f-d); font-weight: 800; font-size: 19px;
  letter-spacing: -.05em; line-height: 1; text-transform: uppercase;
}
.brand-tx span {
  display: block; font-family: var(--f-b); font-size: 9.5px; font-weight: 600;
  letter-spacing: .19em; color: var(--tx-2); margin-top: 4px;
}
.ftr .brand img { height: 44px; width: 44px; }
.ftr .brand-tx { color: var(--bone); }
.ftr .brand-tx span { color: var(--tx-3); }
@media (max-width: 380px) { .brand-tx { display: none; } }

.nav { display: none; }
@media (min-width: 1100px) { .nav { display: flex; align-items: center; gap: 2px; } }
.nav-item { position: relative; }
.nav-a { display: inline-flex; align-items: center; gap: 6px; padding: 10px 15px; font-size: 15px; font-weight: 500; color: var(--tx-2); position: relative; transition: color .22s var(--ease); }
.nav-a::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; background: var(--violet); transform: scaleX(0); transform-origin: left; transition: transform .34s var(--ease-o); }
.nav-a:hover, .nav-item:hover > .nav-a { color: var(--tx); }
.nav-a:hover::after, .nav-item:hover > .nav-a::after { transform: scaleX(1); }
.nav-a[aria-current='page'] { color: var(--tx); font-weight: 600; }
.nav-a[aria-current='page']::after { transform: scaleX(1); }
.nav-a .caret { opacity: .5; transition: transform .3s var(--ease); }
.nav-item:hover .caret { transform: rotate(180deg); }

.drop {
  position: absolute; top: 100%; left: 50%; translate: -50% 0;
  min-width: 320px; background: var(--paper); border: 2px solid var(--ink); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease-o), visibility .24s;
}
.nav-item:hover .drop, .nav-item:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
/* Menu à deux colonnes : au-delà de six entrées, une seule colonne
   dépasse la hauteur de l'écran sur un portable. */
.drop[data-cols="2"] { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2px; width: 660px; }
.drop-a { display: block; padding: 13px 15px; transition: background .2s var(--ease), color .2s var(--ease); }
.drop-a:hover { background: var(--ink); color: var(--bone); }
.drop-a strong { display: block; font-size: 15px; font-weight: 600; letter-spacing: -.015em; }
.drop-a span { display: block; font-size: 13px; color: var(--tx-3); margin-top: 2px; }
.drop-a:hover span { color: var(--tx-inv-2); }

.hdr-cta { display: none; align-items: center; gap: 14px; }
@media (min-width: 1100px) { .hdr-cta { display: flex; } }
.hdr-tel { display: inline-flex; align-items: center; gap: 8px; padding: 10px 6px; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; transition: color .2s var(--ease); }
.hdr-tel:hover { color: var(--violet); }

.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 6px; width: 48px; height: 48px; padding: 0 12px; background: var(--ink); border: 0; cursor: pointer; }
@media (min-width: 1100px) { .burger { display: none; } }
.burger i { display: block; height: 2px; background: var(--bone); transition: transform .34s var(--ease-o), opacity .2s; }
.burger i:nth-child(1) { width: 24px; }
.burger i:nth-child(2) { width: 16px; margin-left: auto; }
body.menu-open .burger i:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .burger i:nth-child(2) { width: 24px; transform: translateY(-4px) rotate(-45deg); }

.mob { position: fixed; inset: 78px 0 0; z-index: 99; background: var(--ink); color: var(--tx-inv); padding: 20px var(--gut) 44px; overflow-y: auto; clip-path: inset(0 0 100% 0); transition: clip-path .5s var(--ease-o); }
body.menu-open .mob { clip-path: inset(0 0 0 0); }
@media (min-width: 1100px) { .mob { display: none; } }
.mob-a { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line-dk); font-family: var(--f-d); font-size: clamp(1.6rem, 7vw, 2.2rem); font-weight: 800; letter-spacing: -.04em; }
.mob-a:hover { color: var(--violet); }
.mob-sub { padding: 6px 0 16px; border-bottom: 1px solid var(--line-dk); }
.mob-sub a { display: block; padding: 10px 0 10px 18px; font-size: 16px; color: var(--tx-inv-2); border-left: 2px solid var(--line-dk); }
.mob-sub a:hover { color: var(--violet); border-color: var(--violet); }
.mob-foot { margin-top: 30px; display: grid; gap: 10px; }

/* ── 7. Hero ────────────────────────────────────────────────────────── */

.hero { background: var(--bone); overflow: hidden; }

/* Piste des volets — défilement natif, donc balayage tactile gratuit */
.hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* pas de scroll-behavior : il bloque le défilement programmatique */
}
.hero-track::-webkit-scrollbar { display: none; }

.hero-s {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  padding-block: clamp(40px, 5vw, 76px) clamp(30px, 3.5vw, 52px);
}

.hero-in { display: grid; gap: clamp(46px, 6vw, 68px); }
@media (min-width: 1080px) { .hero-in { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: center; gap: 48px; } }

/* Navigation : les trois volets sont nommés, rien n'est deviné */
.hero-nav { display: flex; align-items: center; gap: 16px; padding-bottom: clamp(28px, 3.5vw, 46px); }
.hero-arw {
  display: none; place-items: center;
  width: 42px; height: 42px; flex-shrink: 0;
  background: none; border: 1.5px solid var(--line-2); color: var(--tx);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
@media (min-width: 720px) { .hero-arw { display: grid; } }
.hero-arw:hover { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.hero-arw[data-hero-prev] svg { transform: rotate(180deg); }

.hero-dots { display: flex; gap: 0; flex: 1; }
.hero-dot {
  position: relative;
  display: flex; align-items: baseline; gap: 8px;
  flex: 1;
  padding: 14px 16px 14px 0;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  color: var(--tx-3);
  font-size: 14px; font-weight: 600; letter-spacing: -.012em;
  transition: color .25s var(--ease);
}
.hero-dot em { font-family: var(--f-d); font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.hero-dot span { white-space: nowrap; }
@media (max-width: 560px) { .hero-dot span { display: none; } .hero-dot { flex: 0 0 auto; padding-right: 22px; } }
.hero-dot s {
  position: absolute; left: 0; right: 16px; bottom: 0;
  height: 2px; background: var(--line-2);
  text-decoration: none; overflow: hidden;
}
.hero-dot s::after {
  content: ''; position: absolute; inset: 0;
  background: var(--violet);
  transform: scaleX(0); transform-origin: left;
}
.hero-dot:hover { color: var(--tx-2); }
.hero-dot.is-on { color: var(--tx); }
.hero-dot.is-on s::after { transform: scaleX(1); transition: transform .45s var(--ease-o); }
/* Barre de progression du défilement automatique */
.hero-dot.is-on.is-timing s::after { transform: scaleX(1); transition: transform var(--hero-dur, 7s) linear; }
.hero-dot.is-on.is-timing-reset s::after { transform: scaleX(0); transition: none; }


.hero-h { font-size: clamp(2.2rem, 5.3vw, 4.7rem); line-height: .95; letter-spacing: -.042em; overflow-wrap: break-word; }
.hero-h .hl { display: block; overflow: hidden; }
.hero-h .hl > span { display: block; }
.c-violet   { color: var(--violet); }
.c-indigo { color: var(--indigo); }
.c-blue { color: var(--blue); }

.hero-sub { font-size: clamp(1.04rem, 1.4vw, 1.2rem); color: var(--tx-2); margin-top: clamp(22px, 3vw, 32px); max-width: 44ch; line-height: 1.5; }
.hero-sub b { color: var(--ink); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3.5vw, 38px); }

.hero-facts { display: flex; flex-wrap: wrap; margin-top: clamp(30px, 4vw, 46px); border-top: 2px solid var(--ink); }
.hero-facts li { padding: 18px 26px 0 0; margin-right: 26px; border-right: 1px solid var(--line); }
.hero-facts li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-facts b { display: block; font-family: var(--f-d); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; letter-spacing: -.045em; line-height: 1; }
.hero-facts span { display: block; font-size: 12px; color: var(--tx-2); margin-top: 6px; }
@media (max-width: 760px) {
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 0; }
  .hero-facts li { border-right: 0; margin-right: 0; padding: 18px 18px 0 0; }
}

/* ── 8. Maquettes matériel (DOM + SVG, animées) ─────────────────────── */

.stage { position: relative; aspect-ratio: 1 / .9; width: 100%; }
@media (max-width: 1079px) { .stage { max-width: 560px; margin-inline: auto; } }
.stage-solo { position: relative; }

.dev { position: absolute; background: var(--paper); border: 2px solid var(--ink); }

/* ── Baie de brassage 19" ───────────────────────────────────────────── */

.dev-rack {
  background: #17150f; border-color: var(--ink);
  display: flex; flex-direction: column;
  box-shadow: 12px 12px 0 rgba(18, 17, 16, .13);
  min-width: 0;
}
.rack-top { display: flex; gap: 5%; padding: 3% 6%; border-bottom: 1px solid #35302a; flex-shrink: 0; }
.rack-top b {
  flex: 1; height: 5px;
  background: repeating-linear-gradient(90deg, #423c33 0 2px, transparent 2px 4px);
}
.rack-b { position: relative; flex: 1; display: flex; flex-direction: column; gap: 3px; padding: 5% 9%; min-height: 0; }

/* Montants perforés */
.rail { position: absolute; top: 4%; bottom: 4%; width: 5.5%; display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; background: #2b2621; }
.rail-l { left: 1.5%; }
.rail-r { right: 1.5%; }
.rail u { width: 42%; aspect-ratio: 1; max-height: 4px; background: #0c0b0a; }

.ru { display: flex; align-items: center; gap: 3%; padding: 0 4%; flex: 1; min-height: 0; min-width: 0; }
.ru em { width: 3px; height: 54%; background: #5c554b; flex-shrink: 0; border-radius: 1px; }

/* Panneau de brassage : face métal + ports sombres */
.ru-patch { background: #7d766a; border-top: 1px solid #948d80; }
.rj-row { display: flex; gap: 2px; flex: 1; min-width: 0; height: 100%; align-items: center; }
.rj { flex: 1; min-width: 0; height: 52%; background: #100f0e; border-bottom: 1.5px solid #4a453d; border-radius: 1px; }

/* Jarretières de couleur */
.ru-cords { flex: 0 0 13%; padding: 0 9%; min-height: 0; }
.cords { width: 100%; height: 100%; display: block; }
.cords path { fill: none; stroke-width: 2.6; stroke-linecap: round; vector-effect: non-scaling-stroke; }

/* Commutateur */
.ru-sw { background: #1d1a16; }
.sw-ports { display: flex; gap: 2px; flex: 1; min-width: 0; }
.sw-ports i { flex: 1; min-width: 0; height: 9px; max-height: 46%; background: #0b0a09; border-top: 1.5px solid #575046; border-radius: 1px; }
.sw-leds { display: flex; gap: 3px; flex-shrink: 0; }
.sw-leds i { width: 4px; height: 4px; border-radius: 50%; background: #47b07a; animation: blink 1.9s steps(1) infinite; }
.sw-leds i:nth-child(3) { background: var(--blue); }
.sw-sfp { display: flex; gap: 2px; flex-shrink: 0; }
.sw-sfp i { width: 9px; height: 6px; background: #0b0a09; border: 1px solid #575046; }
@keyframes blink { 0%, 52% { opacity: 1; } 53%, 100% { opacity: .2; } }

/* Passe-câbles */
.ru-mgr { background: #201d19; gap: 4%; justify-content: space-between; flex: .7; }
.ru-mgr s { flex: 1; height: 58%; background: #3b352d; text-decoration: none; border-radius: 2px; }

/* Onduleur */
.ru-ups { background: #26231e; }
.ups-disp { width: 26%; height: 60%; background: #0a1410; border: 1px solid #4e473d; display: grid; place-items: center; flex-shrink: 0; }
.ups-disp span { width: 58%; height: 2px; background: #47b07a; }
.ups-led { display: flex; gap: 4px; margin-left: auto; flex-shrink: 0; }
.ups-led i { width: 4px; height: 4px; border-radius: 50%; background: #47b07a; }
.ups-led i:last-child { background: var(--blue); }

/* Ventilation */
.ru-fan { background: #1a1713; justify-content: center; gap: 9%; flex: .7; }
.ru-fan span { width: 13%; aspect-ratio: 1; max-height: 68%; border-radius: 50%; border: 1.5px solid #3d372f; }

.dev-rack.is-slim .ru-mgr, .dev-rack.is-slim .ru-fan { display: none; }

/* ── Caméra tube ────────────────────────────────────────────────────── */

.dev-cam { background: none; border: 0; }
.cam-plate { display: block; width: 20%; height: 5px; margin: 0 auto; background: var(--ink); border-radius: 2px 2px 0 0; }
.cam-arm { display: block; width: 5px; height: 12px; margin: 0 auto; background: var(--ink); }
.cam-hood {
  background: var(--indigo);
  border: 2px solid var(--ink);
  border-radius: 7px 46% 46% 7px / 7px 50% 50% 7px;
  padding: 3.5% 3% 3.5% 7%;
}
.cam-body { position: relative; display: flex; align-items: center; justify-content: flex-end; aspect-ratio: 1 / .38; }
.cam-rib { position: absolute; top: 6%; bottom: 6%; width: 2px; background: rgba(18, 17, 16, .3); border-radius: 2px; }
.cam-rib:nth-of-type(1) { left: 12%; }
.cam-rib:nth-of-type(2) { left: 19%; }
.cam-front { position: relative; height: 100%; aspect-ratio: 1; border-radius: 50%; background: #100f0e; display: grid; place-items: center; box-shadow: inset 0 0 0 2px #2f2c28; }
.cam-ir { position: absolute; inset: 0; }
.cam-ir i {
  position: absolute; left: 50%; top: 50%;
  width: 7%; aspect-ratio: 1; margin: -3.5% 0 0 -3.5%;
  border-radius: 50%; background: #5b3a7a;
  transform: rotate(var(--a)) translateY(-185%);
}
.cam-lens { width: 50%; aspect-ratio: 1; border-radius: 50%; background: #1c1b19; box-shadow: inset 0 0 0 2.5px #423e39; position: relative; }
.cam-lens b { position: absolute; left: 20%; top: 16%; width: 26%; aspect-ratio: 1; border-radius: 50%; background: #fff; opacity: .78; }
.cam-rec { position: absolute; left: 14%; top: 46%; width: 8px; height: 8px; border-radius: 50%; background: var(--violet); animation: blink 2.4s steps(1) infinite; }

/* Objet et panneau de la même couleur : seul le contour ressortait.
   Sur un fond de sa propre teinte, l'objet passe en clair. */
.svc-flat[data-c='indigo'] .cam-hood,
.sld-s[data-c='indigo'] .cam-hood,
.infra-vis[data-c='indigo'] .cam-hood,
.show-frame[data-c='indigo'] .cam-hood,
.show-mini[data-c='indigo'] .cam-hood,
.mega-top[data-c='indigo'] .cam-hood { background: var(--bone); }

.svc-flat[data-c='indigo'] .cam-rib,
.sld-s[data-c='indigo'] .cam-rib,
.infra-vis[data-c='indigo'] .cam-rib,
.show-frame[data-c='indigo'] .cam-rib,
.show-mini[data-c='indigo'] .cam-rib,
.mega-top[data-c='indigo'] .cam-rib { background: rgba(32, 34, 37, .22); }

.svc-flat[data-c='blue'] .dev-spk,
.sld-s[data-c='blue'] .dev-spk,
.infra-vis[data-c='blue'] .dev-spk,
.show-frame[data-c='blue'] .dev-spk,
.show-mini[data-c='blue'] .dev-spk,
.mega-top[data-c='blue'] .dev-spk { background: var(--bone); }

.svc-flat[data-c='blue'] .spk-wf b,
.sld-s[data-c='blue'] .spk-wf b,
.infra-vis[data-c='blue'] .spk-wf b { background: var(--blue); }

/* ── Enceinte 2 voies ───────────────────────────────────────────────── */

.dev-spk {
  aspect-ratio: 1 / 1.55;
  background: var(--blue); border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(18, 17, 16, .18);
}
/* Conteneur interne : les % se calculent alors sur l'enceinte, pas sur la scène. */
.spk-in {
  position: absolute; inset: 6% 9%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6%;
}
.spk-tw { width: 32%; aspect-ratio: 1; border-radius: 50%; background: #1a1917; display: grid; place-items: center; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .16); flex-shrink: 0; }
.spk-tw b { width: 36%; aspect-ratio: 1; border-radius: 50%; background: #4d4842; }
.spk-wf { position: relative; width: 84%; aspect-ratio: 1; border-radius: 50%; background: #1a1917; display: grid; place-items: center; box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .13); flex-shrink: 0; }
.spk-wf span { position: absolute; inset: 15%; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .14); }
.spk-wf b { width: 30%; aspect-ratio: 1; border-radius: 50%; background: #423d38; }
.spk-port { width: 34%; height: 6px; border-radius: 99px; background: #1a1917; flex-shrink: 0; }
.spk-wave { position: absolute; right: -14%; aspect-ratio: 1 / 1.7; border: 2.5px solid var(--ink); border-radius: 50%; border-color: transparent var(--ink) transparent transparent; opacity: .22; }
.spk-w1 { width: 26%; top: 32%; }
.spk-w2 { width: 42%; top: 22%; right: -26%; }

/* ── Borne WiFi ─────────────────────────────────────────────────────── */

/* Sans ratio explicite, la hauteur se limite au corps de la borne et les
   ondes — positionnées en % — se retrouvent cachées derrière lui. */
.dev-ap { background: none; border: 0; aspect-ratio: 1 / .95; }
.ap-plate { display: block; width: 34%; height: 7px; margin: 0 auto; background: var(--ink); border-radius: 3px 3px 0 0; }
.ap-body { display: grid; place-items: center; width: 100%; aspect-ratio: 1 / .34; border-radius: 99px; background: var(--ink); position: relative; z-index: 2; }
.ap-body b { width: 13%; aspect-ratio: 1; border-radius: 50%; background: #47b07a; animation: blink 2.2s steps(1) infinite; }
.ap-wave { position: absolute; left: 50%; translate: -50% 0; aspect-ratio: 2 / 1; border: 5px solid transparent; border-bottom-color: var(--ink); border-radius: 50%; }
.ap-w1 { width: 86%;  top: 46%; opacity: .7; }
.ap-w2 { width: 136%; top: 62%; opacity: .45; }
.ap-w3 { width: 190%; top: 80%; opacity: .24; }

/* ── iPhone ─────────────────────────────────────────────────────────── */

.dev-app {
  aspect-ratio: 1 / 2.16;
  background: var(--ink);
  border: 0;
  border-radius: 15% / 6.9%;
  padding: 0;
  box-shadow: 10px 10px 0 rgba(18, 17, 16, .13);
}
/* La dalle est positionnée en absolu : les % portent sur le téléphone. */
.dev-screen {
  position: absolute; inset: 1.25% 2.7%;
  border-radius: 13% / 6%;
  overflow: hidden;
  background: var(--indigo);
  display: flex; flex-direction: column; gap: 5%;
  padding: 15% 8% 9%;
}
.dev-app.is-dark .dev-screen { background: #1b1a18; }

.ph-island { position: absolute; top: 3%; left: 50%; translate: -50% 0; width: 31%; height: 3.2%; border-radius: 99px; background: #08080a; z-index: 3; }
.ph-home { position: absolute; bottom: 1.8%; left: 50%; translate: -50% 0; width: 32%; height: 1%; min-height: 2px; border-radius: 99px; background: rgba(255, 255, 255, .62); }

.ph-hd { display: flex; flex-direction: column; gap: 5px; margin-bottom: 2%; }
.ph-hd u { display: block; height: 7px; background: rgba(255, 255, 255, .92); text-decoration: none; border-radius: 2px; }
.ph-hd u + u { width: 52%; height: 5px; background: rgba(255, 255, 255, .42); }

.ph-btn { position: absolute; background: #45403a; border-radius: 2px; }
.ph-vol-a { left: -2px; top: 21%; width: 2.5px; height: 6.5%; }
.ph-vol-b { left: -2px; top: 29.5%; width: 2.5px; height: 6.5%; }
.ph-act   { left: -2px; top: 13.5%; width: 2.5px; height: 4%; }
.ph-pwr   { right: -2px; top: 24%; width: 2.5px; height: 10.5%; }

.dev-row { display: flex; align-items: center; gap: 6%; background: rgba(255, 255, 255, .15); padding: 5% 6%; border-radius: 4px; }
.dev-app.is-dark .dev-row { background: rgba(255, 255, 255, .09); }
.dev-row i { width: 14%; aspect-ratio: 1; background: rgba(255, 255, 255, .55); flex-shrink: 0; border-radius: 3px; }
.dev-row s { flex: 1; height: 4px; background: rgba(255, 255, 255, .42); text-decoration: none; border-radius: 2px; }
.dev-tab { margin-top: auto; display: flex; align-items: center; justify-content: space-around; height: 11%; background: rgba(255, 255, 255, .95); border-radius: 5px; }
.dev-tab i { width: 12%; aspect-ratio: 1; border-radius: 50%; background: #b9b3aa; }
.dev-tab i:first-child { background: var(--ink); }

/* ── Caméra dôme ────────────────────────────────────────────────────── */

.dev-dome { background: none; border: 0; }
.dome-plate { display: block; width: 78%; height: 7px; margin: 0 auto; background: var(--ink); border-radius: 3px 3px 0 0; }
.dome-body {
  position: relative;
  aspect-ratio: 1 / .6;
  background: var(--indigo);
  border: 2px solid var(--ink);
  border-radius: 50% 50% 10px 10px / 92% 92% 10px 10px;
  display: grid; place-items: center;
  overflow: hidden;
}
.dome-bubble {
  position: relative;
  width: 58%; aspect-ratio: 1;
  border-radius: 50%;
  background: #14161a;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .16);
  translate: 0 18%;
  display: grid; place-items: center;
}
.dome-bubble b { width: 34%; aspect-ratio: 1; border-radius: 50%; background: #35383d; }
.dome-bubble u { position: absolute; left: 16%; top: 14%; width: 26%; aspect-ratio: 1; border-radius: 50%; background: #fff; opacity: .55; }

/* ── Enregistreur vidéo ─────────────────────────────────────────────── */

.dev-nvr { background: #1d1f23; border-color: var(--ink); box-shadow: 10px 10px 0 rgba(32, 34, 37, .14); }
.nvr-face { display: flex; align-items: center; gap: 5%; padding: 7% 6%; }
.nvr-badge { width: 9%; height: 10px; background: #4b5057; border-radius: 2px; flex-shrink: 0; }
.nvr-bays { display: flex; gap: 4px; flex: 1; }
.nvr-bays i { flex: 1; height: 26px; background: #101215; border: 1px solid #3d424a; border-radius: 2px; display: grid; align-items: center; padding-left: 4px; }
.nvr-bays i s { display: block; width: 4px; height: 4px; border-radius: 50%; background: #47b07a; text-decoration: none; }
.nvr-leds { display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.nvr-leds i { width: 5px; height: 5px; border-radius: 50%; background: #47b07a; animation: blink 2.1s steps(1) infinite; }
.nvr-leds i:nth-child(2) { background: var(--blue); }
.nvr-leds i:nth-child(3) { background: var(--violet); }

/* ── Clavier d’alarme ───────────────────────────────────────────────── */

.dev-kp { aspect-ratio: 1 / 1.32; background: var(--paper); border-color: var(--ink); box-shadow: 6px 6px 0 rgba(32, 34, 37, .14); }
/* Conteneur interne : les % portent alors sur le clavier, pas sur la scène. */
.kp-in { position: absolute; inset: 9% 10%; display: flex; flex-direction: column; gap: 9%; }
.kp-disp { display: grid; align-items: center; flex: 0 0 18%; background: #14161a; padding-left: 8%; }
.kp-disp b { display: block; width: 44%; height: 3px; background: #47b07a; }
.kp-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7%; flex: 1; }
.kp-keys i { background: var(--bone-2); border: 1px solid var(--line-2); border-radius: 2px; }

/* ── Mur d’images sur mobile ────────────────────────────────────────── */

.dev-screen.is-cams { background: #101215; gap: 4%; }
.cam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; flex: 1; }
.cam-grid i { position: relative; background: #1e2126; border: 1px solid #2f343a; border-radius: 2px; display: grid; place-items: center; }
.cam-grid i s { width: 26%; aspect-ratio: 1; border-radius: 50%; background: #3b4048; text-decoration: none; }
.cam-grid i:first-child { background: #23272d; }
.cam-grid i:first-child::after { content: ''; position: absolute; top: 3px; right: 3px; width: 4px; height: 4px; border-radius: 50%; background: var(--violet); animation: blink 1.6s steps(1) infinite; }

/* ── Éditeur de code ────────────────────────────────────────────────── */

.dev-code { background: #14161a; border-color: var(--ink); display: flex; flex-direction: column; box-shadow: 10px 10px 0 rgba(32, 34, 37, .14); }
.dev-code .dev-bar { background: #1e2126; border-bottom-color: #2f343a; }
.dev-code .dev-bar i { background: #4b5057; opacity: 1; }
.dev-code .dev-bar .url { background: #14161a; border-color: #2f343a; }
.code-body { flex: 1; padding: 8% 7%; display: flex; flex-direction: column; justify-content: space-evenly; min-height: 0; }
.code-ln { display: flex; align-items: center; gap: 8px; }
.code-ln em { flex-shrink: 0; width: 10px; height: 5px; background: #3d424a; border-radius: 1px; }
.code-ln u { display: block; width: var(--w); height: 5px; border-radius: 1px; text-decoration: none; background: #4b5057; }
.code-ln[style*="--o:0"] u { background: var(--violet); opacity: .85; }
.code-ln[style*="--o:2"] u { background: var(--blue); opacity: .8; }

/* ── Scènes SVG ─────────────────────────────────────────────────────── */

.scene-wrap { position: relative; width: 100%; }
.dev-svg { background: none; border: 0; }
.dev-svg .scene { width: 100%; }
.scene { display: block; width: 100%; height: auto; overflow: visible; }

/* Remplissages */
.s-ink      { fill: var(--ink); }
.s-ink2     { fill: #34383d; }
.s-indigo    { fill: var(--indigo); }
.s-indigo-dk { fill: #0d4ea6; }
.s-glass    { fill: #14181c; }
.s-mod      { fill: #23272c; }
.s-lens     { fill: #08090b; }
.s-glint    { fill: #fff; opacity: .55; }
.s-ir       { fill: #6d4a8f; }
.s-rec      { fill: var(--violet); }
.s-red      { fill: var(--violet); }
.s-box      { fill: #24282d; }
.s-bay      { fill: #101317; }
.s-dim      { fill: #4d545c; }
.s-dim2     { fill: #39404a; }
.s-screen   { fill: #0d1014; }
.s-island   { fill: #05070a; }
.s-feed     { fill: #1b2026; }
.s-feed-dot { fill: #39414b; }
.s-bar      { fill: var(--bone); }
.s-home     { fill: #6d757f; }
.s-shadow   { fill: rgba(32, 34, 37, .16); }
.s-led-on   { fill: #47b07a; }
.s-led-amber{ fill: var(--blue); }
.s-led-red  { fill: var(--violet); }
.s-node     { fill: var(--violet); }

/* Contours */
.s-lensring { fill: none; stroke: rgba(255, 255, 255, .22); stroke-width: 2.5; }
.s-shine    { fill: none; stroke: rgba(255, 255, 255, .38); stroke-width: 6; stroke-linecap: round; }
.s-rib      { stroke: rgba(0, 0, 0, .22); stroke-width: 3; stroke-linecap: round; }
.s-cable    { fill: none; stroke: var(--ink); stroke-width: 6; stroke-linecap: round; }
.s-boxline  { fill: none; stroke: #3d434b; stroke-width: 2; }
.s-slot     { stroke: #2c333b; stroke-width: 2.5; stroke-linecap: round; }
.s-flow     { fill: none; stroke: var(--tx-3); stroke-width: 2.4; stroke-dasharray: 6 7; stroke-linecap: round; }

/* Sur fond sombre, la scène s'éclaircit */
.section-dark .s-flow, .sld-v .s-flow { stroke: rgba(244, 239, 234, .45); }

/* Champ de vision — le repère visuel qui fait lire « caméra » */
.fov { opacity: 0; }
.section-dark .fov, .sld-v .fov { mix-blend-mode: screen; }
.scanline { fill: var(--violet-lt); opacity: .55; }
.detect { fill: none; stroke: var(--violet); stroke-width: 2; transform-origin: 27px 34px; transform-box: fill-box; }

@media (prefers-reduced-motion: no-preference) {
  .scene-wrap.play .fov       { animation: fovIn 1s var(--ease-o) .5s forwards, fovBreathe 4.5s ease-in-out 1.5s infinite; }
  .scene-wrap.play .fov-b     { animation-delay: .68s, 1.7s; }
  .scene-wrap.play .scanline  { animation: scan 3.2s linear infinite; }
  .scene-wrap.play .detect    { animation: detect 4s ease-in-out 1.6s infinite; }
  /* le flux de données circule en continu vers l'enregistreur */
  .scene-wrap.play .s-flow > path { animation: fadeIn .01s linear .62s forwards, flow 1.6s linear 1.4s infinite; }
}
@keyframes fovIn      { to { opacity: 1; } }
@keyframes fovBreathe { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes scan       { 0% { transform: translateY(2px); opacity: 0; } 12% { opacity: .55; } 88% { opacity: .55; } 100% { transform: translateY(62px); opacity: 0; } }
@keyframes detect     { 0%, 18% { opacity: 0; transform: scale(.9); } 26%, 74% { opacity: 1; transform: none; } 88%, 100% { opacity: 0; } }
@keyframes flow       { from { stroke-dashoffset: 26; } to { stroke-dashoffset: 0; } }

/* Étiquettes des scènes SVG */
.stag {
  position: absolute; z-index: 4;
  font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  padding: 7px 12px; white-space: nowrap;
  background: var(--ink); color: var(--bone);
}
.stag-dome { top: -2%;  left: 0;    background: var(--indigo); color: #fff; }
.stag-nvr  { bottom: 20%; left: 2%;  background: var(--ink);   color: var(--bone); }
.stag-live { top: 12%;  right: 0;   background: var(--violet);   color: #fff; }



/* Animation : les éléments se posent dans l'ordre du parcours du signal */
@media (prefers-reduced-motion: no-preference) {
  .scene-wrap .o, .scene-wrap .s-flow > path, .scene-wrap .s-node, .scene-wrap .stag { opacity: 0; }
  .scene-wrap.play .o-rail   { animation: fadeUp .6s var(--ease-o) .05s forwards; }
  .scene-wrap.play .o-dome   { animation: fadeUp .7s var(--ease-o) .16s forwards; }
  .scene-wrap.play .o-bullet { animation: fadeUp .7s var(--ease-o) .28s forwards; }
  .scene-wrap.play .o-nvr    { animation: fadeUp .7s var(--ease-o) .46s forwards; }
  .scene-wrap.play .o-phone  { animation: fadeUp .7s var(--ease-o) .58s forwards; }

  .scene-wrap.play .s-node   { animation: fadeIn .4s linear 1.2s forwards; }
  .scene-wrap.play .stag-dome { animation: fadeUp .45s var(--ease-o) .8s forwards; }
  .scene-wrap.play .stag-nvr  { animation: fadeUp .45s var(--ease-o) .9s forwards; }
  .scene-wrap.play .stag-live { animation: fadeUp .45s var(--ease-o) 1s forwards; }
  .scene-wrap.play .s-led-on, .scene-wrap.play .s-rec { animation: blink 2s steps(1) infinite; }
}
@keyframes fadeUp  { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes drawFlow{ to { stroke-dashoffset: 0; } }

/* ── Étiquettes des nouvelles scènes ────────────────────────────────── */

.tagline.t-dome  { top: -13px; left: 0; background: var(--indigo); color: #fff; }
.tagline.t-nvr   { top: -13px; right: 6%; background: var(--ink); color: var(--bone); }
.tagline.t-live  { right: -6px; bottom: 42%; background: var(--violet); color: #fff; }
.tagline.t-site2 { top: -13px; left: 0; background: var(--violet); color: #fff; }
.tagline.t-appli { top: -13px; right: 0; background: var(--indigo); color: #fff; }
.tagline.t-code  { right: 2%; bottom: -13px; background: var(--ink); color: var(--bone); }

@media (prefers-reduced-motion: no-preference) {
  .stage.play .dev-dome { animation: pop .85s var(--ease-o) .12s forwards; }
  .stage.play .dev-nvr  { animation: pop .85s var(--ease-o) .3s forwards; }
  .stage.play .dev-kp   { animation: pop .7s var(--ease-o) .54s forwards; }
  .stage.play .dev-code { animation: pop .85s var(--ease-o) .5s forwards; }
  .stage.play .t-dome, .stage.play .t-site2 { animation: pop .5s var(--ease-o) .74s forwards; }
  .stage.play .t-nvr,  .stage.play .t-appli { animation: pop .5s var(--ease-o) .84s forwards; }
  .stage.play .t-live, .stage.play .t-code  { animation: pop .5s var(--ease-o) .94s forwards; }
  .stage.play .cam-grid i { animation: pop .5s var(--ease-o) backwards; }
  .stage.play .cam-grid i:nth-child(1) { animation-delay: .7s; }
  .stage.play .cam-grid i:nth-child(2) { animation-delay: .78s; }
  .stage.play .cam-grid i:nth-child(3) { animation-delay: .86s; }
  .stage.play .cam-grid i:nth-child(4) { animation-delay: .94s; }
  .stage.play .code-ln { animation: slidein .5s var(--ease-o) backwards; }
  .stage.play .code-ln:nth-child(1) { animation-delay: .72s; }
  .stage.play .code-ln:nth-child(2) { animation-delay: .78s; }
  .stage.play .code-ln:nth-child(3) { animation-delay: .84s; }
  .stage.play .code-ln:nth-child(4) { animation-delay: .90s; }
  .stage.play .code-ln:nth-child(5) { animation-delay: .96s; }
  .stage.play .code-ln:nth-child(6) { animation-delay: 1.02s; }
  .stage.play .code-ln:nth-child(7) { animation-delay: 1.08s; }
}

/* ── Navigateur ─────────────────────────────────────────────────────── */

.dev-web { display: flex; flex-direction: column; }
.dev-bar { display: flex; align-items: center; gap: 6px; padding: 10px 13px; border-bottom: 2px solid var(--ink); background: var(--bone-2); flex-shrink: 0; }
.dev-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); opacity: .2; }
.dev-bar .url { flex: 1; height: 12px; margin-left: 8px; background: var(--paper); border: 1px solid var(--line-2); }
.dev-body { flex: 1; padding: 15px; display: flex; flex-direction: column; gap: 11px; overflow: hidden; min-height: 0; }
.dev-hero-block { height: 40%; background: var(--violet); position: relative; overflow: hidden; flex-shrink: 0; }
.dev-hero-block::before { content: ''; position: absolute; left: 14px; top: 16px; width: 58%; height: 14px; background: rgba(255, 255, 255, .95); }
.dev-hero-block::after  { content: ''; position: absolute; left: 14px; top: 38px; width: 38%; height: 9px; background: rgba(255, 255, 255, .6); }
.dev-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; flex: 1; min-height: 0; }
.dev-col { border: 1.5px solid var(--line-2); padding: 9px; display: flex; flex-direction: column; gap: 7px; }
.dev-col i { display: block; width: 20px; height: 20px; background: var(--bone-2); }
.dev-col u { display: block; height: 6px; background: var(--line-2); text-decoration: none; }
.dev-col u:last-of-type { width: 62%; background: var(--line); }

/* ── Encart paiement ────────────────────────────────────────────────── */

.dev-pay { padding: 15px; background: var(--ink); border-color: var(--ink); color: var(--bone); }
.dev-pay-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.dev-pay-h span { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--tx-inv-2); }
.dev-check { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; color: var(--ink); flex-shrink: 0; }
.dev-amount { font-family: var(--f-d); font-size: clamp(1.1rem, 2.2vw, 1.8rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.dev-pay-l { margin-top: 12px; display: flex; gap: 5px; }
.dev-pay-l i { flex: 1; height: 6px; background: rgba(242, 239, 232, .2); }
.dev-pay-l i:first-child { background: var(--blue); flex: 0 0 34%; }

/* ── Étiquettes ─────────────────────────────────────────────────────── */

.tagline {
  position: absolute; z-index: 6;
  font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  padding: 7px 12px; white-space: nowrap;
  background: var(--ink); color: var(--bone);
}
.tagline.t-rack { top: -13px; left: 0; background: var(--violet); color: #fff; }
.tagline.t-cam  { left: 37%; bottom: 29%; background: var(--indigo); color: #fff; }
.tagline.t-spk  { right: -6px; bottom: 40%; background: var(--blue); color: var(--ink); }
.tagline.t-site { top: -13px; right: 4%; background: var(--ink); color: var(--bone); }

@media (max-width: 620px) {
  .tagline.t-spk { display: none; }
}

/* ── Animation d’entrée ─────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .stage .dev, .stage .tagline { opacity: 0; }
  .stage.play .dev-web  { animation: pop .85s var(--ease-o) .3s forwards; }
  .stage.play .dev-app  { animation: pop .85s var(--ease-o) .34s forwards; }
  .stage.play .dev-pay  { animation: pop .85s var(--ease-o) .5s forwards; }
  .stage.play .dev-rack { animation: pop .9s var(--ease-o) .1s forwards; }
  .stage.play .dev-cam  { animation: pop .8s var(--ease-o) .46s forwards; }
  .stage.play .dev-svg  { animation: pop .8s var(--ease-o) .46s forwards; }
  .stage.play .dev-spk  { animation: pop .8s var(--ease-o) .58s forwards; }
  .stage.play .dev-ap   { animation: pop .8s var(--ease-o) .14s forwards; }

  .stage.play .dev-app:nth-of-type(2) { animation-delay: .46s; }

  .stage.play .t-rack { animation: pop .5s var(--ease-o) .76s forwards; }
  .stage.play .t-site { animation: pop .5s var(--ease-o) .84s forwards; }
  .stage.play .t-cam  { animation: pop .5s var(--ease-o) .92s forwards; }
  .stage.play .t-spk  { animation: pop .5s var(--ease-o) 1s forwards; }

  .stage.play .dev-hero-block { animation: grow .9s var(--ease-o) .5s backwards; }
  .stage.play .dev-row { animation: slidein .55s var(--ease-o) backwards; }
  .stage.play .dev-row:nth-of-type(1) { animation-delay: .72s; }
  .stage.play .dev-row:nth-of-type(2) { animation-delay: .84s; }
  .stage.play .dev-row:nth-of-type(3) { animation-delay: .96s; }
  .stage.play .dev-check { animation: bump .6s var(--ease-o) 1s backwards; }
  .stage.play .cords path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .9s var(--ease-o) .5s forwards; }
  .stage.play .ap-wave { animation: ping 2.6s var(--ease-o) infinite; }
  .stage.play .ap-w2 { animation-delay: .3s; }
  .stage.play .ap-w3 { animation-delay: .6s; }
}
@keyframes pop     { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes grow    { from { transform: scaleY(.15); transform-origin: top; } to { transform: none; } }
@keyframes slidein { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
@keyframes bump    { 0% { transform: scale(0); } 60% { transform: scale(1.22); } 100% { transform: scale(1); } }
@keyframes draw    { to { stroke-dashoffset: 0; } }
@keyframes ping    { 0% { opacity: 0; } 25% { opacity: .5; } 100% { opacity: 0; } }

/* ── 9. Bandeau défilant ────────────────────────────────────────────── */

.marq { background: var(--ink); color: var(--bone); padding-block: 18px; overflow: hidden; display: flex; }
.marq-t {
  display: flex; align-items: center; gap: 28px; flex-shrink: 0; padding-right: 28px;
  font-family: var(--f-d); font-size: clamp(1rem, 2vw, 1.55rem); font-weight: 800;
  letter-spacing: -.02em; text-transform: uppercase; white-space: nowrap;
  animation: scrollx 48s linear infinite;
}
.marq:hover .marq-t { animation-play-state: paused; }
.marq-t i { width: 8px; height: 8px; background: var(--violet); flex-shrink: 0; }
@keyframes scrollx { to { transform: translateX(-100%); } }

/* ── 10. Vitrine des 3 offres ───────────────────────────────────────── */

.show { background: var(--paper); }
.show-in { display: grid; }
@media (min-width: 1000px) { .show-in { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.show-panels { display: grid; padding-inline: var(--gut); }
@media (min-width: 1000px) { .show-panels { padding-left: max(var(--gut), calc((100vw - var(--maxw)) / 2 + var(--gut))); } }
.show-p { padding-block: clamp(52px, 8vw, 116px); display: flex; flex-direction: column; justify-content: center; border-top: 1px solid var(--line); }
.show-p:first-child { border-top: 0; }
@media (min-width: 1000px) { .show-p { min-height: 84vh; padding-right: 68px; } }

.show-n { font-family: var(--f-d); font-size: 12.5px; font-weight: 800; letter-spacing: .2em; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.show-n::after { content: ''; height: 2px; width: 40px; background: currentColor; }
.show-p[data-c='violet']   .show-n { color: var(--violet); }
.show-p[data-c='indigo'] .show-n { color: var(--indigo); }
.show-p[data-c='blue'] .show-n { color: var(--blue); }

.show-p h3 { font-size: clamp(1.95rem, 4.2vw, 3.2rem); margin-bottom: 18px; }
.show-p > p { font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--tx-2); max-width: 42ch; line-height: 1.5; }

.show-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.show-chips li { font-size: 13px; font-weight: 600; padding: 7px 13px; border: 1.5px solid var(--line-2); transition: border-color .25s var(--ease), color .25s var(--ease); }
.show-p[data-c='violet']   .show-chips li:hover { border-color: var(--violet); color: var(--violet); }
.show-p[data-c='indigo'] .show-chips li:hover { border-color: var(--indigo); color: var(--indigo); }
.show-p[data-c='blue'] .show-chips li:hover { border-color: var(--blue); color: var(--blue); }
.show-p .lnk { margin-top: 30px; align-self: flex-start; }

.show-media { display: none; }
@media (min-width: 1000px) {
  .show-media { display: block; position: sticky; top: 0; height: 100vh; }
}
.show-frame { position: absolute; inset: 0; display: grid; place-items: center; padding: 9%; opacity: 0; visibility: hidden; transition: opacity .55s var(--ease), visibility .55s; }
.show-frame.on { opacity: 1; visibility: visible; }
.show-frame[data-c='violet']   { background: var(--violet); }
.show-frame[data-c='indigo'] { background: var(--indigo); }
.show-frame[data-c='blue'] { background: var(--blue); }
.show-frame .stage { max-width: 440px; aspect-ratio: 1 / 1; }

.show-mini { margin-top: 32px; padding: 26px; }
@media (min-width: 1000px) { .show-mini { display: none; } }
.show-mini[data-c='violet']   { background: var(--violet); }
.show-mini[data-c='indigo'] { background: var(--indigo); }
.show-mini[data-c='blue'] { background: var(--blue); }
.show-mini .stage { max-width: 100%; aspect-ratio: 1 / .86; }

/* ── 11. Deux portes : pro / particulier ────────────────────────────── */

.doors { display: grid; gap: 2px; background: var(--ink); }
@media (min-width: 860px) { .doors { grid-template-columns: 1fr 1fr; } }

.door { position: relative; background: var(--bone); padding: clamp(34px, 4.5vw, 62px); min-height: clamp(290px, 32vw, 400px); display: flex; flex-direction: column; overflow: hidden; }
.door::before { content: ''; position: absolute; inset: 0; background: var(--ink); transform: translateY(100%); transition: transform .55s var(--ease-o); }
.door:hover::before { transform: translateY(0); }
.door > * { position: relative; z-index: 1; transition: color .4s var(--ease); }
.door:hover, .door:hover h3, .door:hover p, .door:hover .door-k { color: var(--bone); }
.door:hover .door-list li { color: var(--tx-inv-2); }
.door:hover .door-go { color: var(--violet); }

.door-k { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--tx-2); }
.door h3 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 16px 0 16px; }
.door p { color: var(--tx-2); font-size: 15.4px; max-width: 38ch; }
.door-list { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 20px; }
.door-list li { font-size: 13.8px; color: var(--tx-2); display: flex; align-items: center; gap: 7px; transition: color .4s var(--ease); }
.door-list li::before { content: ''; width: 5px; height: 5px; background: var(--violet); flex-shrink: 0; }
.door-go { margin-top: auto; padding-top: 28px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.door-go svg { transition: transform .35s var(--ease-o); }
.door:hover .door-go svg { transform: translateX(6px); }

/* ── 10 bis. Bandeau en slides ──────────────────────────────────────── */

.sld { --sld-pad: clamp(24px, 3.4vw, 56px); }

/* Onglets — toujours visibles, rien n’est caché */
.sld-tabs {
  display: flex; gap: 0; overflow-x: auto;
  border-bottom: 1px solid var(--line-dk);
  scrollbar-width: none;
  margin-bottom: 2px;
}
.sld-tabs::-webkit-scrollbar { display: none; }
.sld-tab {
  display: flex; align-items: baseline; gap: 9px;
  flex-shrink: 0;
  padding: 15px 22px 15px 0;
  margin-right: 24px;
  background: none; border: 0; cursor: pointer;
  color: var(--tx-inv-2);
  font-size: 14.5px; font-weight: 600; letter-spacing: -.012em;
  white-space: nowrap;
  position: relative;
  transition: color .25s var(--ease);
}
.sld-tab::after {
  content: ''; position: absolute; left: 0; right: 22px; bottom: -1px;
  height: 2px; background: var(--violet);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-o);
}
.sld-tab:hover { color: var(--bone); }
.sld-tab.is-on { color: var(--bone); }
.sld-tab.is-on::after { transform: scaleX(1); }
.sld-tab em { font-family: var(--f-d); font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .14em; opacity: .55; }

/* Piste : défilement natif + accroche, donc balayage tactile gratuit */
.sld-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Pas de scroll-behavior ici : combiné à l'accrochage obligatoire,
     il bloque le défilement programmatique. C'est le JS qui anime. */
}
.sld-track::-webkit-scrollbar { display: none; }

.sld-s {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  gap: 0;
  min-width: 0;
}
@media (min-width: 900px) { .sld-s { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); } }

.sld-v { position: relative; display: grid; place-items: center; padding: clamp(26px, 4vw, 58px); min-height: clamp(240px, 30vw, 400px); }
.sld-s[data-c='violet']   .sld-v { background: var(--violet); }
.sld-s[data-c='indigo'] .sld-v { background: var(--indigo); }
.sld-s[data-c='blue'] .sld-v { background: var(--blue); }
.sld-s[data-c='ink']   .sld-v { background: #201d19; }
.sld-v .stage { max-width: min(100%, 420px); aspect-ratio: 1 / .82; }
.sld-v > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); opacity: .55; }

.sld-t {
  background: #1a1815;
  padding: clamp(28px, 3.6vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.sld-n { display: flex; align-items: center; gap: 10px; font-family: var(--f-d); font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--tx-3); margin-bottom: 18px; }
.sld-n s { width: 26px; height: 1.5px; background: currentColor; text-decoration: none; }
.sld-t h3 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--bone); }
.sld-sub { font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--violet); font-weight: 600; margin-top: 12px; letter-spacing: -.012em; }
.sld-d { font-size: 15.2px; line-height: 1.55; color: var(--tx-inv-2); margin-top: 14px; max-width: 46ch; }
.sld-pts { display: grid; gap: 8px; margin-top: 22px; }
@media (min-width: 560px) { .sld-pts { grid-template-columns: 1fr 1fr; gap: 8px 20px; } }
.sld-pts li { display: flex; align-items: center; gap: 9px; font-size: 13.8px; color: var(--tx-inv-2); }
.sld-pts li::before { content: ''; width: 5px; height: 5px; background: var(--violet); flex-shrink: 0; }
.sld-t .lnk { margin-top: 28px; align-self: flex-start; color: var(--bone); }

/* Contrôles */
.sld-ctrl { display: flex; align-items: center; gap: 18px; margin-top: 24px; }
.sld-arw {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex-shrink: 0;
  background: none; border: 1.5px solid var(--line-dk); color: var(--bone);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.sld-arw:hover { background: var(--violet); border-color: var(--violet); color: #fff; }
.sld-arw[data-sld-prev] svg { transform: rotate(180deg); }
.sld-bar { flex: 1; height: 2px; background: var(--line-dk); overflow: hidden; }
.sld-bar i { display: block; height: 100%; width: 16.6%; background: var(--violet); transition: transform .5s var(--ease-o); transform-origin: left; }

@media (max-width: 899px) {
  .sld-v { min-height: 210px; }
  .sld-v .stage { max-width: 320px; }
}

/* ── 11 bis. Familles d’intervention ────────────────────────────────── */

.fams { display: grid; gap: 0; }
@media (min-width: 700px)  { .fams { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .fams { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.fam {
  position: relative;
  background: var(--paper);
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--ink);
  margin: 0 -1px -1px 0;
  transition: background .35s var(--ease);
}
.fam[data-c='violet']   { border-top-color: var(--violet); }
.fam[data-c='indigo'] { border-top-color: var(--indigo); }
.fam[data-c='blue'] { border-top-color: var(--blue); }
.fam[data-c='ink']   { border-top-color: var(--ink); }
.fam:hover { background: var(--bone); }

.fam-n { font-family: var(--f-d); font-size: 12px; font-weight: 800; letter-spacing: .2em; color: var(--tx-3); margin-bottom: 16px; }
.fam h3 { font-size: clamp(1.2rem, 1.9vw, 1.42rem); letter-spacing: -.03em; line-height: 1.12; }
.fam-d { font-size: 14.6px; line-height: 1.55; color: var(--tx-2); margin-top: 12px; }
.fam-l { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.fam-l li { font-size: 13.8px; color: var(--tx-2); display: flex; align-items: center; gap: 9px; }
.fam-l li::before { content: ''; width: 5px; height: 5px; flex-shrink: 0; background: currentColor; opacity: .5; }
.fam[data-c='violet']   .fam-l li::before { background: var(--violet); opacity: 1; }
.fam[data-c='indigo'] .fam-l li::before { background: var(--indigo); opacity: 1; }
.fam[data-c='blue'] .fam-l li::before { background: var(--blue); opacity: 1; }
.fam[data-c='ink']   .fam-l li::before { background: var(--ink); opacity: 1; }

/* ── 11 ter. Bloc particuliers ──────────────────────────────────────── */

.parti { background: var(--ink); color: var(--tx-inv); padding-block: clamp(56px, 7vw, 104px); }
.parti-in { display: grid; gap: 44px; }
@media (min-width: 940px) { .parti-in { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 64px; align-items: center; } }

/* Violet clair : sur l'encre, le violet de marque tombe à 3,74:1. */
.parti-k { font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--violet-lt); margin-bottom: 18px; }
.parti h2 { color: var(--bone); max-width: 16ch; }
.parti .lead { color: var(--tx-inv-2); }
.parti-l { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.parti-l li { font-size: 13.5px; font-weight: 500; padding: 8px 15px; border: 1.5px solid var(--line-dk); color: var(--tx-inv-2); transition: border-color .25s var(--ease), color .25s var(--ease); }
.parti-l li:hover { border-color: var(--violet); color: var(--violet); }
.parti .btn { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.parti .btn::before { background: var(--violet); }
.parti .btn:hover { color: #fff; border-color: var(--violet); }

.parti-facts { display: grid; gap: 1px; background: var(--line-dk); border: 1px solid var(--line-dk); }
.parti-facts li { background: var(--ink); padding: 26px 24px; }
.parti-facts b { display: block; font-family: var(--f-d); font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -.05em; line-height: .9; color: var(--bone); }
.parti-facts span { display: block; font-size: 13.2px; color: var(--tx-inv-2); margin-top: 11px; }

/* Page prestation : visuel plein à gauche, formules à droite */
.infra-lead { display: grid; gap: 2px; }
@media (min-width: 1000px) { .infra-lead { grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); } }
.infra-vis { position: relative; display: grid; place-items: center; padding: clamp(26px, 3.4vw, 48px); min-height: clamp(260px, 26vw, 380px); }
.infra-vis[data-c='violet']   { background: var(--violet); }
.infra-vis[data-c='indigo'] { background: var(--indigo); }
.infra-vis[data-c='blue'] { background: var(--blue); }
.infra-vis[data-c='ink']   { background: #201d19; }
.infra-vis .stage { max-width: min(100%, 360px); aspect-ratio: 1 / .95; }

/* ── 12. Cartes & tuiles ────────────────────────────────────────────── */

.grid { display: grid; gap: 2px; }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card { position: relative; background: var(--paper); border: 1px solid var(--line); padding: 32px 28px; transition: transform .4s var(--ease-o), border-color .3s var(--ease), box-shadow .4s var(--ease-o); }
.card.link:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); border-color: var(--ink); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--tx-2); font-size: 15.2px; line-height: 1.55; }
.card-i { display: grid; place-items: center; width: 46px; height: 46px; background: var(--ink); color: var(--bone); margin-bottom: 22px; transition: background .3s var(--ease); }
.card.link:hover .card-i { background: var(--violet); }
.card-i[data-c="violet"] { background: var(--violet); }
.card-i[data-c="indigo"] { background: var(--indigo); }
.card-i[data-c="blue"]   { background: var(--blue); }

/* Carte entièrement cliquable (pages secteur) */
.card-lnk { display: block; }
.card-lnk .mega-go { margin-top: 16px; }
.card-lnk:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); border-color: var(--ink); }
.card-lnk:hover .mega-go { gap: 14px; }
.stretch::after { content: ''; position: absolute; inset: 0; }

.svc-grid { display: grid; gap: 2px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1020px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc { position: relative; overflow: hidden; aspect-ratio: 4 / 3.5; background: var(--ink); display: block; }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; filter: grayscale(1) contrast(1.1); transition: transform .8s var(--ease-o), opacity .45s var(--ease); }
.svc:hover img { transform: scale(1.06); opacity: .34; }
.svc::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,17,16,.97) 2%, rgba(18,17,16,.7) 48%, rgba(18,17,16,.35) 100%); }
.svc:has(.svc-flat)::after { background: linear-gradient(to top, rgba(18,17,16,.94) 4%, rgba(18,17,16,.55) 34%, rgba(18,17,16,0) 62%); }
.svc-flat { position: absolute; inset: 0; }
.svc-flat[data-c='violet']   { background: var(--violet); }
.svc-flat[data-c='indigo'] { background: var(--indigo); }
.svc-flat[data-c='blue'] { background: var(--blue); }
.svc-flat[data-c='ink']   { background: var(--ink); }
.svc-flat .stage { position: absolute; inset: 8% 12% 36%; width: auto; height: auto; aspect-ratio: auto; }
.stage-solo { position: relative; }
.svc-bd { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px; color: var(--bone); }

/* Sur petit écran les descriptions prennent plus de lignes :
   on allonge la tuile et on remonte la maquette pour éviter le chevauchement. */
@media (max-width: 639px) {
  .svc { aspect-ratio: 4 / 4.6; }
  .svc-flat .stage { inset: 5% 17% 50%; }
}
.svc-bd h3 { font-size: 1.22rem; margin-bottom: 9px; }
.svc-bd p { font-size: 13.8px; line-height: 1.5; color: var(--tx-inv-2); }
.svc-num { position: absolute; top: 18px; left: 20px; z-index: 2; font-family: var(--f-d); font-size: 11.5px; font-weight: 800; letter-spacing: .16em; color: var(--bone); opacity: .5; }
.svc-bd .mega-go { color: var(--violet-lt); margin-top: 14px; }

.mega { position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); overflow: hidden; transition: transform .4s var(--ease-o), box-shadow .4s var(--ease-o), border-color .3s; }
.mega:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); border-color: var(--ink); }
.mega-top { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--line); }
.mega-top[data-c='violet']   { background: var(--violet); }
.mega-top[data-c='indigo'] { background: var(--indigo); }
.mega-top[data-c='blue'] { background: var(--blue); }
.mega-top .stage { position: absolute; inset: 11%; width: auto; height: auto; aspect-ratio: auto; }
.mega-num { position: absolute; top: 13px; left: 14px; z-index: 6; font-family: var(--f-d); font-size: 11px; font-weight: 800; letter-spacing: .14em; color: #fff; background: rgba(18,17,16,.55); padding: 5px 9px; }
/* Couleur explicite : la carte est toujours sur fond papier, y compris
   posée dans une section sombre — sans ça, le titre héritait du blanc de
   `.section-dark` et devenait illisible. */
.mega-h { font-size: clamp(1.12rem, 1.8vw, 1.28rem); letter-spacing: -.03em; line-height: 1.15; color: var(--tx); }
.mega-bd { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.mega-bd p { color: var(--tx-2); font-size: 15.2px; line-height: 1.55; flex: 1; }
.mega-go { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; color: var(--violet); transition: gap .3s var(--ease-o); }
.mega:hover .mega-go { gap: 14px; }

/* ── 13. Listes « inclus » ──────────────────────────────────────────── */

.incl { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 720px)  { .incl { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .incl { grid-template-columns: repeat(3, 1fr); } }
.incl-i { background: var(--paper); padding: 30px 28px; transition: background .3s var(--ease); }
.incl-i:hover { background: var(--bone); }
.incl-i h3 { font-size: 1rem; letter-spacing: -.022em; margin-bottom: 10px; display: flex; align-items: baseline; gap: 10px; }
.incl-i h3::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; background: var(--violet); translate: 0 -1px; }
.incl-i p { font-size: 14.4px; line-height: 1.55; color: var(--tx-2); }

/* ── 14. Étapes ─────────────────────────────────────────────────────── */

.steps { display: grid; }
.step { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 18px; padding: 26px 0; border-top: 1px solid var(--line); transition: padding-left .4s var(--ease-o); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { padding-left: 12px; }
@media (min-width: 900px) { .step { grid-template-columns: 86px minmax(0, 250px) minmax(0, 1fr); gap: 34px; align-items: start; } }
.step-n { font-family: var(--f-d); font-size: 13.5px; font-weight: 800; letter-spacing: .12em; color: var(--violet); padding-top: 3px; }
.step h3 { font-size: 1.14rem; letter-spacing: -.028em; }
.step p { color: var(--tx-2); font-size: 15px; line-height: 1.55; }
/* Sur fond sombre, `.step p` et `.step-n` l'emportaient sur les règles de
   `.section-dark` (même spécificité, déclarées après) : gris moyen sur
   encre, 2,98:1. On repasse sur les valeurs prévues pour fond sombre. */
.section-dark .step p  { color: var(--tx-inv-2); }
.section-dark .step-n  { color: var(--violet-lt); }
.section-dark .step { border-color: var(--line-dk); }
.section-dark .step h3 { color: var(--bone); }

/* ── 15. Tarifs ─────────────────────────────────────────────────────── */

.ptable { margin-bottom: clamp(52px, 6vw, 88px); }
.ptable:last-child { margin-bottom: 0; }
.ptable-h { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 16px; margin-bottom: 2px; border-bottom: 2px solid var(--ink); }
.ptable-h h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
.ptable-h p { font-size: 13.8px; color: var(--tx-2); }

.price { position: relative; display: flex; flex-direction: column; gap: 16px; background: var(--paper); border: 1px solid var(--line); padding: 30px 28px; transition: transform .4s var(--ease-o), box-shadow .4s var(--ease-o), border-color .3s; }
.price:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); border-color: var(--ink); }
.price.pop { border: 2px solid var(--ink); }
.price-tag { position: absolute; top: 0; right: 0; font-size: 9.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: var(--violet); padding: 6px 11px; }
.price-n { font-family: var(--f-d); font-size: 1.06rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.18; padding-right: 64px; }
.price-sub { font-family: var(--f-b); font-size: 13px; font-weight: 400; letter-spacing: 0; color: var(--tx-2); margin-top: 4px; }
.price-v { display: flex; align-items: baseline; gap: 4px; font-family: var(--f-d); font-weight: 800; letter-spacing: -.055em; }
.price-v .amt { font-size: clamp(2.3rem, 4.2vw, 3rem); line-height: .9; }
.price-v .cur { font-size: 1.35rem; }
.price-v .unit { font-family: var(--f-b); font-size: 13.5px; font-weight: 500; color: var(--tx-2); letter-spacing: 0; }
.price-v .from { font-family: var(--f-b); font-size: 12px; font-weight: 700; color: var(--tx-2); letter-spacing: .05em; text-transform: uppercase; margin-right: 4px; }
.price-d { font-size: 13.6px; line-height: 1.5; color: var(--tx-2); margin-top: auto; }

.credit { display: flex; gap: 18px; align-items: flex-start; padding: 28px 30px; background: var(--ink); color: var(--bone); margin-bottom: clamp(36px, 4.5vw, 56px); }
.credit svg { flex-shrink: 0; color: var(--violet); margin-top: 2px; }
.credit p { font-size: 15px; line-height: 1.55; color: var(--tx-inv-2); }
.credit strong { color: var(--bone); font-weight: 700; }

/* ── 16. Témoignages ────────────────────────────────────────────────── */

.tcols { columns: 1; column-gap: 2px; }
@media (min-width: 700px)  { .tcols { columns: 2; } }
@media (min-width: 1080px) { .tcols { columns: 3; } }
.quote { break-inside: avoid; background: var(--paper); border: 1px solid var(--line); padding: 28px; margin-bottom: 2px; transition: background .3s var(--ease); }
.quote:hover { background: var(--bone); }
.quote p { font-size: 15px; line-height: 1.6; color: var(--tx-2); }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14.5px; font-weight: 700; }
.avatar { display: grid; place-items: center; width: 34px; height: 34px; background: var(--ink); color: var(--bone); font-family: var(--f-d); font-size: 12.5px; font-weight: 800; flex-shrink: 0; }
.stars { display: inline-flex; gap: 2px; color: var(--violet); margin-bottom: 15px; }

/* ── 17. Partenaires ────────────────────────────────────────────────── */

.plogos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--paper); border: 1px solid var(--line); }
@media (min-width: 660px)  { .plogos { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1020px) { .plogos { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.plogo { display: grid; place-items: center; background: var(--paper); padding: 28px 18px; min-height: 100px; box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line); transition: background .3s var(--ease); }

/* Le nombre de partenaires ne tombera jamais juste sur 3, 4 ET 6 colonnes à
   la fois : la dernière ligne laissait un grand rectangle vide bordé. Le
   dernier logo s'étire donc sur les colonnes restantes. Les règles couvrent
   tous les restes, pour rester valables si un partenaire est ajouté. */
.plogo:last-child:nth-child(3n+1) { grid-column: span 3; }
.plogo:last-child:nth-child(3n+2) { grid-column: span 2; }
@media (min-width: 660px) {
  .plogo:last-child:nth-child(3n+1),
  .plogo:last-child:nth-child(3n+2) { grid-column: auto; }
  .plogo:last-child:nth-child(4n+1) { grid-column: span 4; }
  .plogo:last-child:nth-child(4n+2) { grid-column: span 3; }
  .plogo:last-child:nth-child(4n+3) { grid-column: span 2; }
}
@media (min-width: 1020px) {
  .plogo:last-child:nth-child(4n+1),
  .plogo:last-child:nth-child(4n+2),
  .plogo:last-child:nth-child(4n+3) { grid-column: auto; }
  .plogo:last-child:nth-child(6n+1) { grid-column: span 6; }
  .plogo:last-child:nth-child(6n+2) { grid-column: span 5; }
  .plogo:last-child:nth-child(6n+3) { grid-column: span 4; }
  .plogo:last-child:nth-child(6n+4) { grid-column: span 3; }
  .plogo:last-child:nth-child(6n+5) { grid-column: span 2; }
}
.plogo:hover { background: var(--bone); }
.plogo img { max-height: 32px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .45; transition: filter .3s var(--ease), opacity .3s var(--ease); }
.plogo:hover img { filter: grayscale(0); opacity: 1; }
/* Logo plein (texte blanc dans un aplat) : le voile gris du mur effacerait
   le texte. On le laisse en couleur, simplement un peu retenu au repos. */
/* Un logo carré rendu à la même hauteur qu'un mot pèse trois fois moins à
   l'œil : on lui laisse la hauteur utile de la cellule. */
.plogo-solid img { filter: none; opacity: .72; max-height: 44px; }
.plogo-solid:hover img { opacity: 1; }
/* Logo empilé : plus haut, pour peser autant qu'un mot posé à plat. */
.plogo-tall img { max-height: 46px; }
/* Bloc-mot : partenaire dont nous n'avons pas encore le logo officiel.
   Assumé comme du texte plutôt que redessiné — un faux logo se voit. */
.plogo-wm { font-family: var(--f-d); font-size: 19px; font-weight: 800; letter-spacing: -.04em; color: var(--tx-3); transition: color .3s var(--ease); }
.plogo:hover .plogo-wm { color: var(--ink); }

/* ── 18. FAQ ────────────────────────────────────────────────────────── */

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px 0; cursor: pointer; list-style: none; font-family: var(--f-d); font-size: clamp(1.04rem, 1.8vw, 1.26rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.25; transition: color .22s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--violet); }
.faq summary .pm { flex-shrink: 0; width: 22px; height: 22px; position: relative; margin-top: 3px; }
.faq summary .pm::before, .faq summary .pm::after { content: ''; position: absolute; inset: 50% 0 auto 0; height: 2px; background: currentColor; transition: transform .32s var(--ease-o), opacity .2s; }
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--violet); }
.faq details[open] summary .pm::after { transform: rotate(0); opacity: 0; }
.faq-a { padding: 0 56px 28px 0; }
.faq-a p { font-size: 15.4px; line-height: 1.62; color: var(--tx-2); }

/* ── 19. Contact ────────────────────────────────────────────────────── */

.cgrid { display: grid; gap: 48px; }
@media (min-width: 1000px) { .cgrid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; } }
.cinfo { display: grid; }
.cinfo-i { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start; transition: padding-left .35s var(--ease-o); }
.cinfo-i:first-child { border-top: 2px solid var(--ink); }
a.cinfo-i:hover { padding-left: 10px; }
.cinfo-i .ic { display: grid; place-items: center; width: 44px; height: 44px; background: var(--ink); color: var(--bone); transition: background .3s var(--ease); }
a.cinfo-i:hover .ic { background: var(--violet); }
.cinfo-i dt { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--tx-2); margin-bottom: 5px; }
.cinfo-i dd { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.cinfo-i dd small { display: block; font-size: 13.2px; font-weight: 400; color: var(--tx-2); margin-top: 4px; letter-spacing: 0; }

.form { background: var(--paper); border: 2px solid var(--ink); padding: clamp(24px, 3.2vw, 42px); }
.frow { display: grid; gap: 18px; margin-bottom: 18px; }
@media (min-width: 620px) { .frow.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.field label .req { color: var(--violet); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; background: var(--bone); border: 1.5px solid var(--line-2); border-radius: 0; font-size: 15.5px; transition: border-color .22s var(--ease), background .22s var(--ease); }
.field textarea { resize: vertical; min-height: 132px; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--paper); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23121110' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 22px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--violet); }
.consent label { font-size: 13px; line-height: 1.5; color: var(--tx-2); }
.consent a { color: var(--violet); font-weight: 600; }
.fnote { font-size: 12.6px; color: var(--tx-2); margin-top: 16px; }

/* ── 20. Hero de page interne ───────────────────────────────────────── */

.phero { background: var(--ink); color: var(--tx-inv); }
.phero-in { padding-block: clamp(52px, 6.5vw, 100px) clamp(48px, 6vw, 80px); }
.phero h1 { color: var(--bone); max-width: 16ch; }
.phero .lead { margin-top: 24px; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 26px; }
.crumb a { color: var(--tx-inv-2); }
.crumb a:hover { color: var(--violet); }
.crumb span { opacity: .4; }
.phero .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; opacity: 1; transform: none; }

/* ── 21. CTA ────────────────────────────────────────────────────────── */

.cta { background: var(--violet); color: #fff; }
.cta h2 { color: #fff; max-width: 15ch; }
/* blanc sur le violet dense : 6,14:1 */
.cta p { color: rgba(255,255,255,.9); max-width: 52ch; }
.cta-in { display: grid; gap: 26px; justify-items: start; }
@media (min-width: 960px) { .cta-in { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); align-items: center; gap: 56px; } }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta .btn { background: var(--ink); border-color: var(--ink); color: #fff; }
.cta .btn::before { background: #fff; }
.cta .btn:hover { color: var(--ink); border-color: #fff; }
.cta .btn-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.cta .btn-ghost::before { background: var(--ink); }
.cta .btn-ghost:hover { color: var(--violet); border-color: var(--ink); }

/* ── 22. Pied de page ───────────────────────────────────────────────── */

.ftr { background: var(--ink); color: var(--tx-inv-2); }
.ftr-in { padding-block: clamp(56px, 6vw, 88px) 30px; }
.ftr-top { display: grid; gap: 44px; }
@media (min-width: 940px) { .ftr-top { grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 1fr)); gap: 36px; } }
.ftr .ftr .ftr-about { font-size: 14.4px; line-height: 1.6; color: var(--tx-inv-2); margin-top: 20px; max-width: 38ch; }
.ftr-h { font-family: var(--f-b); font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 18px; }
.ftr ul { display: grid; gap: 0; }
.ftr ul a { display: inline-block; padding: 7px 0; font-size: 14.6px; color: var(--tx-inv-2); transition: color .22s var(--ease); }
.ftr ul a:hover { color: var(--violet); }
.ftr-bot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: clamp(44px, 5vw, 64px); padding-top: 28px; border-top: 1px solid var(--line-dk); font-size: 12.8px; color: var(--tx-3); }
.ftr-bot nav { display: flex; flex-wrap: wrap; gap: 4px 22px; }
.ftr-bot nav a { display: inline-block; padding: 7px 0; }
.ftr-bot a:hover { color: var(--violet); }

/* ── 23. Barre d’action mobile ──────────────────────────────────────── */

.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); border-top: 2px solid var(--violet); transform: translateY(100%); transition: transform .45s var(--ease-o); }
.dock.on { transform: translateY(0); }
@media (min-width: 900px) { .dock { display: none; } }
.dock a { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 16px; font-size: 14.5px; font-weight: 700; color: var(--bone); }
.dock a.pri { background: var(--violet); color: #fff; }

/* ── 24. Divers ─────────────────────────────────────────────────────── */

.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; border: 1.5px solid var(--line-2); font-size: 13.5px; font-weight: 500; color: var(--tx-2); transition: border-color .25s var(--ease), color .25s var(--ease); }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.section-dark .chip { border-color: var(--line-dk); color: var(--tx-inv-2); }
.section-dark .chip:hover { border-color: var(--violet-lt); color: var(--violet-lt); }

.split-media { display: grid; gap: 44px; align-items: center; }
@media (min-width: 960px) { .split-media { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; } }

.stat-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--paper); padding: 30px 26px; }
.stat b { display: block; font-family: var(--f-d); font-size: clamp(2rem, 3.8vw, 2.8rem); font-weight: 800; letter-spacing: -.055em; line-height: .9; }
.stat span { display: block; font-size: 13.2px; color: var(--tx-2); margin-top: 12px; }

.engage { display: grid; gap: 0; }
.engage li { padding: 22px 0; border-top: 1px solid var(--line); }
.engage li:last-child { border-bottom: 1px solid var(--line); }
.engage h3 { font-size: 1.04rem; letter-spacing: -.025em; display: flex; align-items: baseline; gap: 11px; }
.engage h3::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; background: var(--violet); translate: 0 -1px; }
.engage p { font-size: 14.6px; line-height: 1.55; color: var(--tx-2); margin-top: 8px; padding-left: 19px; }

.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.9em; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.prose h3 { margin-top: 1.6em; font-size: 1.12rem; }
.prose p, .prose li { color: var(--tx-2); font-size: 16px; line-height: 1.68; }
.prose ul { padding-left: 20px; list-style: disc; }
.prose li + li { margin-top: .4em; }
.prose a { color: var(--violet); font-weight: 600; }
.prose strong { color: var(--tx); font-weight: 700; }

/* ── 24 ter. Article de guide ───────────────────────────────────────── */

.art-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.art-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.4px; font-weight: 600; color: var(--tx-2); }

.toc { margin-top: 26px; padding: 24px 26px; background: var(--bone-2); }
.toc-h { font-size: 11.5px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--tx-2); margin-bottom: 14px; }
.toc ol { list-style: none; padding: 0; counter-reset: toc; display: grid; gap: 9px; }
.toc li { counter-increment: toc; }
.toc a { display: inline-flex; gap: 11px; font-size: 15.2px; font-weight: 600; color: var(--tx); line-height: 1.35; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--f-d); font-size: 12.5px; font-weight: 800; color: var(--violet); translate: 0 2px; }
.toc a:hover { color: var(--violet); }

.art { margin-top: clamp(30px, 4vw, 48px); }
.art > h2 { scroll-margin-top: 100px; }
.art > h2:first-child { margin-top: 0; }
.art > p:first-child { font-size: 17.4px; line-height: 1.62; color: var(--tx); }

/* ── 24 bis. Schémas d'article ───────────────────────────────────────
   Tout est dessiné en CSS : aucune image, donc rien à recharger et rien
   qui se pixellise. Chaque bloc passe en colonne sous 720 px.         */

.sch { margin-block: clamp(34px, 4.5vw, 54px); }
.prose .sch { margin-block: clamp(34px, 4.5vw, 54px); }
.sch-h {
  font-family: var(--f-d); font-weight: 800; font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  letter-spacing: -.03em; color: var(--tx); margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 11px;
}
.sch-h::before { content: ''; flex-shrink: 0; width: 9px; height: 9px; background: var(--violet); translate: 0 -1px; }
.sch .sch-lead, .calc .sch-lead, .tree .sch-lead, .figs .sch-lead { font-size: 14.6px; line-height: 1.55; color: var(--tx-2); margin: 0 0 20px 20px; }
.sch .sch-note, .calc .sch-note, .tree .sch-note, .figs .sch-note {
  display: flex; gap: 9px; align-items: flex-start; margin-top: 16px;
  font-size: 13.6px; line-height: 1.5; color: var(--tx-3);
}
.sch-note svg { flex-shrink: 0; translate: 0 2px; color: var(--tx-3); }

/* Circuit */
.flw { display: flex; align-items: stretch; gap: 0; flex-wrap: nowrap; }
.flw-n {
  flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 7px;
  background: var(--paper); border: 1px solid var(--line); padding: 20px 18px;
  transition: border-color .3s var(--ease), transform .35s var(--ease-o);
}
.flw-n:hover { border-color: var(--ink); transform: translateY(-3px); }
.flw-i { display: grid; place-items: center; width: 38px; height: 38px; background: var(--ink); color: var(--bone); margin-bottom: 4px; }
.flw-n[data-c="violet"] .flw-i { background: var(--violet); }
.flw-n[data-c="indigo"] .flw-i { background: var(--indigo); }
.flw-n[data-c="blue"]   .flw-i { background: var(--blue); }
.flw-n strong { font-family: var(--f-d); font-size: 15px; font-weight: 800; letter-spacing: -.028em; line-height: 1.2; }
.flw-n span:not(.flw-i) { font-size: 13.2px; line-height: 1.45; color: var(--tx-2); }
.flw-a { flex: 0 0 46px; display: grid; place-items: center; color: var(--line-2); }
.flw-a svg { width: 40px; height: 16px; }

/* Frise */
.tml { display: grid; gap: 0; list-style: none; padding: 0; }
.tml-i {
  position: relative; padding: 22px 0 22px 36px; border-top: 1px solid var(--line);
  display: grid; gap: 5px;
}
.tml-i:last-child { border-bottom: 1px solid var(--line); }
.tml-i::before {
  content: ''; position: absolute; left: 5px; top: 28px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--line-2);
}
.tml-i[data-c="violet"]::before { background: var(--violet); }
.tml-i[data-c="indigo"]::before { background: var(--indigo); }
.tml-i[data-c="blue"]::before   { background: var(--blue); }
.tml-i::after { content: ''; position: absolute; left: 10px; top: 39px; bottom: -11px; width: 1px; background: var(--line); }
.tml-i:last-child::after { display: none; }
.tml-i.is-now::before { box-shadow: 0 0 0 5px color-mix(in srgb, var(--violet) 20%, transparent); }
.tml-d { font-family: var(--f-d); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--violet); }
.tml-i[data-c="indigo"] .tml-d { color: var(--indigo); }
.tml-i[data-c="blue"]   .tml-d { color: var(--blue); }
.tml-i strong { font-family: var(--f-d); font-size: 1.06rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.2; }
.tml .tml-x { font-size: 14.6px; line-height: 1.55; color: var(--tx-2); }

/* Comparaison */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.vs-c { background: var(--paper); padding: 26px 24px; }
.vs-b { background: var(--ink); color: var(--tx-inv); }
/* Couleurs explicites : dans un guide, `.prose p` s'applique à ces titres
   (spécificité supérieure à l'héritage) et les repeignait en gris moyen,
   y compris sur le panneau sombre. */
.vs-t { font-family: var(--f-d); font-size: 1.06rem; font-weight: 800; letter-spacing: -.03em; color: var(--tx); }
.vs-b .vs-t { color: var(--tx-inv); }
.vs .vs-s { font-size: 12.6px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-3); margin-top: 5px; }
.vs-b .vs-s { color: var(--tx-inv-2); }
.vs-c ul { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 11px; }
.vs-c li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.4px; line-height: 1.5; color: var(--tx-2); }
.vs-b li { color: var(--tx-inv-2); }
.vs-c li span { flex-shrink: 0; translate: 0 2px; }
.vs-c li.y span { color: var(--violet); }
.vs-c li.n span { color: var(--tx-3); }
.vs-b li.y span { color: #b24af7; }
.vs .vs-f { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13.4px; color: var(--tx-3); }
.vs-b .vs-f { border-color: var(--line-dk); color: var(--tx-inv-2); }

/* Barres */
.bars { display: grid; gap: 14px; }
.bar-r { display: grid; grid-template-columns: minmax(120px, 1.1fr) minmax(0, 3fr) auto; gap: 14px; align-items: center; }
.bar-t { font-size: 14.4px; font-weight: 600; color: var(--tx); line-height: 1.3; }
.bar-b { height: 26px; background: var(--bone-2); position: relative; overflow: hidden; }
.bar-b i { position: absolute; inset: 0 auto 0 0; width: var(--w); background: var(--violet); transform-origin: left; }
.bar-r[data-c="indigo"] .bar-b i { background: var(--indigo); }
.bar-r[data-c="blue"]   .bar-b i { background: var(--blue); }
.bar-r[data-c="ink"]    .bar-b i { background: var(--ink); }
.bar-v { font-family: var(--f-d); font-size: 14.5px; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }

/* Encadrés */
.call { border: 1px solid var(--line); border-left: 4px solid var(--violet); background: var(--paper); padding: 20px 22px; margin-block: clamp(26px, 3.4vw, 38px); }
.call-h { display: flex; align-items: center; gap: 9px; font-family: var(--f-d); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); margin-bottom: 9px; }
.call p:last-child { font-size: 15px; line-height: 1.6; color: var(--tx-2); margin: 0; }
.call-warn { border-left-color: var(--indigo); }
.call-warn .call-h { color: var(--indigo); }
.call-rgpd { border-left-color: var(--blue); }
.call-rgpd .call-h { color: var(--blue); }
.call-euro, .call-time { border-left-color: var(--ink); }
.call-euro .call-h, .call-time .call-h { color: var(--tx); }

/* Étapes du guide */
.road { list-style: none; padding: 0; display: grid; gap: 0; }
.road-s { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 22px; padding: 30px 0; border-top: 1px solid var(--line); }
.road-s:last-child { border-bottom: 1px solid var(--line); }
.road-n { position: relative; }
.road-n span {
  display: grid; place-items: center; width: 54px; height: 54px;
  font-family: var(--f-d); font-size: 17px; font-weight: 800; letter-spacing: -.03em;
  background: var(--violet); color: #fff;
}
.road-s[data-c="indigo"] .road-n span { background: var(--indigo); }
.road-s[data-c="blue"]   .road-n span { background: var(--blue); }
.road-b h3 { font-size: clamp(1.14rem, 2vw, 1.36rem); letter-spacing: -.03em; line-height: 1.16; }
.road .road-w { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; font-size: 12.4px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--tx-3); }
.road-b > p:not(.road-w) { margin-top: 11px; font-size: 15.4px; line-height: 1.62; color: var(--tx-2); }
.road-p { list-style: none; padding: 0; margin-top: 14px; display: grid; gap: 8px; }
.road .road-p li { position: relative; padding-left: 18px; font-size: 14.6px; line-height: 1.5; color: var(--tx-2); }
.road-p li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--line-2); }
.road-l { margin-top: 12px; font-size: 14.6px; }

/* Cases à cocher */
.ckl { list-style: none; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ckl li { background: var(--paper); padding: 16px 20px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0 12px; align-items: baseline; }
.ckl li span[aria-hidden] { grid-row: span 2; color: var(--violet); translate: 0 2px; }
.ckl strong { font-size: 15px; letter-spacing: -.02em; }
.ckl li > span:not([aria-hidden]) { font-size: 13.8px; line-height: 1.5; color: var(--tx-2); margin-top: 4px; }

@media (max-width: 860px) {
  .flw { flex-direction: column; }
  .flw-a { flex: 0 0 34px; rotate: 90deg; }
  .vs { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .bar-r { grid-template-columns: minmax(0, 1fr) auto; }
  .bar-b { grid-column: 1 / -1; order: 3; }
  .road-s { grid-template-columns: 48px minmax(0, 1fr); gap: 16px; }
  .road-n span { width: 44px; height: 44px; font-size: 14px; }
}

/* ── 24 quater. Blocs interactifs d'article ─────────────────────────── */

.calc, .tree { margin-block: clamp(38px, 5vw, 60px); border: 1px solid var(--line); background: var(--paper); padding: clamp(24px, 3.4vw, 36px); }
.prose .calc, .prose .tree { margin-block: clamp(38px, 5vw, 60px); }

/* Curseurs */
.calc-in { display: grid; gap: 22px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
@media (min-width: 720px) { .calc-in { grid-template-columns: 1fr 1fr; gap: 24px 34px; } }
.cf { display: block; }
.cf-h { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 10px; }
.cf-h > span { font-size: 14.4px; font-weight: 600; color: var(--tx); line-height: 1.3; }
.cf-h output { font-family: var(--f-d); font-size: 1.18rem; font-weight: 800; letter-spacing: -.035em; color: var(--violet); white-space: nowrap; }
.cf-h output i { font-style: normal; font-size: .68em; margin-left: 2px; color: var(--tx-2); }
.cf-n { display: block; margin-top: 7px; font-size: 12.8px; line-height: 1.45; color: var(--tx-3); }

.cf input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 3px; background: var(--line-2); cursor: pointer; }
.cf input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--violet); border: 3px solid var(--paper); box-shadow: 0 0 0 1px var(--line-2);
  transition: transform .18s var(--ease-o);
}
.cf input[type=range]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%; background: var(--violet);
  border: 3px solid var(--paper); box-shadow: 0 0 0 1px var(--line-2);
}
.cf input[type=range]:active::-webkit-slider-thumb { transform: scale(1.18); }
.cf input[type=range]:focus-visible { outline: 2px solid var(--violet); outline-offset: 6px; }

/* Résultats */
.calc-out { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 26px; }
.calc-side { background: var(--paper); padding: 22px 20px; }
.calc-b { background: var(--ink); color: var(--tx-inv); }
.calc .calc-lbl { font-size: 12.4px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-3); }
.calc-b .calc-lbl { color: var(--tx-inv-2); }
.calc .calc-val { font-family: var(--f-d); font-size: clamp(1.6rem, 4.4vw, 2.3rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.05; margin-top: 10px; color: var(--tx); font-variant-numeric: tabular-nums; }
.calc-b .calc-val { color: #fff; }
.calc .calc-sub { font-size: 13.2px; line-height: 1.45; color: var(--tx-2); margin-top: 8px; }
.calc-b .calc-sub { color: var(--tx-inv-2); }

.calc-bars { display: grid; gap: 7px; margin-top: 16px; }
.calc-bar { display: block; height: 9px; background: var(--bone-2); overflow: hidden; }
.calc-bar i { display: block; height: 100%; width: 0; transition: width .55s var(--ease-o); }
.calc-bar-a i { background: var(--tx-3); }
.calc-bar-b i { background: var(--violet); }

.calc .calc-verdict { margin-top: 22px; padding: 18px 20px; background: var(--bone); border-left: 4px solid var(--violet); font-size: 15.4px; line-height: 1.6; color: var(--tx); }
.calc-verdict b { font-weight: 800; color: var(--violet); }

/* Arbre de décision */
.tr-bar { height: 3px; background: var(--bone-2); margin-bottom: 26px; }
.tr-bar i { display: block; height: 100%; width: 0; background: var(--violet); transition: width .45s var(--ease-o); }
.tr-q, .tr-end { display: none; }
.tr-q.is-on, .tr-end.is-on { display: block; animation: trIn .45s var(--ease-o) both; }
@keyframes trIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.tree .tr-n { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-3); margin-bottom: 12px; }
.tr-q h3, .tr-r h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); letter-spacing: -.032em; line-height: 1.15; color: var(--tx); }
.tree .tr-d { margin-top: 10px; font-size: 14.6px; line-height: 1.55; color: var(--tx-2); }
.tr-opts { display: grid; gap: 10px; margin-top: 22px; }
@media (min-width: 660px) { .tr-opts { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
.tr-o {
  display: block; text-align: left; background: var(--paper); border: 1px solid var(--line-2);
  padding: 16px 18px; cursor: pointer; font: inherit;
  transition: transform .3s var(--ease-o), box-shadow .3s var(--ease-o), border-color .25s var(--ease);
}
.tr-o:hover, .tr-o:focus-visible { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); border-color: var(--ink); outline: none; }
.tr-o strong { display: block; font-size: 15.4px; letter-spacing: -.02em; color: var(--tx); }
.tr-o span { display: block; margin-top: 5px; font-size: 13.4px; line-height: 1.45; color: var(--tx-2); }
.tr-r { display: none; }
.tr-r.is-on { display: block; }
.tree .tr-rk { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--violet); margin-bottom: 12px; }
.tree .tr-r p { margin-top: 12px; font-size: 15.4px; line-height: 1.62; color: var(--tx-2); }
.tr-r .btn { margin-top: 22px; }
.tr-again { margin-top: 26px; font-size: 14px; color: var(--tx-2); background: none; border: 0; cursor: pointer; padding: 0; }
.tr-again::after { display: none; }

/* Chiffres comptés — préfixe `fig`, la page « à propos » occupait déjà
   `.stat` et `.stat span` y écrasait le compteur. */
.figs-row { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.fig { background: var(--paper); padding: 26px 22px; }
.figs .fig-v { font-family: var(--f-d); font-size: clamp(1.9rem, 5vw, 2.7rem); font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--violet); font-variant-numeric: tabular-nums; }
.fig[data-c="indigo"] .fig-v { color: var(--indigo); }
.fig[data-c="blue"]   .fig-v { color: var(--blue); }
.figs .fig-v i { font-style: normal; font-size: .46em; margin-left: 3px; letter-spacing: -.02em; }
.figs .fig-t { margin-top: 10px; font-size: 13.8px; line-height: 1.45; color: var(--tx-2); }

@media (max-width: 560px) {
  .calc-out { grid-template-columns: 1fr; }
}

/* Tableau comparatif d'article */
.sp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); }
.sp { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--paper); }
.sp th, .sp td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.sp thead td { border-bottom-color: var(--line-2); }
.sp thead th { border-bottom: 2px solid var(--ink); vertical-align: bottom; }
.sp .sp-n { display: block; font-family: var(--f-d); font-size: 16px; font-weight: 800; letter-spacing: -.03em; color: var(--tx); }
.sp .sp-s { display: block; margin-top: 4px; font-size: 12.2px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--tx-3); }
.sp tbody th { font-size: 14px; font-weight: 600; color: var(--tx); width: 30%; background: var(--bone); }
.sp tbody td { font-size: 14.4px; line-height: 1.5; color: var(--tx-2); }
.sp tbody tr:last-child th, .sp tbody tr:last-child td { border-bottom: 0; }
/* Colonne mise en avant : un liseré, pas un fond — le tableau reste lisible */
.sp .sp-best { box-shadow: inset 2px 0 0 var(--violet), inset -2px 0 0 var(--violet); }
.sp thead th.sp-best { border-bottom-color: var(--violet); }
.sp thead th.sp-best .sp-s { color: var(--violet); }

/* ── 25. Animations ─────────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-o), transform .8s var(--ease-o); }
  .rv.in { opacity: 1; transform: none; }
  .rv-d1 { transition-delay: .08s; }
  .rv-d2 { transition-delay: .16s; }
  .rv-d3 { transition-delay: .24s; }

  .hero-h .hl > span { transform: translateY(105%); transition: transform 1s var(--ease-o); }
  .hero-s.is-on .hero-h .hl > span { transform: none; }
  .hero-s.is-on .hero-h .hl:nth-child(2) > span { transition-delay: .1s; }
  .hero-s.is-on .hero-h .hl:nth-child(3) > span { transition-delay: .2s; }

  .hero-s .hero-sub, .hero-s .hero-cta {
    opacity: 0; transform: translateY(16px);
    transition: opacity .8s var(--ease-o), transform .8s var(--ease-o);
  }
  .hero-s.is-on .hero-sub { opacity: 1; transform: none; transition-delay: .3s; }
  .hero-s.is-on .hero-cta { opacity: 1; transform: none; transition-delay: .4s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
  .hero-h .hl > span, .hero-sub, .hero-cta { opacity: 1; transform: none; }
  .stage .dev, .stage .tagline { opacity: 1; }
  .marq-t { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE — passe dédiée
   Sur petit écran, les visuels étaient minuscules, les boutons de
   largeurs inégales et le rythme vertical trop lâche : la page faisait
   15 000 px et le contenu paraissait écrasé.
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 720px) {

  /* ── Rythme vertical resserré ─────────────────────────────────────── */
  .section     { padding-block: 62px; }
  .section-sm  { padding-block: 46px; }
  .sec-head    { margin-bottom: 30px; }

  /* ── Bannière ─────────────────────────────────────────────────────── */
  .hero-s   { padding-block: 26px 18px; }
  .hero-in  { gap: 28px; }
  .hero-h   { font-size: clamp(1.95rem, 8.6vw, 2.5rem); line-height: .98; }
  .hero-sub { font-size: 15.6px; margin-top: 18px; max-width: none; }
  .hero-cta { margin-top: 22px; gap: 10px; }

  /* Boutons pleine largeur : plus de tailles inégales côte à côte */
  .hero-cta .btn, .cta-btns .btn, .parti .btn { width: 100%; }
  .btn { padding: 15px 22px; }

  /* Le visuel déborde de la moitié de la gouttière : il gagne en taille
     sans venir coller au bord de l'écran, ce qui le ferait paraître coupé. */
  .hero-s .stage,
  .hero-s .scene-wrap {
    width: calc(100% + var(--gut));
    max-width: none;
    margin-inline: calc(var(--gut) / -2);
  }

  /* On garde le nom des volets : « 01 02 03 » seul n'indique rien */
  .hero-nav  { gap: 10px; padding-bottom: 24px; }
  .hero-dot  { font-size: 12px; padding: 12px 12px 12px 0; gap: 6px; }
  .hero-dot span { display: inline; }
  .hero-dot em   { font-size: 9.5px; }
  .hero-dot s    { right: 12px; }
  .hero-arw  { display: none; }

  /* Étiquettes des scènes : le visuel va bord à bord, elles doivent
     rester dans la gouttière pour ne pas être coupées. */
  .stag, .tagline { font-size: 10.5px; padding: 5px 9px; letter-spacing: .07em; }
  .stag-dome, .stag-nvr,
  .tagline.t-rack, .tagline.t-site2 { left: var(--gut); }
  .stag-live,
  .tagline.t-site, .tagline.t-appli,
  .tagline.t-code, .tagline.t-spk   { right: var(--gut); left: auto; }
  .stag-nvr  { bottom: 14%; }
  .stag-live { top: 8%; }
  .tagline.t-cam { left: 34%; }

  /* ── Bandeau défilant ─────────────────────────────────────────────── */
  .marq    { padding-block: 12px; }
  .marq-t  { font-size: 12.5px; gap: 16px; padding-right: 16px; }
  .marq-t i { width: 5px; height: 5px; }

  /* ── Slider des prestations ───────────────────────────────────────── */
  .sld-v   { min-height: 0; padding: 20px; }
  .sld-v .stage { max-width: 300px; aspect-ratio: 1 / .78; }
  .sld-t   { padding: 26px 22px 30px; }
  .sld-t h3 { font-size: 1.5rem; }
  .sld-pts { margin-top: 18px; gap: 7px; }
  .sld-tab { padding: 12px 14px 12px 0; margin-right: 14px; font-size: 13px; }
  .sld-ctrl { gap: 12px; margin-top: 18px; }
  .sld-arw { width: 40px; height: 40px; }

  /* ── Vitrine des offres numériques ────────────────────────────────── */
  .show-p    { padding-block: 44px; }
  .show-p h3 { font-size: 1.75rem; }
  .show-mini { margin-top: 24px; padding: 20px; }
  .show-chips { margin-top: 20px; }

  /* ── Cartes et listes ─────────────────────────────────────────────── */
  .card    { padding: 26px 22px; }
  .fam     { padding: 26px 22px; }
  .incl-i  { padding: 24px 22px; }
  .price   { padding: 24px 22px; }
  .quote   { padding: 24px 22px; }
  .step    { padding: 22px 0; gap: 14px; grid-template-columns: 44px minmax(0, 1fr); }
  .door    { padding: 34px 24px; min-height: 0; }
  .door h3 { font-size: 2rem; }
  .plogo   { padding: 20px 14px; min-height: 80px; }
  .plogo img { max-height: 26px; }

  /* ── Tarifs ───────────────────────────────────────────────────────── */
  .ptable  { margin-bottom: 44px; }
  .credit  { padding: 22px 20px; gap: 14px; }

  /* ── Contact ──────────────────────────────────────────────────────── */
  .form    { padding: 24px 20px; }
  .cgrid   { gap: 36px; }

  /* ── Bloc particuliers ────────────────────────────────────────────── */
  .parti      { padding-block: 52px; }
  .parti-in   { gap: 30px; }
  .parti-facts li { padding: 20px 18px; }

  /* ── Pied de page ─────────────────────────────────────────────────── */
  .ftr-in  { padding-block: 48px 24px; }
  .ftr-top { gap: 32px; }

  /* La barre d'action fixe ne doit pas masquer la fin du contenu */
  body { padding-bottom: 58px; }
}

/* Très petits écrans */
@media (max-width: 400px) {
  .hero-h  { font-size: 1.92rem; }
  .hero-dot span { display: none; }
  .hero-dot { padding-right: 18px; }
  .marq-t  { font-size: 11.5px; }
}

/* ── 26. Impression ─────────────────────────────────────────────────── */

@media print {
  .hdr, .dock, .cta, .mob, .marq, .show-media { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .section { padding-block: 20pt; }
}
