/* =========================================================================
   SEYES - FEUILLE DE STYLE UNIQUE
   Source de vérité pour tout le site. Un seul fichier, chargé par toutes
   les pages : <link rel="stylesheet" href="styles/site.css">

   SOMMAIRE
     1.  Tokens (couleurs, typo, espacements, ombres, mouvement)
     2.  Reset et base
     3.  Mise en page (container, sections, surfaces, grilles)
     4.  Typographie
     5.  Boutons
     6.  Composants système (tags, cartes, motifs, marquee, révélation)
     7.  Chrome du site (curseur, header, méga-menu, menu mobile, footer, modale)
     8.  Blocs de la page d'accueil
     9.  Blocs communs aux pages intérieures        (préfixe .sp-)
     10. Blocs des pages Expertises                 (préfixe .ex-)
     11. Bloc « produit d'appel » et vis-à-vis      (.sy-produit / .sy-visavis)
     12. Système graphique ocre « Relief »
     13. Page Réalisations                          (préfixe .rz-)

   CONVENTIONS DE NOMMAGE
     .sy-*    composant du design system, réutilisable partout
     .site-*  chrome du site (header, menu, footer, curseur)
     .sp-*    bloc de page intérieure (hero, grilles, cartes, méthode, contact)
     .ex-*    bloc propre aux pages Expertises
     .rz-*    bloc propre à la page Réalisations
     .ia-*    bloc propre à la page IA & innovation
     .is-*    état piloté par JavaScript (is-open, is-in, is-active)
     .sy-reveal + data-reveal-delay : apparition au défilement (app.js)
   ========================================================================= */


