@charset "UTF-8";

/* ==================================================================
   Ex-bloc inline <style> principal - externalise le 2026-08-07
   ================================================================== */

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

  :root {
    --bg: #0a0a0a;
    --bg-1: #101010;
    --bg-2: #141414;
    --bg-3: #1a1a1a;

    --text-1: #f4f4f4;
    --text-2: #b8b8b8;
    --text-3: #9a9a9a;
    --text-4: #6e6e6e;

    --line-1: rgba(255, 255, 255, 0.06);
    --line-2: rgba(255, 255, 255, 0.09);
    --line-3: rgba(255, 255, 255, 0.16);

    /* Accent — Pôle Informatique (bleu JCD) */
    --accent: #2E72BA;
    --accent-rgb: 46, 114, 186;
    --accent-hi: #5290cb;
    --accent-soft: rgba(46, 114, 186, 0.10);
    --accent-line: rgba(46, 114, 186, 0.22);
    --accent-deep: #1e5a94;

    --max: 1180px;
    --pad-x: clamp(20px, 4vw, 40px);

    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
    --font-serif: "Instrument Serif", "Tiempos Text", Georgia, "Times New Roman", serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Fond garanti dès le premier paint (anti-flash entre pages). Smooth
     scroll réservé aux navigations intra-page après chargement (html.is-loaded) :
     l'arrivée sur une ancre et la restauration de scroll restent instantanées. */
  html { background: #0a0a0a; color-scheme: dark; scroll-behavior: auto; }
  html.is-loaded { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text-1);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  body::before {
    content: ""; position: fixed; inset: 0;
    pointer-events: none; z-index: 1; opacity: 0.018;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  h1, h2, h3, h4 {
    font-family: var(--font);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text-1);
  }
  h1 p, h2 p, h3 p, h4 p {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: var(--font); cursor: pointer; border: none; background: none; color: inherit; }
  img { max-width: 100%; display: block; }
  ::selection { background: var(--accent); color: #fff; }

  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    position: relative;
    z-index: 2;
  }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; height: 36px; padding: 0 16px;
    border-radius: 8px;
    font-size: 13.5px; font-weight: 500; letter-spacing: -0.005em;
    transition: all 180ms var(--ease-out);
    border: 1px solid transparent; white-space: nowrap;
  }
  .btn-primary { background: var(--text-1); color: #0a0a0a; }
  .btn-primary:hover { background: #fff; transform: translateY(-1px); }

  .btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    height: 44px; padding: 0 22px; border-radius: 10px;
    font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
    transition: all 200ms var(--ease-out);
    border: 1px solid transparent;
  }
  .btn-cta--primary { background: var(--text-1); color: #0a0a0a; }
  .btn-cta--primary:hover { background: #fff; transform: translateY(-1px); }
  .btn-cta--ghost { background: transparent; color: var(--text-1); border-color: var(--line-3); }
  .btn-cta--ghost:hover { border-color: var(--text-2); background: rgba(255,255,255,0.03); transform: translateY(-1px); }
  .btn-cta-arrow { display: inline-flex; width: 14px; height: 14px; transition: transform 200ms var(--ease-out); }
  .btn-cta:hover .btn-cta-arrow { transform: translateX(3px); }

    /* ================================================================
     NAVBAR v2 — Modal-like (bande pleine largeur + fade aux extrémités)
     Logo (g) · capsule centrale {Expertises ▾ · Contact · Carrières}
     · CTA Assistance (d). Le fond de la bande est fadé à 0 sur les
     bords via mask-image (forme "rectangulaire ellipse"). Backdrop
     blur uniquement dans la zone visible.
     ================================================================ */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
    pointer-events: none;     /* le fond ne capture pas le pointer */
  }

  /* Fond de la bande : opacité de base + scrolled, masque gradient
     gauche/droite => "barre ellipse" qui s'évanouit franchement aux
     extrémités. Fade très marqué : zone opaque seulement au centre. */
  .navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.50);
    backdrop-filter: saturate(170%) blur(16px);
    -webkit-backdrop-filter: saturate(170%) blur(16px);
    /* Masque large unifié avec la sub-nav : bords adoucis à 9%, plateau
       opaque 9→91% — navbar + rail forment une seule bande continue. */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
    transition: background 280ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
  }
  .navbar.scrolled::before {
    background: rgba(10, 10, 10, 0.80);
  }

  /* Liseré bas, lui aussi fadé sur les bords (alignement symétrique) */
  .navbar::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.0) 12%,
      rgba(255, 255, 255, 0.10) 30%,
      rgba(255, 255, 255, 0.10) 70%,
      rgba(255, 255, 255, 0.0) 88%,
      transparent 100%);
    opacity: 0;
    transition: opacity 280ms ease;
    pointer-events: none;
    z-index: -1;
  }
  .navbar.scrolled::after { opacity: 1; }

  /* Grid 3 colonnes : logo | capsule | CTA */
  .nav-inner {
    pointer-events: auto;     /* on réactive le pointer pour le contenu */
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
  }

  /* ----- Logo ------------------------------------------------------- */
  .logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    line-height: 0;
  }
  /* Logo PNG officiel JCD — ratio 1530×482 (≈3.174:1), rendu HD */
  .logo .logo-img {
    display: block;
    height: 40px;
    width: auto;
    aspect-ratio: 1530 / 482;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* ----- Capsule centrale (Modal-like) ------------------------------ */
  .nav-center {
    justify-self: center;
    pointer-events: auto;
  }
  .nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    /* Double-bezel : highlight intérieur très subtil + ombre extérieure soft */
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 1px 2px rgba(0, 0, 0, 0.20),
      0 6px 24px rgba(0, 0, 0, 0.18);
    transition:
      background 260ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-pill:hover,
  .nav-pill:focus-within {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
  }

  /* Chaque item du pill : link ou bouton, même rythme typo */
  .nav-pill__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--text-2);
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
      color 200ms cubic-bezier(0.22, 1, 0.36, 1),
      background 200ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-pill__item:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.05);
  }
  .nav-pill__item:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.40);
    outline-offset: 2px;
  }
  .nav-pill__trigger[aria-expanded="true"] {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-chevron {
    color: currentColor;
    opacity: 0.65;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms ease;
  }
  .nav-pill__item:hover .nav-chevron { opacity: 0.9; }
  .nav-pill__trigger[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* ----- Icône Carrières accolée à la capsule "Nos solutions" ------- */
  .nav-pill__sep {
    width: 1px; height: 16px; flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 2px;
  }
  .nav-pill__careers { padding: 0 11px; }
  .nav-pill__careers svg { width: 15px; height: 15px; display: block; }
  .nav-pill__careers.is-current {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.06);
  }

  /* ----- Pillule droite : Assistance + Contact ----------------------
     Contraste bi-tonal dans une même capsule :
       · Assistance → noir sur blanc (item clair)
       · Contact    → blanc sur noir (item sombre)
     Les deux items partagent le même contour pill. */
  .nav-cta {
    justify-self: end;
    display: flex;
    align-items: center;
    pointer-events: auto;
  }

  /* Container NOIR — hauteur EXACTE 32px (= Assistance). */
  .nav-pill--actions {
    height: 32px;
    padding: 0;
    gap: 0;
    background: #0a0a0a;
    border: none;
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 1px 2px rgba(0, 0, 0, 0.35),
      0 6px 24px rgba(0, 0, 0, 0.30);
    overflow: visible;            /* le glow doit pouvoir s'échapper */
    transition: box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* Hover sur Contact → seul effet : contour qui glow en blanc
     (couleur de contraste de la pill noire). Aucun changement de
     bg, aucun shift de couleur, aucun transform. */
  .nav-pill--actions:has(.nav-pill__item--dark:hover),
  .nav-pill--actions:has(.nav-pill__item--dark:focus-visible) {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 1px 2px rgba(0, 0, 0, 0.35),
      0 6px 24px rgba(0, 0, 0, 0.30),
      0 0 0 1px rgba(255, 255, 255, 0.32),
      0 0 14px rgba(255, 255, 255, 0.20);
  }

  /* Métriques communes : exactement la hauteur du container */
  .nav-pill__item--light,
  .nav-pill__item--dark {
    height: 32px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: none;
    transition:
      transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
      background 200ms cubic-bezier(0.22, 1, 0.36, 1),
      color 200ms ease,
      box-shadow 200ms ease;
  }

  /* Assistance — premier plan, pill blanche. */
  .nav-pill__item--light {
    padding: 0 14px;
    background: #f4f4f4;
    color: #0a0a0a;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  }
  /* Hover Assistance → seul effet : contour qui glow dans sa
     couleur de contraste (sombre sur surface blanche). Aucun
     changement de bg, aucun shift de couleur, aucun transform. */
  .nav-pill__item--light:hover,
  .nav-pill__item--light:focus-visible {
    background: #f4f4f4;
    color: #0a0a0a;
    outline: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      inset 0 -1px 0 rgba(0, 0, 0, 0.06),
      inset 0 0 0 1px rgba(10, 10, 10, 0.42),
      inset 0 0 6px rgba(10, 10, 10, 0.14);
  }

  /* Contact — texte blanc fondu sur le noir du container.
     Aucun effet propre au hover : le glow est porté par le
     container (cf. .nav-pill--actions:has). */
  .nav-pill__item--dark {
    padding: 0 14px 0 12px;
    background: transparent;
    color: #f4f4f4;
  }
  .nav-pill__item--dark:hover,
  .nav-pill__item--dark:focus-visible {
    background: transparent;
    color: #f4f4f4;
    outline: none;
  }

  /* ============================================================
     DROPDOWN PANEL — 7 expertises avec SVG 3D isométriques
     Position : sous la navbar, centré sur l'écran. Animation
     d'ouverture : translate + opacity + scale très léger.
     ============================================================ */
  /* Le panneau ne transitionne QUE visibility ; le fade/slide vit sur le
     shell. Le flou de fond n'est PAS ici (un backdrop-filter descendant de
     la navbar fixed n'échantillonne pas la page sur Chromium) mais sur
     body::after, calé sur le rect du panneau (cf. plus bas). */
  .nav-panel {
    position: absolute; top: calc(100% + 12px); left: 50%;
    transform: translateX(-50%);
    width: min(480px, calc(100vw - 32px));
    pointer-events: none;
    z-index: 99;
    border-radius: 18px;
    /* (Pas de backdrop-filter ici : inopérant sur Chromium car descendant
       de la navbar fixed. Le flou est porté par body::after, cf. plus bas.) */
  }
  .nav-panel[aria-hidden="false"] { pointer-events: auto; }
  .nav-panel[aria-hidden="true"] {
    visibility: hidden;
    transition: visibility 0s linear 260ms;
  }
  .nav-panel[aria-hidden="false"] {
    visibility: visible;
    transition: visibility 0s linear 0s;
  }
  .nav-panel__shell {
    position: relative; padding: 4px;
    background: rgba(15, 15, 17, 0.92);
    border: none; border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.60), 0 50px 120px rgba(0,0,0,0.35);
    overflow: hidden;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 260ms var(--ease-out), transform 320ms var(--ease-out);
  }
  .nav-panel[aria-hidden="false"] .nav-panel__shell { opacity: 1; transform: translateY(0); }

  /* Voile givré calé sur le panneau de menu ouvert (rect posé en vars
     --menu-x/y/w/h par setupMenuFrost). Porté par body::after et non par
     le panneau : un backdrop-filter descendant de la navbar fixed ne peut
     pas échantillonner le contenu de la page (bug compositing Chromium).
     z-index 99 : au-dessus du contenu, sous la navbar (z 100). */
  body::after {
    content: ""; position: fixed;
    left: var(--menu-x, 0px); top: var(--menu-y, 0px);
    width: var(--menu-w, 0px); height: var(--menu-h, 0px);
    border-radius: 18px;
    z-index: 99; pointer-events: none;
    opacity: 0; visibility: hidden;
    background: rgba(8, 8, 10, 0.35);
    backdrop-filter: blur(32px) saturate(120%);
    -webkit-backdrop-filter: blur(32px) saturate(120%);
    /* Sortie INSTANTANÉE : le menu glisse+fade et quitte le champ en ~80ms ;
       tout fondu du voile (immobile) le ferait traîner après → rectangle de
       blur nu. On le coupe net dès la fermeture, le panneau (92% opaque) le
       couvre encore. L'entrée reste à 260ms (cf. règle :has ci-dessous). */
    transition: opacity 0s, visibility 0s;
  }
  body:has(.nav-panel[aria-hidden="false"])::after {
    opacity: 1; visibility: visible;
    transition: opacity 260ms var(--ease-out), visibility 0s linear 0s;
  }

  /* ============================================================
     Stacked vertical (pattern Vercel / Notion / Linear).
     Chaque expertise = une ligne pleine largeur. Sous-sections
     indentées sous le parent. Monochrome strict : aucune couleur
     de marque, hairlines + 1 dot bleu JCD au hover sous-section.
     ============================================================ */
  .nav-panel__grid {
    list-style: none;
    margin: 0;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav-panel__grid > li {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  /* Hairline gradient entre parents (sauf au-dessus du premier) */
  .nav-panel__grid > li + li::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 22%,
      rgba(255, 255, 255, 0.08) 78%,
      transparent 100%);
    pointer-events: none;
  }

  /* ============================================================
     Item parent : ligne pleine largeur, titre aligné à gauche.
     Hover = bg subtil + texte primaire. Aucune couleur d'accent.
     ============================================================ */
  .nav-panel__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 44px;
    padding: 0 16px;
    color: var(--text-2);
    text-decoration: none;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    transition:
      background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
      color 220ms cubic-bezier(0.22, 1, 0.36, 1);
    isolation: isolate;
  }
  .nav-panel__item:hover,
  .nav-panel__item:focus-visible {
    background-color: rgba(255, 255, 255, 0.035);
    color: var(--text-1);
    outline: none;
  }
  .nav-panel__item:focus-visible {
    box-shadow: inset 0 0 0 1px rgba(46, 114, 186, 0.40);
  }
  .nav-panel__item.is-current {
    color: var(--text-1);
  }

  .nav-panel__title {
    font-size: 13.5px;
    font-weight: 500;
    color: inherit;
    letter-spacing: -0.005em;
    line-height: 1;
    white-space: nowrap;
  }

  /* ============================================================
     Sous-liste : indentée, typo plus légère, dot subtle qui
     passe au bleu JCD au hover (seul accent coloré du panel).
     ============================================================ */
  .nav-panel__sub {
    list-style: none;
    margin: 0;
    padding: 0 4px 6px 4px;
    display: flex;
    flex-direction: column;
  }
  .nav-panel__sub-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 32px;
    padding: 0 16px 0 36px;
    color: var(--text-3);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: -0.003em;
    line-height: 1;
    border-radius: 6px;
    transition:
      background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
      color 200ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-panel__sub-item::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.45;
    transition:
      background 200ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 200ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-panel__sub-item:hover,
  .nav-panel__sub-item:focus-visible {
    color: var(--text-1);
    background-color: rgba(255, 255, 255, 0.025);
    outline: none;
  }
  .nav-panel__sub-item:hover::before,
  .nav-panel__sub-item:focus-visible::before {
    background: var(--accent);
    opacity: 1;
  }
  .nav-panel__sub-item:focus-visible {
    box-shadow: inset 0 0 0 1px rgba(46, 114, 186, 0.40);
  }

  /* ----- Responsive nav v2 ----------------------------------------- */
  @media (max-width: 820px) {
    .navbar { height: 70px; }
    .nav-inner { grid-template-columns: auto 1fr auto; gap: 10px; }
    .logo .logo-img { height: 32px; }
    .nav-center { display: none; }
    .btn-assistance { height: 32px; padding: 0 12px 0 10px; font-size: 12px; }
  }
  @media (max-width: 520px) {
    .nav-panel { width: calc(100vw - 24px); }
    .nav-panel__shell { padding: 4px; border-radius: 14px; }
  }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal.delay-1 { transition-delay: 60ms; }
  .reveal.delay-2 { transition-delay: 120ms; }
  .reveal.delay-3 { transition-delay: 180ms; }
  .reveal.delay-4 { transition-delay: 240ms; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; transform: none; opacity: 1; }
  }

  /* Hero */
  .print-hero {
    position: relative;
    min-height: 100vh;
    padding: clamp(120px, 14vh, 160px) 0 80px;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .print-hero::before {
    content: "";
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 760px;
    background:
      radial-gradient(38% 50% at 14% 24%, rgba(46, 114, 186, 0.07) 0%, transparent 60%),
      radial-gradient(36% 56% at 42% 22%, rgba(46, 114, 186, 0.06) 0%, transparent 60%),
      radial-gradient(40% 52% at 72% 28%, rgba(46, 114, 186, 0.05) 0%, transparent 60%),
      radial-gradient(30% 48% at 94% 36%, rgba(46, 114, 186, 0.04) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
  }
  .print-hero > * { position: relative; z-index: 1; }

  .breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 36px;
  }
  .breadcrumb a { color: var(--text-2); transition: color 160ms ease; }
  .breadcrumb a:hover { color: var(--text-1); }
  .breadcrumb-sep { width: 11px; height: 11px; color: var(--text-4); }
  .breadcrumb-current { color: var(--accent-hi); }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 4px 12px 4px 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-size: 12px; color: var(--text-2);
    margin-bottom: 28px;
    transition: background 160ms ease, border-color 160ms ease;
    font-weight: 500;
  }
  .hero-badge:hover { background: rgba(255,255,255,0.07); border-color: var(--line-3); }
  .hero-badge-tag {
    display: inline-block; padding: 2px 9px;
    background: var(--accent-soft); color: var(--accent-hi);
    border-radius: 999px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
  }

  .hero-title {
    font-size: clamp(34px, 5.27vw, 65px);
    line-height: 1.02; letter-spacing: -0.035em;
    margin: 18px 0 22px;
    font-weight: 600; max-width: 18ch;
    color: var(--text-1);
  }
  .hero-title em {
    background: linear-gradient(120deg,
      rgba(82, 144, 203, 0.95) 0%,
      rgba(46, 114, 186, 0.92) 50%,
      rgba(30, 90, 148, 0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero-sub {
    max-width: 560px; margin-bottom: 36px;
    font-size: 16px; line-height: 1.55;
    color: var(--text-2);
    letter-spacing: -0.005em;
  }
  .hero-actions {
    display: flex; gap: 10px; flex-wrap: wrap;
  }

  /* "Bientôt" — section coming-soon */
  .coming-soon {
    padding: clamp(80px, 10vw, 140px) 0;
    border-top: 1px solid var(--line-1);
    position: relative;
  }
  .cs-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex; flex-direction: column;
    gap: 28px; align-items: center;
  }
  .cs-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 500;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }
  .cs-eyebrow::before {
    content: ""; width: 16px; height: 1px;
    background: var(--accent);
  }
  .cs-title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    line-height: 1.08; letter-spacing: -0.03em;
    color: var(--text-1);
  }
  .cs-title em {
    font-family: var(--font-serif);
    font-style: italic; font-weight: 400;
    color: var(--accent);
  }
  .cs-text {
    font-size: 16px; line-height: 1.6;
    color: var(--text-2);
    max-width: 540px;
  }
  .cs-progress {
    margin-top: 8px;
    display: flex; gap: 18px;
    padding-top: 24px;
    border-top: 1px solid var(--line-1);
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    flex-wrap: wrap; justify-content: center;
  }
  .cs-progress em { color: var(--accent-hi); }
  .cs-actions {
    display: inline-flex; gap: 12px; flex-wrap: wrap;
    justify-content: center; margin-top: 4px;
  }

  /* Footer */
  footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--line-1);
    background: var(--bg);
    color: var(--text-2);
    position: relative; z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(28px, 3vw, 48px);
    margin-bottom: 60px;
  }
  @media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
  .footer-brand .logo-img { height: 32px; width: auto; margin-bottom: 18px; }
  .footer-brand p { font-size: 13.5px; color: var(--text-3); line-height: 1.6; max-width: 280px; }
  .footer-col h4 {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.14em; font-weight: 600;
    color: var(--text-3); margin-bottom: 18px;
    font-family: var(--font-mono);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: var(--text-2); font-size: 13.5px; transition: color 160ms ease; }
  .footer-col a:hover { color: var(--text-1); }
  .footer-col a.is-current { color: var(--accent-hi); }
  .footer-contact { font-size: 13px; color: var(--text-2); line-height: 1.65; }
  .footer-contact strong { color: var(--text-1); font-weight: 500; }
  .footer-contact a { color: var(--text-2); }
  .footer-contact a:hover { color: var(--accent-hi); }
  .footer-bottom {
    padding-top: 28px; border-top: 1px solid var(--line-1);
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; gap: 18px;
    font-size: 12px; color: var(--text-3);
  }
  .footer-copyright { justify-self: start; }
  .footer-legal { grid-area: 1 / 3; justify-self: end; text-align: right; }
  .footer-legal a { color: var(--text-2); text-decoration: none; transition: color 180ms ease; }
  .footer-legal a:hover { color: var(--text-1); }
  .footer-bottom .footer-social { grid-area: 1 / 2; justify-self: center; }
  @media (max-width: 640px) {
    .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .footer-copyright, .footer-legal, .footer-bottom .footer-social { justify-self: center; }
  }
  .footer-bottom a { color: var(--text-3); transition: color 160ms ease; }
  .footer-bottom a:hover { color: var(--text-1); }
  .footer-social { display: inline-flex; gap: 14px; align-items: center; }
  .footer-social a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-2);
    border-radius: 6px;
    transition: border-color 180ms ease, color 180ms ease;
  }
  .footer-social a:hover { border-color: var(--line-3); color: var(--text-1); }
  /* ============================================================
     NAV MENU v3 — Antimetal-like : 3 colonnes.
     Zone gauche "Expertises" (2 sous-colonnes : 3 + 4 items) avec
     icones aux couleurs JCD ; zone droite "Decouvrir" monochrome
     blanc/gris (Assistance, Contact, Carrieres). Sous-items
     Informatique : accordeon inline maitrise.
     ============================================================ */
  #nav-expertises-panel.nav-panel { width: min(600px, calc(100vw - 32px)); }
  #nav-expertises-panel .nav-panel__shell {
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
  }

  .nm-zone {
    display: flex;
    flex-direction: column;
    padding: 6px 4px 6px 6px;
    min-width: 0;
  }

  .nm-eyebrow {
    display: block;
    padding: 6px 10px 10px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
  }

  /* Grille 2 sous-colonnes pour les expertises */
  .nm-zone--expertises .nm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4px;
    align-items: start;
  }

  .nm-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; min-width: 0; }
  .nm-group { position: relative; display: flex; flex-direction: column; }

  .nm-item {
    --nm-c: rgba(255, 255, 255, 0.65);
    --nm-c-soft: rgba(255, 255, 255, 0.06);
    --nm-c-soft-2: rgba(255, 255, 255, 0.14);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 8px 10px;
    color: rgba(244, 244, 244, 0.78);
    text-decoration: none;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    isolation: isolate;
    transition:
      background-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
      color 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-item:hover,
  .nm-item:focus-visible,
  .nm-group[data-expanded="true"] > .nm-item {
    background-color: rgba(255, 255, 255, 0.04);
    color: #f4f4f4;
    outline: none;
  }
  .nm-item:focus-visible { box-shadow: inset 0 0 0 1px rgba(46, 114, 186, 0.45); }

  /* Couleurs par expertise — applique uniquement dans la zone Expertises */
  .nm-zone--expertises .nm-item[data-c="info"]       { --nm-c: #2E72BA; --nm-c-soft: rgba(46, 114, 186, 0.13); --nm-c-soft-2: rgba(46, 114, 186, 0.28); }
  .nm-zone--expertises .nm-item[data-c="service"]    { --nm-c: #E51D29; --nm-c-soft: rgba(229, 29, 41, 0.12);  --nm-c-soft-2: rgba(229, 29, 41, 0.26); }
  .nm-zone--expertises .nm-item[data-c="dev"]        { --nm-c: #F9D605; --nm-c-soft: rgba(249, 214, 5, 0.13);  --nm-c-soft-2: rgba(249, 214, 5, 0.30); }
  .nm-zone--expertises .nm-item[data-c="print"]      { --nm-c: #F3941D; --nm-c-soft: rgba(243, 148, 29, 0.12); --nm-c-soft-2: rgba(243, 148, 29, 0.26); }
  .nm-zone--expertises .nm-item[data-c="telecom"]    { --nm-c: #B063AC; --nm-c-soft: rgba(176, 99, 172, 0.14); --nm-c-soft-2: rgba(176, 99, 172, 0.28); }
  .nm-zone--expertises .nm-item[data-c="formation"]  { --nm-c: #8EC041; --nm-c-soft: rgba(142, 192, 65, 0.13); --nm-c-soft-2: rgba(142, 192, 65, 0.27); }
  .nm-zone--expertises .nm-item[data-c="agencement"] { --nm-c: #A78D75; --nm-c-soft: rgba(167, 141, 117, 0.15); --nm-c-soft-2: rgba(167, 141, 117, 0.30); }

  /* Zone Decouvrir : monochrome blanc/gris, palette neutre */

  /* Tuile icone */
  .nm-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nm-c-soft);
    border: 1px solid var(--nm-c-soft-2);
    border-radius: 9px;
    color: var(--nm-c);
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      background 320ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-item:hover .nm-icon,
  .nm-item:focus-visible .nm-icon,
  .nm-item.is-current .nm-icon,
  .nm-group[data-expanded="true"] > .nm-item .nm-icon {
    background: var(--nm-c-soft-2);
    border-color: var(--nm-c-soft-2);
    box-shadow:
      inset 0 0 0 1px var(--nm-c-soft-2);
  }
  .nm-item:hover .nm-icon svg,
  .nm-item:focus-visible .nm-icon svg,
  .nm-group[data-expanded="true"] > .nm-item .nm-icon svg {
    transform: rotate(-6deg) scale(1.12);
  }
  /* Decouvrir : pas de glow colore (palette neutre) */

  .nm-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .nm-title {
    font-size: 13.5px;
    font-weight: 500;
    color: #f4f4f4;
    letter-spacing: -0.005em;
    line-height: 1.15;
  }
  .nm-sub-label {
    font-size: 12px;
    font-weight: 400;
    color: rgba(244, 244, 244, 0.45);
    letter-spacing: -0.003em;
    line-height: 1.3;
    transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-item:hover .nm-sub-label,
  .nm-item:focus-visible .nm-sub-label,
  .nm-group[data-expanded="true"] > .nm-item .nm-sub-label { color: rgba(244, 244, 244, 0.65); }

  /* Accordeon : sous-items d'Informatique */
  .nm-sub {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-3px);
    transition:
      grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 240ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-group[data-expanded="true"] .nm-sub {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    transition:
      grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 320ms cubic-bezier(0.22, 1, 0.36, 1) 60ms,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-sub-wrap { overflow: hidden; min-height: 0; }
  .nm-sub-list {
    list-style: none;
    margin: 0;
    padding: 4px 10px 8px 58px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: relative;
  }
  .nm-sub-list::before {
    content: "";
    position: absolute;
    top: 6px; bottom: 10px; left: 28px;
    width: 1px;
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.08) 60%,
      rgba(255, 255, 255, 0.04) 100%);
    opacity: 0;
    transform-origin: top center;
    transform: scaleY(0.55);
    transition:
      opacity 280ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
      transform 380ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
  }
  .nm-group[data-expanded="true"] .nm-sub-list::before {
    opacity: 1;
    transform: scaleY(1);
  }
  .nm-sub-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 28px;
    padding: 0 10px 0 14px;
    color: rgba(244, 244, 244, 0.55);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: -0.003em;
    line-height: 1;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(-4px);
    transition:
      background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
      color 200ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-group[data-expanded="true"] .nm-sub-item { opacity: 1; transform: translateX(0); }
  .nm-group[data-expanded="true"] .nm-sub-item:nth-child(1) { transition-delay: 0ms, 0ms, 100ms, 100ms; }
  .nm-group[data-expanded="true"] .nm-sub-item:nth-child(2) { transition-delay: 0ms, 0ms, 160ms, 160ms; }
  .nm-group[data-expanded="true"] .nm-sub-item:nth-child(3) { transition-delay: 0ms, 0ms, 220ms, 220ms; }
  .nm-group[data-expanded="true"] .nm-sub-item:nth-child(4) { transition-delay: 0ms, 0ms, 280ms, 280ms; }
  .nm-sub-item::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nm-c, currentColor);
    opacity: 0;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-sub-item:hover,
  .nm-sub-item:focus-visible {
    color: #f4f4f4;
    background-color: rgba(255, 255, 255, 0.04);
    outline: none;
  }
  .nm-sub-item:hover::before,
  .nm-sub-item:focus-visible::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .nm-sub-item:focus-visible { box-shadow: inset 0 0 0 1px rgba(46, 114, 186, 0.40); }

  /* ── Sous-items Informatique : icônes distinctives par domaine ──────────
     (surcharge : remplace la pastille générique par une icône dédiée) */
  .nm-sub-list { padding-left: 16px; }
  .nm-sub-list::before { display: none; }
  .nm-sub-item {
    height: 34px;
    padding: 0 10px;
    gap: 11px;
    color: rgba(244, 244, 244, 0.58);
  }
  .nm-sub-item::before { display: none; }
  .nm-sub-tx { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nm-sub-ic {
    flex: 0 0 auto;
    width: 27px; height: 27px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 7px;
    color: rgba(46, 114, 186, 0.9);
    background: rgba(46, 114, 186, 0.09);
    border: 1px solid rgba(46, 114, 186, 0.18);
    transition:
      color 280ms cubic-bezier(0.22, 1, 0.36, 1),
      background 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nm-sub-ic svg { width: 15px; height: 15px; display: block; }
  .nm-sub-item:hover .nm-sub-ic,
  .nm-sub-item:focus-visible .nm-sub-ic,
  .nm-sub-item.is-current .nm-sub-ic {
    color: #6aa6e0;
    background: rgba(46, 114, 186, 0.17);
    border-color: rgba(46, 114, 186, 0.36);
    transform: scale(1.06) rotate(-4deg);
  }
  .nm-sub-item.is-current { color: #f4f4f4; background-color: rgba(46, 114, 186, 0.10); }
  @media (prefers-reduced-motion: reduce) {
    .nm-sub-ic { transition-duration: 80ms; }
    .nm-sub-item:hover .nm-sub-ic, .nm-sub-item:focus-visible .nm-sub-ic { transform: none; }
  }

  @media (max-width: 820px) {
    #nav-expertises-panel.nav-panel { width: calc(100vw - 24px); }
    #nav-expertises-panel .nav-panel__shell {
      grid-template-columns: 1fr;
      padding: 6px;
      border-radius: 14px;
    }
    .nm-zone--expertises .nm-grid { grid-template-columns: 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    .nm-icon, .nm-icon svg, .nm-sub, .nm-sub-item, .nm-sub-list::before,
    .nm-item, .nm-sub-label {
      transition-duration: 80ms !important;
    }
  }

  /* ================================================================
     SUB-NAV INFORMATIQUE — rail sticky permanent, ancré sous le navbar.
     Présent sur les pages de l'écosystème Informatique : permet de
     passer d'un domaine à l'autre (libellés complets). Page active =
     bleu JCD. Scroll horizontal masqué si dépassement (fade latéral).
     Même langage "pill" que le navbar (conformité design system).
     ================================================================ */
  .info-subnav {
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    z-index: 99;
    height: 54px;
    display: flex;
    align-items: stretch;
    pointer-events: none;
  }
  .info-subnav::before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(10, 10, 10, 0.50);
    backdrop-filter: saturate(170%) blur(16px);
    -webkit-backdrop-filter: saturate(170%) blur(16px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
    pointer-events: none; z-index: -1;
  }
  .info-subnav::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.10) 24%, rgba(255,255,255,0.10) 76%, transparent 100%);
    pointer-events: none; z-index: -1;
  }
  .info-subnav__inner {
    pointer-events: auto;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 26px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 26px), transparent 100%);
  }
  .info-subnav__inner::-webkit-scrollbar { display: none; height: 0; width: 0; }

  .info-subnav__home {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; gap: 8px;
    height: 32px; padding: 0 13px 0 11px;
    border-radius: 999px;
    font-size: 12.5px; font-weight: 500; letter-spacing: -0.005em;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    scroll-snap-align: start;
    transition: color 220ms var(--ease-out), background 220ms var(--ease-out), border-color 220ms var(--ease-out);
  }
  .info-subnav__home svg { width: 13px; height: 13px; opacity: 0.85; flex: 0 0 auto; }
  .info-subnav__home:hover { color: var(--text-1); background: rgba(255,255,255,0.05); border-color: var(--line-3); }
  .info-subnav__home.is-active {
    color: var(--accent-hi);
    background: var(--accent-soft);
    border-color: var(--accent-line);
  }

  .info-subnav__sep {
    flex: 0 0 auto;
    width: 1px; height: 20px;
    background: var(--line-2);
    margin: 0 6px;
  }

  .info-subnav__list {
    flex: 0 0 auto;
    display: flex; align-items: center; gap: 2px;
    list-style: none; margin: 0; padding: 0;
  }
  .info-subnav__link {
    position: relative;
    display: inline-flex; align-items: center;
    height: 34px; padding: 0 14px;
    border-radius: 8px;
    font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
    color: var(--text-2);
    white-space: nowrap;
    scroll-snap-align: center;
    transition: color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  }
  .info-subnav__link:hover { color: var(--text-1); background: rgba(255, 255, 255, 0.045); }
  .info-subnav__link.is-active {
    color: var(--accent-hi);
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 1px var(--accent-line);
  }
  .info-subnav__link:focus-visible { outline: none; box-shadow: inset 0 0 0 1px rgba(46, 114, 186, 0.45); }

  /* ── Rail Informatique : icônes de section + hovers premium + indicateur     actif qui change d'une page à l'autre (View Transitions) ──────────── */
  @view-transition { navigation: auto; }
  /* Fond sombre garanti sous l'overlay de transition (anti-flash blanc si la VT bascule en navigation classique). */
  ::view-transition { background-color: #0a0a0a; }

  .info-subnav__link { gap: 9px; }
  .info-subnav__ic {
    flex: 0 0 auto;
    width: 16px; height: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    opacity: 0.6;
    transition: opacity 240ms var(--ease-out), transform 420ms var(--ease-out);
  }
  .info-subnav__ic svg { width: 16px; height: 16px; display: block; }
  .info-subnav__link:hover .info-subnav__ic { opacity: 1; transform: translateY(-1px); }
  .info-subnav__link.is-active .info-subnav__ic { opacity: 1; }
  /* Hover plus soigné : fond légèrement plus présent + fine arête interne */
  .info-subnav__link:hover { background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05); }

  /* ── Vue d'ensemble = icône seule + libellés complets + icônes bleues au survol ──
     Libère l'espace horizontal pour afficher toutes les sous-sections en entier. */
  .info-subnav__home { width: 34px; padding: 0; gap: 0; justify-content: center; }
  .info-subnav__home svg { width: 15px; height: 15px; opacity: 1; }
  .info-subnav__link { padding: 0 11px; }
  .info-subnav__list { gap: 1px; }
  .info-subnav__link:hover .info-subnav__ic,
  .info-subnav__link.is-active .info-subnav__ic { color: var(--accent-hi); opacity: 1; }

  /* Chrome persistant pendant la transition de page :
     Navbar et rail : snapshots strictement figés (zéro cross-fade → zéro
     scintillement du verre dépoli pendant la transition). */
  #navbar { view-transition-name: jcd-navbar; }
  .info-subnav { view-transition-name: jcd-subnav; }
  ::view-transition-group(jcd-navbar), ::view-transition-group(jcd-subnav),
  ::view-transition-image-pair(jcd-navbar), ::view-transition-image-pair(jcd-subnav),
  ::view-transition-new(jcd-navbar), ::view-transition-new(jcd-subnav) { animation: none; }
  ::view-transition-old(jcd-navbar), ::view-transition-old(jcd-subnav) { display: none; }
  /* Fond de page : fondu bref et feutré */
  ::view-transition-old(root), ::view-transition-new(root) {
    animation-duration: 260ms;
    animation-timing-function: var(--ease-out);
  }
  ::view-transition-group(root) {
    animation-duration: 260ms;
    animation-timing-function: var(--ease-out);
  }
  @media (prefers-reduced-motion: reduce) {
    ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
    .info-subnav__ic { transition-duration: 80ms; }
  }

  @media (max-width: 820px) {
    .info-subnav { top: 70px; height: 50px; }
    .info-subnav__sep { margin: 0 4px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .info-subnav__home, .info-subnav__link { transition-duration: 80ms; }
  }

  /* ================================================================
     CORPS PAGE-PÔLE — Projets & expertise Cloud Microsoft
     Template enrichi IT : hero épinglé · manifeste sticky (IBM Plex
     Mono) · prestations · sécurité opérée · process · CTA.
     Langage design partagé (tokens JCD), accent bleu Informatique.
     ================================================================ */

  /* --- Hero épinglé (pattern pôle universel) : sticky + fond animé.
     Le manifeste glisse par-dessus. Fond WebGL = couche .hero-mesh,
     branchée plus tard (fallback CSS .hero-mesh-fallback visible). --- */
  .hero-pin-zone { position: relative; }
  .print-hero {
    position: sticky; top: 0;
    min-height: 85vh;
    padding: clamp(150px, 17vh, 196px) 0 clamp(40px, 6vh, 70px);
    display: flex; align-items: center; overflow: hidden;
    z-index: 1; isolation: isolate;
    /* Teintes du fond animé — pôle Informatique (bleu JCD), RGB 0-255 */
    --mesh-c1: 13, 13, 13;
    --mesh-c2: 46, 114, 186;
    --mesh-c3: 30, 90, 148;
    --mesh-c4: 82, 144, 203;
  }
  /* Scrim de lisibilité : voile doux (teinte de fond) sur la zone du texte,
     par-dessus le canvas WebGL — la baseline ressort sans éteindre le fond.
     Remplace le glow radial de base. */
  .print-hero::before {
    content: ""; display: block;
    position: absolute; inset: 0; height: auto;
    z-index: 3; pointer-events: none;
    background:
      radial-gradient(60% 68% at 28% 50%, rgba(var(--mesh-c1), 0.46) 0%, rgba(var(--mesh-c1), 0.20) 52%, transparent 78%),
      linear-gradient(180deg, rgba(var(--mesh-c1), 0.32) 0%, transparent 30%, transparent 72%, rgba(var(--mesh-c1), 0.40) 100%);
  }

  .hero-mesh-fallback {
    position: absolute; inset: -10% -10% auto -10%; height: 820px;
    z-index: 0; pointer-events: none;
    background:
      radial-gradient(40% 55% at 22% 32%, rgba(var(--mesh-c2), 0.14) 0%, transparent 62%),
      radial-gradient(44% 60% at 78% 30%, rgba(var(--mesh-c4), 0.11) 0%, transparent 60%),
      radial-gradient(38% 52% at 55% 24%, rgba(var(--mesh-c3), 0.09) 0%, transparent 62%);
    filter: blur(34px);
  }
  .hero-mesh {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0;
    transition: opacity 1400ms var(--ease-expo);
  }
  .hero-mesh.is-ready { opacity: 0.85; }
  .hero-texture {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background-image:
      linear-gradient(to right,  rgba(255,255,255,0.020) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.020) 1px, transparent 1px);
    background-size: 46px 46px; background-position: center; opacity: 0.55;
    -webkit-mask-image: radial-gradient(ellipse 96% 80% at 50% 42%, #000 14%, rgba(0,0,0,0.45) 64%, transparent 100%);
            mask-image: radial-gradient(ellipse 96% 80% at 50% 42%, #000 14%, rgba(0,0,0,0.45) 64%, transparent 100%);
  }
  .hero-grain {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    opacity: 0.045; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  .print-hero > .container { position: relative; z-index: 4; }
  .print-hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    z-index: 4; pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(var(--mesh-c2), 0.0) 10%, rgba(var(--mesh-c2), 0.22) 50%, rgba(var(--mesh-c2), 0.0) 90%, transparent 100%);
  }
  .hero-title {
    font-size: clamp(40px, 5.6vw, 72px); line-height: 1.0; letter-spacing: -0.04em;
    margin: 0 0 26px; font-weight: 600; max-width: 18ch; color: var(--text-1);
  }
  .hero-title em {
    background: linear-gradient(120deg, rgba(var(--mesh-c4), 1) 0%, rgba(var(--mesh-c2), 0.95) 50%, rgba(var(--mesh-c3), 0.88) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-sub { max-width: 560px; margin-bottom: 36px; font-size: 16px; line-height: 1.55; color: var(--text-2); letter-spacing: -0.005em; text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 6px 22px rgba(0,0,0,0.30); }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  /* --- Eyebrow (libellé mono de section) --- */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3);
  }
  .eyebrow::before { content: ""; width: 16px; height: 1px; background: var(--accent); }

  /* --- Manifeste : feuille sticky qui glisse par-dessus le hero épinglé.
     Voix monospace JetBrains Mono (var(--font-mono)) — unifiée avec les
     pages dev/télécom et les libellés. Personnalisable par section. --- */
  .manifesto { position: relative; z-index: 2; padding: 0; background: transparent; }
  .info-sheet {
    position: relative; overflow: hidden;
    padding: clamp(30px, 3.6vw, 56px) 0 clamp(60px, 8vw, 104px);
    background:
      radial-gradient(120% 70% at 50% 0%, rgba(46,114,186,0.13) 0%, transparent 58%),
      linear-gradient(180deg, #111419 0%, #0c0d10 100%);
    border-top: 1px solid var(--accent-line);
    box-shadow:
      0 -1px 0 rgba(46,114,186,0.30),
      0 -16px 52px -22px rgba(46,114,186,0.34),
      0 30px 60px -30px rgba(0,0,0,0.70),
      0 70px 100px -50px rgba(0,0,0,0.50);
  }
  .info-sheet::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.020) 0px, rgba(255,255,255,0.020) 1px, transparent 1px, transparent 5px);
    opacity: 0.6;
    -webkit-mask-image: radial-gradient(ellipse 96% 78% at 50% 26%, #000 28%, transparent 100%);
            mask-image: radial-gradient(ellipse 96% 78% at 50% 26%, #000 28%, transparent 100%);
  }
  .info-sheet > .container { position: relative; z-index: 1; }
  .mf-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    padding-bottom: 18px; margin-bottom: clamp(40px, 6vw, 72px);
    border-bottom: 1px solid var(--line-2);
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3);
  }
  .mf-head-side { display: inline-flex; align-items: center; gap: 12px; }
  .mf-caret { color: var(--accent-hi); font-size: 12px; }
  .mf-id { color: var(--text-1); font-weight: 500; }
  .mf-rule { width: 26px; height: 1px; background: var(--line-3); }
  .manifesto-quote {
    font-family: var(--font-mono);
    font-size: clamp(18px, 2.3vw, 30px); line-height: 1.5;
    letter-spacing: -0.01em; color: var(--text-1); font-weight: 400; max-width: 820px;
  }
  .manifesto-quote strong { font-style: normal; font-weight: 500; color: var(--text-1); }
  .manifesto-quote strong { color: var(--accent-hi); font-weight: 500; font-style: normal; }
  .manifesto-quote em { color: color-mix(in srgb, var(--accent-hi) 65%, white); }

  /* ---- Colonne droite du manifeste : Rsecure, partenaire complementaire ---- */
  .mf-cols { display: flex; align-items: center; gap: clamp(32px, 5vw, 84px); }
  .mf-cols .manifesto-quote { flex: 1 1 auto; min-width: 0; }
  .mf-brand { flex: 0 0 clamp(180px, 21vw, 290px); margin: 0; display: flex; flex-direction: column; }
  .mf-brand img {
    width: 100%; height: auto; display: block;
    opacity: 0.92;
    filter: drop-shadow(0 4px 22px rgba(0,0,0,0.35));
  }
  .mf-brand figcaption {
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid var(--line-2);
    font-family: var(--font-mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3);
  }
  .mf-brand figcaption em { color: var(--accent-hi); font-weight: 500; }
  @media (max-width: 860px) {
    .mf-cols { flex-direction: column; align-items: flex-start; gap: 30px; }
    .mf-brand { flex-basis: auto; width: min(230px, 62%); }
  }
  .mf-cursor {
    display: inline-block; width: 0.5em; height: 1.02em; margin-left: 0.12em;
    vertical-align: -0.15em; background: var(--accent-hi); animation: mf-blink 1.1s infinite;
  }
  @keyframes mf-blink { 0%, 50% { opacity: 0.9; } 50.01%, 100% { opacity: 0; } }
  .manifesto-pull {
    margin-top: clamp(44px, 6vw, 72px); padding-top: 24px;
    border-top: 1px solid var(--line-2);
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px 40px; flex-wrap: wrap; font-family: var(--font-mono);
  }
  .mf-stats { display: inline-flex; align-items: baseline; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); }
  .mf-stat { display: inline-flex; align-items: baseline; gap: 7px; }
  .mf-stat-num { color: var(--text-1); font-weight: 500; font-size: 13px; letter-spacing: 0.03em; font-variant-numeric: tabular-nums; }
  .mf-stat + .mf-stat::before { content: "·"; margin: 0 13px; color: var(--text-4); }
  .mf-signoff { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
  .mf-signoff em { color: var(--accent-hi); font-weight: 500; }
  @media (max-width: 560px) { .manifesto-pull { flex-direction: column; align-items: flex-start; gap: 18px; } }
  @media (prefers-reduced-motion: reduce) { .mf-cursor { animation: none; } }

  /* --- En-tête de section réutilisable --- */
  .sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 60px); }
  .sec-head .eyebrow { margin-bottom: 18px; }
  .sec-head h2 {
    font-size: clamp(28px, 3.4vw, 42px); font-weight: 600;
    line-height: 1.08; letter-spacing: -0.03em; color: var(--text-1);
  }
  .sec-head h2 em { font-style: normal; font-weight: 600; color: var(--accent-hi); }
  .sec-head p { font-size: 15.5px; line-height: 1.6; color: var(--text-2); max-width: 600px; margin-top: 14px; }

  /* --- Prestations --- */
  .prestations {
    padding: clamp(80px, 9vw, 120px) 0;
    border-top: 1px solid var(--line-1);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
  }
  .prest-grid {
    display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px; background: var(--line-2); border: 1px solid var(--line-2);
    border-radius: 10px; overflow: hidden;
  }
  .prest-item { grid-column: span 2; }
  .prest-item--wide { grid-column: span 3; }
  @media (max-width: 860px) { .prest-grid { grid-template-columns: 1fr; } .prest-item, .prest-item--wide { grid-column: auto; } }
  .prest-item {
    position: relative; display: flex; flex-direction: column; gap: 14px;
    padding: clamp(26px, 2.6vw, 34px); background: var(--bg);
    min-height: 240px; transition: background 320ms var(--ease-out);
  }
  .prest-item::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    opacity: 0; transition: opacity 320ms ease;
  }
  .prest-item:hover { background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%); }
  .prest-item:hover::before { opacity: 0.6; }
  .prest-item-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .prest-item-glyph {
    width: 50px; height: 50px; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent-hi); border: 1px solid var(--line-2); border-radius: 8px;
    background: rgba(255,255,255,0.014);
    transition: border-color 320ms var(--ease-out), background 320ms var(--ease-out);
  }
  .prest-item:hover .prest-item-glyph { border-color: var(--accent-line); background: var(--accent-soft); }
  .prest-item-glyph svg { width: 26px; height: 26px; }
  .prest-item-num {
    font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-3); font-weight: 500;
  }
  .prest-item-num em { color: var(--accent-hi); }
  .prest-item-title {
    font-size: clamp(17px, 1.6vw, 20px); font-weight: 600;
    letter-spacing: -0.02em; line-height: 1.22; color: var(--text-1); margin-top: 6px;
  }
  .prest-item-desc { font-size: 13.5px; line-height: 1.6; color: var(--text-2); letter-spacing: -0.005em; }
  /* Micro-CTA violet Télécom (charte #8D2C87 ; teinte lisible #b063ac sur fond
     sombre) — pont vers la page Télécom depuis la prestation Téléphonie Teams. */
  .prest-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 14px;
    font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em;
    color: #b063ac;
    transition: color 300ms var(--ease-out);
  }
  .prest-cta svg { width: 13px; height: 13px; transition: transform 320ms var(--ease-expo); }
  .prest-cta:hover { color: #c98cc4; }
  .prest-cta:hover svg { transform: translateX(3px); }
  .prest-cta:focus-visible { outline: 2px solid #8D2C87; outline-offset: 3px; border-radius: 4px; }

  /* --- Sécurité by design (cyber distillée) ---
     Cyber = accent local plus clair, presque cyan. On surcharge les
     tokens --accent* sur la section : tous les enfants (eyebrow, em,
     lien, points, icônes) basculent automatiquement en cyan. --- */
  .secblock {
    position: relative; overflow: hidden;
    padding: clamp(72px, 9vw, 120px) 0; border-top: 1px solid var(--line-1);
    --accent: #2BA6C7;
    --accent-hi: #4FC9E2;
    --accent-soft: rgba(79, 201, 226, 0.10);
    --accent-line: rgba(79, 201, 226, 0.26);
    background: radial-gradient(85% 120% at 100% 0%, rgba(79,201,226,0.11) 0%, transparent 52%), var(--bg);
  }
  .secblock-head h2 {
    font-size: clamp(26px, 3.1vw, 40px); font-weight: 600; line-height: 1.1;
    letter-spacing: -0.03em; color: var(--text-1); margin: 18px 0 14px;
  }
  .secblock-head h2 em { font-style: normal; font-weight: 600; color: var(--accent-hi); }
  .secblock-head p { font-size: 15px; line-height: 1.65; color: var(--text-2); max-width: 440px; }
  .secblock-head--center { text-align: center; max-width: 660px; margin: 0 auto clamp(36px, 5vw, 56px); }
  .secblock-head--center p { margin-inline: auto; max-width: 540px; }
  .secblock-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
    font-size: 13.5px; font-weight: 500; color: var(--accent-hi);
    transition: gap 200ms var(--ease-out), color 200ms var(--ease-out);
  }
  .secblock-link:hover { gap: 12px; color: var(--text-1); }

  /* Architecture « dôme de veille hybride » (unique à cette page) :
     demi-dôme radar centré — l'horizon relie votre SI (g) au cloud
     public (d), le SOC balaye en continu ce périmètre étendu (faisceau
     animé, échos détectés au passage) — relié par trois connecteurs aux
     cartes cyber (gouvernance, SOC 24/7, sensibilisation) dessous.
     Survoler une carte illumine son secteur, son label et son connecteur. */
  .skywatch { display: flex; flex-direction: column; align-items: center; }
  .sky-dome { position: relative; width: 100%; max-width: 640px; margin-inline: auto; }
  .sky-dome svg { display: block; width: 100%; height: auto; overflow: visible; }
  .sky-dome .sk-lab {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
    fill: var(--text-3); text-anchor: middle;
    transition: fill 360ms var(--ease-out);
  }
  .sky-dome .sk-end {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
    fill: var(--text-3); text-anchor: middle;
  }
  .sky-dome .sk-soc { fill: var(--accent-hi); }
  .sk-arc { stroke: #4FC9E2; stroke-opacity: var(--sk-arcop, 0.15); transition: stroke-opacity 360ms var(--ease-out); }
  .sk-ray { stroke: #4FC9E2; stroke-opacity: 0.06; }
  .sk-ticks { stroke: #4FC9E2; stroke-opacity: 0.22; }
  .sk-sector { fill: #4FC9E2; fill-opacity: 0.05; opacity: 0; transition: opacity 420ms var(--ease-out); }
  .sk-shield { filter: drop-shadow(0 0 5px rgba(79,201,226,0.4)); }
  /* Faisceau : rotation continue gauche → droite (période 8.4s), arête
     avant adoucie d'une lueur + traîne en dégradé. Pivot = centre de
     l'horizon. Fondu aux extrémités de course : le faisceau s'éteint en
     fin de balayage et réapparaît au départ — aucun à-coup au rebouclage. */
  .sk-sweep {
    transform-box: view-box; transform-origin: 50% 90%;
    animation: sk-sweep 8.4s linear infinite;
  }
  @keyframes sk-sweep {
    0%   { transform: rotate(-24deg); opacity: 0; }
    6%   { opacity: 1; }
    94%  { opacity: 1; }
    100% { transform: rotate(156deg); opacity: 0; }
  }
  .sk-beam { stroke: #4FC9E2; stroke-opacity: 0.5; stroke-width: 1.2; filter: drop-shadow(0 0 6px rgba(79,201,226,0.5)); }
  .sk-beam-tip { fill: #4FC9E2; fill-opacity: 0.9; filter: drop-shadow(0 0 4px rgba(79,201,226,0.6)); }
  /* Échos sonar : au passage du faisceau, le cœur FLASHE (surbrillance brève)
     puis décline vite — pas de point qui traîne — pendant que DEUX ondes
     concentriques partent en décalé et se dissolvent en s'étendant. Delays
     inline phasés sur la période du sweep, hérités par les trois cercles
     (animation-delay: inherit) ; la 2e onde est décalée de 6 % du cycle
     (~0,5 s) via ses propres keyframes, pour conserver l'héritage du delay. */
  .sk-blip { opacity: 0; animation: sk-blip 8.4s var(--ease-out) infinite; }
  @keyframes sk-blip {
    0%   { opacity: 0; }
    2%   { opacity: 1; }
    14%  { opacity: 0.85; }
    46%, 100% { opacity: 0; }
  }
  .sk-bcore {
    transform-box: fill-box; transform-origin: center;
    filter: drop-shadow(0 0 4px rgba(79,201,226,0.5));
    animation: sk-blip-core 8.4s var(--ease-out) infinite; animation-delay: inherit;
  }
  @keyframes sk-blip-core {
    0%  { transform: scale(0.2); }
    4%  { transform: scale(1.25); }
    9%  { transform: scale(1); }
    100% { transform: scale(1); }
  }
  .sk-bw {
    transform-box: fill-box; transform-origin: center; opacity: 0;
    animation: sk-blip-wave 8.4s linear infinite; animation-delay: inherit;
  }
  @keyframes sk-blip-wave {
    0%   { transform: scale(0.35); opacity: 0; }
    2%   { opacity: 0.85; }
    26%  { transform: scale(2.3); opacity: 0; }
    100% { transform: scale(2.3); opacity: 0; }
  }
  .sk-bw2 { animation-name: sk-blip-wave2; }
  @keyframes sk-blip-wave2 {
    0%, 6% { transform: scale(0.35); opacity: 0; }
    8%   { opacity: 0.55; }
    34%  { transform: scale(2.1); opacity: 0; }
    100% { transform: scale(2.1); opacity: 0; }
  }
  .sky-wires { width: 100%; height: clamp(64px, 8vw, 96px); margin-top: 0; display: block; }
  .sk-wire {
    /* PAS de vector-effect:non-scaling-stroke : avec pathLength + dash,
       Chromium coupe le trait ~9% avant la card en large (dash mesuré
       sur le path écran étiré). Cf. .cyber-wire (informatique). */
    fill: none; stroke: url(#skWire); stroke-width: 1.4;
    opacity: 0.75; transition: opacity 360ms var(--ease-out);
  }
  /* Reveal : les fils se dessinent du dôme vers les cartes, puis les nodes
     poppent à l'arrivée. pathLength normalisé à 100 sur les 3 courbes. */
  .skywatch.reveal .sk-wire { stroke-dasharray: 9999; stroke-dashoffset: 9999; }
  .skywatch.reveal.visible .sk-wire { animation: sk-wire-draw 800ms var(--ease-expo) forwards; }
  .skywatch.reveal.visible .sk-wire-1 { animation-delay: 350ms; }
  .skywatch.reveal.visible .sk-wire-2 { animation-delay: 250ms; }
  .skywatch.reveal.visible .sk-wire-3 { animation-delay: 450ms; }
  @keyframes sk-wire-draw { to { stroke-dashoffset: 0; } }
  .skywatch.reveal .sk-node { opacity: 0; transform: translateX(-50%) scale(0.4); }
  .skywatch.reveal.visible .sk-node { animation: sk-node-in 500ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
  .skywatch.reveal.visible .skypoint[data-sector="1"] .sk-node { animation-delay: 1000ms; }
  .skywatch.reveal.visible .skypoint[data-sector="2"] .sk-node { animation-delay: 900ms; }
  .skywatch.reveal.visible .skypoint[data-sector="3"] .sk-node { animation-delay: 1100ms; }
  @keyframes sk-node-in { to { opacity: 1; transform: translateX(-50%) scale(1); } }
  .sky-grid { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 20px); }
  .skypoint {
    position: relative; padding: 24px 24px 26px;
    border: 1px solid var(--line-2); border-radius: 14px;
    background:
      radial-gradient(130% 80% at 50% -14%, rgba(79,201,226,0.10) 0%, transparent 58%),
      linear-gradient(180deg, rgba(255,255,255,0.022) 0%, rgba(255,255,255,0.008) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 38px -28px rgba(0,0,0,0.7);
    transition: transform 460ms var(--ease-expo), border-color 460ms var(--ease-expo), box-shadow 460ms var(--ease-expo);
  }
  /* Hover harmonisé (réf. méthode) : lift -4px + halo coloré doux + bordure d'accent */
  .skypoint:hover {
    transform: translateY(-4px);
    border-color: rgba(79,201,226,0.42);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      0 14px 30px -18px rgba(0,0,0,0.6),
      0 26px 60px -26px rgba(79,201,226,0.5);
  }
  .sk-node {   /* point de jonction du connecteur */
    position: absolute; top: -5px; left: 50%; width: 9px; height: 9px;
    transform: translateX(-50%); border-radius: 50%;
    background: var(--accent-hi);
    box-shadow: 0 0 0 4px rgba(79,201,226,0.12), 0 0 10px rgba(79,201,226,0.55);
    transition: box-shadow 360ms var(--ease-out); z-index: 2;
  }
  .skypoint:hover .sk-node { box-shadow: 0 0 0 5px rgba(79,201,226,0.16), 0 0 14px rgba(79,201,226,0.95); }
  .skypoint-tag {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--accent-hi); margin-bottom: 12px;
  }
  .skypoint-tag svg { flex: 0 0 auto; }
  .skypoint h4 { font-size: 15.5px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; letter-spacing: -0.01em; }
  .skypoint p { font-size: 13.5px; line-height: 1.6; color: var(--text-2); }
  /* Micro-CTA vert pôle Formation (#8EC041) — pont vers le catalogue cyber.
     Vert volontaire, distinct de l'accent bleu de la page. */
  .skypoint-cta {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 15px;
    font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em;
    color: #8EC041;
    transition: color 300ms var(--ease-out);
  }
  .skypoint-cta svg { width: 13px; height: 13px; transition: transform 320ms var(--ease-expo); }
  .skypoint-cta:hover { color: #A6D65F; }
  .skypoint-cta:hover svg { transform: translateX(3px); }
  .skypoint-cta:focus-visible { outline: 2px solid #8EC041; outline-offset: 3px; border-radius: 4px; }
  /* survol carte → son secteur du dôme s'illumine (zone, label, arcs, connecteur) */
  .skywatch:has(.skypoint[data-sector="1"]:hover) .sk-s1 .sk-sector,
  .skywatch:has(.skypoint[data-sector="2"]:hover) .sk-s2 .sk-sector,
  .skywatch:has(.skypoint[data-sector="3"]:hover) .sk-s3 .sk-sector { opacity: 1; }
  .skywatch:has(.skypoint[data-sector="1"]:hover) .sk-s1 .sk-lab,
  .skywatch:has(.skypoint[data-sector="2"]:hover) .sk-s2 .sk-lab,
  .skywatch:has(.skypoint[data-sector="3"]:hover) .sk-s3 .sk-lab { fill: var(--accent-hi); }
  .skywatch:has(.skypoint:hover) .sk-arc { stroke-opacity: 0.30; }
  .skywatch:has(.skypoint[data-sector="1"]:hover) .sk-wire-1,
  .skywatch:has(.skypoint[data-sector="2"]:hover) .sk-wire-2,
  .skywatch:has(.skypoint[data-sector="3"]:hover) .sk-wire-3 { opacity: 1; }
  /* Bandeau d'amorce : audit co-financé Région Grand Est (CTA questionnaire) */
  .sky-offer {
    margin-top: clamp(24px, 3.2vw, 36px);
    display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
    padding: 9px 20px 9px 10px;
    border: 1px solid var(--accent-line); border-radius: 999px;
    background: linear-gradient(90deg, rgba(79,201,226,0.10) 0%, rgba(79,201,226,0.03) 55%, transparent 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 38px -26px rgba(79,201,226,0.55);
  }
  .sky-offer-tag {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 4px 11px; border-radius: 999px;
    background: var(--accent-soft); color: var(--accent-hi);
    font-family: var(--font-mono); font-size: 10px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  }
  .sky-offer-tag svg { flex: 0 0 auto; }
  .sky-offer p { font-size: 13.5px; line-height: 1.5; color: var(--text-2); margin: 0; }
  .sky-offer strong { color: var(--text-1); font-weight: 600; }
  .sky-offer-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 500; color: var(--accent-hi); white-space: nowrap;
    transition: gap 200ms var(--ease-out), color 200ms var(--ease-out);
  }
  .sky-offer-link:hover { gap: 11px; color: var(--text-1); }
  @media (max-width: 820px) {
    .sky-dome { max-width: 440px; }
    .sky-wires, .sk-node { display: none; }
    .sky-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
    .sky-offer { border-radius: 18px; padding: 12px 16px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .sk-sweep { animation: none; transform: rotate(66deg); }
    .sk-blip { animation: none; opacity: 0.5; }
    .sk-bcore, .sk-bw { animation: none; }
    .skywatch.reveal .sk-wire { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
    .skywatch.reveal .sk-node { opacity: 1; transform: translateX(-50%); animation: none; }
  }

  /* --- Process — « Profil d'ascension » (unique à cette page) : une
     route qui grimpe de votre SI (sol, à gauche) vers le cloud (en
     haut à droite) par paliers successifs — tracé qui se dessine à
     l'entrée dans le viewport, paquet de données en transit continu,
     4 jalons posés sur la courbe, reliés par des descentes pointillées
     à la rangée d'étapes. Survoler une étape étend la progression
     lumineuse jusqu'à son jalon. Fond : matrice de points (carte
     d'altitude) masquée en douceur. --- */
  .process {
    position: relative; overflow: hidden;
    padding: clamp(64px, 7vw, 96px) 0; border-top: 1px solid var(--line-1); background: var(--bg-1);
  }
  .process::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(82,144,203,0.10) 1px, transparent 1.4px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 84% 78% at 50% 42%, #000 12%, rgba(0,0,0,0.34) 58%, transparent 88%);
            mask-image: radial-gradient(ellipse 84% 78% at 50% 42%, #000 12%, rgba(0,0,0,0.34) 58%, transparent 88%);
  }
  .process > .container { position: relative; z-index: 1; }
  /* --fp-reach enregistré comme <number> : permet d'INTERPOLER la progression
     lumineuse au survol. Sans @property, var() dans stroke-dasharray ne se
     transitionne pas de façon fiable → le glow sautait d'une étape à l'autre. */
  @property --fp-reach {
    syntax: "<number>";
    inherits: true;
    initial-value: 12.6;
  }
  .flightpath {
    position: relative; --fp-reach: 12.6;
    transition: --fp-reach 720ms var(--ease-out);
  }
  .fp-sky { position: relative; }
  .fp-sky svg { display: block; width: 100%; height: auto; overflow: visible; }
  .fp-tag {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
    fill: var(--text-3);
  }
  /* Route complète en pointillés discrets (toujours visible) */
  .fp-route-base { stroke: rgba(46,114,186,0.20); stroke-width: 1; fill: none; stroke-dasharray: 3 6; }
  /* Tracé principal : se dessine à l'entrée dans le viewport */
  .fp-route {
    stroke: url(#fpStroke); stroke-width: 1.8; fill: none; stroke-linecap: round;
    stroke-dasharray: 9999; stroke-dashoffset: 9999;
    transition: stroke-dashoffset 1700ms var(--ease-expo) 250ms;
  }
  .flightpath.visible .fp-route { stroke-dashoffset: 0; }
  /* Progression lumineuse : du sol jusqu'au jalon actif (étendue au hover) */
  .fp-progress {
    stroke: var(--accent-hi); stroke-width: 2.6; fill: none; stroke-linecap: round;
    stroke-dasharray: var(--fp-reach) 200;
    filter: drop-shadow(0 0 5px rgba(82,144,203,0.55));
    /* Lissage du survol porté par la transition de --fp-reach (cf. .flightpath) :
       pas de transition directe sur stroke-dasharray (sinon double-amortissement
       qui « rubber-band »). */
  }
  .flightpath.visible .fp-progress { animation: fp-rec 900ms var(--ease-out) 1500ms backwards; }
  @keyframes fp-rec { from { stroke-dasharray: 0 200; } }
  /* (Comète « paquet de données » retirée : artefact qui bouclait le long de la courbe.) */
  /* Jalons : pop-in séquencé derrière le tracé, halo au survol de l'étape */
  .fp-node { transform-box: fill-box; transform-origin: center; }
  .flightpath.visible .fp-n1 { animation: fp-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1) 580ms backwards; }
  .flightpath.visible .fp-n2 { animation: fp-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1) 940ms backwards; }
  .flightpath.visible .fp-n3 { animation: fp-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1) 1300ms backwards; }
  .flightpath.visible .fp-n4 { animation: fp-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1) 1660ms backwards; }
  @keyframes fp-pop { from { opacity: 0; transform: scale(0.3); } }
  .fp-ring {
    stroke: rgba(82,144,203,0.35); fill: none;
    transition: stroke 360ms var(--ease-out);
  }
  .fp-core {
    fill: var(--bg-1); stroke: var(--accent-hi); stroke-width: 1.4;
    transition: fill 360ms var(--ease-out), filter 360ms var(--ease-out);
  }
  /* Jalon actif : lueur diffuse + anneau affirmé (plus de glow brut) */
  .fp-n1 .fp-core { fill: var(--accent-hi); filter: drop-shadow(0 0 4px rgba(82,144,203,0.45)); }
  .fp-n1 .fp-ring { stroke: rgba(82,144,203,0.6); }
  /* Arrivée cloud : glyphe + halo au bout du tracé — le but du voyage */
  .fp-tag-cloud { fill: var(--accent-hi); }
  .fp-cloud-ic { stroke: var(--accent-hi); stroke-width: 1.6; fill: none; stroke-linejoin: round; stroke-linecap: round; opacity: 0.9; }
  .fp-end-glow { fill: rgba(82,144,203,0.10); }
  .fp-end-dot { fill: var(--accent-hi); filter: drop-shadow(0 0 6px rgba(82,144,203,0.55)); }
  .flightpath.visible .fp-end { animation: fp-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1) 1950ms backwards; }
  /* Descentes pointillées jalons → étapes */
  .fp-drop {
    stroke: rgba(46,114,186,0.30); stroke-width: 1; stroke-dasharray: 0.1 7;
    stroke-linecap: round;
    transition: stroke 360ms var(--ease-out);
  }
  /* Hover étape k → progression jusqu'au jalon k + jalon allumé + descente accentuée */
  .process:has(.fp-step:nth-child(2):hover) .flightpath { --fp-reach: 37.6; }
  .process:has(.fp-step:nth-child(3):hover) .flightpath { --fp-reach: 62.6; }
  .process:has(.fp-step:nth-child(4):hover) .flightpath { --fp-reach: 87.7; }
  .process:has(.fp-step:nth-child(2):hover) .fp-n2 .fp-core,
  .process:has(.fp-step:nth-child(3):hover) .fp-n3 .fp-core,
  .process:has(.fp-step:nth-child(4):hover) .fp-n4 .fp-core {
    fill: var(--accent-hi); filter: drop-shadow(0 0 4px rgba(82,144,203,0.45));
  }
  .process:has(.fp-step:nth-child(2):hover) .fp-n2 .fp-ring,
  .process:has(.fp-step:nth-child(3):hover) .fp-n3 .fp-ring,
  .process:has(.fp-step:nth-child(4):hover) .fp-n4 .fp-ring { stroke: rgba(82,144,203,0.6); }
  .process:has(.fp-step:nth-child(1):hover) .fp-drop-1,
  .process:has(.fp-step:nth-child(2):hover) .fp-drop-2,
  .process:has(.fp-step:nth-child(3):hover) .fp-drop-3,
  .process:has(.fp-step:nth-child(4):hover) .fp-drop-4 { stroke: rgba(82,144,203,0.55); }
  /* Étapes : rangée de 4, chaque carte amarrée à sa descente par un port */
  .fp-steps {
    --fpg: clamp(12px, 1.6vw, 18px);
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--fpg);
  }
  /* Les descentes tombent à 12.5/37.5/62.5/87.5% de la rangée ; les centres
     de cartes en dévient de g(5−2i)/8 à cause des gouttières → on recale
     chaque port exactement dans l'axe de sa descente. */
  .fp-step:nth-child(1)::before { left: calc(50% + var(--fpg) * 0.375); }
  .fp-step:nth-child(2)::before { left: calc(50% + var(--fpg) * 0.125); }
  .fp-step:nth-child(3)::before { left: calc(50% - var(--fpg) * 0.125); }
  .fp-step:nth-child(4)::before { left: calc(50% - var(--fpg) * 0.375); }
  .fp-step {
    position: relative;
    padding: 18px 18px 20px;
    border: 1px solid var(--line-2); border-radius: 12px;
    background:
      radial-gradient(120% 70% at 50% -12%, rgba(82,144,203,0.06) 0%, transparent 58%),
      linear-gradient(180deg, rgba(255,255,255,0.030) 0%, rgba(255,255,255,0.008) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.05),
      0 16px 32px -26px rgba(0,0,0,0.65);
    transition: border-color 460ms var(--ease-expo), transform 460ms var(--ease-expo),
                box-shadow 460ms var(--ease-expo);
  }
  .fp-step::before {   /* port d'amarrage, dans l'axe de la descente */
    content: ""; position: absolute; top: -4.5px; left: 50%;
    width: 8px; height: 8px; border-radius: 50%;
    transform: translateX(-50%);
    background: var(--bg-1); border: 1px solid var(--accent-hi);
    box-shadow: 0 0 0 3px rgba(82,144,203,0.08), 0 0 6px rgba(82,144,203,0.25);
    transition: background 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  }
  .fp-step:hover {
    transform: translateY(-4px);
    border-color: rgba(82,144,203,0.42);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.06),
      0 22px 44px -28px rgba(82,144,203,0.38);
  }
  .fp-step:first-child::before,
  .fp-step:hover::before {
    background: var(--accent-hi);
    box-shadow: 0 0 0 4px rgba(82,144,203,0.14), 0 0 10px rgba(82,144,203,0.4);
  }
  .fp-ref {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 10px;
    white-space: nowrap;
  }
  .fp-ref em { color: var(--accent-hi); }
  /* Fenêtre étroite de la rangée 4 colonnes : densité mono resserrée pour que
     « PALIER 04 · CROISIÈRE » tienne sans déborder de la carte. */
  @media (min-width: 821px) and (max-width: 960px) {
    .fp-ref { font-size: 9.5px; letter-spacing: 0.10em; gap: 6px; }
  }
  .fp-step h3 { font-size: 16.5px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-1); margin: 0 0 6px; }
  .fp-step p { font-size: 13.5px; line-height: 1.55; color: var(--text-2); }
  @media (max-width: 820px) {
    .fp-sky { display: none; }
    .fp-steps { position: relative; grid-template-columns: 1fr; gap: 12px; padding-left: 26px; }
    .fp-steps::before {   /* épine d'ascension verticale (fallback mobile) */
      content: ""; position: absolute; top: 4px; bottom: 4px; left: 4px; width: 1px;
      background: repeating-linear-gradient(180deg, rgba(46,114,186,0.45) 0 5px, transparent 5px 11px);
      -webkit-mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
              mask-image: linear-gradient(180deg, transparent, #000 6%, #000 94%, transparent);
    }
    .fp-steps .fp-step:nth-child(n)::before { top: 24px; left: -26px; transform: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .fp-route { stroke-dashoffset: 0; transition: none; }
    .flightpath.visible .fp-progress,
    .flightpath.visible .fp-n1, .flightpath.visible .fp-n2,
    .flightpath.visible .fp-n3, .flightpath.visible .fp-n4,
    .flightpath.visible .fp-end { animation: none; }
    .flightpath { transition: none; }
  }

  /* --- CTA — style maison (commun aux pôles) : icône à gauche + corps
     (titre + sous-titre + actions avec téléphone). Halo accent à gauche,
     fade à droite. --- */
  .cta-section {
    padding: clamp(40px, 5vw, 72px) 0; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 85%);
            mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 85%);
  }
  .cta-section::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(60% 110% at 0% 50%, rgba(46,114,186,0.15) 0%, rgba(46,114,186,0.07) 28%, rgba(46,114,186,0.022) 52%, transparent 72%),
      linear-gradient(90deg, rgba(46,114,186,0.07) 0%, rgba(46,114,186,0.022) 18%, transparent 38%);
  }
  .cta-frame { position: relative; z-index: 2; padding: 0; }
  .cta-inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: row; align-items: center;
    gap: clamp(20px, 3vw, 40px); max-width: 760px; margin: 0;
  }
  .cta-icon { flex-shrink: 0; width: clamp(106px, 13.5vw, 158px); height: auto; margin: 0; color: var(--accent); display: block; overflow: visible; }
  .cta-icon .cta-vig-ping {
    transform-origin: 60px 60px;
    animation: ctaVigPing 3.4s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
  }
  @keyframes ctaVigPing {
    0%   { transform: scale(0.55); opacity: 0.45; }
    70%  { transform: scale(1.05); opacity: 0.08; }
    100% { transform: scale(1.15); opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .cta-icon .cta-vig-ping { animation: none; opacity: 0.25; }
  }
  .cta-body { display: flex; flex-direction: column; align-items: flex-start; text-align: left; min-width: 0; }
  .cta-title { font-size: clamp(24px, 3vw, 36px); font-weight: 500; line-height: 1.08; letter-spacing: -0.035em; color: var(--text-1); margin: 0 0 10px; }
  .cta-title em { font-style: normal; color: var(--accent); font-weight: 500; }
  .cta-sub { font-size: 14.5px; color: var(--text-2); line-height: 1.55; max-width: 540px; margin: 0 0 20px; letter-spacing: -0.005em; }
  .cta-actions { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: flex-start; gap: 18px; }
  .cta-actions-divider { width: 1px; height: 18px; background: var(--line-2); }
  .cta-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-3); font-family: var(--font-mono); letter-spacing: 0.04em; }
  .cta-phone-num { color: var(--text-1); font-weight: 500; border-bottom: 1px solid var(--line-3); transition: border-color 180ms ease, color 180ms ease; }
  .cta-phone-num:hover { color: var(--accent-hi); border-bottom-color: var(--accent); }
  @media (max-width: 640px) { .cta-inner { gap: 14px; } .cta-icon { width: clamp(82px, 22vw, 120px); } .cta-actions { gap: 14px; } }

/* ==================================================================
   Ex-bloc inline <style id="jcd-mpolish-css"> - externalise le 2026-08-07
   ================================================================== */

@media (max-width:820px){
  /* Lisibilite : gris muets remontes au seuil WCAG AA sur fond sombre (#0a0a0a) */
  :root{ --text-3:#8f8f8f; --text-4:#8a8a8a; }
  /* Tap targets plus genereux sur les surfaces tappables principales */
  .footer-link{ display:inline-flex; align-items:center; min-height:40px; }
  .ct-level{ min-height:38px; }

  /* jcd-bg-restored: heros animes visibles sur mobile (parite web) */
}
/* Catalogue formation : toolbar empilee + chips filtrables en scroll + cartes pleine largeur */
@media (max-width:640px){
  .cat-toolbar{ top:70px; }
  .cat-toolbar-shell{ flex-direction:column; align-items:stretch; gap:9px; }
  .ct-search{ flex:1 1 auto; min-width:0; width:100%; }
  .ct-levels{ display:flex; width:100%; min-width:0; flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; gap:6px; padding-bottom:2px; scrollbar-width:none; }
  .ct-levels::-webkit-scrollbar{ display:none; }
  .ct-level{ flex:0 0 auto; }
  .fcat-grid{ grid-template-columns:1fr !important; }
}

/* ==================================================================
   Ex-bloc inline <style id="jcd-xpcompact-css"> - externalise le 2026-08-07
   ================================================================== */

@media (max-width:820px){
  /* Mini-sommaire d'ancres sous le hero */
  .jcd-xpnav{ display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; padding:16px 20px 2px; margin:0; -webkit-overflow-scrolling:touch; }
  .jcd-xpnav::-webkit-scrollbar{ display:none; }
  .jcd-xpnav a{ flex:0 0 auto; display:inline-flex; align-items:center; gap:7px; padding:9px 15px; border-radius:999px; border:1px solid rgba(255,255,255,.13); background:rgba(255,255,255,.045); color:#f4f4f4; font-size:13px; font-weight:600; text-decoration:none; letter-spacing:-.01em; }
  .jcd-xpnav a:active{ background:rgba(255,255,255,.09); }
  .jcd-xpnav .jcd-xpdot{ width:6px; height:6px; border-radius:999px; background:var(--accent,#9a9a9a); }
  #prestations, #process, #contact{ scroll-margin-top:74px; }
  /* layout prestations en pile pleine largeur sur mobile (sinon la grille force une colonne > viewport) */
  .prest-layout{ display:block !important; }

  /* Prestations -> accordeon compact (glyph badge masque = moins graphique) */
  .prest-item{ display:block !important; padding:0 !important; min-height:0 !important; cursor:pointer; position:relative; }
  .prest-item-head{ display:none !important; }
  .prest-item-title{ margin:0 !important; padding:16px 42px 16px 18px !important; font-size:15.5px !important; line-height:1.3 !important; }
  .prest-item-desc{ max-height:0; overflow:hidden; opacity:0; margin:0 !important; padding:0 18px !important; font-size:14px !important; color:var(--text-2,#b8b8b8); transition:max-height .42s cubic-bezier(.32,.72,0,1), opacity .3s ease, padding-bottom .3s ease; }
  .prest-item.jcd-open .prest-item-desc{ opacity:1; padding-bottom:16px !important; }
  .prest-item::after{ content:''; position:absolute; right:18px; top:21px; width:7px; height:7px; border-right:1.6px solid #9a9a9a; border-bottom:1.6px solid #9a9a9a; transform:rotate(45deg); transition:transform .42s cubic-bezier(.32,.72,0,1); }
  .prest-item.jcd-open::after{ transform:rotate(-135deg); }
  /* CTA Telecom : suit l'accordeon (masque tant que la card est repliee) */
  .prest-cta{ display:none !important; margin:0 !important; padding:0 18px 16px !important; }
  .prest-item.jcd-open .prest-cta{ display:inline-flex !important; }

  /* Logos partenaires -> bande horizontale defilante (deplacee apres les competences via JS) */
  .prest-aside-partners{ margin-top:22px !important; }
  .prest-aside-partners-grid{ display:flex !important; grid-template-columns:none !important; gap:8px !important; overflow-x:auto !important; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding-bottom:4px; scroll-snap-type:x proximity; }
  .prest-aside-partners-grid::-webkit-scrollbar{ display:none; }
  .prest-aside-partners .logo-tile{ flex:0 0 auto !important; width:102px !important; scroll-snap-align:start; }

  /* Process "Notre methode" -> accordeon (moins schematique) + diagramme masque */
  .pf-vsvg{ display:none !important; }
  .pf-vcards{ display:block !important; }
  .pf-vcard{ display:block !important; min-height:0 !important; min-width:0 !important; padding:0 !important; margin:0 0 8px !important; cursor:pointer; position:relative; }
  .pf-vcard-head, .pf-vcard-num, .pf-vcard-fade{ display:none !important; }
  .pf-vcard-title{ margin:0 !important; padding:16px 42px 16px 18px !important; font-size:15.5px !important; line-height:1.3 !important; }
  .pf-vcard-desc{ max-height:0; overflow:hidden; opacity:0; margin:0 !important; padding:0 18px !important; font-size:14px !important; color:var(--text-2,#b8b8b8); transition:max-height .42s cubic-bezier(.32,.72,0,1), opacity .3s ease, padding-bottom .3s ease; }
  .pf-vcard.jcd-open .pf-vcard-desc{ opacity:1; padding-bottom:16px !important; }
  .pf-vcard::after{ content:''; position:absolute; right:18px; top:21px; width:7px; height:7px; border-right:1.6px solid #9a9a9a; border-bottom:1.6px solid #9a9a9a; transform:rotate(45deg); transition:transform .42s cubic-bezier(.32,.72,0,1); }
  .pf-vcard.jcd-open::after{ transform:rotate(-135deg); }
}
@media (min-width:821px){ .jcd-xpnav{ display:none !important; } }

/* ==================================================================
   Ex-bloc inline <style id="jcd-infocompact-css"> - externalise le 2026-08-07
   ================================================================== */

@media (max-width:820px){
  /* Secblock : illustration decorative masquee, on garde le texte du head */
  .skywatch, .seclink, .defense, .seclife-points{ display:none !important; }
  /* Process info : diagrammes/decors masques */
  .fp-sky, .bp-frame, .regie-track, .atelier-belt, .station-art{ display:none !important; }
  /* Conteneurs d'etapes : pile pleine largeur, positionnement neutralise */
  .fp-steps, .regie-steps, .atelier-steps, .blueprint{ display:block !important; position:static !important; padding:0 !important; margin:0 !important; }
  /* Etapes -> lignes d'accordeon */
  .fp-step, .bp-step, .regie-steps .clip, .atelier-steps .station{
    display:block !important; position:relative !important; left:auto !important; right:auto !important; top:auto !important; bottom:auto !important; transform:none !important;
    width:auto !important; max-width:none !important; min-width:0 !important; margin:0 0 8px !important; padding:0 !important; cursor:pointer;
    background:rgba(255,255,255,.025); border:1px solid rgba(255,255,255,.09); border-radius:12px;
  }
  .fp-step::before, .bp-step::before{ display:none !important; }
  .fp-ref, .bp-ref, .clip-chip, .station-ref{ display:none !important; }
  .fp-step h3, .bp-step h3, .regie-steps .clip h3, .atelier-steps .station h3{ margin:0 !important; padding:15px 42px 15px 16px !important; font-size:15px !important; line-height:1.3 !important; }
  .fp-step p, .bp-step p, .regie-steps .clip p, .atelier-steps .station p{
    max-height:0; overflow:hidden; opacity:0; margin:0 !important; padding:0 16px !important; font-size:13.5px !important; color:var(--text-2,#b8b8b8);
    transition:max-height .42s cubic-bezier(.32,.72,0,1), opacity .3s ease, padding-bottom .3s ease;
  }
  .fp-step.jcd-iopen p, .bp-step.jcd-iopen p, .regie-steps .clip.jcd-iopen p, .atelier-steps .station.jcd-iopen p{ opacity:1; padding-bottom:15px !important; }
  .fp-step::after, .bp-step::after, .regie-steps .clip::after, .atelier-steps .station::after{
    content:''; position:absolute; right:16px; top:20px; width:7px; height:7px; border-right:1.6px solid #9a9a9a; border-bottom:1.6px solid #9a9a9a; transform:rotate(45deg); transition:transform .42s cubic-bezier(.32,.72,0,1);
  }
  .fp-step.jcd-iopen::after, .bp-step.jcd-iopen::after, .regie-steps .clip.jcd-iopen::after, .atelier-steps .station.jcd-iopen::after{ transform:rotate(-135deg); }
}

/* ==================================================================
   Ex-bloc inline <style id="jcd-ctamob-css"> - externalise le 2026-08-07
   ================================================================== */

@media (max-width:820px){
  /* Le fondu de droite (mask desktop) effacait le texte et le bouton sur mobile -> on le retire */
  .cta-section{ -webkit-mask-image:none !important; mask-image:none !important; }
  /* Layout empile : icone en haut, contenu pleine largeur (au lieu de icone | texte comprime a droite) */
  .cta-inner{ flex-direction:column !important; align-items:flex-start !important; gap:15px !important; max-width:none !important; }
  .cta-icon{ width:clamp(52px,15vw,70px) !important; }
  .cta-body{ width:100%; }
  .cta-title,.cta-sub{ max-width:none !important; }
  /* separateur vertical bouton|telephone : sans objet une fois empile */
  .cta-actions-divider{ display:none !important; }
  .cta-actions{ gap:13px 16px !important; }
}

/* ==================================================================
   Ex-bloc inline <style id="jcd-pagefade-css"> - externalise le 2026-08-07
   ================================================================== */

/* JCD - Transition de page pilotee en JS (pole Informatique).
   Un voile sombre couvre le dernier rendu avant navigation et le premier
   rendu apres : aucun cadre blanc ne peut apparaitre entre deux pages, meme
   si le navigateur saute la View Transition. On neutralise donc les View
   Transitions cross-document (la derniere regle @view-transition l'emporte)
   pour que le voile soit la seule transition. */
@view-transition { navigation: none; }
#jcd-pagefade {
  position: fixed; inset: 0; z-index: 2147483647;
  background: #0a0a0a; opacity: 0; pointer-events: none;
}
html.jcd-nav-in #jcd-pagefade { animation: jcd-pagefade-reveal 280ms var(--ease-out) both; }
@keyframes jcd-pagefade-reveal { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  html.jcd-nav-in #jcd-pagefade { animation-duration: 1ms; }
}