/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
   :root {
    /* Couleurs — palette restreinte */
    --sy-ink:        #070A0E;   /* fond sombre principal */
    --sy-ink-2:      #0C1114;   /* fond sombre alternatif */
    --sy-ink-3:      #12191E;   /* surface sombre relief */
    --sy-ink-4:      #141B1F;   /* carte sombre */
    --sy-cream:      #FDFBF7;   /* fond clair principal */
    --sy-cream-2:    #F1ECE2;   /* surface claire relief */
    --sy-cyan:       #16C1E8;   /* accent principal */
    --sy-cyan-2:     #5AD7F5;   /* accent clair */
    --sy-cyan-ink:   #0E9BC4;   /* accent lisible sur fond clair */
    --sy-cyan-deep:  #04222B;   /* texte sur bouton cyan */
  
    /* Texte */
    --sy-fg:            var(--sy-ink);
    --sy-fg-on-dark:    var(--sy-cream);
    --sy-fg-muted:      rgba(7,10,14,.62);
    --sy-fg-muted-dark: rgba(255,255,255,.7);
  
    /* Lignes / bordures */
    --sy-hair:        rgba(7,10,14,.12);
    --sy-hair-dark:   rgba(253,251,247,.14);
    --sy-line-cyan:   rgba(22,193,232,.35);
  
    /* Typographies */
    --sy-font-display: "DM Sans", system-ui, sans-serif;
    --sy-font-body:    "Satoshi", system-ui, sans-serif;
    --sy-font-mono:    "JetBrains Mono", ui-monospace, monospace;
  
    /* Échelle typographique fluide */
    --sy-fs-hero:  clamp(2.8rem, 8.5vw, 8.5rem);
    --sy-fs-h1:    clamp(2rem, 6vw, 5rem);
    --sy-fs-h2:    clamp(2rem, 5.5vw, 4.4rem);
    --sy-fs-h3:    clamp(1.8rem, 4vw, 3.4rem);
    --sy-fs-lead:  clamp(1.05rem, 1.6vw, 1.4rem);
    --sy-fs-body:  clamp(1rem, 1.3vw, 1.2rem);
    --sy-fs-sm:    0.875rem;
    --sy-fs-kicker: 0.6875rem;   /* 11px */
  
    /* Espacements (échelle 4pt) */
    --sy-1: 4px;   --sy-2: 8px;   --sy-3: 12px;  --sy-4: 16px;
    --sy-5: 24px;  --sy-6: 32px;  --sy-7: 48px;  --sy-8: 64px;
    --sy-9: 96px;  --sy-10: 144px;
  
    /* Rythme de section */
    --sy-section-y: clamp(80px, 12vw, 150px);
    --sy-gutter:    clamp(18px, 4vw, 44px);
    --sy-maxw:      1240px;
  
    /* Rayons */
    --sy-r-sm: 6px;  --sy-r-md: 10px;  --sy-r-lg: 14px;  --sy-r-xl: 16px;
    --sy-r-pill: 999px;
  
    /* Ombres (relief néomorphique) */
    --sy-shadow-raise-dark:  6px 6px 15px rgba(0,0,0,.55), -5px -5px 13px rgba(255,255,255,.045);
    --sy-shadow-raise-light: 6px 6px 15px rgba(0,18,20,.13), -5px -5px 13px rgba(255,255,255,.92);
    --sy-shadow-card:        0 22px 44px rgba(0,0,0,.4);
    --sy-shadow-cyan:        0 9px 20px rgba(22,193,232,.34);
  
    /* Mouvement */
    --sy-ease:      cubic-bezier(.2,.7,.2,1);
    --sy-ease-io:   cubic-bezier(.6,0,.2,1);
    --sy-dur-fast:  .18s;
    --sy-dur:       .28s;
    --sy-dur-slow:  .7s;
  
    --sy-z-header: 500;
    --sy-z-menu:   800;
    --sy-z-cursor: 9999;
  
    /* Ocre - accents graphiques et éditoriaux (le cyan reste la couleur d'interface) */
    --sy-ocre:      #E0A32E;  /* accent graphique principal */
    --sy-ocre-2:    #F2C368;  /* variante claire, sur fond sombre */
    --sy-ocre-ink:  #A6741A;  /* lisible sur fond crème */
    --sy-ocre-deep: #2A1D05;  /* texte sur aplat ocre */
    --sy-ocre-line: rgba(224,163,46,.34);
    --sy-ocre-wash: rgba(224,163,46,.09);
  }
  
  /* -------------------------------------------------------------------------
     2. RESET / BASE
     ------------------------------------------------------------------------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    background: var(--sy-ink);
    color: var(--sy-fg-on-dark);
    font-family: var(--sy-font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img, svg, canvas, video { display: block; max-width: 100%; }
  a { color: var(--sy-cyan); text-decoration: none; }
  a:hover { color: var(--sy-cyan-2); }
  h1, h2, h3, h4, p, figure, blockquote, ul { margin: 0; }
  ul { padding: 0; list-style: none; }
  button { font: inherit; cursor: pointer; }
  :focus-visible { outline: 2px solid var(--sy-cyan); outline-offset: 3px; border-radius: 2px; }
  ::selection { background: var(--sy-cyan); color: var(--sy-ink); }
  
  /* Lien d'évitement (RGAA) */
  .sy-skip {
    position: absolute; left: -9999px; top: 0; z-index: calc(var(--sy-z-menu) + 1);
    background: var(--sy-cyan); color: var(--sy-ink);
    padding: 12px 20px; border-radius: 0 0 var(--sy-r-sm) 0;
    font-family: var(--sy-font-mono); font-size: var(--sy-fs-sm);
  }
  .sy-skip:focus { left: 0; }
  
  .sy-visually-hidden {
    position: absolute !important; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  
  /* -------------------------------------------------------------------------
     3. LAYOUT
     ------------------------------------------------------------------------- */
  .sy-container { width: 100%; max-width: var(--sy-maxw); margin-inline: auto; padding-inline: var(--sy-gutter); }
  .sy-section   { position: relative; overflow: hidden; padding-block: var(--sy-section-y); }
  .sy-section--tight { padding-block: clamp(56px, 7vw, 92px); }
  
  /* Surfaces */
  .sy-surface-dark  { background: var(--sy-ink);   color: var(--sy-fg-on-dark); }
  .sy-surface-dark2 { background: var(--sy-ink-2); color: var(--sy-fg-on-dark); }
  .sy-surface-light { background: var(--sy-cream); color: var(--sy-fg); }
  .sy-surface-white { background: #fff; color: var(--sy-fg); }
  
  .sy-grid { display: grid; gap: clamp(16px, 2vw, 24px); }
  .sy-cols-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  
  /* -------------------------------------------------------------------------
     4. TYPOGRAPHIE
     ------------------------------------------------------------------------- */
  .sy-display { font-family: var(--sy-font-display); font-weight: 800; font-size: var(--sy-fs-hero); line-height: .94; letter-spacing: -.02em; }
  .sy-h1 { font-family: var(--sy-font-display); font-weight: 800; font-size: var(--sy-fs-h1); line-height: 1.02; letter-spacing: -.015em; }
  .sy-h2 { font-family: var(--sy-font-display); font-weight: 700; font-size: var(--sy-fs-h2); line-height: 1.04; letter-spacing: -.015em; }
  .sy-h3 { font-family: var(--sy-font-display); font-weight: 700; font-size: var(--sy-fs-h3); line-height: 1; letter-spacing: -.015em; }
  .sy-h4 { font-family: var(--sy-font-display); font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.12; letter-spacing: -.01em; }
  .sy-lead { font-family: var(--sy-font-body); font-size: var(--sy-fs-lead); line-height: 1.55; }
  .sy-body { font-family: var(--sy-font-body); font-size: var(--sy-fs-body); line-height: 1.65; }
  .sy-body-sm { font-family: var(--sy-font-body); font-size: var(--sy-fs-sm); line-height: 1.6; }
  .sy-accent { color: var(--sy-cyan); }
  .sy-accent-ink { color: var(--sy-cyan-ink); }
  
  /* Kicker / eyebrow — le seul moment tout-capitales */
  .sy-kicker {
    display: inline-flex; align-items: center; gap: var(--sy-3);
    font-family: var(--sy-font-mono); font-size: var(--sy-fs-kicker);
    letter-spacing: .2em; text-transform: uppercase; color: var(--sy-cyan-ink);
  }
  .sy-surface-dark .sy-kicker, .sy-surface-dark2 .sy-kicker { color: var(--sy-cyan); }
  .sy-kicker::before { content: ""; width: 40px; height: 1px; background: currentColor; opacity: .55; }
  .sy-kicker--plain::before { display: none; }
  
  /* En-tête de section : kicker, puis titre, puis chapô.
     Ces trois règles remplacent les styles inline autrefois posés sur chaque page. */
  .sy-kicker + h2 { margin-top: 22px; }
  .sy-kicker + h2 + p { margin-top: 20px; max-width: 66ch; }
  .sy-surface-dark .sy-kicker + h2 + p,
  .sy-surface-dark2 .sy-kicker + h2 + p { color: rgba(255,255,255,.8); }
  
  /* -------------------------------------------------------------------------
     5. BOUTONS  (3 variantes retenues)
       .sy-btn--cyan   : skeuomorphe cyan, texte noir (CTA primaire)
       .sy-btn--light  : relief clair, survol fond noir / texte blanc (CTA secondaire)
       .sy-btn--ghost  : verre embossé, liens discrets
     ------------------------------------------------------------------------- */
  .sy-btn {
    display: inline-flex; align-items: center; gap: var(--sy-3);
    padding: 15px 28px; border: none; border-radius: var(--sy-r-lg);
    font-family: var(--sy-font-display); font-weight: 700; font-size: 15px;
    letter-spacing: .005em; text-decoration: none;
    transition: transform var(--sy-dur) var(--sy-ease), box-shadow var(--sy-dur) ease,
                color .2s ease, background .2s ease, border-color .2s ease;
  }
  .sy-btn__arrow { display: inline-block; transition: transform var(--sy-dur-fast) ease; }
  .sy-btn:hover .sy-btn__arrow { transform: translateX(4px); }
  
  .sy-btn--cyan {
    background: linear-gradient(180deg, #25d0f6, #12b1d7); color: var(--sy-cyan-deep);
    box-shadow: var(--sy-shadow-cyan), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 5px rgba(4,34,43,.22);
  }
  .sy-btn--cyan:hover { transform: translateY(-4px); color: var(--sy-cyan-deep);
    box-shadow: 0 18px 36px rgba(22,193,232,.5), inset 0 1px 0 rgba(255,255,255,.7), inset 0 -2px 5px rgba(4,34,43,.28); }
  .sy-btn--cyan:active { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(22,193,232,.4), inset 0 3px 9px rgba(4,34,43,.4); }
  
  .sy-btn--light { background: var(--sy-cream-2); color: #0A1418; /* box-shadow: var(--sy-shadow-raise-light);*/ }
  .sy-btn--light:hover { transform: translateY(-4px); background: #0A1418; color: var(--sy-cream); box-shadow: 0 16px 30px rgba(0,18,20,.32); }
  .sy-btn--light:active { transform: translateY(-1px); box-shadow: inset 5px 5px 12px rgba(0,18,20,.15), inset -4px -4px 10px #fff; }
  
  .sy-btn--ghost { background: rgba(255,255,255,.035); color: var(--sy-cream); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 3px 8px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07); }
  .sy-btn--ghost:hover { transform: translateY(-4px); color: var(--sy-cyan); border-color: rgba(22,193,232,.55); box-shadow: 0 15px 28px rgba(0,0,0,.5), 0 0 0 1px rgba(22,193,232,.25), inset 0 1px 0 rgba(255,255,255,.1); }
  .sy-btn--ghost:active { transform: translateY(-1px); box-shadow: inset 0 3px 9px rgba(0,0,0,.45); }
  /* variante ghost pour fond clair */
  .sy-surface-light .sy-btn--ghost { background: rgba(7,10,14,.03); color: var(--sy-ink); border-color: rgba(7,10,14,.18); box-shadow: 0 2px 6px rgba(7,10,14,.08); }
  .sy-surface-light .sy-btn--ghost:hover { color: var(--sy-cyan-ink); border-color: rgba(22,193,232,.5); }
  .sy-surface-white .sy-btn--ghost { background: rgba(7,10,14,.03); color: var(--sy-ink); border-color: rgba(7,10,14,.18); box-shadow: 0 2px 6px rgba(7,10,14,.08); }
  .sy-surface-white .sy-btn--ghost:hover { color: var(--sy-cyan-ink); border-color: rgba(22,193,232,.5); }
  
  .sy-btn--pill { border-radius: var(--sy-r-pill); padding: 11px 20px; font-family: var(--sy-font-body); font-size: 13.5px; }
  
  /* -------------------------------------------------------------------------
     6. COMPOSANTS
     ------------------------------------------------------------------------- */
  /* Tag / chip */
  .sy-tag {
    display: inline-block; font-family: var(--sy-font-mono); font-size: 11.5px;
    letter-spacing: .05em; padding: 7px 13px; border-radius: var(--sy-r-pill);
    border: 1px solid var(--sy-hair); color: var(--sy-fg-muted);
  }
  .sy-surface-dark .sy-tag, .sy-surface-dark2 .sy-tag { border-color: rgba(253,251,247,.18); color: rgba(255,255,255,.86); }
  .sy-tag--label { border-radius: var(--sy-r-sm); text-transform: uppercase; letter-spacing: .06em; color: var(--sy-cyan); border-color: var(--sy-line-cyan); }
  .sy-taglist { display: flex; flex-wrap: wrap; gap: 8px 10px; }
  
  /* Carte relief */
  .sy-card { border-radius: var(--sy-r-lg); padding: clamp(24px, 2.6vw, 36px); transition: transform var(--sy-dur) var(--sy-ease), box-shadow var(--sy-dur) ease, background var(--sy-dur) ease; }
  .sy-card--dark  { background: var(--sy-ink-3); box-shadow: 9px 9px 22px rgba(0,0,0,.55), -8px -8px 20px rgba(255,255,255,.028); }
  .sy-card--dark:hover  { transform: translateY(-4px); background: var(--sy-ink-4); box-shadow: 16px 16px 34px rgba(0,0,0,.62), -12px -12px 28px rgba(255,255,255,.05), inset 0 1px 0 rgba(255,255,255,.07); }
  .sy-card--light { background: #FFFAF0; border: 1px solid var(--sy-hair); box-shadow: var(--sy-shadow-raise-light); }
  .sy-card--light:hover { transform: translateY(-4px); box-shadow: 14px 14px 30px rgba(0,18,20,.15), -9px -9px 24px #fff; }
  .sy-card--outline { border: 1px solid var(--sy-line-cyan); border-radius: var(--sy-r-sm); background: rgba(0,18,20,.4); }
  
  /* Une carte claire impose son propre contexte, même dans une section sombre */
  .sy-surface-dark .sy-card--light,
  .sy-surface-dark2 .sy-card--light { color: var(--sy-fg); }
  .sy-surface-dark .sy-card--light h3, .sy-surface-dark .sy-card--light h4,
  .sy-surface-dark .sy-card--light .sy-h3, .sy-surface-dark .sy-card--light .sy-h4,
  .sy-surface-dark2 .sy-card--light h3, .sy-surface-dark2 .sy-card--light h4,
  .sy-surface-dark2 .sy-card--light .sy-h3, .sy-surface-dark2 .sy-card--light .sy-h4 { color: var(--sy-fg); }
  .sy-surface-dark .sy-card--light p, .sy-surface-dark2 .sy-card--light p { color: rgba(0,18,20,.72); }
  .sy-surface-dark .sy-card--light .sy-tag,
  .sy-surface-dark2 .sy-card--light .sy-tag { color: var(--sy-fg-muted); border-color: var(--sy-hair); }
  .sy-surface-dark .sy-card--light .sy-tag--label,
  .sy-surface-dark2 .sy-card--light .sy-tag--label { color: var(--sy-cyan-ink); border-color: rgba(22,193,232,.34); }
  .sy-surface-dark .sy-card--light .ex-num,
  .sy-surface-dark2 .sy-card--light .ex-num { color: var(--sy-cyan-ink); }
  .sy-surface-dark .sy-card--light .ex-chips span,
  .sy-surface-dark2 .sy-card--light .ex-chips span { color: var(--sy-cyan-ink); background: rgba(22,193,232,.07); border-color: rgba(22,193,232,.28); }
  .sy-surface-dark .sy-card--light .ex-chips span:hover,
  .sy-surface-dark2 .sy-card--light .ex-chips span:hover { color: var(--sy-ink); }
  
  /* Logo well (fond clair pour logos transparents) */
  .sy-logo-well { display: flex; align-items: center; justify-content: center; padding: 8px 8px; background: transparent; border-radius: var(--sy-r-sm); }
  
  /* Motif blueprint (fond clair) — appliqué via .sy-blueprint sur une surface claire */
  .sy-blueprint > *, .sy-glow > .sy-container, .sy-gridlines > .sy-container { position: relative; z-index: 1; }
  .sy-blueprint::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(7,10,14,.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7,10,14,.06) 1px, transparent 1px),
      linear-gradient(rgba(7,10,14,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7,10,14,.03) 1px, transparent 1px);
    background-size: 132px 132px, 132px 132px, 33px 33px, 33px 33px;
    background-position: center;
  }
  /* Grille cyan discrète (fond sombre) */
  .sy-gridlines::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .3;
    background-image: linear-gradient(rgba(22,193,232,.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(22,193,232,.1) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  
  /* -------------------------------------------------------------------------
     7. ANIMATIONS
     ------------------------------------------------------------------------- */
  @keyframes sy-marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes sy-vscroll  { from { transform: translateY(0); } to { transform: translateY(-50%); } }
  @keyframes sy-scroll-hint { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(14px); opacity: 0; } }
  
  .sy-marquee { display: flex; width: max-content; }
  .sy-marquee__track { display: flex; align-items: center; }
  .sy-marquee--x .sy-marquee__track { animation: sy-marquee 36s linear infinite; }
  .sy-mask-x { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
                       mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .sy-mask-y { -webkit-mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent);
                       mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent); }
  
  /* Révélation au scroll — piloté par app.js (ajout de .is-in) */
  .sy-reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--sy-dur-slow) var(--sy-ease), transform var(--sy-dur-slow) var(--sy-ease); will-change: opacity, transform; }
  .sy-reveal.is-in { opacity: 1; transform: none; }
  
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .sy-reveal { opacity: 1; transform: none; }
  }
  
  
  /* =========================================================================
     7-8. CHROME DU SITE ET BLOCS D'ACCUEIL
     ========================================================================= */
  
  /* ---- Curseur personnalisé (pointeur fin uniquement) ---- */
  .site-cursor { display: none; }
  @media (pointer: fine) {
    .site-cursor { display: block; position: fixed; top: 0; left: 0; pointer-events: none; z-index: var(--sy-z-cursor); will-change: transform; }
    .site-cursor--ring { width: 34px; height: 34px; border: 2px solid rgba(22,193,232,.7); border-radius: 50%; transition: width .18s ease, height .18s ease, background .18s ease, border-color .18s ease; }
    .site-cursor--dot { width: 6px; height: 6px; background: var(--sy-cyan); border-radius: 50%; }
    .cursor-active { cursor: none; }
    .cursor-active a, .cursor-active button { cursor: none; }
  }
  
  /* ---- Lueur au survol des sections sombres ---- */
  .sy-glow { position: relative; }
  .sy-glow::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0; transition: opacity .5s ease;
    background: radial-gradient(460px circle at var(--mx,50%) var(--my,10%), rgba(22,193,232,.16), transparent 66%); }
  .sy-glow:hover::after { opacity: 1; }
  
  /* ---- Header ---- */
  .site-header { position: fixed; inset: 0 0 auto 0; z-index: var(--sy-z-header); display: flex; justify-content: center; padding: 18px clamp(12px,3vw,28px); }
  .site-header__bar { display: flex; align-items: center; gap: clamp(14px,2vw,28px); width: 100%; max-width: var(--sy-maxw);
    padding: 11px 11px 11px 24px; border-radius: var(--sy-r-pill); background: rgba(7,10,14,.85); backdrop-filter: blur(12px); border: 1px solid rgba(253,251,247,.1); }
  .site-logo { display: flex; align-items: center; margin-right: auto; }
  .site-logo img { height: 58px; width: auto; }
  .site-nav { display: flex; align-items: center; gap: clamp(14px,1.8vw,28px); }
  .site-navlink { font-family: var(--sy-font-body); font-size: 16px; font-weight: 500; color: rgba(255,255,255,.92); white-space: nowrap; transition: color .2s ease; display: inline-flex; align-items: center; gap: 6px; }
  .site-navlink:hover { color: var(--sy-cyan); }
  .site-navchev { font-size: 10px; opacity: .6; transition: transform .2s ease; }
  .site-navitem { position: relative; }
  .site-navitem:hover .site-navchev { transform: rotate(180deg); }
  .site-dropdown { position: absolute; top: 100%; left: 0; padding-top: 16px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .site-navitem:hover .site-dropdown, .site-navitem:focus-within .site-dropdown { opacity: 1; visibility: visible; transform: none; }
  .site-dropdown__inner { background: rgba(7,10,14,.96); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 10px; min-width: 250px; display: flex; flex-direction: column; gap: 2px; box-shadow: 0 24px 48px rgba(0,0,0,.5); }
  .site-dropitem { display: block; padding: 11px 16px; border-radius: 8px; font-family: var(--sy-font-body); font-size: 15px; color: rgba(255,255,255,.82); white-space: nowrap; transition: background .15s ease, color .15s ease; }
  .site-dropitem:hover { background: rgba(22,193,232,.14); color: var(--sy-cyan); }
  .site-burger { display: none; align-items: center; gap: 12px; padding: 14px 22px; border-radius: var(--sy-r-pill); background: transparent; border: 1px solid rgba(253,251,247,.18); color: var(--sy-cream); font-family: var(--sy-font-mono); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
  .site-burger__lines { display: inline-flex; flex-direction: column; gap: 4px; }
  .site-burger__lines span { width: 21px; height: 1.5px; display: block; }
  @media (max-width: 980px) { .site-nav { display: none; } .site-burger { display: flex; } }
  
  /* ---- Menu plein écran (mobile) ---- */
  .site-menu { position: fixed; inset: 0; z-index: var(--sy-z-menu); opacity: 0; visibility: hidden; clip-path: inset(0 0 100% 0); pointer-events: none;
    transition: clip-path .6s var(--sy-ease-io), opacity .4s ease, visibility .6s; }
  .site-menu.is-open { opacity: 1; visibility: visible; clip-path: inset(0 0 0% 0); pointer-events: auto; }
  .site-menu__inner { position: absolute; inset: 0; background: #0C1114; display: flex; flex-direction: column; }
  .site-menu__grid { position: absolute; inset: 0; opacity: .35; pointer-events: none;
    background-image: linear-gradient(rgba(22,193,232,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(22,193,232,.14) 1px, transparent 1px); background-size: 44px 44px; }
  .site-menu__top { display: flex; align-items: center; justify-content: space-between; padding: 22px clamp(18px,4vw,44px); position: relative; }
  .site-menu__top img { height: 40px; }
  .site-menu__body { flex: 1; display: flex; flex-wrap: wrap; align-items: center; gap: 48px; padding: clamp(24px,5vw,80px) clamp(18px,4vw,44px); position: relative; }
  .site-menu__nav { display: flex; flex-direction: column; gap: 6px; }
  .site-menu__link { display: flex; align-items: baseline; gap: 20px; font-family: var(--sy-font-display); font-weight: 700; font-size: clamp(2.2rem,6.4vw,4.8rem); line-height: 1.02; color: var(--sy-cream); }
  .site-menu__link span { font-family: var(--sy-font-mono); font-size: .9rem; color: var(--sy-cyan); font-weight: 500; }
  .site-menu__aside { display: flex; flex-direction: column; gap: 14px; max-width: 340px; }
  
  /* ---- Hero ---- */
  .hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
    padding: clamp(150px,20vh,220px) calc(var(--sy-gutter) * 3); overflow: hidden; background: var(--sy-ink); }
  .hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero__vignette { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 90% at 70% 20%, transparent 40%, rgba(0,18,20,.55) 100%); }
  .hero__tick { position: absolute; top: 108px; z-index: 2; font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; pointer-events: none; }
  .hero__tick--l { left: var(--sy-gutter); color: rgba(22,193,232,.85); }
  .hero__tick--r { right: var(--sy-gutter); text-align: right; letter-spacing: .15em; color: rgba(255,255,255,.55); }
  .hero__tick--l > div:first-child { display: flex; align-items: center; gap: 10px; }
  .hero__tick--l > div:first-child::before { content: ""; width: 26px; height: 1px; background: rgba(22,193,232,.5); }
  .hero__body { position: relative; z-index: 2; max-width: 1200px; }
  .hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(20px,2.6vw,30px); margin-top: clamp(24px,4vw,44px); }
  .hero__scroll { position: absolute; bottom: clamp(40px,6vw,72px); right: var(--sy-gutter); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; pointer-events: none; }
  /* Voile de lisibilité derrière le texte du hero (modules 3D pleine largeur) */
  .hero__scrim { position: absolute; inset: 0 auto 0 0; width: min(62%, 980px); z-index: 1;
    opacity: 0; transition: opacity .5s var(--sy-ease); pointer-events: none;
    backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
    background: linear-gradient(to right, rgba(7,10,14,.72), rgba(7,10,14,.42) 62%, rgba(7,10,14,0));
    -webkit-mask-image: linear-gradient(to right, #000 58%, transparent);
    mask-image: linear-gradient(to right, #000 58%, transparent); }
  .hero[data-mod="v2"] .hero__scrim { opacity: 1; }
  
  /* Sélecteur de module 3D (prototype - à retirer avant mise en ligne) */
  .hero__switch { position: absolute; right: calc(var(--sy-gutter) + 46px); bottom: clamp(24px,4vw,40px); z-index: 4;
    display: flex; align-items: center; gap: 6px; padding: 7px 9px; border-radius: var(--sy-r-pill);
    background: rgba(7,10,14,.62); border: 1px solid rgba(22,193,232,.28); backdrop-filter: blur(10px); }
  .hero__switch-lab { font-family: var(--sy-font-mono); font-size: 9.5px; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,255,255,.45); padding: 0 6px 0 4px; }
  .hero__switch button { font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .06em;
    padding: 7px 13px; border-radius: var(--sy-r-pill); border: 1px solid transparent;
    background: transparent; color: rgba(255,255,255,.7); cursor: pointer; transition: color .16s, background .16s, border-color .16s; }
  .hero__switch button:hover { color: #fff; border-color: rgba(22,193,232,.35); }
  .hero__switch button[aria-pressed="true"] { background: var(--sy-cyan); color: #04191f; border-color: var(--sy-cyan); }
  @media (max-width: 760px) { .hero__switch { display: none; } }
  
  .hero__scroll span:first-child { font-family: var(--sy-font-mono); font-size: 10px; letter-spacing: .25em; color: rgba(255,255,255,.6); writing-mode: vertical-rl; }
  .hero__scroll-bar { width: 1px; height: 40px; background: rgba(253,251,247,.2); position: relative; overflow: hidden; }
  .hero__scroll-bar span { position: absolute; top: 0; left: 0; width: 1px; height: 14px; background: var(--sy-cyan); animation: sy-scroll-hint 1.8s var(--sy-ease-io) infinite; }
  
  /* ---- Bandeau expertises ---- */
  .band { position: relative; border-top: 1px solid var(--sy-hair); padding-block: clamp(18px,2.2vw,28px); overflow: hidden; }
  .band::before, .band::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(60px,8vw,120px); z-index: 3; pointer-events: none; }
  .band::before { left: 0; background: linear-gradient(90deg, var(--sy-cream), rgba(253,251,247,0)); }
  .band::after { right: 0; background: linear-gradient(270deg, var(--sy-cream), rgba(253,251,247,0)); }
  .band__item { font-family: var(--sy-font-body); font-style: italic; font-weight: 500; font-size: clamp(1rem,1.7vw,1.35rem); color: rgba(7,10,14,.72); white-space: nowrap; }
  .band__track { gap: clamp(26px,3.6vw,50px); padding-right: clamp(26px,3.6vw,50px); }
  .band__star { flex: none; }
  
  /* ---- Secteurs ---- */
  .sectors { display: flex; flex-direction: column; gap: clamp(56px,8vw,116px); }
  .sector { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px,5vw,72px); }
  .sector--reverse { flex-direction: row-reverse; }
  .sector__media { flex: 1 1 360px; position: relative; aspect-ratio: 4/3; border-radius: var(--sy-r-xl); overflow: hidden; border: 1px solid var(--sy-hair); background: #E9E5DC; }
  .sector__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .sector__badge { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; padding: 7px 13px; border-radius: var(--sy-r-pill); background: rgba(7,10,14,.82); backdrop-filter: blur(4px); }
  .sector__badge span:first-child { width: 7px; height: 7px; border-radius: 50%; background: var(--sy-cyan); }
  .sector__badge span:last-child { font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--sy-cream); }
  .sector__body { flex: 1 1 380px; }
  
  /* ---- Expertises (survol → ouverture) ---- */
  .svc-list { position: relative; z-index: 1; margin-top: clamp(30px,3.5vw,48px); display: flex; flex-direction: column; border-top: 1px solid var(--sy-hair-dark); }
  .svc { position: relative; border-bottom: 1px solid var(--sy-hair-dark); transition: background .35s ease, box-shadow .35s ease; }
  .svc__header { width: 100%; display: flex; align-items: flex-start; gap: clamp(16px,2vw,28px); background: transparent; border: none; text-align: left; color: inherit;
    padding: clamp(30px,4vw,56px) clamp(60px,9vw,120px) clamp(30px,4vw,56px) clamp(18px,5vw,80px); }
  .svc__num { font-family: var(--sy-font-mono); font-size: 14px; color: var(--sy-cyan); padding-top: .5em; }
  .svc__title { transition: color .3s ease; font-size:40px; }
  .svc__arrow { position: absolute; top: clamp(30px,4vw,56px); right: clamp(18px,5vw,80px); transition: transform .3s var(--sy-ease); }
  .svc__panel { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .75s var(--sy-ease), opacity .55s ease; }
  .svc__panel-inner { padding: 0 clamp(18px,5vw,80px) clamp(30px,4vw,56px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
  .svc__panel-content { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(20px,2.4vw,30px); }
  .svc__media { position: relative; aspect-ratio: 8 / 3; width: 100%; border-radius: var(--sy-r-md); overflow: hidden; border: 1px solid var(--sy-hair-dark); background: #0B1116; }
  @media (max-width: 820px) { .svc__panel-inner { grid-template-columns: 1fr; } .svc__media { aspect-ratio: 16 / 6; } }
  .svc.is-open, .svc:hover, .svc:focus-within { background: #0F1519; box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(0,0,0,.45), 0 22px 44px rgba(0,0,0,.4); }
  .svc.is-open .svc__panel, .svc:hover .svc__panel, .svc:focus-within .svc__panel { max-height: 1200px; opacity: 1; }
  .svc.is-open .svc__arrow, .svc:hover .svc__arrow, .svc:focus-within .svc__arrow { transform: translate(6px,-6px); }
  .svc.is-open .svc__title, .svc:hover .svc__title, .svc:focus-within .svc__title { color: var(--sy-cyan); }
  
  /* ---- Réalisations (logos) ---- */
  .logos__item { color: rgba(0,18,20,.32); white-space: nowrap; }
  .logos__track { gap: clamp(48px,6vw,88px); padding-right: clamp(48px,6vw,88px); }
  
  /* ---- Territoire (globe) ---- */
  .globe { position: absolute; top: 50%; right: -8%; transform: translateY(-50%); width: min(720px,72vw); height: min(720px,72vw); pointer-events: none; }
  
  /* ---- Témoignages (défilement vertical) ---- */
  .tmarq { position: relative; height: clamp(430px,56vh,560px); overflow: hidden; }
  .tmarq__track { display: flex; flex-direction: column; gap: clamp(16px,2vw,22px); animation: sy-vscroll 26s linear infinite; }
  .tmarq:hover .tmarq__track { animation-play-state: paused; }
  
  /* ---- Contact ---- */
  .form-inp { border: none; border-bottom: 2px solid rgba(255,255,255,.4); background: transparent; font: inherit; color: #fff; text-align: center; padding: 2px 8px; outline: none; transition: border-color .2s ease; }
  .form-inp::placeholder { color: rgba(255,255,255,.5); }
  .form-inp:focus { border-color: var(--sy-cyan); }
  .form-sentence { font-family: var(--sy-font-display); font-weight: 500; font-size: 1.65rem; line-height: 1.8; letter-spacing: -.01em; color: #fff; text-align: center; margin-bottom: 25px;}
  
  /* ---- Footer ---- */
  .site-footer { background: #000; color: var(--sy-cream); padding: clamp(56px,7vw,88px) var(--sy-gutter) 40px; }
  .site-footer__top { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(28px,4vw,64px); }
  .site-footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(28px,4vw,64px); }
  @media (max-width: 900px) { .site-footer__cols { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (max-width: 560px) { .site-footer__cols { grid-template-columns: 1fr; } }
  .site-footer__col { display: flex; flex-direction: column; gap: 12px; }
  .site-footer__col a { color: rgba(255,255,255,.92); font-size: 15px; }
  .site-footer__col a:hover { color: var(--sy-cyan); }
  .site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 28px; font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.55); }
  
  /* =========================================================================
     SPÉCIFIQUE AUX PAGES — sans style inline.
     Règle : composant réutilisé → classe ; ajustement unique → sélecteur
     contextuel (.section .cible {}).
     ========================================================================= */
  
  /* Utilitaires transverses */
  .sy-muted   { color: #0A1418; }
  .sy-muted-d { color: var(--sy-fg-muted-dark); }
  .sy-section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px,5vw,64px); }
  .sy-section-head--baseline { align-items: baseline; gap: 16px; margin-bottom: 0; }
  .sy-count { font-family: var(--sy-font-mono); font-size: 12px; color: rgba(255,255,255,.55); }
  .stack-center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  
  /* Header / menu (ajustements uniques ciblés par contexte) */
  .site-burger__lines span:first-child { background: #FDFBF7; }
  .site-burger__lines span:last-child  { background: #16C1E8; }
  .site-menu__top .site-burger { display: flex; }
  .site-menu__aside a[href^="mailto:"] { font-family: var(--sy-font-mono); font-size: 13px; margin-top: 12px; }
  
  /* Hero */
  .hero__tick > div + div { margin-top: 6px; }
  .hero__tick--l div + div { color: rgba(255,255,255,.55); }
  .hero__tick--r div + div { color: rgba(22,193,232,.7); }
  .hero__actions > p    { max-width: 620px; color: #fff; }
  .hero__actions > span { font-family: var(--sy-font-body); font-style: italic; font-size: clamp(1rem,1.4vw,1.2rem); color: rgba(22,193,232,.92); }
  .hero__actions > div  { display: flex; gap: 14px; flex-wrap: wrap; }
  
  /* Marquees */
  .band__track   { animation: sy-marquee 36s linear infinite; }
  .logos__track  { animation: sy-marquee 38s linear infinite; }
  .logos__item   { font-size: clamp(1.4rem,2.4vw,2rem); }
  
  /* Manifesto */
  .manifesto h2 { margin-top: 28px; max-width: 15ch; }
  .manifesto .sy-container > div { display: flex; flex-wrap: wrap; gap: 48px; margin-top: clamp(36px,5vw,64px); }
  .manifesto .sy-container > div > p { flex: 1 1 320px; }
  
  /* Metrics */
  .metrics > .sy-container { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: clamp(28px,3.5vw,44px); }
  .metric { display: flex; flex-direction: column; gap: 8px; }
  .metric__num { font-family: var(--sy-font-display); font-weight: 800; color: var(--sy-cream); }
  .metric__num .metric__unit { font-size: .32em; color: var(--sy-cream); margin-left: .15em; }
  .metric .sy-kicker { color: #fff; font-size: 1.1em; }
  .metric p { color: rgba(255,255,255,.82); }
  
  /* Secteurs */
  .sectors-sec .sy-section-head h2 { margin-top: 22px; max-width: 13ch; }
  .sector__body h3 { font-size: clamp(1.9rem,3.6vw,2.25rem); margin-top: 20px; margin-bottom: 30px;}
  .sectors-sec .sy-h3 { font-weight: 400; font-size: var(--sy-fs-h3); letter-spacing: .015em; text-decoration: underline 3px var(--sy-cyan); }
  .sector__body > p { margin-top: 18px; max-width: 52ch; }
  .sector__body .sy-taglist { margin-top: 24px; }
  
  /* Paire Startups / PME */
  .sectors-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); margin-top: clamp(40px, 6vw, 72px); }
  .pair-card { display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: clamp(28px, 3vw, 40px); }
  .pair-card h3 { margin-top: 16px; }
  .pair-card > p { margin-top: 14px; }
  .pair-card .sy-taglist { margin-top: 20px; }
  .pair-card .sy-btn { margin-top: 28px; }
  @media (max-width: 720px) { .sectors-pair { grid-template-columns: 1fr; } }
  .sector__body .sy-btn { margin-top: 28px; }
  
  /* Services */
  #services > .sy-container { position: relative; z-index: 1; }
  #services .sy-section-head h2 { margin-top: 22px; }
  .svc__panel .sy-lead { color: rgba(255,255,255,.9); }
  .svc__panel .sy-body-sm { color: rgba(255,255,255,.72); }
  
  /* Réalisations */
  #realisations .stack-center p { margin: 0; font-family: var(--sy-font-body); font-style: italic; color: rgba(0,18,20,.78); max-width: 46ch; }
  #realisations .sy-marquee { margin-top: clamp(40px,5vw,64px); }
  #realisations .sy-container:last-of-type { margin-top: clamp(40px,5vw,64px); }
  
  /* Territoire */
  .territoire > .sy-container { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr)); gap: clamp(40px,5vw,72px); align-items: center; }
  .territoire h2 { margin-top: 22px; }
  .territoire h2 + p { margin-top: clamp(28px,3vw,40px); padding-left: 1.4rem; border-left: 2px solid var(--sy-cyan); line-height: 1.5; color: var(--sy-cream); }
  .territoire h2 + p + p { margin-top: 24px; max-width: 52ch; line-height: 1.8; color: rgba(255,255,255,.8); }
  .territoire > .sy-container > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px,1.6vw,20px); }
  .territoire .sy-card .sy-h3 { font-size: clamp(1.8rem,3vw,2.6rem); color: var(--sy-cyan); }
  .territoire .sy-card p { margin-top: 10px; color: rgba(255,255,255,.82); }
  .territoire__cta { margin-top: clamp(28px,3vw,36px); }
  
  /* Témoignages */
  .testimonials > .sy-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(40px,5vw,72px); align-items: start; }
  .testimonials h2 { margin-top: 22px; font-size: clamp(1.9rem,4vw,3rem); }
  .testimonials h2 + p { margin-top: 22px; max-width: 38ch; }
  .testimonials .sy-btn { margin-top: 28px; }
  .tmarq figure blockquote { font-style: italic; }
  .tmarq figcaption { margin-top: 20px; display: flex; align-items: center; gap: 14px; }
  .tmarq__avatar { width: 40px; height: 40px; font-size: 13px; border-radius: 50%; border: 1px solid rgba(0,18,20,.16); display: flex; align-items: center; justify-content: center; color: var(--sy-cyan-ink); font-family: var(--sy-font-display); font-weight: 700; }
  .tmarq__name { display: block; font-family: var(--sy-font-display); font-weight: 700; font-size: 15px; }
  .tmarq__role { display: block; font-family: var(--sy-font-mono); font-size: 11px; color: rgba(0,18,20,.5); }
  
  /* Agence */
  #agence > .sy-container { position: relative; z-index: 1; }
  #agence h2 { margin-top: 26px; max-width: 20ch; font-size: clamp(1.8rem,4.5vw,3.6rem); }
  .agence__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(32px,4vw,56px); margin-top: clamp(40px,5vw,64px); border-top: 1px solid var(--sy-hair-dark); padding-top: clamp(32px,4vw,48px); align-items: end; }
  .agence__col { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
  .agence__col .sy-taglist { margin-top: 6px; }
  .agence__col > p + p { color: rgba(253,251,247,.85); line-height: 1.75; }
  .eco-block { margin-top: 10px; }
  .eco-block .sy-kicker { margin-bottom: 18px; color: rgba(255,255,255,.6); }
  .eco-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px,1fr)); gap: 12px; max-width: 520px; }
  .eco-well { height: 66px; border: 1px solid rgba(255,255,255,.12); background: white /* rgba(255,255,255,.02);*/ }
  .phelen { align-self: end; position: relative; overflow: hidden; background: var(--sy-ink-4); border: 1px solid rgba(22,193,232,.22); border-radius: var(--sy-r-lg); padding: clamp(24px,2.6vw,36px); }
  .phelen__pattern { position: absolute; inset: 0; opacity: .1; pointer-events: none; background-image: repeating-linear-gradient(45deg, rgba(22,193,232,.5) 0 1px, transparent 1px 14px); }
  .phelen__body { position: relative; }
  .phelen__logo { width: 180px; height: 65px; justify-content: flex-start; background: white; padding: 0; margin-bottom: 20px; }
  .phelen__title { margin-top: 12px; font-family: var(--sy-font-display); font-weight: 800; font-size: clamp(1.8rem,3vw,2.5rem); color: var(--sy-cream); }
  .phelen p { margin-top: 14px; color: rgba(255,255,255,.86); }
  
  /* Agréments */
  .agr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: clamp(16px,1.8vw,22px); }
  #agrements .sy-section-head h2 { margin-top: 22px; font-size: clamp(1.9rem,4.5vw,3.4rem); }
  .agr-card { display: flex; flex-direction: column; gap: 10px; }
  .agr-card__well { height: 68px; min-width: 130px; width: fit-content; margin-bottom: 8px; }
  .agr-card h3 { font-size: clamp(1.15rem,1.6vw,1.4rem); line-height: 1.1; }
  .agr-card.sy-card--light { background: #fff; }
  .agr-card.sy-card--light .agr-card__well { background: var(--sy-cream); border: 1px solid var(--sy-hair); }
  .agr-card.sy-card--light h3 { color: var(--sy-ink); }
  .agr-card.sy-card--light p { color: rgba(7,10,14,.7); }
  
  /* Contact */
  #contact > .sy-container { position: relative; z-index: 1; max-width: 1000px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  #contact .sy-kicker { letter-spacing: .25em; }
  #contact h2 { margin-top: 24px; text-shadow: 2px 2px 0 rgba(22,193,232,.9); }
  .contact-form { margin-top: clamp(40px,5vw,60px); width: 100%; max-width: 940px; }
  .contact-form__actions { margin-top: clamp(30px,4vw,44px); display: flex; flex-direction: column; align-items: center; gap: 24px; }
  .contact-form button[type=submit] { padding: 16px 46px; }
  .form-sentence .info { font-style: italic; color: rgba(255,255,255,.6); }
  .form-inp[name="nom"]     { width: 12ch; }
  .form-inp[name="structure"] { width: 15ch; }
  .form-inp[name="projet"]  { width: 22ch; max-width: 100%; }
  .form-inp[name="email"]   { width: 15ch; }
  .form-inp[name="tel"]     { width: 17ch; }
  .captcha { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid rgba(7,10,14,.18); border-radius: 4px; padding: 13px 16px; }
  .captcha__box { width: 26px; height: 26px; border: 2px solid rgba(7,10,14,.35); border-radius: 3px; }
  .captcha__label { font-family: var(--sy-font-body); font-size: 14px; color: #070A0E; }
  .captcha__logo { display: flex; flex-direction: column; align-items: center; gap: 3px; margin-left: 12px; color: rgba(7,10,14,.4); }
  .captcha__logo span:first-child { width: 20px; height: 20px; border: 2px solid rgba(7,10,14,.3); border-radius: 50%; border-top-color: transparent; }
  .captcha__logo span:last-child { font-family: var(--sy-font-mono); font-size: 8px; }
  .contact-coords { margin-top: clamp(32px,4vw,48px); display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center; font-family: var(--sy-font-mono); font-size: 13px; color: rgba(255,255,255,.6); }
  
  /* Footer */
  .site-footer > .sy-container { padding-inline: 0; }
  .site-footer__brand { max-width: none; }
  .site-footer__logo { height: 70px; width: auto; }
  .site-footer__tag { margin-top: 20px; font-family: var(--sy-font-body); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,.86); }
  .site-footer__addr { margin-top: 12px; font-family: var(--sy-font-mono); font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.55); }
  .site-footer__col .sy-kicker { color: rgba(255,255,255,.55); }
  
  /* Zone de zoom (molette) - rail vertical à droite du hero */
  .hero__zoomzone { position: absolute; right: calc(var(--sy-gutter) - 6px); top: 50%; transform: translateY(-50%);
    width: 50px; height: 66%; z-index: 3; display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 14px; cursor: ns-resize;
    background: rgba(7,10,14,.28); border: 1px solid rgba(22,193,232,.16); border-radius: var(--sy-r-pill);
    backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
    transition: border-color .16s var(--sy-ease), background .16s var(--sy-ease); }
  .hero__zoomzone:hover, .hero__zoomzone[data-on="true"] { border-color: rgba(22,193,232,.42); background: rgba(7,10,14,.4); }
  .hero__zoomzone > span:nth-child(2) { font-family: var(--sy-font-mono); font-size: 10px; letter-spacing: .25em;
    color: rgba(255,255,255,.6); writing-mode: vertical-rl; }
  .hero__zoomzone[data-on="true"] > span:nth-child(2) { color: var(--sy-cyan); }
  .hero__zoomzone-rule { width: 1px; flex: 1 1 auto; background: rgba(253,251,247,.2); }
  @media (max-width: 760px) { .hero__zoomzone { display: none; } }
  
  
  /* =========================================================================
     RÉVISIONS - août 2026
     ========================================================================= */
  
  
  /* Ancrages : défilement animé + dégagement sous le menu flottant */
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  section[id], article[id], div[id] { scroll-margin-top: 110px; }
  
  /* Hero 3D sur les pages intérieures (rendu identique à l'accueil) */
  .page-hero { position: relative; overflow: hidden; }
  .page-hero > .sy-container { position: relative; z-index: 2; padding-inline: calc(var(--sy-gutter) / 2); }
  .page-hero .hero__canvas { z-index: 0; }
  .page-hero .hero__vignette { z-index: 1; }
  .page-hero .hero__scrim { opacity: 1; }
  
  
  /* Bouton clair sur fond sombre : survol cyan (plus de noir sur noir) */
  .sy-surface-dark .sy-btn--light:hover,
  .sy-surface-dark2 .sy-btn--light:hover,
  .territoire .sy-btn--light:hover {
    background: var(--sy-cyan); color: #04191f;
    box-shadow: 0 16px 30px rgba(22,193,232,.38);
  }
  
  
  /* ---- Zone groupe Phelen ---- */
  .phelen-zone { background: transparent; color: var(--sy-fg); padding: clamp(48px,6vw,80px) var(--sy-gutter); padding-top: 20px;}
  .phelen-zone > .sy-container { padding-inline: 0; }
  .phelen-zone__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; border-bottom: 1px solid var(--sy-hair); }
  .phelen-zone__logo { width: 440px; height: 128px; }
  .phelen-zone__tag { font-family: var(--sy-font-body); font-style: italic; font-size: 1rem; color: var(--sy-fg-muted); }
  .phelen-zone .sy-kicker { color: var(--sy-fg-muted); }
  .phelen-cols { margin-top: clamp(28px,3.5vw,44px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,3vw,48px); }
  @media (max-width: 820px) { .phelen-cols { grid-template-columns: 1fr; } }
  .phelen-pole { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .phelen-pole .sy-kicker { color: var(--sy-fg-muted); }
  .phelen-brands { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; width: 100%; }
  .phelen-brand { flex: 1 1 0; min-width: 130px; height: 69px; display: flex; align-items: center; justify-content: center;
    padding: 4px; border: 0; background: none; }
  .phelen-brand--lead { flex-basis: 100%; }
  .phelen-brand img { width: auto; height: auto; max-height: 100%; max-width: 100%; object-fit: contain; }
  .phelen-brand image-slot { display: block; width: 100%; height: 100%; }
  
  /* ---- Footer Seyes ---- */
  /* Ligne haute du footer alignée sur les 4 colonnes de liens */
  .site-footer__addrs { display: contents; }
  @media (max-width: 900px) { .site-footer__top { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (max-width: 560px) { .site-footer__top { grid-template-columns: 1fr; } }
  .site-footer__cols { margin-top: clamp(32px,4vw,52px); padding-top: clamp(28px,3.2vw,40px); border-top: 1px solid var(--sy-hair-dark); }
  @media (max-width: 720px) { .site-footer__addrs { grid-template-columns: 1fr; } }
  .site-footer__addr .sy-kicker { color: rgba(255,255,255,.55); }
  .site-footer__addr p { margin-top: 10px; font-family: var(--sy-font-mono); font-size: 12.5px; line-height: 1.8; color: rgba(255,255,255,.72); }
  
  
  /* ---- Boutons du hero : repos = compact + cyan ; survol = grand + clair ---- */
  .hero__actions .sy-btn--light,
  .sp-hero .sy-btn--hero {
    padding: 10px 20px; font-size: 13.5px; border-radius: var(--sy-r-pill);
    background: linear-gradient(180deg,#25d0f6,#12b1d7); color: var(--sy-cyan-deep);
    box-shadow: var(--sy-shadow-cyan), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 5px rgba(4,34,43,.22);
    transform-origin: left center;
    position: relative; z-index: 1;
    transition: transform .22s var(--sy-ease), background .22s ease, color .22s ease, box-shadow .22s ease;
  }
  .hero__actions .sy-btn--light:hover,
  .sp-hero .sy-btn--hero:hover {
    transform: scale(1.14) translateY(-3px);
    z-index: 3;
    background: var(--sy-cream-2); color: #0A1418;
    box-shadow: 0 16px 30px rgba(0,18,20,.34);
  }
  .hero__actions .sy-btn--light:active { transform: scale(1.1) translateY(-1px); }
  .hero__actions > div:last-child { display: flex; flex-wrap: wrap; gap: 16px clamp(24px,3vw,44px); }
  .sp-hero .sp-cta-row { gap: 16px clamp(24px,3vw,44px); }
  
  /* ---- Bloc « Nous écrire » sur fond clair ---- */
  #contact.sy-surface-light .form-sentence { color: var(--sy-ink); }
  #contact.sy-surface-light .form-sentence .info { color: rgba(7,10,14,.55); }
  #contact.sy-surface-light .form-inp { color: var(--sy-ink); border-bottom-color: rgba(7,10,14,.35); }
  #contact.sy-surface-light .form-inp::placeholder { color: rgba(7,10,14,.42); }
  #contact.sy-surface-light .form-inp:focus { border-bottom-color: var(--sy-cyan-ink); }
  #contact.sy-surface-light .contact-coords { color: rgba(7,10,14,.62); }
  #contact.sy-surface-light .captcha { background: #fff; border-color: rgba(7,10,14,.22); box-shadow: 0 2px 6px rgba(7,10,14,.07); }
  
  /* ---- L'agence : page éditoriale ---- */
  .ag-stmt { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,10fr); gap: clamp(28px,5vw,90px);
    padding-block: clamp(48px,6vw,86px); border-top: 1px solid var(--sy-hair); }
  .ag-stmt:first-of-type { border-top: none; padding-top: 0; }
  .sy-surface-dark2 .ag-stmt, .sy-surface-dark .ag-stmt { border-top-color: var(--sy-hair-dark); }
  .ag-stmt__h { display: flex; flex-direction: column; gap: 16px; align-self: start; position: sticky; top: 120px; }
  .ag-stmt__h h2 { font-size: clamp(1.7rem,3.4vw,2.9rem); line-height: 1.06; letter-spacing: -.015em; max-width: 15ch; }
  .ag-stmt__b { display: flex; flex-direction: column; gap: 20px; max-width: 62ch; }
  .ag-stmt__b .sy-lead { font-size: clamp(1.05rem,1.5vw,1.3rem); }
  @media (max-width: 860px) { .ag-stmt { grid-template-columns: 1fr; } .ag-stmt__h { position: static; } }
  .ag-figs { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: clamp(18px,2.4vw,32px); margin-top: 12px; }
  .ag-fig { display: flex; flex-direction: column; gap: 6px; }
  .ag-fig b { font-family: var(--sy-font-display); font-weight: 700; font-size: clamp(1.8rem,3.2vw,2.6rem); line-height: 1; letter-spacing: -.02em; }
  .ag-fig span { font-family: var(--sy-font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; opacity: .62; }
  
  .agr-sub { margin-top: clamp(44px,5vw,68px); margin-bottom: clamp(16px,2vw,24px); }
  .agr-sub--flush { margin-bottom: 0; }
  .agr-sub--center { text-align: center; }
  .agr-sub--center .sy-body-sm { margin-inline: auto; }
  .agr-sub .sy-body-sm { margin-top: 10px; max-width: 62ch; }
  
  
  /* ============================================================
     Mega-menu (survol) - panneau unique qui glisse latéralement
     ============================================================ */
  .site-header__stack { position: relative; width: 100%; max-width: var(--sy-maxw); }
  .site-mega { position: absolute; top: 100%; left: 0; right: 0; display: flex; justify-content: center;
    padding-top: 12px; opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s var(--sy-ease), visibility .22s; }
  .site-mega.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-mega__panel { width: min(1120px, 100%); overflow: hidden; border-radius: 18px;
    background: rgba(7,10,14,.96); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 26px 60px rgba(0,0,0,.5); transition: height .32s var(--sy-ease); }
  .site-mega__viewport { overflow: hidden; }
  .site-mega__track { display: flex; width: 100%; transition: transform .46s var(--sy-ease); }
  .site-mega.is-instant .site-mega__track { transition: none; }
  .site-mega__pane { flex: 0 0 100%; padding: 16px; opacity: .35; transition: opacity .3s ease; }
  .site-mega__pane.is-active { opacity: 1; }
  .mega-grid { display: grid; gap: 10px; }
  .mega-card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 18px 16px; border-radius: 14px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    transition: background .18s ease, border-color .18s ease, transform .18s var(--sy-ease); }
  .mega-card:hover { background: rgba(22,193,232,.1); border-color: rgba(22,193,232,.4); transform: translateY(-2px); }
  .mega-card__ic { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
    background: rgba(22,193,232,.12); color: var(--sy-cyan); }
  .mega-card__ic svg { width: 18px; height: 18px; }
  .mega-card__title { font-family: var(--sy-font-display); font-weight: 700; font-size: 15.5px; color: var(--sy-cream); line-height: 1.25; }
  .mega-card__desc { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.62); }
  .mega-card__list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; width: 100%; }
  .mega-card__list li { position: relative; padding-left: 14px; font-family: var(--sy-font-mono); font-size: 11.5px; letter-spacing: .02em; color: rgba(255,255,255,.55); }
  .mega-card__list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: rgba(22,193,232,.65); }
  .mega-card__go { margin-top: auto; padding-top: 12px; font-family: var(--sy-font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--sy-cyan); opacity: .75; transition: opacity .18s ease; }
  .mega-card:hover .mega-card__go { opacity: 1; }
  .mega-foot { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 14px; padding: 14px 4px 4px;
    border-top: 1px solid rgba(255,255,255,.1); }
  .mega-foot a { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.6); }
  .mega-foot a:hover { color: var(--sy-cyan); }
  .site-navitem.is-open .site-navlink { color: var(--sy-cyan); }
  .site-navitem.is-open .site-navchev { transform: rotate(180deg); }
  @media (max-width: 900px) { .site-mega { display: none; } }
  
  /* ============================================================
     Popup « Nous écrire »
     ============================================================ */
  .sy-modal { position: fixed; inset: 0; z-index: 600; display: flex; align-items: center; justify-content: center;
    padding: clamp(16px,4vw,48px); opacity: 0; transition: opacity .22s ease; }
  .sy-modal.is-open { opacity: 1; }
  .sy-modal[hidden] { display: none; }
  .sy-modal__backdrop { position: absolute; inset: 0; background: rgba(7,10,14,.62); backdrop-filter: blur(6px); }
  .sy-modal__panel { position: relative; width: min(880px, 100%); max-height: 90vh; overflow: auto;
    padding: clamp(28px,4vw,56px); border-radius: 22px; background: var(--sy-cream);
    border: 1px solid var(--sy-hair); box-shadow: 0 34px 80px rgba(0,18,20,.4);
    transform: translateY(10px) scale(.99); transition: transform .26s var(--sy-ease); text-align: center; }
  .sy-modal.is-open .sy-modal__panel { transform: none; }
  .sy-modal__close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--sy-hair); background: #fff; color: var(--sy-ink); font-size: 15px; cursor: pointer;
    transition: background .18s ease, color .18s ease; }
  .sy-modal__close:hover { background: var(--sy-ink); color: var(--sy-cream); }
  .sy-modal__panel h2 { margin-top: 12px; }
  .sy-modal__panel .contact-form { margin-top: clamp(24px,3vw,36px); max-width: none; }
  .sy-modal__panel .form-sentence { color: var(--sy-ink); }
  .sy-modal__panel .form-inp { color: var(--sy-ink); border-bottom-color: rgba(7,10,14,.35); }
  .sy-modal__panel .form-inp::placeholder { color: rgba(7,10,14,.42); font-size: 0.8em;
    font-style: italic;}
  .sy-modal__panel .form-inp:focus { border-bottom-color: var(--sy-cyan-ink); }
  .sy-modal__panel .contact-coords { color: rgba(7,10,14,.62); margin-top: clamp(24px,3vw,34px); }
  .sy-modal__panel .captcha { background: #fff; border-color: rgba(7,10,14,.22); }
  
  
  /* Agréments : première ligne posée directement sur le fond de page */
  .agr-grid--bare { gap: clamp(20px,2.4vw,34px) clamp(24px,3vw,44px); }
  .agr-grid--bare .agr-card, .agr-grid--bare .agr-card:hover { background: none; border: 0; box-shadow: none; padding: 0; transform: none; }
  .agr-grid--bare .agr-card__well { height: 56px; min-width: 112px; margin-bottom: 4px; background: none; border: 0; padding: 0; justify-content: flex-start; }
  .agr-grid--bare .agr-card h3 { font-size: clamp(1.05rem,1.4vw,1.2rem); }
  .agr-grid--bare .agr-card p { color: rgba(7,10,14,.6); }
  
  /* Secteurs d'activité (page Secteur privé) */
  .biz-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,2.2vw,28px); margin-top: clamp(36px,4vw,52px); }
  .biz { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .biz__media { position: relative; width: clamp(84px,9vw,110px); aspect-ratio: 1; }
  .biz__title { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.12rem; margin-top: 4px; }
  .biz p { font-size: 14.5px; line-height: 1.55; color: rgba(7,10,14,.65); max-width: 32ch; }
  @media (max-width: 1080px) { .biz-grid { grid-template-columns: repeat(3,1fr); } }
  @media (max-width: 780px) { .biz-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 520px) { .biz-grid { grid-template-columns: 1fr; } }
  
  
  /* Méthode : numéro lisible sur fond clair */
  .sy-surface-light .sp-step { border-top-color: rgba(22,193,232,.4); }
  .sy-surface-light .sp-step .sp-n { color: var(--sy-cyan-ink); }
  
  /* Enjeux + offre en vis-à-vis (page Secteur privé) */
  .sy-visavis { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,2.6vw,34px); align-items: start; margin-top: clamp(36px,4vw,52px); }
  .sy-visavis__args { margin-top: 0; grid-template-columns: 1fr 1fr; }
  .sy-produit { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px; padding: clamp(26px,2.8vw,36px);
    border-radius: var(--sy-r-xl); border: 1px solid rgba(22,193,232,.3);
    background: linear-gradient(133deg, #041A23 0%, #0B3444 34%, #04141C 70%, #0A2836 100%);
    box-shadow: 0 26px 60px rgba(0,18,20,.42), 0 0 0 1px rgba(22,193,232,.16),
      inset 0 1px 0 rgba(150,236,255,.28), inset 0 -30px 60px rgba(0,0,0,.35); }
  .sy-produit::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
    background: linear-gradient(133deg, rgba(150,236,255,.16) 0%, rgba(150,236,255,.03) 26%, transparent 52%); }
  .sy-produit__tag { align-self: flex-start; font-family: var(--sy-font-mono); font-size: 11.5px; letter-spacing: .08em;
    text-transform: uppercase; color: var(--sy-cyan); background: rgba(22,193,232,.12);
    border: 1px solid rgba(22,193,232,.34); border-radius: var(--sy-r-pill); padding: 7px 14px; }
  .sy-produit__title { font-family: var(--sy-font-display); font-weight: 800; letter-spacing: -.02em;
    font-size: clamp(1.5rem,2.4vw,2rem); line-height: 1.1; color: var(--sy-cream); }
  .sy-produit__hook { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.4; color: var(--sy-cyan); margin-bottom:20px; }
  .sy-produit__body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,1); }
  .sy-produit__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .sy-produit__list li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,1); }
  .sy-produit__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 2px; background: var(--sy-cyan); }
  .sy-produit__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
    margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
  .sy-produit__foot .sy-btn { margin-left: auto; }
  .sy-produit__price { font-family: var(--sy-font-display); font-weight: 500; font-size: 1.15rem; color: var(--sy-cream); font-style: italic;}
  .sy-produit__logos { display: flex; flex-wrap: wrap; gap: 8px; }
  .sy-produit__logo { width: 78px; height: 44px; padding: 5px 7px; border-radius: 5px; background: #fff; }
  .sy-produit__logo image-slot { display: block; width: 100%; height: 100%; }
  @media (max-width: 1080px) { .sy-visavis { grid-template-columns: 1fr; } }
  @media (max-width: 620px) { .sy-visavis__args { grid-template-columns: 1fr; } }
  
  
  /* ---------------------------------------------------------------
     Icônes de secteur - tracé progressif à l'apparition
     --------------------------------------------------------------- */
  .biz__media { display: grid; place-items: center; }
  .biz-ico { width: 100%; height: auto; color: #E8A81F; }
  .biz-ico path { stroke-dasharray: 100; stroke-dashoffset: 100; }
  .biz.is-drawing .biz-ico path { animation: biz-draw .9s cubic-bezier(.35,0,.25,1) forwards; animation-delay: calc(var(--d) * .13s); }
  .biz.is-drawn .biz-ico path { stroke-dashoffset: 0; }
  @keyframes biz-draw { to { stroke-dashoffset: 0; } }
  @media (prefers-reduced-motion: reduce) {
    .biz-ico path { stroke-dashoffset: 0; }
    .biz.is-drawing .biz-ico path { animation: none; }
  }
  
  /* Bloc « produit d'appel » - habillage ocre */
  .sy-produit__deco { position: absolute; right: 0; bottom: 0; width: min(64%, 320px); aspect-ratio: 1; pointer-events: none; }
  .sy-produit__deco svg { width: 100%; height: 100%; display: block; }
  .sy-produit > *:not(.sy-produit__deco) { position: relative; z-index: 1; }
  
  
  /* Produit d'appel décliné sur les pages d'expertise */
  
  .sy-produit--solo .sy-produit__hook { font-size: clamp(1.15rem,1.8vw,1.4rem); line-height: 1.45; color: var(--sy-cream); font-weight: 500; }
  .sy-produit--solo .sy-produit__foot { justify-content: flex-start; border-top: 0; padding-top: 4px; }
  
  .sp-final .sy-produit--solo { text-align: left; }
  .sp-final .sy-produit--solo .sy-btn { margin-top: 0; }
  
  
  /* Colonne de gauche des premières sections d'expertise */
  .sy-visavis__col > *:first-child { margin-top: 0; }
  .sy-visavis__col .sp-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  @media (max-width: 620px) { .sy-visavis__col .sp-grid { grid-template-columns: 1fr; } }
  
  /* Colonne de gauche des sections en vis-à-vis : blocs empilés, pleine largeur */
  .sy-visavis__col > .sp-grid { grid-template-columns: minmax(0,1fr); }
  .sy-visavis__col > .sp-grid.sy-visavis--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  @media (max-width: 720px) { .sy-visavis__col > .sp-grid.sy-visavis--2 { grid-template-columns: minmax(0,1fr); } }
  /* Titres des cartes de la colonne de gauche */
  .sy-visavis__col .sp-dom h3, .sy-visavis__col .sp-enj h3 { color: var(--sy-fg); }
  /* Alignement du haut des deux colonnes */
  .sy-visavis > *, .sy-visavis .sy-produit { margin-top: 0; align-self: start; }
  
  /* Ligne de chiffres (IA & innovation), calée sur le bandeau d'accueil */
  .band--figs { padding: clamp(30px,3.4vw,46px) 0 clamp(22px,2.4vw,30px); border-top: 1px solid var(--sy-hair); border-bottom: 1px solid var(--sy-hair); }
  .ia-figs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(20px,3vw,48px); }
  .ia-figs__cell { padding-left: 20px; border-left: 2px solid var(--sy-ocre); }
  .ia-figs__fig { font-family: var(--sy-font-mono); font-size: clamp(38px,4.6vw,58px); line-height: 1; letter-spacing: -.02em; color: var(--sy-ink); }
  .ia-figs__fig small { font-size: .45em; margin-left: 2px; }
  .ia-figs__lb { margin-top: 10px; font-size: 14.5px; line-height: 1.45; color: rgba(0,18,20,.62); max-width: 30ch; }
  .ia-figs__note { margin-top: clamp(18px,2vw,26px); font-size: 12.5px; font-style: italic; color: rgba(0,18,20,.5); }
  @media (max-width: 820px) { .ia-figs { grid-template-columns: 1fr; } }
  /* Cartes profils cliquables sur IA & innovation */
  .ia-pq { display: block; text-decoration: none; }
  .ia-pq .ex-pq__go { display: inline-block; margin-top: 12px; font-family: var(--sy-font-mono); font-size: 12.5px; color: var(--sy-cyan-ink); }
  .ia-pq:hover .ex-pq__go { color: var(--sy-ocre-ink); }
  
  /* Bandeau de logos clients (accueil) */
  .logos { position: relative; overflow: hidden; }
  .logos .sy-kicker { display: block; margin-bottom: clamp(28px,3vw,40px); }
  .logos__foot { display: flex; justify-content: center; margin-top: clamp(34px,4vw,52px); }
  .logos__arcs { position: absolute; inset: auto 0 0; width: 100%; height: 78%; fill: none;
    stroke: rgba(0,18,20,.09); stroke-width: 1; pointer-events: none; }
  .logos__row { display: grid; align-items: center; justify-items: center;
    gap: clamp(16px,2.4vw,40px); margin-bottom: clamp(26px,3vw,44px); }
  .logos__row:last-child { margin-bottom: 0; }
  .logos__row--1 { grid-template-columns: repeat(8, minmax(0,1fr)); }
  .logos__row--2 { grid-template-columns: repeat(8, minmax(0,1fr)); }
  .logos__row--3 { grid-template-columns: repeat(7, minmax(0,1fr)); width: 88%; margin-left: auto; margin-right: auto; }
  .logos__well { position: relative; width: 100%; height: 56px; opacity: 1; transition: opacity .24s ease, transform .24s ease; }
  .logos__well:hover { opacity: 1; transform: translateY(-2px); }
  @media (max-width: 980px) {
    .logos__row--1, .logos__row--2 { grid-template-columns: repeat(4, minmax(0,1fr)); }
    .logos__row--3 { grid-template-columns: repeat(4, minmax(0,1fr)); width: 100%; }
  }
  @media (max-width: 600px) {
    .logos__row--1, .logos__row--2, .logos__row--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  
  
  /* =========================================================================
     9. BLOCS COMMUNS AUX PAGES INTÉRIEURES  (.sp-)
     ========================================================================= */
  
  /* Fil d'Ariane */
  .sp-bread { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.55); margin-bottom: 22px; }
  .sp-bread a:hover { color: var(--sy-cyan); }
  .sp-bread .sep { opacity: .4; margin: 0 8px; }
  
  /* Hero */
  .sp-hero { max-width: 960px; }   /* fil d'Ariane + titre + chapô + CTA */
  .sp-hero__spacer { height: 17px; }
  .sp-hero h1 { margin-top: 22px; }
  .sp-hero .sy-lead { margin-top: 24px; max-width: 54ch; }
  .sp-promesse { margin-top: 26px; padding-left: 1.4rem; border-left: 2px solid var(--sy-cyan); font-style: italic; color: var(--sy-cyan); max-width: 50ch; }
  .sp-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
  .sp-cta-row--tight { margin-top: 8px; }
  .sp-adv { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 34px; }
  .sp-adv div { display: flex; align-items: center; gap: 9px; font-family: var(--sy-font-mono); font-size: 12.5px; letter-spacing: .02em; color: rgba(255,255,255,.6); }
  .sp-adv div::before { content: "→"; color: var(--sy-cyan); }
  .sp-adv b { font-family: var(--sy-font-body); color: var(--sy-cream); font-weight: 700; }
  
  /* Grilles */
  .sp-grid { display: grid; gap: clamp(18px,2.2vw,24px); margin-top: clamp(36px,4vw,52px); }
  .sp-grid--flush { margin-top: 0; }
  .sp-2 { grid-template-columns: repeat(2, 1fr); }
  .sp-3 { grid-template-columns: repeat(3, 1fr); }
  .sp-4 { grid-template-columns: repeat(4, 1fr); }
  
  /* Cartes enjeux / listes */
  .sp-card-head { display: flex; flex-direction: column; gap: 6px; }
  .sp-enj h3 { margin-top: 12px; }
  .sp-who { color: rgba(0,18,20,.62); font-size: 14.5px; margin: 8px 0 0; }
  .sp-list { list-style: none; margin: 22px 0 0; padding: 0; }
  .sp-list li { position: relative; padding: 10px 0 10px 26px; font-size: 15px; line-height: 1.5; border-top: 1px solid var(--sy-hair); }
  .sp-list li:first-child { border-top: 0; }
  .sp-list li::before { content: "→"; position: absolute; left: 0; color: var(--sy-cyan-ink); font-family: var(--sy-font-mono); }
  .sy-surface-dark .sp-list li, .sy-surface-dark2 .sp-list li { border-top-color: var(--sy-hair-dark); color: rgba(255,255,255,.82); }
  .sy-surface-dark .sp-list li::before, .sy-surface-dark2 .sp-list li::before { color: var(--sy-cyan); }
  .sy-card--light .sp-list li { border-top-color: var(--sy-hair); color: var(--sy-fg); }
  .sy-card--light .sp-list li::before { color: var(--sy-cyan-ink); }
  
  /* Liste à puce ronde (feature) */
  .sp-featlist { list-style: none; margin: 24px 0 0; padding: 0; }
  .sp-featlist li { position: relative; padding: 12px 0 12px 30px; font-size: 15.5px; line-height: 1.55; border-top: 1px solid var(--sy-hair); }
  .sp-featlist li:first-child { border-top: 0; }
  .sp-featlist li::before { content: "◦"; position: absolute; left: 2px; top: 8px; color: var(--sy-cyan); font-size: 20px; line-height: 1; }
  .sp-featlist li b { font-family: var(--sy-font-display); font-weight: 700; }
  .sy-surface-dark2 .sp-featlist li, .sy-surface-dark .sp-featlist li { border-top-color: var(--sy-hair-dark); color: rgba(255,255,255,.82); }
  
  /* Bloc feature (2 colonnes) */
  .sp-feat { display: grid; gap: clamp(28px,4vw,52px); align-items: center; margin-top: clamp(30px,3.5vw,46px); }
  .sp-feat--fig { grid-template-columns: .85fr 1.15fr; }
  .sp-feat--media { grid-template-columns: 1fr 1fr; }
  .sp-feat h2 { max-width: 18ch; }
  .sp-feat .sy-lead { margin-top: 16px; max-width: 52ch; }
  .sy-surface-dark .sp-feat .sy-lead, .sy-surface-dark2 .sp-feat .sy-lead { color: rgba(255,255,255,.8); }
  .sp-feat .sy-btn { margin-top: 26px; }
  .sp-note { font-size: 12.5px; color: var(--sy-fg-muted); font-style: italic; margin-top: 16px; max-width: 54ch; }
  .sy-surface-dark .sp-note, .sy-surface-dark2 .sp-note { color: rgba(255,255,255,.62); }
  
  /* Panneau chiffre (sombre) */
  .sp-fig { position: relative; border-radius: var(--sy-r-xl); padding: clamp(30px,3.5vw,46px); background: var(--sy-ink-2); color: var(--sy-cream); box-shadow: var(--sy-shadow-card); overflow: hidden; }
  .sp-fig .sy-gridlines-inner { position: absolute; inset: 0; opacity: .3; pointer-events: none; background-image: linear-gradient(rgba(22,193,232,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(22,193,232,.1) 1px,transparent 1px); background-size: 44px 44px; }
  .sp-fig > * { position: relative; z-index: 1; }
  .sp-big { font-family: var(--sy-font-display); font-weight: 800; font-size: clamp(64px,9vw,108px); line-height: .9; letter-spacing: -.03em; color: var(--sy-cyan); }
  .sp-cap { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.5; margin-top: 12px; max-width: 26ch; }
  .sp-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 9px 15px; border: 1px solid var(--sy-line-cyan); border-radius: var(--sy-r-pill); font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .06em; color: var(--sy-cyan-2); }
  
  /* Maquette produit (sombre) */
  .sp-mock { position: relative; border-radius: var(--sy-r-xl); overflow: hidden; aspect-ratio: 4/3; background: var(--sy-ink-2); box-shadow: var(--sy-shadow-card); padding: 16px; }
  .sp-mock .sp-bar { display: flex; gap: 6px; margin-bottom: 14px; }
  .sp-mock .sp-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(253,251,247,.2); }
  .sp-mock .sp-bar i:first-child { background: var(--sy-cyan); }
  .sp-mock .sp-scr { position: absolute; inset: 46px 16px 16px; border-radius: var(--sy-r-md); background: var(--sy-ink-3); overflow: hidden; box-shadow: inset 4px 4px 12px rgba(0,0,0,.5); }
  .sp-mock .sp-scr .sp-g { position: absolute; inset: 0; background-image: linear-gradient(rgba(22,193,232,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(22,193,232,.12) 1px,transparent 1px); background-size: 26px 26px; }
  .sp-mock .sp-blk { position: absolute; border-radius: 7px; background: var(--sy-ink-4); }
  .sp-mock .b1 { left: 18px; top: 18px; width: 44%; height: 16px; background: var(--sy-cyan); opacity: .85; }
  .sp-mock .b2 { left: 18px; top: 46px; width: 70%; height: 10px; }
  .sp-mock .b3 { left: 18px; top: 64px; width: 58%; height: 10px; }
  .sp-mock .b4 { left: 18px; bottom: 18px; width: 38%; height: 34px; background: var(--sy-ink-3); border: 1px solid var(--sy-line-cyan); }
  .sp-mock .b5 { right: 18px; top: 18px; width: 26%; height: 64%; box-shadow: inset 3px 3px 9px rgba(0,0,0,.5); }
  
  /* Diagramme (panneau sombre) */
  .sp-diagram { position: relative; border-radius: var(--sy-r-xl); padding: clamp(18px,2vw,26px); background: none; box-shadow: none; }
  .sp-diagram svg { display: block; width: 100%; height: auto; }
  
  /* Domaines de force */
  .sp-dom { display: flex; flex-direction: column; }
  .sp-dtag { font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--sy-cyan-ink); }
  .sp-dom h3 { margin: 8px 0 10px; }
  .sp-dom p { color: rgba(0,18,20,.72); font-size: 15px; line-height: 1.55; flex: 1; }
  .sp-proof { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--sy-hair); font-size: 13.5px; color: var(--sy-fg-muted); }
  .sp-proof b { color: var(--sy-fg); font-weight: 700; }
  
  /* Piliers (icône Lucide) */
  .sp-pillar { display: flex; flex-direction: column; }
  .sp-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--sy-cyan-ink); background: rgba(22,193,232,.1); border: 1px solid var(--sy-line-cyan); margin-bottom: 18px; }
  .sp-ic i { width: 22px; height: 22px; }
  .sp-pillar h3 { margin-bottom: 8px; }
  .sp-pillar p { color: rgba(0,18,20,.7); font-size: 14.5px; line-height: 1.55; }
  
  /* Blocs labels / logos (confiance & conformité) */
  .sp-badge { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
  .sp-badge__well { height: 56px; min-width: 132px; width: fit-content; }
  .sp-badge p { color: rgba(0,18,20,.62); font-size: 14px; line-height: 1.5; }
  
  /* Cartes preuves (méta + tags) */
  .sp-case { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
  .sp-case__well { height: 48px; min-width: 118px; width: fit-content; }
  .sp-case__link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 4px; font-family: var(--sy-font-mono); font-size: 13px; color: var(--sy-cyan-ink); transition: gap var(--sy-dur) var(--sy-ease); }
  .sp-case:hover .sp-case__link { gap: 12px; }
  .sp-case .sp-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .sp-yr { font-family: var(--sy-font-mono); font-size: 12px; color: rgba(0,18,20,.5); }
  .sp-case p { color: rgba(0,18,20,.66); }
  .sp-case h4 { margin-top: 2px; }
  
  /* Slider logos (style home, fond blanc, hover) */
  .sp-refmarq { margin-top: clamp(36px,4.5vw,56px); width: 100vw; margin-left: calc(50% - 50vw); }
  .sp-reflogo image-slot { width: 100%; height: 100%; }
  .sp-refmarq__foot { display: flex; justify-content: center; margin-top: clamp(30px,3.4vw,44px); }
  .sp-refmarq .logos__track { gap: clamp(20px,2.4vw,34px); padding-right: clamp(20px,2.4vw,34px); }
  .sp-refmarq:hover .logos__track { animation-play-state: paused; }
  .sp-reflogo { display: flex; align-items: center; justify-content: center; min-width: 210px; height: 92px; padding: 0 30px; background: #fff; border: 1px solid var(--sy-hair); border-radius: var(--sy-r-md); font-family: var(--sy-font-display); font-weight: 700; font-size: clamp(1rem,1.4vw,1.25rem); line-height: 1.1; text-align: center; color: rgba(0,18,20,.38); box-shadow: var(--sy-shadow-raise-light); transition: transform .3s var(--sy-ease), box-shadow .3s ease, color .3s ease; }
  .sp-reflogo:hover { transform: translateY(-3px); color: var(--sy-cyan-ink); box-shadow: 12px 12px 26px rgba(0,18,20,.14), -8px -8px 20px #fff; }
  
  /* Méthode (étapes) */
  .sp-step { border-top: 1px solid var(--sy-line-cyan); padding-top: 18px; }
  .sp-step .sp-n { font-family: var(--sy-font-mono); font-size: 13px; color: var(--sy-cyan); }
  .sp-step h4 { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.15rem; margin: 12px 0 8px; }
  .sp-step p { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.72); }
  .sy-surface-light .sp-step p { color: rgba(0,18,20,.68); }
  
  /* Note de bas de section */
  .sp-footnote { margin-top: 28px; font-size: 13.5px; font-style: italic; line-height: 1.5; color: rgba(255,255,255,.6); }
  .sy-surface-light .sp-footnote { color: rgba(0,18,20,.52); }
  
  /* Carte « référentiel » : logo, sous-titre, texte, tags */
  .sp-ref__well { height: 64px; width: 160px; justify-content: flex-start; padding: 0; background: none; margin-bottom: 16px; }
  .sp-ref__well image-slot { display: block; width: 100%; height: 100%; }
  .sp-ref__sub { margin-top: 10px; font-size: 1.05rem; }
  .sp-ref .sy-taglist { margin-top: 18px; }
  
  /* Contact final */
  .sp-final { text-align: center; }
  .sp-final .sy-container { display: flex; flex-direction: column; align-items: center; }
  .sp-final .sy-kicker { justify-content: center; }
  .sp-final h2 { margin-top: 16px; max-width: 22ch; }
  .sp-final p { margin-top: 18px; max-width: 52ch; }
  .sp-final .sy-btn { margin-top: 30px; }
  
  @media (max-width: 960px) { .sp-feat--fig, .sp-feat--media { grid-template-columns: 1fr; } .sp-mock { aspect-ratio: 16/10; } }
  @media (max-width: 860px) { .sp-4 { grid-template-columns: 1fr 1fr; } .sp-3 { grid-template-columns: 1fr; } }
  @media (max-width: 640px) { .sp-2, .sp-4 { grid-template-columns: 1fr; } }
  
  
  /* =========================================================================
     10. BLOCS DES PAGES EXPERTISES  (.ex-)
     ========================================================================= */
  
  /* Fil d'Ariane : réutilise .sp-bread. Hero : réutilise .sp-hero / .sp-adv. */
  
  /* --- Chips technos (fond sombre) --- */
  .ex-chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: clamp(30px,3.4vw,44px); }
  .ex-chips span { font-family: var(--sy-font-mono); font-size: 12.5px; letter-spacing: .03em; color: var(--sy-cyan-2);
    background: rgba(22,193,232,.08); border: 1px solid var(--sy-line-cyan); border-radius: var(--sy-r-pill);
    padding: 9px 16px; transition: background .25s ease, color .25s ease, transform .25s var(--sy-ease); }
  .ex-chips span:hover { background: rgba(22,193,232,.18); color: var(--sy-cream); transform: translateY(-2px); }
  .sy-surface-light .ex-chips span { color: var(--sy-cyan-ink); background: rgba(22,193,232,.07); }
  .sy-surface-light .ex-chips span:hover { color: var(--sy-ink); }
  
  /* --- Capacités (petites cartes en relief sombre) --- */
  .ex-cap { padding: clamp(22px,2.2vw,28px); border-radius: var(--sy-r-lg); background: var(--sy-ink-4);
    border: 1px solid var(--sy-hair-dark); box-shadow: var(--sy-shadow-raise-dark);
    transition: transform .3s var(--sy-ease), box-shadow .3s ease; display: flex; flex-direction: column; }
  .ex-cap:hover { transform: translateY(-3px); box-shadow: var(--sy-shadow-card); }
  .ex-cap h4 { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
  .ex-cap p { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.72); }
  .sy-surface-dark .sp-ic, .sy-surface-dark2 .sp-ic { color: var(--sy-cyan); background: rgba(22,193,232,.12); }
  /* variante fond clair */
  .sy-surface-light .ex-cap { background: #fff; border-color: var(--sy-hair); box-shadow: var(--sy-shadow-raise-light); }
  .sy-surface-light .ex-cap:hover { box-shadow: 14px 14px 30px rgba(0,18,20,.14), -8px -8px 20px #fff; }
  .sy-surface-light .ex-cap p { color: rgba(7,10,14,.7); }
  
  /* --- Comparaison en deux panneaux --- */
  .ex-cmp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.2vw,24px); margin-top: clamp(36px,4vw,52px); }
  .ex-panel { padding: clamp(24px,2.8vw,34px); border-radius: var(--sy-r-xl); }
  .ex-panel--neg { background: rgba(255,255,255,.02); border: 1px solid var(--sy-hair-dark); }
  .ex-panel--pos { background: var(--sy-ink-4); border: 1px solid var(--sy-line-cyan); box-shadow: var(--sy-shadow-raise-dark); }
  .ex-panel .ex-lab { font-family: var(--sy-font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
  .ex-panel--neg .ex-lab { color: rgba(255,255,255,.45); }
  .ex-panel--pos .ex-lab { color: var(--sy-cyan); }
  .ex-panel h3 { margin: 10px 0 18px; }
  .ex-panel ul { margin: 0; padding: 0; list-style: none; }
  .ex-panel li { position: relative; padding: 12px 0 12px 30px; font-size: 15px; line-height: 1.55; border-top: 1px solid var(--sy-hair-dark); }
  .ex-panel li:first-child { border-top: 0; }
  .ex-panel--neg li { color: rgba(255,255,255,.8); }
  .ex-panel--neg li::before { content: "✕"; position: absolute; left: 0; top: 12px; color: rgba(255,255,255,.38); font-size: 13px; }
  .ex-panel--pos li { color: rgba(255,255,255,1); }
  .ex-panel--pos li::before { content: "✓"; position: absolute; left: 0; top: 11px; color: var(--sy-cyan); font-size: 14px; }
  
  /* --- Packs d'infogérance --- */
  .ex-tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.2vw,24px); margin-top: clamp(40px,4.5vw,56px); }
  .ex-tier { position: relative; display: flex; flex-direction: column; padding: clamp(26px,2.8vw,34px);
    border-radius: var(--sy-r-xl); background: var(--sy-ink-4); border: 1px solid var(--sy-hair-dark);
    box-shadow: var(--sy-shadow-raise-dark); transition: transform .3s var(--sy-ease), box-shadow .3s ease; }
  .ex-tier:hover { transform: translateY(-3px); box-shadow: var(--sy-shadow-card); }
  .ex-tier--feat { border-color: var(--sy-line-cyan); }
  .ex-tier__badge { position: absolute; top: -12px; left: clamp(26px,2.8vw,34px); padding: 5px 13px;
    border-radius: var(--sy-r-pill); background: var(--sy-cyan); color: var(--sy-cyan-deep);
    font-family: var(--sy-font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
  .ex-tier__name { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.2rem; }
  .ex-tier__price { font-family: var(--sy-font-display); font-weight: 500; font-style: italic; font-size: 1.3rem;
    color: var(--sy-cyan); margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--sy-hair-dark); }
  .sy-surface-light .ex-tier__price { color: var(--sy-cyan-ink); border-bottom-color: var(--sy-hair); }
  .ex-tier__for { font-size: 14.5px; line-height: 1.5; color: var(--sy-cyan); margin-top: 10px; }
  .ex-tier ul { margin: 22px 0 0; padding: 0; list-style: none; }
  .ex-tier li { position: relative; padding: 11px 0 11px 26px; font-size: 14.5px; line-height: 1.55;
    color: rgba(255,255,255,.78); border-top: 1px solid var(--sy-hair-dark); }
  .ex-tier li:first-child { border-top: 0; }
  .ex-tier li::before { content: "✓"; position: absolute; left: 0; top: 10px; color: var(--sy-cyan); font-size: 13px; }
  /* variante fond clair */
  .sy-surface-light .ex-tier { background: #fff; border-color: var(--sy-hair); box-shadow: var(--sy-shadow-raise-light); }
  .sy-surface-light .ex-tier:hover { box-shadow: 14px 14px 30px rgba(0,18,20,.14), -8px -8px 20px #fff; }
  .sy-surface-light .ex-tier--feat { border-color: rgba(22,193,232,.55); }
  .sy-surface-light .ex-tier__for { color: var(--sy-cyan-ink); }
  .sy-surface-light .ex-tier li { color: rgba(7,10,14,.75); border-top-color: var(--sy-hair); }
  .sy-surface-light .ex-tier li::before { color: var(--sy-cyan-ink); }
  
  /* --- Renvois vers les profils « Vous êtes » --- */
  .ex-pq { display: flex; flex-direction: column; gap: 9px; padding: clamp(20px,2.2vw,26px);
    border-radius: var(--sy-r-lg); background: var(--sy-ink-4); border: 1px solid var(--sy-hair-dark);
    box-shadow: var(--sy-shadow-raise-dark); color: inherit;
    transition: transform .3s var(--sy-ease), box-shadow .3s ease, border-color .3s ease; }
  .ex-pq:hover { transform: translateY(-3px); border-color: var(--sy-line-cyan); box-shadow: var(--sy-shadow-card); color: inherit; }
  .ex-pq h3 { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.2; }
  .ex-pq p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.66); flex: 1; }
  .ex-pq__go { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px;
    font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .04em; color: var(--sy-cyan);
    transition: gap .25s var(--sy-ease); }
  .ex-pq:hover .ex-pq__go { gap: 13px; }
  .sy-surface-light .ex-pq { background: #fff; border-color: var(--sy-hair); box-shadow: var(--sy-shadow-raise-light); }
  .sy-surface-light .ex-pq:hover { box-shadow: 14px 14px 30px rgba(0,18,20,.14), -8px -8px 20px #fff; }
  .sy-surface-light .ex-pq p { color: rgba(7,10,14,.66); }
  .sy-surface-light .ex-pq__go { color: var(--sy-cyan-ink); }
  
  /* --- Citation / chiffre éditorial --- */
  .ex-quote { font-family: var(--sy-font-body); font-style: italic; font-size: clamp(1.35rem,2.6vw,2rem);
    line-height: 1.3; color: var(--sy-cream); max-width: 30ch; }
  .ex-quote b { font-style: normal; font-family: var(--sy-font-display); font-weight: 800; color: var(--sy-cyan); }
  .sy-surface-light .ex-quote { color: var(--sy-ink); }
  .sy-surface-light .ex-quote b { color: var(--sy-cyan-ink); }
  
  /* --- Liste numérotée (étapes détaillées) --- */
  .ex-numlist { margin: 0; padding: 0; list-style: none; }
  .ex-numlist li { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--sy-hair-dark); }
  .ex-numlist li:first-child { border-top: 0; padding-top: 0; }
  .ex-numlist__n { font-family: var(--sy-font-mono); font-size: 13px; color: var(--sy-cyan); min-width: 26px; padding-top: 3px; }
  .ex-numlist h3, .ex-numlist h4 { font-family: var(--sy-font-display); font-weight: 700; font-size: 1.15rem; margin: 0 0 5px; }
  .ex-numlist p { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.7); }
  .sy-surface-light .ex-numlist li { border-top-color: var(--sy-hair); }
  .sy-surface-light .ex-numlist p { color: rgba(7,10,14,.68); }
  
  /* --- Cartes typologies sur fond clair (réutilise .sp-dom / .sp-proof) --- */
  .ex-num { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .1em; color: var(--sy-cyan-ink); }
  .sy-surface-dark .ex-num, .sy-surface-dark2 .ex-num { color: var(--sy-cyan); }
  
  /* --- Contact final sur fond sombre --- */
  .sy-surface-dark .sp-final p, .sy-surface-dark2 .sp-final p { color: rgba(255,255,255,.75); }
  
  @media (max-width: 960px) { .ex-tiers { grid-template-columns: 1fr; } }
  @media (max-width: 860px) { .ex-cmp { grid-template-columns: 1fr; } }
  
  
  /* --- IA & innovation : repères chiffrés (fond clair) --- */
  .ia-rep { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.2vw,24px); margin-top: clamp(36px,4vw,52px); }
  .ia-rep__cell { padding: clamp(26px,2.8vw,34px); border-radius: var(--sy-r-xl); background: #fff; border: 1px solid var(--sy-hair); box-shadow: var(--sy-shadow-raise-light); transition: transform .3s var(--sy-ease), box-shadow .3s ease; }
  .ia-rep__cell:hover { transform: translateY(-3px); box-shadow: 14px 14px 30px rgba(0,18,20,.14), -8px -8px 20px #fff; }
  .ia-rep__fig { font-family: var(--sy-font-display); font-weight: 800; font-size: clamp(38px,5vw,58px); line-height: .95; letter-spacing: -.03em; color: var(--sy-cyan-ink); }
  .ia-rep__fig small { font-size: 22px; }
  .ia-rep__lb { font-family: var(--sy-font-display); font-weight: 700; font-size: 1rem; margin-top: 12px; }
  .ia-rep p { font-size: 14.5px; line-height: 1.55; margin-top: 8px; color: rgba(7,10,14,.62); }
  
  /* --- IA & innovation : bloc 60 % sans habillage --- */
  .sp-fig--plain { background: none; box-shadow: none; padding: 0; }
  
  /* --- IA & innovation : partenaires du financement --- */
  .ia-partners { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: clamp(30px,3.4vw,44px); }
  .ia-partner { height: 76px; }
  .ia-partner image-slot { display: block; width: 100%; height: 100%; }
  @media (max-width: 520px) { .ia-partners { grid-template-columns: 1fr; } }
  .ia-partners span { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .03em; color: var(--sy-cyan-ink); background: rgba(22,193,232,.08); border: 1px solid rgba(22,193,232,.28); border-radius: var(--sy-r-pill); padding: 8px 15px; }
  
  /* --- IA & innovation : trajectoire --- */
  .ia-traj { margin-top: clamp(32px,3.6vw,46px); }
  .ia-traj svg { width: 100%; height: auto; display: block; }
  
  /* --- IA & innovation : cartes références --- */
  .ia-case__meta { display: flex; justify-content: space-between; gap: 14px; font-family: var(--sy-font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--sy-cyan-ink); }
  .ia-case__meta .yr { color: rgba(7,10,14,.45); }
  .ia-case h3 { margin-top: 14px; }
  .ia-case p { margin-top: 10px; font-size: 15px; line-height: 1.55; }
  .ia-case .ex-chips { margin-top: 20px; }
  .ia-case { display: flex; flex-direction: column; align-items: flex-start; }
  .ia-case__well { margin-top: 16px; }
  .ia-case .sp-case__link { padding-top: 20px; }
  
  @media (max-width: 900px) { .ia-rep { grid-template-columns: 1fr; } }
  
  
  /* =========================================================================
     12. SYSTÈME GRAPHIQUE OCRE « RELIEF »
     ========================================================================= */
  
  /* ---------------------------------------------------------------
     Registre 1 - Couture de section (transition)
     Une bande sobre marquée d'un repère d'arcs ocre.
     --------------------------------------------------------------- */
  .sy-seam { position: relative; height: clamp(56px,7vw,96px); overflow: hidden; color: var(--sy-ocre); }
  .sy-seam--light { background: var(--sy-cream); }
  .sy-seam--dark  { background: var(--sy-ink-2); }
  /* Repère d'arcs au centre de la couture */
  .sy-seam__mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    display: flex; align-items: center; gap: 10px; font-family: var(--sy-font-mono);
    font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; }
  .sy-seam--light .sy-seam__mark { color: var(--sy-ocre-ink); }
  .sy-seam--dark .sy-seam__mark { color: var(--sy-ocre); }
  .sy-seam__mark::before, .sy-seam__mark::after { content: ""; width: clamp(40px,10vw,150px); height: 1px; background: currentColor; opacity: .4; }
  .sy-seam__mark svg { display: block; }
  
  /* ---------------------------------------------------------------
     Registre 3 - Arcs géométriques en aplat
     --------------------------------------------------------------- */
  .sy-arcs { position: absolute; pointer-events: none; color: var(--sy-ocre); }
  .sy-arcs svg { width: 100%; height: 100%; display: block; }
  .sy-arcs .fill-1 { fill: currentColor; opacity: .13; }
  .sy-arcs .fill-2 { fill: currentColor; opacity: .08; }
  .sy-arcs .fill-3 { fill: currentColor; opacity: .05; }
  .sy-arcs .line   { fill: none; stroke: currentColor; stroke-width: 1.2; opacity: .4; }
  
  /* ---------------------------------------------------------------
     Bandeau expertises : étoiles alternées ocre
     --------------------------------------------------------------- */
  .band__star:nth-of-type(even) { fill: var(--sy-ocre-ink); }
  
  /* ---------------------------------------------------------------
     Accordéon expertises
     --------------------------------------------------------------- */
  .svc-list { border-top-color: var(--sy-ocre-line); }
  .svc__num { color: var(--sy-ocre); }
  .svc.is-open .svc__num, .svc:hover .svc__num { color: var(--sy-ocre-2); }
  .svc.is-open, .svc:hover, .svc:focus-within { box-shadow: inset 3px 0 0 var(--sy-ocre), inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(0,0,0,.45), 0 22px 44px rgba(0,0,0,.4); }
  .svc__media { border-color: var(--sy-ocre-line); }
  .svc__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(115deg, var(--sy-ocre-wash), transparent 58%); }
  .svc-arcs { top: 0; right: 0; width: min(34vw,420px); height: min(34vw,420px); z-index: 0; }
  
  /* ---------------------------------------------------------------
     Territoire : anneaux de relief ocre derrière le globe
     --------------------------------------------------------------- */
  .territoire .sy-card .sy-h3 { color: var(--sy-ocre); }
  .territoire .sy-card--outline { border-color: var(--sy-ocre-line); }
  
  /* ---------------------------------------------------------------
     Agréments : familles rythmées à l'ocre
     --------------------------------------------------------------- */
  #agrements { position: relative; overflow: hidden; }
  #agrements .agr-sub .sy-kicker { color: var(--sy-ocre-ink); }
  #agrements .agr-sub .sy-kicker::before { background: var(--sy-ocre-ink); }
  #agrements .agr-card .sy-kicker { color: var(--sy-ocre-ink); }
  #agrements .agr-card__well { position: relative; }
  #agrements .agr-card__well::before { content: ""; position: absolute; left: 0; bottom: -6px; width: 30px; height: 2px; background: var(--sy-ocre); opacity: .8; }
  .agr-arcs { left: -6%; bottom: -10%; width: min(40vw,520px); height: min(40vw,520px); z-index: 0; }
  #agrements > .sy-container { position: relative; z-index: 1; }
  
  /* ---------------------------------------------------------------
     Chiffres-clés : unité ocre
     --------------------------------------------------------------- */
  .metric__num .metric__unit { color: var(--sy-ocre); }
  .metric { border-top: 1px solid var(--sy-ocre-line); padding-top: clamp(18px,2vw,26px); }
  
  /* ---------------------------------------------------------------
     Illustrations de rubrique - éventail d'arcs en aplat
     Remplace la photographie sur les blocs secteurs.
     --------------------------------------------------------------- */
  .illus { position: absolute; inset: 0; overflow: hidden; background: #0B0904; }
  /* relief d'ensemble : le visuel se lit comme une plaque posée */
  .illus--wide { box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -18px 34px rgba(74,47,6,.18), inset 0 18px 30px rgba(255,246,222,.28); }
  .illus--cyan { background: #04161C; }
  .illus svg { width: 100%; height: 100%; display: block; }
  .illus__fan { transition: transform .8s var(--sy-ease); transform-origin: 0 100%; }
  .sector:hover .illus__fan { transform: rotate(-3deg) scale(1.04); }
  .illus--wide .illus__fan { transform-origin: 50% 100%; }
  .svc:hover .illus--wide .illus__fan, .svc.is-open .illus--wide .illus__fan { transform: translateX(10px) scale(1.02); }
  .svc__media .illus { border-radius: 0; }
  /* visuels de rubrique : +50 % de hauteur, uniquement quand ils sont illustrés */
  .svc__media:has(.illus) { aspect-ratio: 8 / 4.5; }
  @media (max-width: 820px) { .svc__media:has(.illus) { aspect-ratio: 16 / 9; } }
  
  /* Agréments : gabarit de logo unique, image toujours contenue */
  .agr-grid--bare .agr-card__well { height: 84px; width: 180px; min-width: 0; max-width: 100%; padding: 0; }
  .agr-card__well image-slot { display: block; width: 100%; height: 100%; }
  
  /* Apparition séquencée des blocs, de la gauche vers la droite */
  .illus--wide .illus-step { opacity: 0; }
  .svc.is-open .illus--wide .illus-step,
  .svc:hover .illus--wide .illus-step,
  .svc:focus-within .illus--wide .illus-step {
    animation: illus-step-in .8s var(--sy-ease) both;
    animation-delay: calc(var(--i) * .52s + .15s);
  }
  @keyframes illus-step-in {
    from { opacity: 0; transform: translateX(-22px); }
    to   { opacity: 1; transform: none; }
  }
  
  /* L'ombre portée des aplats monte progressivement sur 3 s */
  .illus--wide .illus__fan { --shcol: 74,47,6; filter: drop-shadow(7px 10px 11px rgba(74,47,6,0)); }
  .svc.is-open .illus--wide .illus__fan,
  .svc:hover .illus--wide .illus__fan,
  .svc:focus-within .illus--wide .illus__fan { animation: illus-shadow-in 3s linear .5s both; }
  @keyframes illus-shadow-in {
    from { filter: drop-shadow(7px 10px 11px rgba(var(--shcol), 0)); }
    to   { filter: drop-shadow(7px 10px 11px rgba(var(--shcol), .3)); }
  }
  @media (prefers-reduced-motion: reduce) {
    .illus--wide .illus-step { opacity: 1; }
    .svc.is-open .illus--wide .illus-step, .svc:hover .illus--wide .illus-step, .svc:focus-within .illus--wide .illus-step { animation: none; }
    .illus--wide .illus__fan { filter: drop-shadow(7px 10px 11px rgba(74,47,6,.3)); }
    .svc.is-open .illus--wide .illus__fan, .svc:hover .illus--wide .illus__fan, .svc:focus-within .illus--wide .illus__fan { animation: none; }
  }
  
  /* Voile flouté à gauche du hero */
  .hero .hero__scrim { opacity: 1; }
  
  /* ---------------------------------------------------------------
     Accordéon : bouton blanc au repos, cyan au survol
     --------------------------------------------------------------- */
  .svc .sy-btn--cyan { background: var(--sy-cream); color: #0A1418; box-shadow: 0 4px 12px rgba(0,0,0,.34), inset 0 1px 0 #fff; }
  .svc .sy-btn--cyan:hover { background: linear-gradient(180deg,#25d0f6,#12b1d7); color: var(--sy-cyan-deep);
    box-shadow: 0 18px 36px rgba(22,193,232,.5), inset 0 1px 0 rgba(255,255,255,.7); }
  .svc .sy-btn--cyan:active { box-shadow: 0 6px 14px rgba(22,193,232,.4), inset 0 3px 9px rgba(4,34,43,.4); }
  
  /* ---------------------------------------------------------------
     Agréments : nom au-dessus du logo, contenu centré, familles titrées
     --------------------------------------------------------------- */
  #agrements .agr-sub__title { font-family: var(--sy-font-display); font-weight: 700; letter-spacing: -.01em;
    font-size: clamp(1.35rem,2.2vw,1.75rem); color: var(--sy-ink); }
  .agr-grid--bare .agr-card { align-items: center; text-align: center; gap: 8px; }
  .agr-card__name { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .16em;
    text-transform: uppercase; color: var(--sy-ocre-ink); }
  .agr-grid--bare .agr-card__well { margin: 2px auto 10px; }
  #agrements .agr-card__well::before { display: none; }
  .agr-grid--bare .agr-card p { max-width: 34ch; }
  /* toutes les familles d'agréments partagent le même rythme de colonnes */
  #agrements .agr-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  @media (max-width: 1080px) { #agrements .agr-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
  @media (max-width: 620px)  { #agrements .agr-grid { grid-template-columns: 1fr; } }
  
  /* Centrales d'achat (section dédiée) */
  #centrales .agr-grid { margin-top: clamp(36px,4vw,52px); grid-template-columns: repeat(3, minmax(0,1fr)); }
  @media (max-width: 820px) { #centrales .agr-grid { grid-template-columns: 1fr; } }
  #centrales .agr-card__name { color: var(--sy-cyan-ink); }
  
  
  /* =========================================================================
     13. PAGE RÉALISATIONS  (.rz-)
     ========================================================================= */
  
  .rz-hero { max-width: 940px; }
  .rz-hero h1 { margin-top: 22px; }
  .rz-hero .sy-lead { margin-top: 24px; max-width: 56ch; }
  
  /* Barre de filtres */
  .rz-bar { position: sticky; top: 92px; z-index: 30; background: rgba(252,250,246,.92); backdrop-filter: blur(14px);
    border-top: 1px solid var(--sy-hair); border-bottom: 1px solid var(--sy-hair); padding: 18px 0; }
  .rz-bar__top { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .rz-bar__meta { margin-left: auto; display: flex; align-items: center; gap: 16px; }
  #rz-count { font-family: var(--sy-font-mono); font-weight: 700; font-size: 13px; letter-spacing: .04em; color: var(--sy-fg); white-space: nowrap; }
  [data-rz-reset] { font-family: var(--sy-font-mono); font-size: 12.5px; color: rgba(0,18,20,.55); background: none; border: 0; cursor: pointer; padding: 0; }
  [data-rz-reset]:hover { color: var(--sy-ocre-ink); }
  
  /* Trois boutons de filtre à survol */
  .rz-filters { display: flex; gap: 8px; flex-wrap: wrap; }
  .rz-fitem { position: relative; }
  .rz-fbtn { display: inline-flex; align-items: center; gap: 9px; font: inherit; font-size: 14.5px;
    padding: 10px 18px; border-radius: 999px; cursor: pointer; background: #fff;
    border: 1px solid var(--sy-hair); color: var(--sy-ink); transition: .18s ease; }
  .rz-fitem:hover .rz-fbtn, .rz-fitem:focus-within .rz-fbtn { border-color: var(--sy-ocre); }
  .rz-fitem.is-active .rz-fbtn { background: var(--sy-cyan); border-color: var(--sy-cyan); color: var(--sy-cyan-deep); }
  .rz-fitem.is-active .rz-fbtn__n { background: var(--sy-cyan-deep); color: var(--sy-cyan); }
  .rz-fbtn__chev { font-size: 8px; opacity: .5; transition: transform .22s ease; }
  .rz-fitem:hover .rz-fbtn__chev, .rz-fitem:focus-within .rz-fbtn__chev { transform: rotate(180deg); }
  .rz-fbtn__n { font-family: var(--sy-font-mono); font-size: 11px; line-height: 1; padding: 3px 6px;
    border-radius: 999px; background: var(--sy-ocre); color: #071014; }
  .rz-pop { position: absolute; top: 100%; left: 0; z-index: 40; padding-top: 10px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s var(--sy-ease), visibility .22s; }
  .rz-fitem:hover .rz-pop, .rz-fitem:focus-within .rz-pop { opacity: 1; visibility: visible; transform: none; }
  .rz-pop__panel { display: flex; flex-wrap: wrap; gap: 8px; width: max-content; max-width: min(520px, 78vw);
    padding: 16px; border-radius: 18px; background: rgba(7,10,14,.96); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.12); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
  .rz-chip { font-size: 13.5px; line-height: 1; padding: 9px 14px; border-radius: 999px; cursor: pointer;
    border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); color: rgba(255,255,255,.82); transition: .16s ease; }
  .rz-chip:hover { border-color: var(--sy-ocre); color: var(--sy-ocre); }
  .rz-chip.is-on { background: var(--sy-ocre); border-color: var(--sy-ocre); color: #071014; }
  
  /* Grille */
  .rz-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 208px;
    gap: clamp(14px,1.6vw,20px); margin-top: 0; }
  .rz-year { display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
    padding: 20px 0; border-top: 2px solid var(--sy-ocre); scroll-margin-top: 200px; }
  .rz-year__n { font-family: var(--sy-font-mono); font-size: clamp(38px,4vw,54px); line-height: .9; color: var(--sy-ocre-ink); }
  .rz-year__c { font-family: var(--sy-font-mono); font-size: 12px; color: rgba(0,18,20,.45); }
  
  .rz-card { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 22px;
    background: #fff; border: 1px solid var(--sy-hair); border-radius: 14px; overflow: hidden; transition: .2s ease; }
  .rz-card:hover { border-color: rgba(200,146,43,.5); box-shadow: 0 14px 30px rgba(0,18,20,.08); transform: translateY(-2px); }
  .rz-card__logo { height: 52px; width: auto; max-width: 128px; flex: 0 0 auto; display: flex; align-items: flex-start; justify-content: flex-end; }
  .rz-card__logo img { max-height: 100%; max-width: 100%; object-fit: contain; object-position: right top; }
  .rz-card__ini { font-family: var(--sy-font-mono); font-size: 13px; letter-spacing: .08em; color: #fff;
    background: var(--sy-ocre-ink); border-radius: 8px; padding: 7px 10px; }
  .rz-card__client { font-size: 16.5px; line-height: 1.25; margin: 0; }
  .rz-card__titre { font-size: 14px; line-height: 1.45; color: rgba(0,18,20,.6); margin: 0; }
  .rz-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .rz-card__tag { font-size: 11.5px; letter-spacing: .02em; color: rgba(0,18,20,.55); border: 1px solid var(--sy-hair); border-radius: 999px; padding: 4px 9px; }
  .rz-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
  .rz-card__yr { font-family: var(--sy-font-mono); font-size: 11.5px; line-height: 1.2; color: rgba(0,18,20,.42);
    white-space: nowrap; }
  .rz-card__head { flex: 1 1 auto; display: flex; flex-direction: column; gap: 5px; min-width: 0; }
  
  /* Projets phares */
  .rz-card--big { grid-column: span 2; grid-row: span 2; padding: 0; justify-content: flex-end;
    background: #0B1E26; border-color: rgba(200,146,43,.35); }
  .rz-big__visual { position: absolute; inset: 0; }
  .rz-big__visual img { width: 100%; height: 100%; object-fit: cover; }
  .rz-big__ph { position: absolute; inset: 0; background:
    radial-gradient(120% 90% at 12% 8%, rgba(232,200,136,.28) 0%, transparent 55%),
    linear-gradient(143deg, #123243 0%, #0B1E26 46%, #1A2E1C 100%); }
  .rz-card--big::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(4,14,18,.92) 0%, rgba(4,14,18,.55) 42%, transparent 78%); }
  .rz-big__head { position: relative; z-index: 2; padding: 26px; display: flex; flex-direction: column; gap: 8px; transition: .32s ease; }
  .rz-big__tag { font-family: var(--sy-font-mono); font-size: 11.5px; letter-spacing: .06em; color: var(--sy-ocre); }
  .rz-big__client { font-size: clamp(20px,2vw,26px); line-height: 1.15; color: #fff; margin: 0; }
  .rz-big__titre { font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.72); margin: 0; max-width: 40ch; }
  .rz-big__over { position: absolute; inset: 0; z-index: 3; padding: 26px; display: flex; flex-direction: column;
    justify-content: flex-end; gap: 12px; background: linear-gradient(0deg, rgba(4,14,18,.96) 0%, rgba(4,14,18,.86) 60%, rgba(4,14,18,.7) 100%);
    opacity: 0; transform: translateY(10px); transition: .32s ease; pointer-events: none; }
  .rz-card--big:hover .rz-big__over, .rz-card--big:focus-visible .rz-big__over { opacity: 1; transform: none; }
  .rz-card--big:hover .rz-big__head, .rz-card--big:focus-visible .rz-big__head { opacity: 0; }
  .rz-big__court { font-size: clamp(18px,1.7vw,22px); line-height: 1.25; color: #fff; margin: 0; }
  .rz-big__long { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.76); margin: 0; }
  .rz-big__yr { font-family: var(--sy-font-mono); font-size: 12px; color: var(--sy-ocre); }
  
  #rz-sentinel { height: 1px; }
  #rz-empty { margin-top: 48px; color: rgba(0,18,20,.55); }
  
  @media (max-width: 1180px) { .rz-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
  @media (max-width: 820px) {
    .rz-bar { position: static; }
    .rz-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 190px; }
    .rz-card--big { grid-column: span 2; grid-row: span 2; }
  }
  @media (max-width: 560px) {
    .rz-grid { grid-template-columns: 1fr; }
    .rz-card--big { grid-column: 1; }
  }
  
  
  /* =========================================================================
     14. RÉFÉRENCES CLIENTS - gabarits de logo
     ========================================================================= */
  
  /* Cartes projets mis en avant : logo en haut à droite, date sous le titre */
  .sp-case { position: relative; }
  .sp-case .sp-meta { display: contents; }
  .sp-case .sp-meta > .sy-tag--label { order: 1; }
  .sp-case h4 { order: 2; max-width: max(52%, calc(100% - 156px)); max-width: 100%; margin-top: 20px;}
  .sp-case .sp-yr { order: 3; }
  .sp-case p { order: 4; }
  .sp-case .sy-taglist { order: 5; }
  .sp-case .sp-case__link { order: 6; }
  .sp-case__well { position: absolute; top: clamp(18px,2vw,24px); right: clamp(18px,2vw,24px);
    width: min(140px, 40%); height: 96px; min-width: 0; padding: 0; margin: 0; background: transparent; }
  .sp-case__well image-slot { display: block; width: 100%; height: 100%; }
  
  /* Même gabarit sur les cartes IA & innovation */
  .ia-case { position: relative; }
  .ia-case__meta { display: contents; }
  .ia-case__meta > span { order: 1; }
  .ia-case h3 { order: 2; max-width: max(52%, calc(100% - 156px)); }
  .ia-case__meta > .yr { order: 3; }
  .ia-case p { order: 4; }
  .ia-case .ex-chips { order: 5; }
  .ia-case .sp-case__link { order: 6; }
  .ia-case__well { margin-top: 0; }
  
  /* Bandeau de logos défilants : cadre strictement blanc */
  .sp-reflogo { background: #fff; }
  .sp-reflogo image-slot { display: block; }
  
  /* Réalisations - grands blocs : logo en bas à droite sur fond blanc */
  .rz-big__logo { position: absolute; right: 20px; bottom: 20px; z-index: 4;
    width: 156px; height: 88px; padding: 10px; border-radius: 10px; background: #fff;
    display: flex; align-items: center; justify-content: center; }
  .rz-big__logo image-slot { display: block; width: 100%; height: 100%; }
  .rz-big__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .rz-big__head, .rz-big__over { padding-right: 196px; }
  @media (max-width: 560px) {
    .rz-big__logo { width: 118px; height: 68px; }
    .rz-big__head, .rz-big__over { padding-right: 150px; }
  }
  
  /* Alignement du haut des deux colonnes (la grille d'arguments garde une marge propre) */
  .sy-visavis > .sp-grid, .sy-visavis > .sy-visavis__args, .sy-visavis > .sy-visavis__col { margin-top: 0; }
  
  .rz-big__visual image-slot { display: block; width: 100%; height: 100%; }
  .rz-card--big::after, .rz-big__head { pointer-events: none; }
  
  /* Zone Phelen : surface claire explicite (le body est sombre) */
  .phelen-zone { position: relative; background: var(--sy-cream); }
  
  /* Cartes projets mis en avant : logos contenus, hauteur réduite de moitié */
  .sp-case__well, .ia-case__well { height: 70px; max-width: 100%; overflow: hidden; }
  .sp-case__well image-slot, .ia-case__well image-slot,
  .sp-case__well img, .ia-case__well img { max-width: 100%; max-height: 100%; object-fit: contain; }
  .sp-case h4, .ia-case h3 { max-width: max(52%, calc(100% - 156px)); }
  
  /* Bandeau de logos défilants : containers 25 % plus étroits, respiration verticale */
  .sp-refmarq { padding: 10px 0; }
  .sp-reflogo { min-width: 158px; padding: 0 22px; }
  .sp-reflogo image-slot, .sp-reflogo img { max-width: 100%; max-height: 100%; object-fit: contain; }
  @media (max-width: 560px) { .sp-reflogo { min-width: 132px; padding: 0 16px; } }
  
  
  /* ---- Pages légales : contenu textuel ---- */
  .legal-body { display: flex; flex-direction: column; gap: 18px; max-width: 68ch; }
  .legal-body h3 { font-size: clamp(1.05rem,1.5vw,1.25rem); letter-spacing: -.01em; margin-top: 10px; }
  .legal-body h3:first-child { margin-top: 0; }
  .legal-body p, .legal-body li { font-size: 1rem; line-height: 1.75; color: var(--sy-fg-muted); }
  .legal-body ul { display: flex; flex-direction: column; gap: 8px; padding-left: 20px; list-style: none; }
  .legal-body ul li { position: relative; }
  .legal-body ul li::before { content: ""; position: absolute; left: -18px; top: .72em; width: 7px; height: 1px; background: var(--sy-cyan); }
  .legal-body dl { display: grid; grid-template-columns: minmax(0,10rem) minmax(0,1fr); gap: 10px 24px; }
  .legal-body dt { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--sy-fg-muted); padding-top: 3px; }
  .legal-body dd { font-size: 1rem; line-height: 1.7; color: var(--sy-fg); }
  .legal-body a { color: var(--sy-cyan-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
  .legal-body a:hover { text-decoration-thickness: 2px; }
  .legal-tbd { font-family: var(--sy-font-mono); font-size: 12px; letter-spacing: .03em; padding: 1px 7px; border: 1px dashed var(--sy-hair); border-radius: 3px; color: var(--sy-fg-muted); }
  @media (max-width: 620px) { .legal-body dl { grid-template-columns: 1fr; gap: 2px 0; } .legal-body dt { padding-top: 12px; } }
  
  
  /* ---------------------------------------------------------------
     Emplacements d'images (livraison)
     Reprend exactement la boîte de l'ancien composant <image-slot> :
     le conteneur remplit son parent, l'image est cadrée à l'intérieur.
     --------------------------------------------------------------- */
  .im { display: block; position: relative; width: 100%; height: 100%; aspect-ratio: 3 / 2; }
  .im__i { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
  .phelen__logo .im__i {object-fit: cover !important;}
  .im__i--contain { object-fit: contain; }
  .im__i--left { object-position: left center; }
  /* Emplacement encore vide : visuel ou logo à fournir. */
  .im-todo { display: flex; align-items: center; justify-content: center; text-align: center;
    padding: 10px; box-sizing: border-box; font-family: var(--sy-font-mono); font-size: 11px;
    line-height: 1.4; letter-spacing: .02em; color: var(--sy-fg-muted);
    border: 1.5px dashed var(--sy-hair); background: rgba(7,10,14,.03); }
  .sy-surface-dark .im-todo, .sy-surface-dark2 .im-todo {
    color: var(--sy-fg-muted-dark); border-color: var(--sy-hair-dark); background: rgba(253,251,247,.04); }
  