    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       AUDIT DESIGN SYSTEM — 2026-05-08
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

       CORRECTIONS APPLIQUEES :
       - 66 font-weight ≥600 corrigés → 500 (CSS)
       - 1 font-weight ≥600 corrigé → 500 (HTML inline)
       - 8 hex literal anthracite/teal/orange normalisés
       - 148 rgba normalisés (anthracite 105, teal 22, orange 20)
         → palette officielle #161824 / #3E6A78 / #E85E1A
       - Variables :root étendues (palette, fs-*, r-*, t-*, layout)
       - 923 prix HTML déjà au format XX,XX€/kg (0 anomalie)

       PALETTE AUTORITAIRE :
         Anthracite #161824   Teal #3E6A78    Forest #4A7A55
         Orange    #E85E1A   Cream #F5F5F0    Beige  #EDEAE2
         Muted     #5b5d65   Pale  #9a9ba1

       FONT (DS §3 — appliqué 2026-05-13) :
         --font-display: Unbounded 600/700/800 self-host
         --font-body:    Helvetica Neue (DS §3)
         --font-italic:  Fraunces 400 italic (citations credo)

       ANOMALIES SIGNALEES (à vérifier humainement) :
       - Couleurs gradient bleu nuit (#0D1B2A, #1E3448, #1B2B3A,
         #0F2236) utilisées sur fond Materials anciens — gardées
         comme variantes de stack (gradient hero/blue-zone).
       - Oranges hover/variantes (#C44E15, #B83E0F, #F36B30)
         conservés comme shades du CTA.
       - Variables --space-* / --gutter / --radius-sm encore
         utilisées dans 200+ règles (héritées) — non remplacées
         par --section-py / --container-px / --r-* pour éviter
         régressions massives.
       - !important : volume élevé sur sections récentes
         (chatbot, mat-*, FAQ, mobile menu) — justifiés par
         override de cascades historiques empilées.
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

    /* Self-hosted fonts — DS §3 (Unbounded 500/600/700 + Fraunces 400 italic).
       Hotfix Phase 1.1 : 800 retiré (plus aucun usage post-refonte typo),
       500 ajouté pour les titres XL (hero accueil clamp 72-120px). */
    @font-face {
      font-family: 'Unbounded';
      src: url('/fonts/unbounded-500.woff2') format('woff2');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Unbounded';
      src: url('/fonts/unbounded-600.woff2') format('woff2');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Unbounded';
      src: url('/fonts/unbounded-700.woff2') format('woff2');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Fraunces';
      src: url('/fonts/fraunces-400-italic.woff2') format('woff2');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       NM design system tokens — DESIGN-SYSTEM.md (2026-05-13)
       Coexistent avec --c-* historiques. À terme : migration vers --nm-*.
       Voir DESIGN-SYSTEM.md sections 2, 4, 5 pour les règles d'usage.
       ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    :root {
      /* Fonds */
      --nm-charcoal: #2A2826;
      --nm-night: #181830;
      --nm-cream: #F4F0E8;
      --nm-cream-2: #EDE8DC;
      --nm-white: #FFFFFF;
      /* Accents */
      --nm-orange: #E96821;
      --nm-orange-hover: #D55816;
      --nm-slate: #4D6068;
      --nm-forest: #2D5A4A;
      /* Sémantique */
      --nm-success-bg: #E8F0E5;
      --nm-success-fg: #2D5A4A;
      --nm-danger-bg: #FCE8E3;
      --nm-danger-fg: #C0431E;
      --nm-neutral-bg: #EDE8DC;
      --nm-neutral-fg: #4D6068;
      /* Bordures */
      --nm-border: rgba(42, 40, 38, 0.08);
      --nm-border-strong: rgba(42, 40, 38, 0.14);
      --nm-border-dark: rgba(244, 240, 232, 0.12);
      /* Effets */
      --nm-live-green: #22C55E;
      /* Typographie */
      --nm-font-display: 'Unbounded', system-ui, sans-serif;
      --nm-font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --nm-font-italic: 'Fraunces', Georgia, serif;
      /* Espacement (échelle stricte) */
      --nm-space-1: 4px;
      --nm-space-2: 8px;
      --nm-space-3: 12px;
      --nm-space-4: 16px;
      --nm-space-5: 24px;
      --nm-space-6: 32px;
      --nm-space-7: 48px;
      --nm-space-8: 64px;
      --nm-space-9: 96px;
      --nm-space-10: 128px;
      /* Radius */
      --nm-radius-sm: 4px;
      --nm-radius-md: 8px;
      --nm-radius-lg: 12px;
      --nm-radius-xl: 16px;
      --nm-radius-pill: 999px;
    }

    :root {
      /* Empêche Chrome/Edge mobile d'inverser le rendu en dark mode automatique. */
      color-scheme: light only;
      /* ─── Palette officielle Nilimetal (Design System v1) ─── */
      --c-cream:        #F5F5F0;  /* fond clair principal */
      --c-beige:        #EDEAE2;  /* fond cards secondaires */
      --c-white:        #FFFFFF;
      --c-anthracite:   #161824;  /* texte principal / fond sombre */
      --c-muted:        #5b5d65;  /* texte secondaire */
      --c-pale:         #9a9ba1;  /* texte tertiaire / unit /kg */
      --c-anthra-soft:  rgba(22,24,36,0.62);
      --c-anthra-mute:  rgba(22,24,36,0.38);
      --c-anthra-faint: rgba(22,24,36,0.10);
      --c-teal:         #3E6A78;  /* couleur primaire */
      --c-teal-light:   rgba(62,106,120,0.12);
      --c-teal-on-dark: rgba(100,180,200,0.85);
      --c-forest:       #4A7A55;  /* tendance positive */
      --c-orange:       #E85E1A;  /* CTA / accent */
      --c-orange-soft:  #F08555;
      --c-orange-light: rgba(232,94,26,0.12);
      --c-orange-hover: #C44E15;
      --c-border-subtle: rgba(22,24,36,0.08);
      --c-border:       rgba(22,24,36,0.12);
      --c-border-hover: rgba(22,24,36,0.40);
      --c-dark:         #0D0F14;

      /* ─── Tailles typo ─── */
      --fs-display-xl: clamp(48px, 6vw, 72px);
      --fs-display-l:  clamp(36px, 5vw, 56px);
      --fs-display-m:  clamp(28px, 4vw, 44px);
      --fs-h2:         32px;
      --fs-h3:         20px;
      --fs-h4:         16px;
      --fs-body-l:     16px;
      --fs-body:       15px;
      --fs-small:      14px;
      --fs-caption:    13px;
      --fs-eyebrow:    11px;

      /* ─── Border radius ─── */
      --r-card:      14px;
      --r-pill:      100px;
      --r-input:     8px;
      --r-img:       8px;
      --r-container: 16px;

      /* ─── Transitions ─── */
      --t-fast: 0.15s ease;
      --t-base: 0.2s ease;
      --t-card: 0.25s cubic-bezier(0.2,0.8,0.2,1);

      /* ─── Layout ─── */
      --container-max: 1240px;
      --container-px:  32px;
      --section-py:    120px;
      /* Dark blue palette (for materials + blue-zone) */
      --c-blue-1:       #0D1B2A;
      --c-blue-2:       #1B2B3A;
      --c-blue-3:       #1E3448;
      --c-blue-4:       #0F2236;
      --c-blue-5:       #112233;
      --c-blue-6:       #080E18;

      --font-display: 'Unbounded', sans-serif;
      --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;

      --space-xs:   8px;
      --space-sm:   16px;
      --space-md:   32px;
      --space-lg:   56px;
      --space-xl:   88px;
      --space-2xl:  112px;

      --max-width:  1440px;
      --gutter:     80px;

      --radius-sm:  3px;
      --radius-md:  4px;
      --radius-pill: 100px;

      --transition: 0.22s ease;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      background: var(--c-cream);
      color: var(--c-anthracite);
      overflow-x: hidden;
      line-height: 1.55;
      font-size: 17px;
      padding-top: 68px;
    }
    p, li { font-size: 15px; }
    small, .small-label { font-size: 11px; }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb {
      background: rgba(62,106,120,0.4);
      border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover { background: rgba(62,106,120,0.65); }

    a { transition: color 0.2s ease, opacity 0.2s ease; }
    button, .btn-primary, .btn-secondary, .btn-cta-white, .btn-submit, .nav-cta {
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    button:active, .btn-primary:active, .btn-secondary:active,
    .btn-cta-white:active, .btn-submit:active, .nav-cta:active {
      transform: scale(0.98);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a { color: inherit; text-decoration: none; }

    button {
      cursor: pointer;
      border: none;
      font-family: var(--font-body);
      background: none;
      color: inherit;
    }

    ul { list-style: none; }

    h1, h2 { text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    ::selection {
      background: var(--c-orange);
      color: white;
    }

    :focus-visible {
      outline: 2px solid var(--c-teal);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }

    /* ========== SKIP LINK ========== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 16px;
      background: var(--c-orange);
      color: white;
      padding: 12px 18px;
      border-radius: var(--radius-md);
      font-size: 13px;
      font-weight: 500;
      z-index: 9999;
      transition: top 0.2s ease;
    }
    .skip-link:focus { top: 16px; }

    /* ========== NAVBAR — GLASSMORPHISM FIXED ========== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 68px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 4px 24px rgba(22,24,36,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--gutter);
      transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    }
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.88);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 4px 32px rgba(22,24,36,0.10);
    }

    .nav-logo img { height: 34px; width: auto; }
    .nav-logo-fallback {
      font-family: var(--font-body);
      font-weight: 500;
      font-style: italic;
      color: var(--c-anthracite);
      font-size: 16px;
      line-height: 1;
      display: none;
    }

    .nav-links {
      display: flex;
      gap: 0;
      align-items: center;
    }
    .nav-links li {
      position: relative;
      display: flex;
      align-items: center;
    }
    .nav-links li::after {
      content: "·";
      color: rgba(22,24,36,0.18);
      margin: 0 14px;
      font-size: 12px;
    }
    .nav-links li:last-child::after { content: none; }

    .nav-links a {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11px;
      color: rgba(22,24,36, 0.70);
      letter-spacing: 0.13em;
      text-transform: uppercase;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: rgba(22,24,36, 1); }
    .nav-links a.active { color: var(--c-anthracite); font-weight: 500; }
    .nav-links li::after { color: rgba(22,24,36,0.20); }

    .nav-cta {
      background: var(--c-orange);
      color: white;
      height: 42px;
      padding: 0 22px;
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      transition: background var(--transition);
    }
    .nav-cta:hover { background: #c04010; }

    .hamburger {
      display: none;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--c-anthracite);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
    body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ═══════════════════════════
       HERO — Ken Burns only (everything else inline on #accueil)
       ═══════════════════════════ */
    #accueil img {
      animation: hero-zoom 24s ease-in-out infinite alternate;
      will-change: transform;
    }
    @keyframes hero-zoom {
      0%   { transform: scale(1.00); }
      100% { transform: scale(1.06); }
    }

    .btn-primary {
      height: 50px;
      padding: 0 28px;
      background: var(--c-orange);
      color: white;
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      border: none;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.15s ease;
    }
    .btn-primary:hover { background: #c04010; transform: translateY(-1px); }

    .btn-secondary {
      height: 50px;
      padding: 0 24px;
      background: transparent;
      color: var(--c-anthracite);
      border: 1.5px solid rgba(22,24,36,0.22);
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
      transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }
    .btn-secondary:hover {
      border-color: var(--c-anthracite);
      color: var(--c-anthracite);
    }


    /* ========== PRICE TICKER (infinite scroll) ========== */
    .price-ticker {
      height: 56px;
      overflow: hidden;
      position: relative;
    }
    .price-ticker::before,
    .price-ticker::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    .price-ticker::before { left: 0; }
    .price-ticker::after  { right: 0; }
    .ticker-track {
      display: flex;
      align-items: center;
      height: 100%;
      width: max-content;
    }
    .ticker-inner {
      display: flex;
      align-items: center;
      gap: 0;
      animation: ticker-scroll 50s linear infinite;
      white-space: nowrap;
    }
    .ticker-inner:hover {
      animation-play-state: paused;
    }
    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 0 28px;
    }
    .ticker-metal {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .ticker-price {
      font-size: 18px;
      font-weight: 500;
      font-family: var(--font-display);
    }
    .ticker-unit {
      font-size: 11px;
      font-weight: 300;
      margin-left: 2px;
    }
    .ticker-trend {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      white-space: nowrap;
    }
    .trend-pill {
      font-weight: 500;
      font-size: 11px;
      padding: 3px 10px;
      border-radius: var(--radius-pill);
      white-space: nowrap;
    }
    .ticker-sep {
      font-size: 22px;
      margin-left: 8px;
    }

    /* Ticker theme — surface cream secondaire (DS §2 token --nm-cream-2),
       overrides any cascading dark color from legacy contexts. */
    .price-ticker {
      background: var(--nm-cream-2) !important;
      border-top: 1px solid rgba(22,24,36,0.08) !important;
      border-bottom: 1px solid rgba(22,24,36,0.08) !important;
    }
    .price-ticker::before {
      background: linear-gradient(to right, var(--nm-cream-2), transparent) !important;
    }
    .price-ticker::after {
      background: linear-gradient(to left, var(--nm-cream-2), transparent) !important;
    }
    .ticker-timestamp {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 20px 0 56px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      color: rgba(22,24,36,0.5);
      background: linear-gradient(to right, transparent, var(--nm-cream-2) 35%);
      white-space: nowrap;
      z-index: 5;
      pointer-events: none;
    }
    .ticker-timestamp #ticker-time {
      margin-left: 4px;
      font-weight: 500;
      color: rgba(22,24,36,0.7);
    }
    .ticker-metal {
      color: #3E6A78 !important;
    }
    .ticker-price {
      color: #161824 !important;
    }
    .ticker-unit {
      color: rgba(22,24,36,0.38) !important;
    }
    .ticker-sep {
      color: rgba(22,24,36,0.18) !important;
    }
    .ticker-trend {
      color: #161824 !important;
      background: rgba(22,24,36,0.07) !important;
      border: 1px solid rgba(22,24,36,0.12) !important;
    }
    .ticker-trend.trend-up {
      color: #3E6A78 !important;
      background: rgba(62,106,120,0.12) !important;
      border: 1px solid rgba(62,106,120,0.22) !important;
    }
    .ticker-trend.trend-down {
      color: #E85E1A !important;
      background: rgba(232,94,26,0.10) !important;
      border: 1px solid rgba(232,94,26,0.22) !important;
    }
    .ticker-trend.trend-stable {
      color: rgba(22,24,36,0.5) !important;
      background: rgba(22,24,36,0.07) !important;
      border: 1px solid rgba(22,24,36,0.12) !important;
    }
    .ticker-inner,
    .ticker-track,
    .ticker-item {
      color: #161824 !important;
    }
    .trend-up {
      background: rgba(62,106,120,0.12) !important;
      color: #3E6A78 !important;
      border: 1px solid rgba(62,106,120,0.2) !important;
    }
    .trend-down {
      background: rgba(232,94,26,0.10) !important;
      color: #E85E1A !important;
      border: 1px solid rgba(232,94,26,0.2) !important;
    }
    .trend-stable {
      background: rgba(22,24,36,0.07) !important;
      color: rgba(22,24,36,0.5) !important;
      border: 1px solid rgba(22,24,36,0.12) !important;
    }


    /* ========== POURQUOI ========== */
    .pourquoi {
      background: var(--c-cream);
      padding: 100px max(var(--gutter), calc(50% - 600px));
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 80px;
      align-items: start;
    }
    .overline-label {
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .why-overline {
      display: inline-block;
      background: var(--c-orange);
      color: white;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .display-title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(48px, 5.5vw, 72px);
      color: var(--c-anthracite);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }
    .display-title .highlight {
      color: var(--c-orange);
    }
    .pourquoi-body {
      margin-top: 32px;
      font-weight: 300;
      font-size: 14px;
      color: var(--c-anthra-soft);
      line-height: 1.82;
      max-width: 340px;
    }
    .pourquoi-separator {
      margin: 48px 0 28px;
      border: none;
      border-top: 1px solid rgba(22,24,36,0.10);
    }
    .stats-row {
      display: flex;
      gap: 48px;
      align-items: flex-end;
    }
    .stat strong {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 44px;
      line-height: 1;
      letter-spacing: -0.02em;
      display: block;
    }
    .stat .stat-orange { color: var(--c-orange); }
    .stat .stat-anthra { color: var(--c-anthracite); }
    .stat span {
      font-weight: 400;
      font-size: 12px;
      color: rgba(22,24,36,0.4);
      display: block;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 48px 1fr 40px;
      align-items: start;
      gap: 0 20px;
      padding: 36px 0;
      border-bottom: 1px solid rgba(22,24,36,0.07);
      cursor: pointer;
      transition: background 0.2s ease, padding 0.2s ease, margin 0.2s ease, border-radius 0.2s ease, border-color 0.2s ease;
    }
    .feature-row:last-child { border-bottom: none; }
    .feature-row:hover {
      background: rgba(22,24,36,0.025);
      padding-left: 12px;
      padding-right: 12px;
      margin: 0 -12px;
      border-radius: 8px;
      border-bottom-color: transparent;
    }
    .feature-index {
      font-weight: 300;
      font-size: 12px;
      color: rgba(22,24,36,0.18);
      padding-top: 4px;
      letter-spacing: 0.05em;
    }
    .feature-content h3 {
      font-weight: 500;
      font-size: 19px;
      color: var(--c-anthracite);
      margin: 0 0 8px;
      letter-spacing: calc(-0.01em + 0.5px);
      transition: color 0.2s ease;
    }
    .feature-row:hover .feature-content h3 {
      color: var(--c-orange);
      letter-spacing: 0.5px;
    }
    .feature-content p {
      font-weight: 300;
      font-size: 14px;
      color: rgba(22,24,36,0.48);
      line-height: 1.65;
      margin: 0;
    }
    .feature-arrow {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      align-self: start;
      margin-top: 4px;
      opacity: 0.5;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .feature-arrow svg { display: block; width: 100%; height: 100%; }
    .feature-row:hover .feature-arrow {
      opacity: 1;
      transform: translate(3px, -3px);
    }
    @media (max-width: 768px) {
      .feature-arrow { width: 24px; height: 24px; }
    }

    /* ========== TEMOIGNAGES ========== */
                                                    
    /* ========== CTA BAND ========== */
    .cta-band {
      position: relative;
      min-height: 160px;
      background:
        radial-gradient(
          ellipse 80% 100% at 15% 20%,
          rgba(255,200,140,0.32) 0%,
          rgba(255,200,140,0) 60%
        ),
        linear-gradient(
          135deg,
          #F36B30 0%,
          #E15418 30%,
          #C2400E 65%,
          #952C07 100%
        );
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 48px var(--gutter);
      gap: 32px;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.18;
      mix-blend-mode: overlay;
      pointer-events: none;
    }
    .cta-band > * { position: relative; z-index: 1; }
    .cta-band h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(22px, 2.8vw, 36px);
      color: white;
      line-height: 1.1;
      letter-spacing: calc(-0.01em + 0.5px);
    }
    .btn-cta-white {
      background: white;
      color: var(--c-orange);
      height: 52px;
      padding: 0 32px;
      border-radius: var(--radius-md);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      transition: background var(--transition);
    }
    .btn-cta-white:hover { background: var(--c-cream); }

    /* ========== BLUE ZONE (CONTACT + FOOTER) ========== */
    .blue-zone {
      position: relative;
      background: linear-gradient(
        175deg,
        #0D1B2A 0%,
        #112233 25%,
        #0F2035 55%,
        #080E18 100%
      );
    }
    .blue-zone::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.04;
      pointer-events: none;
      z-index: 0;
    }
    .blue-zone > * { position: relative; z-index: 1; }

    /* ========== CONTACT ========== */
    .contact {
      background: transparent;
      padding: var(--space-xl) var(--gutter);
      display: grid;
      grid-template-columns: 45% 55%;
      gap: 80px;
      align-items: start;
      max-width: 1280px;
      margin: 0 auto;
    }
    .contact-info h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(26px, 2.8vw, 38px);
      color: white;
      letter-spacing: calc(-0.02em + 0.5px);
      margin-bottom: 12px;
      line-height: 1.05;
    }
    .contact-info > p {
      font-weight: 300;
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      border-radius: 8px;
      margin-bottom: 10px;
    }
    .contact-list .icon {
      font-size: 16px;
      color: var(--c-teal-on-dark);
      flex-shrink: 0;
      width: 20px;
      line-height: 1.4;
    }
    .contact-list .label {
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal-on-dark);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      display: block;
      margin-bottom: 4px;
    }
    .contact-list .value {
      font-weight: 400;
      font-size: 14px;
      color: rgba(255,255,255,0.85);
    }
    .contact-list a.value {
      color: white;
    }
    .contact-list li:has(.label:first-letter) .value[href^="mailto"] {
      color: rgba(100,200,220,0.9);
    }
    .contact-list a.value[href^="mailto"] { color: rgba(100,200,220,0.9); }
    .contact-list a.value[href^="tel"] { color: white; font-weight: 500; }

    .contact-map {
      margin-top: 32px;
      height: 180px;
      border-radius: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-map p {
      font-weight: 300;
      font-size: 12px;
      color: rgba(255,255,255,0.20);
    }

    .contact-form h3 {
      font-weight: 500;
      font-size: 20px;
      color: white;
      margin-bottom: 6px;
      letter-spacing: 0.5px;
    }
    .form-tag {
      font-weight: 300;
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 32px;
    }

    .form-group {
      margin-bottom: 28px;
      position: relative;
    }
    .form-consent { margin-top: 8px; margin-bottom: 16px; }
    .form-consent .checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255,255,255,0.72);
      cursor: pointer;
      text-transform: none;
      letter-spacing: 0;
      font-weight: 400;
    }
    .form-consent input[type="checkbox"] {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      accent-color: var(--c-orange);
      cursor: pointer;
    }
    .form-consent a {
      color: var(--c-cream);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .form-consent a:hover { color: var(--c-orange); }
    /* Variante sur fond clair (espace-pro form) */
    .bg-cream .form-consent .checkbox-label { color: rgba(47,48,48,0.72); }
    .bg-cream .form-consent a { color: var(--c-anthracite); }
    .bg-cream .form-consent a:hover { color: var(--c-orange); }
    .form-group label {
      display: block;
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal-on-dark);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1.5px solid rgba(255,255,255,0.18);
      color: white;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 400;
      padding: 8px 0;
      outline: none;
      transition: border-color var(--transition);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-bottom-color: var(--c-orange);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255,255,255,0.22);
    }
    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%23D94E16' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 4px center;
      padding-right: 24px;
    }
    .form-group select option {
      background: #0D1B2A;
      color: white;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 96px;
    }
    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
      border-bottom-color: #d52929;
    }
    .form-error {
      font-weight: 300;
      font-size: 11px;
      color: #d52929;
      margin-top: 6px;
      display: none;
    }
    .form-group.error .form-error { display: block; }

    /* Form on light background (bg-cream / bg-white) — used by espace-pro partenariat form */
    .bg-cream .contact-form h3,
    .bg-white .contact-form h3 {
      color: var(--c-anthracite);
    }
    .bg-cream .contact-form .form-tag,
    .bg-white .contact-form .form-tag {
      color: rgba(22,24,36,0.55);
    }
    .bg-cream .form-group label,
    .bg-white .form-group label {
      color: var(--c-teal);
    }
    .bg-cream .form-group input,
    .bg-cream .form-group select,
    .bg-cream .form-group textarea,
    .bg-white .form-group input,
    .bg-white .form-group select,
    .bg-white .form-group textarea {
      color: var(--c-anthracite) !important;
      border-bottom-color: rgba(22,24,36,0.16);
    }
    /* Autofill (Chrome) — force dark text on light bg */
    .bg-cream .form-group input:-webkit-autofill,
    .bg-white .form-group input:-webkit-autofill {
      -webkit-text-fill-color: var(--c-anthracite) !important;
      caret-color: var(--c-anthracite);
      transition: background-color 9999s ease-in-out 0s;
    }
    .bg-cream .form-group input::placeholder,
    .bg-cream .form-group textarea::placeholder,
    .bg-white .form-group input::placeholder,
    .bg-white .form-group textarea::placeholder {
      color: rgba(22,24,36,0.30);
    }
    .bg-cream .form-group select option,
    .bg-white .form-group select option {
      background: white;
      color: var(--c-anthracite);
    }

    /* === SECTION TÉMOIGNAGES — typo stricte Unbounded + Helvetica === */
                                                    
                                                        
    /* Carte inversée (4ème) */
                            
    /* === SECTION OFFRE PROS — refonte 3x2 === */
    .po-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 96px 24px;
    }
    .po-header {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 48px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(47,51,48,0.12);
    }
    .po-eyebrow {
      display: block;
      color: #3B6479;
      font-size: 11px;
      letter-spacing: 0.227em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 14px;
    }
    .po-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      letter-spacing: -0.024em;
      line-height: 1;
      color: var(--c-anthracite);
      margin: 0;
    }
    .po-header-right { display: flex; align-items: end; }
    .po-intro {
      border-left: 2px solid #E83E16;
      padding: 4px 0 4px 18px;
      color: #3B6479;
      font-size: 15px;
      line-height: 1.6;
      margin: 0;
    }
    .po-intro strong { color: var(--c-anthracite); font-weight: 600; }

    .po-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(47,51,48,0.12);
      border: 1px solid rgba(47,51,48,0.12);
      border-radius: 8px;
      overflow: hidden;
    }
    .po-card {
      background: #F5F5F0;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
    }
    .po-card-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }
    .po-icon-box {
      width: 44px;
      height: 44px;
      background: #2F3330;
      color: #E83E16;
      border-radius: 6px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .po-icon { width: 22px; height: 22px; }
    .po-card-num {
      font-size: 11px;
      font-weight: 700;
      color: rgba(47,51,48,0.25);
      letter-spacing: 0.18em;
    }
    .po-card-title {
      font-family: var(--font-body);
      font-size: 17px;
      font-weight: 700;
      color: var(--c-anthracite);
      margin: 20px 0 10px;
      letter-spacing: -0.01em;
    }
    .po-card-desc {
      font-size: 13px;
      line-height: 1.6;
      color: #3B6479;
      margin: 0;
    }
    .po-card--inverted {
      background: #2F3330;
      color: #F5F5F0;
    }
    .po-card--inverted .po-icon-box {
      background: #E83E16;
      color: #FFFFFF;
    }
    .po-card--inverted .po-card-num { color: rgba(245,245,240,0.30); }
    .po-card--inverted .po-card-title { color: #F5F5F0; }
    .po-card--inverted .po-card-desc { color: rgba(245,245,240,0.75); }

    .po-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 36px;
    }
    .po-footer-text {
      font-size: 13px;
      color: #3B6479;
      margin: 0;
    }
    .po-footer-text strong { color: var(--c-anthracite); font-weight: 700; }
    .po-cta {
      display: inline-flex;
      align-items: center;
      background: #E83E16;
      color: #FFFFFF;
      padding: 14px 26px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.125em;
      text-decoration: none;
      transition: background 200ms;
    }
    .po-cta:hover { background: #C32E0F; color: #FFF; text-decoration: none; }

    @media (max-width: 1024px) {
      .po-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .po-section { padding: 64px 20px; }
      .po-header {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .po-grid {
        grid-template-columns: 1fr;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        margin-left: -20px;
        margin-right: -20px;
      }
      .po-footer { flex-direction: column; align-items: stretch; }
      .po-cta { justify-content: center; }
    }

    .btn-submit {
      width: 100%;
      height: 54px;
      background: var(--c-orange);
      color: white;
      border-radius: var(--radius-md);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background var(--transition);
      margin-top: 8px;
    }
    .btn-submit:hover { background: #c04010; }
    .btn-submit:disabled { opacity: 0.7; cursor: wait; }
    .btn-submit.shake { animation: shake 0.4s ease; }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20% { transform: translateX(-6px); }
      40% { transform: translateX(6px); }
      60% { transform: translateX(-4px); }
      80% { transform: translateX(4px); }
    }

    .spinner {
      display: inline-block;
      width: 14px;
      height: 14px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      vertical-align: middle;
      margin-right: 8px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .legal-mention {
      margin-top: 16px;
      font-weight: 300;
      font-size: 10px;
      color: rgba(255,255,255,0.30);
      line-height: 1.6;
    }

    .form-success {
      display: none;
      padding: 32px;
      background: var(--c-teal-light);
      border-left: 2px solid var(--c-teal);
      border-radius: var(--radius-md);
      font-weight: 400;
      font-size: 15px;
      color: var(--c-teal);
    }
    .form-success.visible { display: block; }

    /* ========== FOOTER ========== */
    .footer {
      background: transparent;
      padding: 64px var(--gutter) 36px;
      border-top: 1px solid rgba(255,255,255,0.06);
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-logo img {
      height: 44px;
      width: auto;
      filter: invert(1) brightness(0.95);
    }
    .footer-brand-text {
      margin-top: 18px;
      font-weight: 300;
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      line-height: 1.8;
    }
    .footer-vat {
      display: inline-block;
      margin-top: 6px;
      font-weight: 300;
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.02em;
    }
    .footer-phone + .footer-phone {
      display: block;
      margin-top: 4px;
    }

    .footer h4 {
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal-on-dark);
      letter-spacing: calc(0.2em + 0.5px);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .footer-nav a {
      font-weight: 300;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 2.2;
      transition: color var(--transition);
      display: block;
    }
    .footer-nav a:hover { color: white; }

    .footer address { font-style: normal; }
    .footer-phone {
      font-weight: 500;
      font-size: 15px;
      color: white;
      display: block;
      margin-bottom: 8px;
    }
    .footer-email {
      font-weight: 300;
      font-size: 13px;
      color: rgba(100,200,220,0.9);
      display: block;
      margin-bottom: 12px;
    }
    .footer-address {
      font-weight: 300;
      font-size: 13px;
      color: rgba(255,255,255,0.50);
      line-height: 1.7;
    }

    .footer dl {
      font-weight: 300;
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 2.1;
    }
    .footer dl div { display: flex; justify-content: space-between; gap: 12px; }
    .footer dl dt { font-weight: 500; }
    .footer dl dd.closed { color: rgba(255,255,255,0.30); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom .copyright {
      font-weight: 300;
      font-size: 11px;
      color: rgba(255,255,255,0.30);
    }
    .footer-bottom .credit {
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal-on-dark);
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    /* ========== SCROLL REVEAL ========== */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
    .reveal-stagger > *:nth-child(2) { transition-delay: 100ms; }
    .reveal-stagger > *:nth-child(3) { transition-delay: 200ms; }
    .reveal-stagger > *:nth-child(4) { transition-delay: 300ms; }
    .reveal-stagger > *:nth-child(5) { transition-delay: 400ms; }

    /* ========== METAL CHART (DARK CONTINUATION FROM HERO) ========== */
    .metal-chart-section {
      background: linear-gradient(
        180deg,
        #0F2236 0%,
        #0D1B2A 100%
      );
      padding: 0 var(--gutter) var(--space-xl);
      margin-top: -1px;
    }
    .metal-chart-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: var(--space-lg);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .chart-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .chart-header .overline-label {
      color: rgba(100,180,200,0.7);
    }
    .chart-header h2 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(32px, 4vw, 48px);
      color: white;
      line-height: 1.05;
      letter-spacing: calc(-0.025em + 0.5px);
    }
    .chart-stats {
      display: grid;
      grid-template-columns: repeat(4, auto);
      gap: 36px;
    }
    .chart-stat .label {
      display: block;
      font-weight: 500;
      font-size: 9px;
      color: rgba(100,180,200,0.7);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .chart-stat .val {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 26px;
      color: white;
      letter-spacing: -0.02em;
      display: block;
      line-height: 1;
    }
    .chart-stat .val span {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      margin-left: 2px;
    }
    .chart-stat .val-current { color: var(--c-orange); }
    .chart-stat .val-up { color: rgba(100,200,220,0.95); }
    .chart-stat .val-down { color: #E8844A; }
    .chart-stat .val-stable { color: rgba(255,255,255,0.6); }

    .metal-chart {
      width: 100%;
      height: 320px;
      position: relative;
      background: rgba(255,255,255,0.03);
      border-radius: 10px;
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .metal-chart svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .metal-chart .grid {
      stroke: rgba(255,255,255,0.06);
      stroke-width: 1;
    }
    .metal-chart .axis {
      stroke: rgba(255,255,255,0.10);
      stroke-width: 1;
    }
    .metal-chart .y-label {
      font-size: 10px;
      fill: rgba(255,255,255,0.35);
      font-family: var(--font-body);
      font-weight: 500;
    }
    .metal-chart .x-label {
      font-size: 10px;
      fill: rgba(255,255,255,0.30);
      font-family: var(--font-body);
      font-weight: 500;
      letter-spacing: 0.02em;
    }
    .metal-chart .line {
      fill: none;
      stroke: var(--c-teal-on-dark);
      stroke-width: 2.2;
      stroke-linejoin: round;
      stroke-linecap: round;
    }
    .metal-chart .dot { fill: rgba(100,180,200,0.6); }
    .metal-chart .dot-current {
      fill: var(--c-orange);
      filter: drop-shadow(0 0 8px rgba(232,94,26,0.7));
    }
    .metal-chart .dot-inner { fill: white; }
    .metal-chart .current-label {
      font-size: 12px;
      font-weight: 500;
      fill: var(--c-orange);
      font-family: var(--font-body);
    }

    @media (max-width: 1024px) {
      .chart-header { flex-direction: column; align-items: flex-start; }
      .chart-stats { grid-template-columns: repeat(2, 1fr); width: 100%; gap: 24px; }
    }
    @media (max-width: 768px) {
      .metal-chart { height: 260px; padding: 16px 4px 4px; }
      .chart-stat .val { font-size: 22px; }
      .metal-chart .x-label { font-size: 9px; }
    }

    /* ========== METAL SUB-PAGES ========== */
    .metal-hero {
      position: relative;
      min-height: 70vh;
      overflow: hidden;
      background: linear-gradient(
        135deg,
        #0D1B2A 0%,
        #1B3048 40%,
        #0F2236 100%
      );
    }
    .metal-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.35;
      filter: grayscale(20%) contrast(1.1);
      z-index: 0;
    }
    .metal-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(13,27,42,0.95) 0%,
        rgba(13,27,42,0.7) 50%,
        rgba(13,27,42,0.3) 100%
      );
      z-index: 1;
    }
    .metal-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 88px;
      display: grid;
      grid-template-columns: 55% 45%;
      gap: 48px;
      align-items: center;
      min-height: 70vh;
    }
    .metal-hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      overflow: hidden;
    }
    .back-link {
      font-weight: 500;
      font-size: 11px;
      color: rgba(100,180,200,0.7);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 32px;
      display: inline-block;
      transition: color 0.2s ease;
    }
    .back-link:hover { color: white; }
    .metal-cat {
      font-weight: 500;
      font-size: 10px;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .metal-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(36px, 5vw, 68px);
      line-height: 1.02;
      letter-spacing: calc(-0.025em + 0.5px);
      color: white;
      margin: 0 0 20px;
      text-transform: uppercase;
      word-break: break-word;
      white-space: normal;
    }
    .metal-price-block {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .metal-price-large {
      display: inline-flex;
      align-items: baseline;
    }
    .metal-price-large strong {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 52px;
      color: var(--c-orange);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .metal-price-large .unit {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 18px;
      color: rgba(255,255,255,0.4);
      margin-left: 4px;
    }
    .price-timestamp {
      font-size: 11px;
      font-weight: 300;
      color: rgba(255,255,255,0.35);
      margin-top: 6px;
      letter-spacing: 0.02em;
    }

    /* ========== AVERTISSEMENT PARTICULIERS ========== */
    .contact-warning {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: rgba(232,94,26,0.08);
      border: 1px solid rgba(232,94,26,0.25);
      border-left: 3px solid var(--c-orange);
      border-radius: 6px;
      padding: 14px 16px;
      margin-bottom: 32px;
    }
    .contact-warning svg {
      color: var(--c-orange);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .contact-warning p {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.65;
      color: rgba(255,255,255,0.7);
      margin: 0;
    }
    .contact-warning strong {
      font-weight: 500;
      color: var(--c-orange);
    }
    .segment-prices .contact-warning p {
      color: rgba(22,24,36,0.7);
    }

    /* ========== SEGMENT PRICES (particuliers + pro) ========== */
    .segment-prices {
      background: var(--c-cream);
      padding: 64px var(--gutter);
    }
    .segment-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 32px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .segment-header h2 {
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 300;
      color: var(--c-anthracite);
      letter-spacing: calc(-0.02em + 0.5px);
      line-height: 1.1;
    }
    .price-update-label {
      font-size: 11px;
      color: rgba(22,24,36,0.4);
      font-weight: 300;
    }
    .price-table {
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(22,24,36,0.08);
    }
    .price-row {
      display: grid;
      grid-template-columns: 1fr 120px 100px 100px 60px;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(22,24,36,0.07);
      transition: background 0.15s ease, padding-left 0.15s ease;
    }
    .price-row.pro {
      grid-template-columns: 1fr 120px 100px 100px 100px 60px;
    }
    .price-row:hover {
      background: rgba(22,24,36,0.02);
      padding-left: 8px;
    }
    .pr-name {
      font-size: 15px;
      font-weight: 500;
      color: var(--c-anthracite);
    }
    .pr-cat {
      /* DS §4.2 — pills FERREUX / NON FERREUX : variant neutral uniforme */
      font-family: var(--nm-font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: var(--nm-radius-pill);
      text-align: center;
      width: fit-content;
      background: var(--nm-cream-2);
      color: var(--nm-charcoal);
    }
    /* legacy modifiers neutralisés — DS §4.2 */
    .pr-cat.non-ferreux,
    .pr-cat.ferreux {
      background: var(--nm-cream-2);
      color: var(--nm-charcoal);
    }
    .pr-price {
      font-size: 16px;
      font-weight: 500;
      color: var(--c-anthracite);
      font-family: var(--font-display);
      letter-spacing: -0.01em;
    }
    .pr-price-pro {
      font-size: 13px;
      color: var(--c-teal);
      font-weight: 500;
    }
    .pr-trend {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 8px;
      border-radius: 100px;
      text-align: center;
      width: fit-content;
    }
    .pr-trend.trend-up {
      /* DS §6.2 — pill success */
      background: var(--nm-success-bg);
      color: var(--nm-success-fg);
    }
    .pr-trend.trend-down {
      /* DS §6.2 — pill danger */
      background: var(--nm-danger-bg);
      color: var(--nm-danger-fg);
    }
    .pr-trend.trend-stable {
      /* DS §6.2 — pill stable */
      background: var(--nm-cream-2);
      color: var(--nm-slate);
    }
    .pr-link {
      font-size: 11px;
      font-weight: 500;
      color: var(--c-teal);
      text-decoration: none;
      letter-spacing: 0.08em;
      text-align: right;
    }
    @media (max-width: 768px) {
      .price-row, .price-row.pro {
        grid-template-columns: 1fr auto;
        gap: 8px 12px;
        padding: 14px 0;
      }
      .pr-cat, .pr-trend, .pr-link, .pr-price-pro {
        grid-column: 2;
        font-size: 10px;
      }
      .pr-name { grid-column: 1; }
      .pr-price { grid-column: 1; }
    }

    /* ========== FAQ — colonne centrée éditoriale ========== */
    .faq-section {
      background: #F5F5F0;
      padding: 100px max(var(--gutter), calc(50% - 600px));
    }
    .faq-section > .faq-list,
    .faq-section > .faq-subtitle,
    .faq-section > .faq-inner {
      max-width: 760px;
      margin-left: 0;
      margin-right: auto;
      letter-spacing: 0.5px;
    }
    .faq-section h2 {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 700;
      letter-spacing: calc(-0.02em + 0.5px);
      line-height: 1.05;
      color: #161824;
      margin: 0 0 12px;
      text-align: left;
    }
    .faq-subtitle {
      font-size: 15px;
      font-weight: 300;
      color: #5b5d65;
      margin: 0 0 48px;
      max-width: 520px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid rgba(22,24,36,0.10);
      margin-top: 32px;
    }
    .faq-item {
      background: transparent !important;
      border: none !important;
      border-bottom: 1px solid rgba(22,24,36,0.10) !important;
      border-radius: 0 !important;
      padding: 0 !important;
      box-shadow: none !important;
      overflow: hidden;
      transition: background 0.2s ease;
    }
    .faq-item:hover {
      background: rgba(22,24,36,0.02) !important;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 4px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      color: #161824;
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      gap: 16px;
      font-family: var(--font-body);
      letter-spacing: -0.005em;
    }
    .faq-chevron {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      color: #5b5d65;
      transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), color 0.2s ease;
    }
    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
      color: #161824;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-answer p {
      padding: 0 4px 24px;
      font-size: 15px;
      font-weight: 300;
      color: #5b5d65;
      line-height: 1.65;
      margin: 0;
      max-width: 640px;
    }
    .faq-item.open .faq-answer {
      max-height: 320px;
    }
    @media (max-width: 720px) {
      .faq-section { padding: 64px 20px; }
      .faq-question { font-size: 15px; padding: 18px 4px; }
      .faq-answer p { font-size: 14px; padding: 0 4px 20px; }
    }
    .metal-price-block .trend-pill {
      background: rgba(62,106,120,0.25);
      border: 1px solid rgba(62,106,120,0.4);
      color: rgba(100,200,220,0.9);
    }
    .metal-price-block .trend-pill.trend-down {
      background: rgba(232,94,26,0.18);
      border-color: rgba(232,94,26,0.4);
      color: #E8844A;
    }
    .metal-price-block .trend-pill.trend-stable {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.65);
    }
    .metal-tagline {
      margin-top: 16px;
      font-weight: 300;
      font-size: 16px;
      color: rgba(255,255,255,0.55);
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 36px;
    }
    .metal-hero-text .btn-secondary {
      border-color: rgba(255,255,255,0.25);
      color: white;
    }
    .metal-hero-text .btn-secondary:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
    }

    .metal-hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-self: center;
    }
    .hero-stat {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 10px;
      padding: 22px 24px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .hero-stat .label {
      font-weight: 500;
      font-size: 9px;
      color: rgba(100,180,200,0.7);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      display: block;
      margin-bottom: 10px;
    }
    .hero-stat .val {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 26px;
      color: white;
      line-height: 1;
      letter-spacing: -0.02em;
      display: block;
    }
    .hero-stat .val span {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      margin-left: 2px;
    }
    .hero-stat .val-orange { color: var(--c-orange); }
    .hero-stat .val-teal { color: rgba(100,200,220,0.95); }
    .hero-stat .val-down { color: #E8844A; }

    .metal-info {
      background: var(--c-beige);
      padding: var(--space-2xl) var(--gutter);
      display: grid;
      grid-template-columns: 42% 58%;
      gap: 72px;
      align-items: start;
    }
    .display-title-sm { font-size: clamp(34px, 4vw, 52px); }
    .metal-info-body {
      margin-top: 28px;
      font-weight: 300;
      font-size: 14px;
      color: var(--c-anthra-soft);
      line-height: 1.85;
      max-width: 380px;
    }
    .metal-block-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 22px;
      color: var(--c-anthracite);
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }
    .metal-spec-list { display: block; }
    .metal-spec-row {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(22,24,36,0.10);
    }
    .metal-spec-row:last-child { border-bottom: none; }
    .metal-spec-row dt {
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      flex-shrink: 0;
    }
    .metal-spec-row dd {
      font-weight: 400;
      font-size: 14px;
      color: var(--c-anthracite);
      text-align: right;
    }

    .metal-criteria {
      background: var(--c-cream);
      padding: var(--space-xl) var(--gutter);
      display: grid;
      grid-template-columns: 38% 62%;
      gap: 64px;
      align-items: start;
    }
    .metal-criteria-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }
    .metal-list { list-style: none; }
    .metal-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      font-weight: 300;
      font-size: 14px;
      color: var(--c-anthra-soft);
      line-height: 1.55;
      border-bottom: 1px solid rgba(22,24,36,0.06);
    }
    .metal-list li:last-child { border-bottom: none; }
    .metal-list-mark {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 13px;
      line-height: 1;
    }
    .metal-list-mark.ok { background: var(--c-teal-light); color: var(--c-teal); }
    .metal-list-mark.ko { background: var(--c-orange-light); color: var(--c-orange); }

    .cross-sell {
      background: var(--c-white);
      padding: var(--space-xl) var(--gutter);
    }
    .cross-sell-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 36px;
      gap: 24px;
    }
    .cross-sell-header h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3vw, 42px);
      color: var(--c-anthracite);
      letter-spacing: calc(-0.02em + 0.5px);
    }
    .cross-sell-link {
      font-weight: 500;
      font-size: 10px;
      color: var(--c-teal);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      transition: color var(--transition);
    }
    .cross-sell-link:hover { color: var(--c-orange); }
    .cross-sell-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }
    .cross-card {
      position: relative;
      height: 200px;
      overflow: hidden;
      border-radius: var(--radius-md);
      background: var(--c-anthracite);
      transition: transform var(--transition);
      display: block;
    }
    .cross-card:hover { transform: translateY(-3px); }
    .cross-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .cross-card:hover img { transform: scale(1.06); }
    .cross-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(245,245,240,0.92) 0%,
        rgba(245,245,240,0.55) 28%,
        transparent 60%
      );
    }
    .cross-content {
      position: absolute;
      bottom: 14px;
      left: 16px;
    }
    .cross-content h3 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 16px;
      color: var(--c-anthracite);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: calc(-0.01em + 0.5px);
    }

    /* ========== METAL ABOUT (cream, 38/62 grid, specs as cards) ========== */
    .metal-about {
      background: var(--c-cream);
      padding: 80px max(var(--gutter), calc(50% - 600px));
      display: grid;
      grid-template-columns: 38% 62%;
      gap: 64px;
      align-items: start;
    }
    .metal-about-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3vw, 40px);
      color: var(--c-anthracite);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
      text-transform: uppercase;
    }
    .metal-about-body {
      font-weight: 300;
      font-size: 15px;
      color: rgba(22,24,36,0.58);
      line-height: 1.82;
      max-width: 380px;
    }
    .metal-about-h3 {
      font-weight: 500;
      font-size: 16px;
      color: var(--c-anthracite);
      letter-spacing: calc(-0.01em + 0.5px);
      margin-bottom: 24px;
    }
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .spec-card {
      background: white;
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 10px;
      padding: 16px 18px;
      transition: border-color 0.2s ease;
    }
    .spec-card:hover { border-color: rgba(62,106,120,0.3); }
    .spec-label {
      display: block;
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .spec-value {
      font-weight: 500;
      font-size: 14px;
      color: var(--c-anthracite);
      line-height: 1.4;
    }

    /* ========== METAL CRITERES V2 (3 cols) ========== */
    .metal-criteria-v2 {
      background: white;
      padding: 80px max(var(--gutter), calc(50% - 600px));
    }
    .criteria-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      gap: 32px;
      flex-wrap: wrap;
    }
    .criteria-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(22px, 2.5vw, 32px);
      color: var(--c-anthracite);
      line-height: 1.05;
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }
    .criteria-note {
      font-weight: 300;
      font-size: 13px;
      color: rgba(22,24,36,0.45);
      max-width: 280px;
      text-align: right;
      line-height: 1.6;
    }
    .criteria-cols-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: start;
    }
    .col-intro {
      background: var(--c-cream);
      border-radius: 12px;
      padding: 28px;
    }
    .col-intro-icon {
      margin-bottom: 16px;
    }
    .col-intro p {
      font-weight: 300;
      font-size: 14px;
      color: rgba(22,24,36,0.6);
      line-height: 1.75;
    }
    .col-intro-link {
      font-weight: 500;
      font-size: 13px;
      color: var(--c-orange);
      margin-top: 16px;
      display: inline-block;
      transition: color 0.2s ease;
    }
    .col-intro-link:hover { color: #B83E0F; }
    .col-accept {
      background: rgba(62,106,120,0.05);
      border: 1px solid rgba(62,106,120,0.12);
      border-radius: 12px;
      padding: 28px;
    }
    .col-refuse {
      background: rgba(232,94,26,0.04);
      border: 1px solid rgba(232,94,26,0.12);
      border-radius: 12px;
      padding: 28px;
    }
    .col-badge {
      font-weight: 500;
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 16px;
      display: block;
    }
    .col-badge-ok { color: var(--c-teal); }
    .col-badge-ko { color: var(--c-orange); }
    .criteria-list {
      list-style: none;
    }
    .criteria-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.5;
    }
    .col-accept .criteria-list li {
      border-bottom: 1px solid rgba(62,106,120,0.08);
      color: rgba(22,24,36,0.75);
    }
    .col-refuse .criteria-list li {
      border-bottom: 1px solid rgba(232,94,26,0.08);
      color: rgba(22,24,36,0.65);
    }
    .criteria-list li:last-child { border-bottom: none; }
    .criteria-icon {
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ========== CHART SECTION (light variant) ========== */
    .metal-chart-section-light {
      background: var(--c-cream);
      padding: 72px max(var(--gutter), calc(50% - 600px));
    }
    .chart-light-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .chart-light-header .overline-label {
      color: var(--c-teal);
      margin-bottom: 8px;
    }
    .chart-light-header h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(20px, 2.2vw, 28px);
      color: var(--c-anthracite);
      letter-spacing: calc(-0.02em + 0.5px);
      line-height: 1;
      text-transform: uppercase;
    }
    .chart-stats-inline {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .chart-inline-stat {
      background: white;
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 8px;
      padding: 12px 16px;
    }
    .chart-inline-stat .label {
      display: block;
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .chart-inline-stat .val {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 20px;
      color: var(--c-anthracite);
      letter-spacing: -0.02em;
      line-height: 1;
      display: block;
    }
    .chart-inline-stat .val span {
      font-family: var(--font-body);
      font-size: 11px;
      color: var(--c-anthra-mute);
      margin-left: 2px;
    }
    .chart-inline-stat .val-orange { color: var(--c-orange); }
    .chart-inline-stat .val-up { color: var(--c-teal); }
    .chart-inline-stat .val-down { color: var(--c-orange); }
    .chart-inline-stat .val-stable { color: var(--c-anthra-soft); }

    .metal-chart-light {
      background: white;
      border: 1px solid rgba(22,24,36,0.06);
      border-radius: 12px;
      padding: 24px 28px;
      height: 280px;
    }
    .metal-chart-light .grid {
      stroke: rgba(22,24,36,0.05);
      stroke-width: 1;
      stroke-dasharray: 4;
    }
    .metal-chart-light .y-label,
    .metal-chart-light .x-label {
      fill: rgba(22,24,36,0.35);
    }
    .metal-chart-light .line {
      stroke: var(--c-teal);
      stroke-width: 1.5;
    }
    .metal-chart-light .dot { fill: var(--c-teal); opacity: 0.5; }
    .metal-chart-light .dot-current {
      fill: var(--c-orange);
      filter: drop-shadow(0 0 6px rgba(232,94,26,0.4));
    }

    /* ========== CTA BOTTOM (sober white) ========== */
    .cta-bottom {
      background: white;
      padding: 64px max(var(--gutter), calc(50% - 600px));
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 32px;
      border-top: 1px solid rgba(22,24,36,0.07);
      flex-wrap: wrap;
    }
    .cta-bottom-text {
      font-weight: 300;
      font-size: 18px;
      color: var(--c-anthracite);
      max-width: 440px;
      line-height: 1.6;
    }
    .cta-bottom-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    @media (max-width: 1100px) {
      .metal-about { grid-template-columns: 1fr; gap: 36px; }
      .specs-grid { grid-template-columns: repeat(3, 1fr); }
      .criteria-cols-3 { grid-template-columns: 1fr 1fr; gap: 20px; }
      .col-intro { display: none; }
    }
    @media (max-width: 768px) {
      .metal-about { padding: 56px 20px; }
      .specs-grid { grid-template-columns: repeat(2, 1fr); }
      .metal-criteria-v2 { padding: 56px 20px; }
      .criteria-cols-3 { grid-template-columns: 1fr; }
      .criteria-header { flex-direction: column; align-items: flex-start; }
      .criteria-note { text-align: left; }
      .metal-chart-section-light { padding: 56px 20px; }
      .chart-light-header { flex-direction: column; align-items: flex-start; }
      .chart-stats-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
      .metal-chart-light { height: 220px; padding: 16px 12px; }
      .cta-bottom { padding: 48px 20px; flex-direction: column; align-items: stretch; }
      .cta-bottom-buttons { flex-direction: column; }
      .cta-bottom-buttons a { justify-content: center; }
    }

    @media (max-width: 1100px) {
      .metal-hero-inner {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 60px 48px !important;
      }
      .metal-title { font-size: clamp(32px, 6vw, 52px) !important;
      letter-spacing: 0.5px;
    }
      .metal-hero-stats { grid-template-columns: repeat(4, 1fr) !important; }
      .metal-info { grid-template-columns: 1fr; gap: 48px; }
      .metal-criteria { grid-template-columns: 1fr; gap: 48px; }
      .cross-sell-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .metal-hero { min-height: 0; }
      .metal-hero-inner {
        padding: 40px 20px 48px !important;
        min-height: 0;
        gap: 32px;
      }
      .metal-hero-stats { grid-template-columns: repeat(2, 1fr) !important; }
      .metal-title { font-size: clamp(36px, 9vw, 52px) !important;
      letter-spacing: 0.5px;
    }
      .metal-criteria-cols { grid-template-columns: 1fr; gap: 36px; }
      .cross-sell-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
      .cross-card { height: 160px; }
      .cross-sell-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    }

    /* ========== RESPONSIVE: TABLET ========== */
    @media (max-width: 1280px) {
      :root { --gutter: 48px; }
      .pourquoi { grid-template-columns: 1fr; gap: 56px; }
            .contact { grid-template-columns: 1fr; gap: 56px; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    }

    /* ========== RESPONSIVE: MOBILE ========== */
    @media (max-width: 768px) {
      :root { --gutter: 20px; --space-xl: 64px; --space-2xl: 80px; }

      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: flex; }

      body.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--c-cream);
        padding: 48px 24px;
        gap: 0;
        animation: slideDown 0.3s ease;
        z-index: 999;
      }
      body.menu-open .nav-links li { width: 100%; }
      body.menu-open .nav-links li::after { content: none; }
      body.menu-open .nav-links a {
        font-size: 24px;
        font-weight: 500;
        padding: 16px 0;
        display: block;
        color: var(--c-anthracite);
      }
      @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
      }

      #accueil {
        height: 75vh !important;
        min-height: 480px !important;
        align-items: flex-end !important;
      }
      #accueil > div:last-of-type {
        padding: 0 24px 56px !important;
        max-width: 100% !important;
      }

      .price-ticker { height: 48px; }
      .ticker-price { font-size: 16px; }
      .ticker-item { padding: 0 18px; gap: 10px; }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .section-header p { text-align: left; }


            
      .cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 48px 24px;
      }
      .btn-cta-white { width: 100%; justify-content: center; }

      .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

    /* ========== ENRICHMENTS V2 ========== */

    /* Social proof strip */
    .social-strip {
      position: static;
      width: 100%;
      height: 36px;
      background: rgba(62,106,120,0.08);
      border-bottom: 1px solid rgba(62,106,120,0.18);
      overflow: hidden;
      display: flex;
      align-items: center;
      /* DS §13 — masque dégradé pour éviter la fuite visuelle */
      -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
    }
    .social-strip-track {
      display: flex;
      width: max-content;
      animation: ticker-scroll 60s linear infinite;
      white-space: nowrap;
    }
    .social-strip:hover .social-strip-track { animation-play-state: paused; }
    .social-strip-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 24px;
      font-weight: 400;
      font-size: 12px;
      color: rgba(22,24,36,0.65);
    }
    .social-strip-item span.dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: rgba(62,106,120,0.4);
    }
    @media (max-width: 768px) { .social-strip { display: none; } }

    /* Stats section (chiffres clés) — light theme, after .pourquoi */
    .key-stats {
      background: var(--c-cream);
      border-top: 1px solid rgba(22,24,36,0.07);
      padding: 56px var(--gutter);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .key-stat {
      padding: 0 40px;
      border-right: 1px solid rgba(22,24,36,0.08);
    }
    .key-stat:last-child  { border-right: none; }
    .key-stat:first-child { padding-left: 0; }
    .ks-num {
      /* DS §3.3 — tous les chiffres en charcoal, point final orange (signature) */
      font-size: 48px;
      font-weight: 600;
      font-family: var(--font-display);
      letter-spacing: -0.025em;
      line-height: 1;
      display: block;
      margin-bottom: 6px;
      color: var(--nm-charcoal);
    }
    .ks-num::after {
      content: '.';
      color: var(--nm-orange);
    }
    /* legacy modifiers retirés — DS §3.3 (couleurs sémantiques uniquement) */
    .ks-num.orange, .ks-num.teal { color: var(--nm-charcoal); }
    .ks-unit {
      font-family: var(--nm-font-body);
      font-weight: 500;
      color: var(--nm-slate);
    }
    .ks-overline {
      font-size: 9px;
      font-weight: 500;
      color: var(--nm-slate);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
    }
    .ks-label {
      font-size: 12px;
      font-weight: 300;
      color: rgba(42,40,38,0.55);
      line-height: 1.6;
      display: block;
    }
    @media (max-width: 1100px) {
      .key-stats { grid-template-columns: 1fr 1fr; gap: 32px 0; padding: 48px var(--gutter); }
      .key-stat { border-right: none; padding: 0 16px; }
      .key-stat:nth-child(odd) { border-right: 1px solid rgba(22,24,36,0.08); }
      .key-stat:first-child { padding-left: 16px; }
    }
    @media (max-width: 600px) {
      .key-stats { grid-template-columns: 1fr; }
      .key-stat { border-right: none !important; border-bottom: 1px solid rgba(22,24,36,0.08); padding: 24px 0; }
      .key-stat:last-child { border-bottom: none; }
    }

    /* How it works */
    .how-section {
      background: white;
      padding: 88px max(var(--gutter), calc(50% - 600px));
    }
    .how-header {
      margin-bottom: 48px;
    }
    .how-header .overline-label { color: var(--c-teal); margin-bottom: 12px; }
    .how-header h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3.2vw, 36px);
      color: var(--c-anthracite);
      letter-spacing: calc(-0.02em + 0.5px);
    }
    /* ========== STEPS — icône bleed massive (Stripe/Linear) ========== */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .step-card {
      position: relative;
      overflow: hidden;
      padding: 56px 40px 48px;
      background: #F5F5F0;
      border-right: 1px solid rgba(22,24,36,0.08);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      isolation: isolate;
    }
    .step-card:last-child { border-right: none; }

    .step-icon-bleed {
      position: absolute;
      top: -40px;
      left: -40px;
      width: 240px;
      height: 240px;
      color: #161824;
      opacity: 0.02;
      z-index: 1;
      pointer-events: none;
      transition: opacity 0.4s ease, transform 0.5s ease;
    }
    .step-icon-bleed svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .step-card:hover .step-icon-bleed {
      opacity: 0.04;
      transform: translate(4px, -4px) rotate(-2deg);
    }

    .step-card .step-num {
      position: absolute;
      top: 30px;
      right: 32px;
      font-size: 140px;
      font-weight: 200;
      letter-spacing: -0.04em;
      line-height: 1;
      color: #161824;
      opacity: 0.06;
      font-family: 'Helvetica Neue', system-ui, sans-serif;
      z-index: 1;
      pointer-events: none;
      user-select: none;
    }

    .step-body {
      position: relative;
      z-index: 2;
    }
    .step-title {
      font-size: 22px;
      font-weight: 500;
      letter-spacing: -0.015em;
      line-height: 1.2;
      color: #161824;
      margin: 0 0 12px;
    }
    .step-desc {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.55;
      color: #5b5d65;
      margin: 0;
      max-width: 320px;
    }

    @media (max-width: 900px) {
      .steps-grid { grid-template-columns: 1fr; }
      .step-card {
        border-right: none;
        border-bottom: 1px solid rgba(22,24,36,0.08);
        min-height: 260px;
        padding: 48px 32px 40px;
      }
      .step-card:last-child { border-bottom: none; }
      .step-icon-bleed {
        width: 200px;
        height: 200px;
        top: -30px;
        left: -30px;
      }
      .step-card .step-num {
        font-size: 110px;
        top: 24px;
        right: 24px;
      }
      .step-title { font-size: 20px; }
      .step-desc { font-size: 14px; }
    }
    /* Maxime quotes slider */
    .quote-section {
      background: var(--c-anthracite);
      padding: 80px max(var(--gutter), calc(50% - 600px));
      position: relative;
      overflow: hidden;
    }
    .quote-decoration {
      position: absolute;
      top: -20px;
      left: 32px;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 160px;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      pointer-events: none;
    }
    .quote-track {
      position: relative;
      min-height: 200px;
    }
    .quote-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0s linear 0.4s;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .quote-slide.active {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transition: opacity 0.4s ease, visibility 0s linear 0s;
    }
    .quote-slide blockquote {
      /* DS §3 & §3.6 — citations credo en Fraunces italic */
      font-family: var(--nm-font-italic);
      font-weight: 400;
      font-style: italic;
      font-size: clamp(22px, 2.6vw, 28px);
      color: rgba(244,240,232,0.85);
      line-height: 1.4;
      max-width: 800px;
      margin: 0;
    }
    .quote-slide cite {
      font-style: normal;
      font-weight: 500;
      font-size: 13px;
      color: var(--c-teal-on-dark);
      margin-top: 28px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: block;
    }
    .quote-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 36px;
    }
    .quote-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
      cursor: pointer;
      border: none;
      padding: 0;
      transition: background 0.2s ease;
    }
    .quote-dot.active { background: var(--c-orange); }
    .quote-arrow {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      width: 36px; height: 36px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .quote-arrow:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
    .quote-arrow svg { width: 14px; height: 14px; stroke: white; }

    /* Trust badges section — single line, scrollable on small screens */
    .trust-badges {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      gap: 32px;
      padding: 28px var(--gutter);
      background: white;
      border-top: 1px solid rgba(22,24,36,0.07);
      border-bottom: 1px solid rgba(22,24,36,0.07);
      overflow-x: auto;
    }
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0.65;
      transition: opacity 0.2s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-badge:hover { opacity: 1; }
    .trust-badge span {
      font-size: 12px;
      font-weight: 500;
      color: var(--c-anthracite);
      letter-spacing: 0.02em;
    }
    .trust-badge:not(:last-child)::after {
      content: '';
      display: block;
      width: 1px;
      height: 16px;
      background: rgba(22,24,36,0.12);
      margin-left: 32px;
    }
    @media (max-width: 600px) {
      .trust-badges {
        justify-content: flex-start;
        gap: 20px;
        padding: 20px 20px;
      }
      .trust-badge span { font-size: 11px; }
    }

    /* Liens Google reviews — bandelette, badge, témoignage */
    .social-strip-link {
      color: inherit;
      text-decoration: none;
      transition: opacity 200ms;
    }
    .social-strip-link:hover { opacity: 0.7; text-decoration: underline; }
    .trust-badge-link {
      cursor: pointer;
      text-decoration: none;
    }
    .trust-badge-link:hover span { color: var(--c-orange, #D94E16); }
        
    /* Cookie banner */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2000;
      background: white;
      border-top: 1px solid rgba(22,24,36,0.10);
      box-shadow: 0 -4px 24px rgba(22,24,36,0.08);
      padding: 20px max(var(--gutter), calc(50% - 600px));
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    .cookie-banner.visible { transform: translateY(0); }
    .cookie-text {
      font-weight: 300;
      font-size: 13px;
      color: rgba(22,24,36,0.6);
      line-height: 1.5;
    }
    .cookie-text a { color: var(--c-orange); text-decoration: underline; }
    .cookie-dismiss {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: transparent;
      border: 1px solid rgba(22,24,36,0.15);
      color: rgba(22,24,36,0.55);
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .cookie-dismiss:hover {
      background: var(--c-anthracite);
      color: white;
      border-color: var(--c-anthracite);
    }
    @media (max-width: 768px) {
      .cookie-banner { flex-direction: row; align-items: center; padding: 16px 18px; gap: 12px; }
      .cookie-text { font-size: 12px; }
    }

    /* Floating buttons */
    .floating-actions {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .float-btn {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: none;
      transition: opacity 0.3s ease, transform 0.2s ease;
      color: white;
    }
    .float-btn:hover { transform: scale(1.05); }
    .float-back-top {
      background: var(--c-orange);
      box-shadow: 0 4px 16px rgba(232,94,26,0.3);
      opacity: 0;
      pointer-events: none;
    }
    .float-back-top.visible { opacity: 1; pointer-events: auto; }
    .float-back-top svg { width: 20px; height: 20px; stroke: white; stroke-width: 2; fill: none; }
    .float-whatsapp {
      width: 56px; height: 56px;
      background: #25D366;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      animation: wa-pulse 2s infinite;
    }
    .float-whatsapp svg { width: 28px; height: 28px; }
    @keyframes wa-pulse {
      0% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
      70% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 14px rgba(37,211,102,0); }
      100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
    }

    /* Footer enrichments */
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr 1.3fr; }
    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 12px;
    }
    .footer-social a {
      width: 32px; height: 32px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    .footer-social a:hover {
      color: white;
      border-color: rgba(255,255,255,0.4);
      transform: scale(1.08);
    }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
    .footer-newsletter h4 { margin-bottom: 8px;
      letter-spacing: 0.5px;
    }
    .footer-newsletter p {
      font-weight: 300;
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      margin-bottom: 12px;
      line-height: 1.5;
    }
    .footer-newsletter form {
      display: flex;
      align-items: stretch;
      gap: 8px;
      height: 44px;
    }
    .footer-newsletter input {
      flex: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--nm-radius-md);
      padding: 0 14px;
      color: white;
      font-family: var(--font-body);
      font-size: 13px;
      outline: none;
    }
    .footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
    .footer-newsletter input:focus { border-color: rgba(255,255,255,0.3); }
    .footer-newsletter button {
      /* DS §4.6 — submit carré 44x44 */
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: var(--nm-orange);
      border: none;
      border-radius: var(--nm-radius-md);
      color: var(--nm-white);
      cursor: pointer;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
    }
    .footer-newsletter button:hover { background: var(--nm-orange-hover); }
    .footer-newsletter button:disabled { opacity: 0.5; cursor: wait; }
    .newsletter-msg {
      margin-top: 8px;
      font-size: 11px;
      min-height: 16px;
      color: rgba(255,255,255,0.5);
    }
    .newsletter-msg[data-state="ok"] { color: #4ade80; }
    .newsletter-msg[data-state="err"] { color: #f87171; }

    .footer-legal {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-legal a {
      font-weight: 300;
      font-size: 10px;
      color: rgba(255,255,255,0.18);
      transition: color 0.2s ease;
    }
    .footer-legal a:hover { color: rgba(255,255,255,0.6); }

    @media (max-width: 1100px) {
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    /* Mega menu */
    .nav-megamenu-wrap { position: relative; }
    .nav-megamenu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      width: 720px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 12px 48px rgba(22,24,36,0.15);
      padding: 28px;
      display: grid;
      grid-template-columns: 1.5fr 0.6fr;
      gap: 28px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      margin-top: 12px;
      z-index: 1001;
    }
    .nav-megamenu-wrap:hover .nav-megamenu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .megamenu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .megamenu-col {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .megamenu-col-title {
      display: block;
      font-size: 9px;
      font-weight: 500;
      color: var(--c-teal);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(22,24,36,0.08);
    }
    .megamenu-col:nth-child(2) .megamenu-col-title {
      color: rgba(22,24,36,0.55);
    }
    .megamenu-grid a {
      padding: 6px 10px;
      border-radius: 6px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      transition: background 0.15s ease;
    }
    .megamenu-grid a:hover { background: var(--c-cream); }
    .megamenu-grid .mm-name {
      font-weight: 500;
      font-size: 12px;
      color: var(--c-anthracite);
      text-transform: none;
      letter-spacing: 0;
    }
    .megamenu-grid .mm-price {
      font-weight: 500;
      font-size: 9px;
      color: var(--c-teal);
      letter-spacing: 0.05em;
    }
    .megamenu-promo {
      /* DS §3.4 — pas de teal/forest dans le mega-menu (réservés engagement) */
      background: var(--nm-charcoal);
      border-radius: var(--nm-radius-md);
      padding: 20px;
      color: var(--nm-cream);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .megamenu-promo h4 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 18px;
      color: white;
      letter-spacing: calc(-0.01em + 0.5px);
      margin-bottom: 8px;
    }
    .megamenu-promo p {
      font-weight: 300;
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .megamenu-promo a {
      display: inline-block;
      background: var(--c-orange);
      color: white;
      padding: 8px 14px;
      border-radius: 4px;
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s ease;
    }
    .megamenu-promo a:hover { background: #c04010; }
    @media (max-width: 1100px) {
      .nav-megamenu { display: none; }
    }

    /* Exit intent popup */
    .exit-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(13,15,20,0.7);
      backdrop-filter: blur(8px);
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .exit-popup-overlay.visible { display: flex; opacity: 1; }
    .exit-popup {
      background: white;
      border-radius: 16px;
      padding: 48px;
      max-width: 480px;
      width: 100%;
      text-align: center;
      position: relative;
      transform: scale(0.95);
      transition: transform 0.3s ease;
    }
    .exit-popup-overlay.visible .exit-popup { transform: scale(1); }
    .exit-popup-close {
      position: absolute;
      top: 16px; right: 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-weight: 300;
      font-size: 28px;
      color: rgba(22,24,36,0.3);
      line-height: 1;
      transition: color 0.2s ease;
    }
    .exit-popup-close:hover { color: var(--c-anthracite); }
    .exit-popup h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 32px;
      color: var(--c-anthracite);
      letter-spacing: calc(-0.02em + 0.5px);
      margin-bottom: 16px;
    }
    .exit-popup p {
      font-weight: 300;
      font-size: 15px;
      color: rgba(22,24,36,0.55);
      line-height: 1.6;
      margin-bottom: 32px;
    }
    .exit-popup .btn-primary {
      width: 100%;
      justify-content: center;
      height: 52px;
    }
    .exit-popup-decline {
      display: inline-block;
      margin-top: 14px;
      font-weight: 300;
      font-size: 12px;
      color: rgba(22,24,36,0.35);
      cursor: pointer;
      background: none;
      border: none;
      transition: color 0.2s ease;
    }
    .exit-popup-decline:hover { color: var(--c-anthracite); }

    /* Job cards */
    .jobs-list { display: grid; gap: 16px; }
    .job-card {
      background: white;
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 10px;
      padding: 28px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    .job-card:hover { border-color: var(--c-teal); box-shadow: 0 4px 24px rgba(22,24,36,0.06); }
    .job-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .job-tag {
      display: inline-block;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      font-weight: 500;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(62,106,120,0.15);
      color: var(--c-teal);
    }
    .job-tag.cdi { background: rgba(62,106,120,0.15); color: var(--c-teal); }
    .job-tag.stage { background: rgba(232,94,26,0.12); color: var(--c-orange); }
    .job-card-date {
      font-weight: 300;
      font-size: 12px;
      color: rgba(22,24,36,0.35);
    }
    .job-card h3 {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 22px;
      color: var(--c-anthracite);
      letter-spacing: calc(-0.01em + 0.5px);
      margin-bottom: 10px;
    }
    .job-card p {
      font-weight: 300;
      font-size: 14px;
      color: rgba(22,24,36,0.55);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .job-meta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .job-meta span {
      font-weight: 500;
      font-size: 12px;
      color: rgba(22,24,36,0.6);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .job-meta span::before {
      content: '·';
      color: rgba(22,24,36,0.3);
    }
    .job-meta span:first-child::before { content: none; }

    /* FAQ accordion */
    .faq-list { display: grid; gap: 4px; }
    .faq-item {
      background: white;
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.2s ease;
    }
    .faq-item.open { border-color: var(--c-teal); }
    .faq-q {
      width: 100%;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 16px;
      color: var(--c-anthracite);
      text-align: left;
    }
    .faq-q .faq-icon {
      flex-shrink: 0;
      transition: transform 0.3s ease;
      stroke: var(--c-orange);
      stroke-width: 2;
      fill: none;
      width: 20px; height: 20px;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner {
      padding: 0 24px 20px;
      font-weight: 300;
      font-size: 14px;
      color: rgba(22,24,36,0.6);
      line-height: 1.7;
    }

    /* Generic page hero */
    .page-hero {
      position: relative;
      min-height: 60vh;
      overflow: hidden;
      background: linear-gradient(135deg, #0D1B2A 0%, #1B3048 50%, #0F2236 100%);
    }
    .page-hero-pattern::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 18% 32%, rgba(56,106,118,0.18) 0, transparent 36%),
        radial-gradient(circle at 82% 76%, rgba(56,106,118,0.14) 0, transparent 38%),
        linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.04) 100%);
      background-size: 100% 100%, 100% 100%, 80px 100%;
      opacity: 0.9;
      z-index: 0;
      pointer-events: none;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.3;
      filter: grayscale(20%) contrast(1.1);
      z-index: 0;
    }
    .page-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.55) 100%);
      z-index: 1;
    }
    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px var(--gutter);
      min-height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .page-hero h1 {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: clamp(40px, 5vw, 56px);
      color: white;
      line-height: 1.05;
      letter-spacing: calc(-0.02em + 0.5px);
      margin: 16px 0 24px;
      text-transform: uppercase;
    }
    .page-hero p {
      font-weight: 300;
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 540px;
      margin-bottom: 32px;
    }
    .page-hero .overline-text {
      color: var(--c-teal-on-dark);
    }
    .page-hero .btn-secondary {
      border-color: rgba(255,255,255,0.25);
      color: white;
    }
    .page-hero .btn-secondary:hover {
      border-color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.05);
    }

    /* Calculator */
    .calc-card {
      max-width: 720px;
      margin: 0 auto;
      background: white;
      border-radius: 16px;
      padding: 48px;
      box-shadow: 0 4px 32px rgba(22,24,36,0.08);
      border: 1px solid rgba(22,24,36,0.06);
    }
    .calc-step { margin-bottom: 32px; }
    .calc-step h3 {
      font-weight: 500;
      font-size: 11px;
      color: var(--c-teal);
      letter-spacing: calc(0.2em + 0.5px);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .calc-metals-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .calc-select-wrap {
      position: relative;
    }
    .calc-select-wrap::after {
      content: '';
      position: absolute;
      right: 18px; top: 50%;
      width: 8px; height: 8px;
      border-right: 2px solid rgba(22,24,36,0.45);
      border-bottom: 2px solid rgba(22,24,36,0.45);
      transform: translateY(-70%) rotate(45deg);
      pointer-events: none;
    }
    .calc-select {
      width: 100%;
      height: 52px;
      background: white;
      border: 1.5px solid rgba(22,24,36,0.10);
      border-radius: 8px;
      padding: 0 44px 0 16px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--c-anthracite);
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.18s ease;
    }
    .calc-select:focus {
      outline: none;
      border-color: var(--c-orange);
    }
    .calc-select option { font-weight: 400; }
    .calc-select optgroup {
      font-weight: 500;
      color: var(--c-teal);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 11px;
    }
    .calc-metal {
      background: white;
      border: 1.5px solid rgba(22,24,36,0.10);
      border-radius: 10px;
      padding: 14px 12px;
      text-align: left;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .calc-metal:hover { border-color: rgba(62,106,120,0.4); }
    .calc-metal.active {
      border-color: var(--c-orange);
      background: rgba(232,94,26,0.06);
    }
    .calc-metal .cm-name {
      display: block;
      font-weight: 500;
      font-size: 13px;
      color: var(--c-anthracite);
      margin-bottom: 2px;
    }
    .calc-metal .cm-price {
      font-weight: 500;
      font-size: 11px;
      color: var(--c-teal);
      letter-spacing: 0.05em;
    }
    .calc-quantity-row {
      display: flex;
      gap: 14px;
      align-items: center;
    }
    .calc-quantity-row input[type="range"] {
      flex: 1;
      -webkit-appearance: none;
      appearance: none;
      height: 4px;
      background: rgba(22,24,36,0.10);
      border-radius: 2px;
      outline: none;
    }
    .calc-quantity-row input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 22px; height: 22px;
      background: var(--c-orange);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(232,94,26,0.3);
    }
    .calc-quantity-row input[type="range"]::-moz-range-thumb {
      width: 22px; height: 22px;
      background: var(--c-orange);
      border-radius: 50%;
      cursor: pointer;
      border: none;
    }
    .calc-quantity-row input[type="number"] {
      width: 100px;
      padding: 8px 12px;
      border: 1.5px solid rgba(22,24,36,0.12);
      border-radius: 6px;
      font-weight: 500;
      font-size: 16px;
      color: var(--c-anthracite);
      text-align: right;
      outline: none;
    }
    .calc-unit-toggle {
      /* DS §4.7 — dark actif / transparent inactif (le slider quantité reste l'élément orange) */
      display: flex;
      background: var(--nm-cream-2);
      border-radius: var(--nm-radius-pill);
      padding: 3px;
    }
    .calc-unit-toggle button {
      padding: 6px 14px;
      border-radius: var(--nm-radius-pill);
      font-family: var(--nm-font-display);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.04em;
      cursor: pointer;
      background: transparent;
      color: var(--nm-slate);
      border: none;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .calc-unit-toggle button:hover { color: var(--nm-charcoal); }
    .calc-unit-toggle button.active {
      background: var(--nm-charcoal);
      color: var(--nm-cream);
      box-shadow: none;
    }
    .calc-quality {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .calc-quality label {
      background: white;
      border: 1.5px solid rgba(22,24,36,0.10);
      border-radius: 10px;
      padding: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: block;
    }
    .calc-quality label:hover { border-color: rgba(62,106,120,0.4); }
    .calc-quality input { display: none; }
    .calc-quality input:checked + .cq-content {
      color: var(--c-anthracite);
    }
    .calc-quality input:checked ~ * { /* not directly possible without CSS sibling */ }
    .calc-quality label:has(input:checked) {
      border-color: var(--c-orange);
      background: rgba(232,94,26,0.06);
    }
    .cq-title {
      display: block;
      font-weight: 500;
      font-size: 13px;
      color: var(--c-anthracite);
      margin-bottom: 4px;
    }
    .cq-desc {
      display: block;
      font-weight: 300;
      font-size: 11px;
      color: rgba(22,24,36,0.5);
    }
    .calc-result {
      background: linear-gradient(135deg, #E15418 0%, #C2400E 100%);
      border-radius: 12px;
      padding: 36px;
      text-align: center;
      margin-top: 32px;
      color: white;
    }
    .calc-result .label {
      font-weight: 500;
      font-size: 10px;
      color: rgba(255,255,255,0.85);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }
    .calc-result .price {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 56px;
      color: white;
      line-height: 1;
      letter-spacing: -0.03em;
      display: block;
    }
    .calc-result .currency {
      display: block;
      font-weight: 500;
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      margin-top: 6px;
      letter-spacing: 0.05em;
    }
    .calc-result .disclaimer {
      font-weight: 300;
      font-size: 11px;
      color: rgba(255,255,255,0.55);
      line-height: 1.5;
      margin: 18px 0 24px;
    }
    .calc-result a {
      display: inline-block;
      background: white;
      color: var(--c-orange);
      padding: 12px 22px;
      border-radius: var(--radius-md);
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* Timeline */
    .timeline {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 0;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0; bottom: 0;
      width: 1px;
      background: rgba(62,106,120,0.3);
      transform: translateX(-50%);
    }
    .timeline-item {
      position: relative;
      width: 50%;
      padding: 16px 32px;
    }
    .timeline-item:nth-child(odd) { left: 0; }
    .timeline-item:nth-child(even) { left: 50%; }
    .timeline-item::before {
      content: '';
      position: absolute;
      top: 28px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--c-orange);
      border: 2px solid var(--c-cream);
    }
    .timeline-item:nth-child(odd)::before { right: -6px; }
    .timeline-item:nth-child(even)::before { left: -6px; }
    .timeline-card {
      background: white;
      border-radius: 8px;
      padding: 24px;
      border: 1px solid rgba(22,24,36,0.06);
    }
    .timeline-year {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 28px;
      color: var(--c-orange);
      letter-spacing: -0.02em;
      margin-bottom: 4px;
      display: block;
    }
    .timeline-card h3 {
      font-weight: 500;
      font-size: 16px;
      color: var(--c-anthracite);
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }
    .timeline-card p {
      font-weight: 300;
      font-size: 14px;
      color: rgba(22,24,36,0.6);
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .timeline::before { left: 20px; }
      .timeline-item { width: 100%; left: 0 !important; padding-left: 50px; padding-right: 0; }
      .timeline-item::before { left: 14px !important; right: auto !important; }
    }

    /* Generic content section */
    .content-section {
      padding: 80px max(var(--gutter), calc(50% - 600px));
    }
    .content-section.bg-cream { background: var(--c-cream); }
    .content-section.bg-white { background: white; }
    .content-section h2 {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(28px, 3vw, 40px);
      color: var(--c-anthracite);
      letter-spacing: calc(-0.02em + 0.5px);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .content-section .subline {
      font-weight: 300;
      font-size: 15px;
      color: rgba(22,24,36,0.55);
      max-width: 580px;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    /* Tips / Conseils — 4 cards alignées, style minimal */
    .pro-adv-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px;
      align-items: start;
    }
    .pro-adv-card {
      background: transparent;
      box-shadow: none;
      border: none;
      padding: 0;
      border-radius: 0;
    }
    .pro-adv-card:hover {
      transform: none;
      box-shadow: none;
    }
    .pro-adv-card svg {
      width: 32px;
      height: 32px;
      stroke: #3E6A78;
      stroke-width: 1.6;
      fill: none;
      margin-bottom: 20px;
    }
    .pro-adv-card h3 {
      font-size: 17px;
      font-weight: 500;
      letter-spacing: calc(-0.01em + 0.5px);
      color: #161824;
      margin: 0 0 10px;
      line-height: 1.25;
    }
    .pro-adv-card p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.55;
      color: #5b5d65;
      margin: 0;
      max-width: 100%;
    }
    @media (max-width: 1024px) {
      .pro-adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
      }
    }
    @media (max-width: 560px) {
      .pro-adv-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* Reassurance bullets */
    .reassurance {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    .reassurance-card {
      background: white;
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 10px;
      padding: 24px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .reassurance-card svg {
      flex-shrink: 0;
      width: 24px; height: 24px;
      stroke: var(--c-teal);
      stroke-width: 2;
      fill: none;
    }
    .reassurance-card p {
      font-weight: 500;
      font-size: 14px;
      color: var(--c-anthracite);
      line-height: 1.5;
    }
    @media (max-width: 768px) { .reassurance { grid-template-columns: 1fr; } }

    /* Team grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .team-card {
      text-align: center;
    }
    .team-card img {
      width: 140px; height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 20px;
      border: 3px solid white;
      box-shadow: 0 4px 16px rgba(22,24,36,0.10);
    }
    .team-card h3 {
      font-weight: 500;
      font-size: 16px;
      color: var(--c-anthracite);
      margin-bottom: 4px;
      letter-spacing: 0.5px;
    }
    .team-card .role {
      font-weight: 500;
      font-size: 10px;
      color: var(--c-teal);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
    }
    .team-card .bio {
      font-weight: 300;
      font-size: 13px;
      color: rgba(22,24,36,0.55);
      line-height: 1.6;
      font-style: italic;
    }
    @media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

    /* References strip */
    .refs-strip {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    .ref-logo {
      background: rgba(22,24,36,0.04);
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 6px;
      padding: 16px 24px;
      font-weight: 500;
      font-size: 13px;
      color: rgba(22,24,36,0.5);
    }

    /* Certifications dark */
    .certs-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      align-items: center;
    }
    .cert-badge {
      text-align: center;
      padding: 24px;
    }
    .cert-badge svg {
      width: 40px; height: 40px;
      stroke: white;
      stroke-width: 1.5;
      fill: none;
      margin-bottom: 12px;
      opacity: 0.7;
    }
    .cert-badge .cert-name {
      font-weight: 500;
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    @media (max-width: 768px) { .certs-strip { grid-template-columns: 1fr 1fr; } }

    /* ========== FONT SIZE BUMP — non-title text only ========== */
    body { font-size: 18px; }
    p, li { font-size: 16px; line-height: 1.75; }
    small, .small-label { font-size: 12px; }

    /* Buttons */
    .btn-primary, .btn-secondary, .btn-cta-white, .btn-submit, .nav-cta {
      font-size: 13px;
    }

    /* Nav links */
    .nav-links a { font-size: 12px; }

    /* Ticker */
    .ticker-metal { font-size: 11px; }
    .ticker-price { font-size: 20px; }
    .ticker-unit { font-size: 12px; }
    .ticker-trend { font-size: 12px; padding: 4px 11px; }

    /* Social strip */
    .social-strip-item { font-size: 12px; }

    /* Section header subtitle */
    .section-header p { font-size: 14px; }

    /* Key stats */
    .ks-overline { font-size: 11px; }
    .ks-num { font-size: 56px; }
    .ks-label { font-size: 13px; max-width: 180px; }

    /* Pourquoi */
    .why-overline { font-size: 11px; }
    .pourquoi-body { font-size: 15px; line-height: 1.85; max-width: 380px; }
    .stat strong { font-size: 46px; }
    .stat span { font-size: 12px; }
    .feature-index { font-size: 13px; }
    .feature-content h3 { font-size: 19px;
      letter-spacing: 0.5px;
    }
    .feature-content p { font-size: 15px; line-height: 1.7; }

    /* How it works */
    .step-num { font-size: 76px; }

    /* Quote section */
    .quote-slide blockquote { font-size: clamp(20px, 2.6vw, 30px); }
    .quote-slide cite { font-size: 13px; }

    /* Testimonials */
                
    /* CTA band & trust */

    /* Contact + footer */
    .contact-info > p { font-size: 15px; line-height: 1.85; }
    .contact-list .label { font-size: 10px; }
    .contact-list .value { font-size: 15px; }
    .contact-list a.value[href^="tel"] { font-size: 16px; }
    .contact-form h3 { font-size: 22px;
      letter-spacing: 0.5px;
    }
    .form-tag { font-size: 14px; }
    .form-group label { font-size: 10px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; }
    .legal-mention { font-size: 11px; }

    .footer h4 { font-size: 10px;
      letter-spacing: 0.5px;
    }
    .footer-nav a { font-size: 13px; }
    .footer-phone { font-size: 17px; }
    .footer-email, .footer-address { font-size: 13px; }
    .footer dl { font-size: 13px; }
    .footer-brand-text { font-size: 13px; }
    .footer-bottom .copyright { font-size: 12px; }
    .footer-bottom .credit { font-size: 10px; }
    .footer-legal a { font-size: 11px; }
    .footer-newsletter p { font-size: 13px; }
    .footer-newsletter input { font-size: 14px; }

    /* Subpage misc */
    .spec-label { font-size: 10px; }
    .spec-value { font-size: 15px; }
    .col-badge { font-size: 10px; }
    .criteria-list li { font-size: 15px; line-height: 1.55; }
    .col-intro p { font-size: 15px; line-height: 1.75; }
    .col-intro-link { font-size: 14px; }
    .chart-stat .label, .chart-inline-stat .label { font-size: 10px; }
    .chart-inline-stat .val { font-size: 22px; }
    .hero-stat .label { font-size: 10px; }
    .hero-stat .val { font-size: 28px; }

    /* Calculator */
    .calc-step h3 { font-size: 12px;
      letter-spacing: 0.5px;
    }
    .calc-metal .cm-name { font-size: 14px; }
    .calc-metal .cm-price { font-size: 12px; }
    .cq-title { font-size: 14px; }
    .cq-desc { font-size: 12px; }
    .calc-result .label { font-size: 11px; }
    .calc-result .price { font-size: 60px; }
    .calc-result .currency { font-size: 15px; }
    .calc-result .disclaimer { font-size: 12px; }

    /* FAQ */
    .faq-q { font-size: 17px; }
    .faq-a-inner { font-size: 15px; line-height: 1.75; }

    /* Job cards */
    .job-card p { font-size: 15px; line-height: 1.65; }
    .job-meta span { font-size: 13px; }
    .job-tag { font-size: 11px; }
    .job-card-date { font-size: 13px; }

    /* Cross-sell / cards */
    .cross-content h3 { font-size: 17px;
      letter-spacing: 0.5px;
    }
    .reassurance-card p { font-size: 15px; }
    .pro-adv-card h3 { font-size: 17px;
      letter-spacing: 0.5px;
    }
    .pro-adv-card p { font-size: 15px; line-height: 1.65; }
    .ref-logo { font-size: 14px; }
    .team-card h3 { font-size: 17px;
      letter-spacing: 0.5px;
    }
    .team-card .role { font-size: 11px; }
    .team-card .bio { font-size: 14px; }
    .timeline-card h3 { font-size: 17px;
      letter-spacing: 0.5px;
    }
    .timeline-card p { font-size: 15px; line-height: 1.65; }
    .timeline-year { font-size: 32px; }

    /* Cookie + popup */
    .cookie-text { font-size: 14px; }
    .cookie-btn { font-size: 13px; }
    .exit-popup p { font-size: 16px; line-height: 1.65; }
    .exit-popup-decline { font-size: 13px; }

    /* Mega menu */
    .mm-name { font-size: 14px; }
    .mm-price { font-size: 11px; }
    .megamenu-promo p { font-size: 13px; }
    .megamenu-promo a { font-size: 13px; }

    /* ========== DISPLAY TITLE ========== */
    .display-title { font-size: clamp(38px, 4.5vw, 56px); }

    /* ========== MENU MOBILE OVERLAY (opaque cream) ========== */
    body.menu-open {
      overflow: hidden !important;
    }
    @media (max-width: 768px) {
      .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        z-index: 998 !important;
        background: #F5F5F0 !important;
        background-color: #F5F5F0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 80px 48px !important;
        gap: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-8px) !important;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
      }
      .nav-links.open,
      body.menu-open .nav-links {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        transform: translateY(0) !important;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s !important;
      }
      /* Navbar reste au-dessus du menu pour garder le burger cliquable */
      .navbar { z-index: 999 !important; }
      body.menu-open .navbar {
        background: #F5F5F0 !important;
      }
      /* Cacher le chatbot et WhatsApp quand le menu est ouvert */
      body.menu-open .nili-chat,
      body.menu-open .float-btn,
      body.menu-open .float-whatsapp {
        display: none !important;
      }
      .nav-links li {
        width: 100% !important;
        border-bottom: 1px solid rgba(22,24,36,0.07) !important;
      }
      .nav-links a {
        display: block !important;
        padding: 18px 0 !important;
        font-size: 22px !important;
        font-weight: 300 !important;
        color: var(--c-anthracite) !important;
        letter-spacing: -0.01em !important;
        font-family: var(--font-display) !important;
        text-decoration: none !important;
        transition: color 0.2s ease !important;
      }
      .nav-links a:hover {
        color: var(--c-orange) !important;
      }
      .nav-cta {
        position: fixed !important;
        bottom: 40px !important;
        left: 48px !important;
        right: 48px !important;
        text-align: center !important;
        justify-content: center !important;
        z-index: 1000 !important;
        display: none !important;
      }
      body.menu-open .nav-cta {
        display: flex !important;
      }
      .nav-links::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 1px !important;
        background: linear-gradient(to right, transparent, rgba(22,24,36,0.12) 20%, rgba(22,24,36,0.12) 80%, transparent) !important;
      }
    }

    /* ========== METALS — Bento (Linear/Stripe inspired) ========== */
    .metals {
      background: #F5F5F0;
      padding: 120px 0;
      font-family: 'Helvetica Neue', system-ui, sans-serif;
      color: #161824;
    }
    .metals-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* Header */
    .metals-head {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 32px;
      margin-bottom: 32px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(22,24,36,0.08);
    }
    .metals-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #3E6A78;
      margin-bottom: 16px;
    }
    .metals-title {
      font-family: 'Unbounded', 'Helvetica Neue', system-ui, sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1;
      margin: 0 0 16px;
      color: #161824;
    }
    .metals-title em {
      font-family: 'Unbounded', 'Helvetica Neue', system-ui, sans-serif;
      font-style: normal;
      font-weight: 500;
    }
    .metals-sub {
      font-size: 15px;
      font-weight: 300;
      color: #5b5d65;
      margin: 0;
      max-width: 480px;
      line-height: 1.5;
    }

    /* Search */
    .metals-search {
      position: relative;
      display: flex;
      align-items: center;
    }
    .metals-search-ico {
      position: absolute;
      left: 14px;
      width: 16px;
      height: 16px;
      color: #5b5d65;
      pointer-events: none;
    }
    .metals-search input {
      height: 44px;
      padding: 0 56px 0 40px;
      border: 1px solid rgba(22,24,36,0.12);
      border-radius: 100px;
      background: #fff;
      font-size: 14px;
      font-family: inherit;
      width: 280px;
      outline: none;
      transition: all 0.2s ease;
      color: #161824;
    }
    .metals-search input::placeholder { color: #9a9ba1; }
    .metals-search input:focus {
      border-color: #3E6A78;
      box-shadow: 0 0 0 3px rgba(62,106,120,0.12);
      width: 320px;
    }
    .metals-kbd {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'SF Mono', Menlo, monospace;
      font-size: 11px;
      font-weight: 500;
      color: #5b5d65;
      background: #EDEAE2;
      padding: 3px 7px;
      border-radius: 6px;
      pointer-events: none;
    }

    /* Filtres */
    .metals-filters {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .mfilter {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 38px;
      padding: 0 16px;
      border: 1px solid rgba(22,24,36,0.12);
      background: transparent;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      font-family: inherit;
      color: #161824;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .mfilter:hover {
      border-color: #161824;
      background: rgba(22,24,36,0.03);
    }
    .mfilter.active {
      background: #161824;
      color: #F5F5F0;
      border-color: #161824;
    }
    .mfilter-count {
      font-size: 11px;
      font-weight: 400;
      opacity: 0.55;
      font-variant-numeric: tabular-nums;
    }
    .mfilter.active .mfilter-count { opacity: 0.8; }
    .mfilter-accent::before {
      content: "●";
      color: #E85E1A;
      font-size: 8px;
    }
    .mfilter-spacer { flex: 1; }
    .mfilter-sort {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 38px;
      padding: 0 14px;
      border: none;
      background: transparent;
      font-size: 12px;
      font-family: inherit;
      color: #5b5d65;
      cursor: pointer;
      border-radius: 100px;
    }
    .mfilter-sort:hover { color: #161824; background: rgba(22,24,36,0.04); }

    /* Liste de cards horizontales (rows stacked) */
    .metals-grid {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mcard {
      position: relative;
      display: grid;
      grid-template-columns: 110px 1fr 130px 110px 24px;
      align-items: center;
      gap: 20px;
      padding: 16px 22px;
      background: #fff;
      border: 1px solid rgba(22,24,36,0.06);
      border-radius: 12px;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition:
        transform 0.2s cubic-bezier(0.2,0.8,0.2,1),
        border-color 0.18s ease,
        box-shadow 0.2s ease,
        background 0.18s ease;
      min-width: 0;
    }
    .mcard:hover {
      transform: translateX(3px);
      border-color: #3E6A78;
      box-shadow: 0 6px 18px -8px rgba(22,24,36,0.15);
    }

    .mcard-cat {
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #3E6A78;
      margin: 0;
      white-space: nowrap;
    }
    .mcard-name {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin: 0;
      color: #161824;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mcard-price {
      font-size: 20px;
      font-weight: 500;
      letter-spacing: -0.015em;
      line-height: 1;
      font-variant-numeric: tabular-nums;
      color: #161824;
      text-align: right;
      white-space: nowrap;
    }
    .mcard-unit {
      font-size: 11px;
      font-weight: 400;
      color: #9a9ba1;
      margin-left: 2px;
    }
    .mcard-trend {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 11px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 100px;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      justify-self: center;
    }
    .mcard-trend.up { background: rgba(74,122,85,0.12); color: #4A7A55; }
    .mcard-trend.dn { background: rgba(232,94,26,0.12); color: #E85E1A; }
    .mcard-trend.eq { background: rgba(22,24,36,0.05);  color: #5b5d65; }

    .mcard-arrow {
      width: 20px;
      height: 20px;
      color: rgba(22,24,36,0.25);
      transition: color 0.18s ease, transform 0.18s ease;
      justify-self: end;
    }
    .mcard:hover .mcard-arrow {
      color: #3E6A78;
      transform: translateX(3px);
    }

    /* Top prix : accent orange sur le badge cat */
    .mcard.is-top .mcard-cat {
      color: #E85E1A;
    }
    .mcard.is-top .mcard-cat::before {
      content: '★ ';
      font-size: 9px;
    }

    /* Empty */
    .metals-empty {
      padding: 80px 24px;
      text-align: center;
      color: #5b5d65;
      font-size: 14px;
    }
    .metals-reset {
      margin-top: 16px;
      height: 38px;
      padding: 0 18px;
      border: 1px solid rgba(22,24,36,0.15);
      background: transparent;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      font-family: inherit;
      color: #161824;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .metals-reset:hover { background: #161824; color: #F5F5F0; }

    /* Foot */
    .metals-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(22,24,36,0.08);
      font-size: 12px;
      color: #5b5d65;
    }
    .metals-live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 400;
    }
    .metals-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4A7A55;
      box-shadow: 0 0 0 0 rgba(74,122,85,0.5);
      animation: metalsPulse 2s infinite;
    }
    @keyframes metalsPulse {
      0%   { box-shadow: 0 0 0 0    rgba(74,122,85,0.5); }
      70%  { box-shadow: 0 0 0 8px  rgba(74,122,85,0); }
      100% { box-shadow: 0 0 0 0    rgba(74,122,85,0); }
    }
    .metals-all {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #161824;
      font-weight: 500;
      text-decoration: none;
      font-size: 13px;
    }
    .metals-all:hover { color: #3E6A78; }
    .metals-all svg { transition: transform 0.2s ease; }
    .metals-all:hover svg { transform: translateX(3px); }

    /* Responsive */
    @media (max-width: 720px) {
      .metals { padding: 80px 0; }
      .metals-inner { padding: 0 20px; }
      .metals-head {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .metals-search input { width: 100%; }
      .metals-search input:focus { width: 100%; }
      .mcard {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 4px 12px;
        padding: 14px 16px;
      }
      .mcard-cat {
        grid-column: 1;
        grid-row: 1;
        font-size: 8px;
      }
      .mcard-name {
        grid-column: 1;
        grid-row: 2;
        font-size: 15px;
      }
      .mcard-price {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
        font-size: 18px;
        text-align: right;
      }
      .mcard-trend, .mcard-arrow { display: none; }
      .mfilter-spacer { display: none; }
      .mfilter-sort { width: 100%; justify-content: space-between; }
    }

    /* ========== CHATBOT ========== */
    .nili-chat {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9998;
      font-family: 'Helvetica Neue', system-ui, sans-serif;
    }
    .nili-chat-toggle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #161824;
      color: #F5F5F0;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px -6px rgba(22,24,36,0.35);
      transition: transform 0.25s cubic-bezier(0.2,0.8,0.2,1), background 0.2s ease;
      position: relative;
    }
    .nili-chat-toggle:hover {
      background: #0F1D32;
      transform: translateY(-2px) scale(1.04);
    }
    .nili-chat-toggle svg {
      width: 24px;
      height: 24px;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nili-chat-toggle .icon-close { display: none; }
    .nili-chat.open .nili-chat-toggle .icon-chat { display: none; }
    .nili-chat.open .nili-chat-toggle .icon-close { display: block; }
    .nili-chat-toggle::after {
      content: '';
      position: absolute;
      top: 6px;
      right: 6px;
      width: 10px;
      height: 10px;
      background: #4A7A55;
      border: 2px solid #161824;
      border-radius: 50%;
      animation: nili-pulse 2s infinite;
    }
    .nili-chat.open .nili-chat-toggle::after { display: none; }
    @keyframes nili-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74,122,85,0.5); }
      50%      { box-shadow: 0 0 0 6px rgba(74,122,85,0); }
    }

    .nili-chat-panel {
      position: absolute;
      bottom: 76px;
      right: 0;
      width: 380px;
      max-width: calc(100vw - 32px);
      height: 540px;
      max-height: calc(100vh - 120px);
      background: #fff;
      border-radius: 16px;
      box-shadow:
        0 30px 60px -20px rgba(22,24,36,0.35),
        0 12px 30px -10px rgba(22,24,36,0.20);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      opacity: 0;
      transform: translateY(8px) scale(0.98);
      pointer-events: none;
      transition:
        opacity 0.22s ease,
        transform 0.25s cubic-bezier(0.2,0.8,0.2,1);
    }
    .nili-chat.open .nili-chat-panel {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .nili-chat-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      background: #161824;
      color: #F5F5F0;
      flex-shrink: 0;
    }
    .nili-chat-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3E6A78, #4A7A55);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 500;
      color: #F5F5F0;
      flex-shrink: 0;
    }
    .nili-chat-meta {
      flex: 1;
      min-width: 0;
    }
    .nili-chat-meta strong {
      display: block;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -0.005em;
    }
    .nili-chat-meta span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 300;
      opacity: 0.7;
    }
    .nili-chat-meta span::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4A7A55;
    }
    .nili-chat-close {
      background: none;
      border: none;
      color: #F5F5F0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.6;
      transition: opacity 0.15s ease, background 0.15s ease;
    }
    .nili-chat-close:hover {
      opacity: 1;
      background: rgba(255,255,255,0.08);
    }

    .nili-chat-body {
      flex: 1;
      overflow-y: auto;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: #FAFAF7;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: rgba(22,24,36,0.15) transparent;
    }
    .nili-chat-body::-webkit-scrollbar { width: 4px; }
    .nili-chat-body::-webkit-scrollbar-thumb {
      background: rgba(22,24,36,0.15);
      border-radius: 2px;
    }

    .nili-msg {
      max-width: 86%;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 13.5px;
      font-weight: 300;
      line-height: 1.5;
      animation: nili-slide-up 0.25s cubic-bezier(0.2,0.8,0.2,1);
    }
    .nili-msg.bot {
      background: #fff;
      color: #161824;
      border-top-left-radius: 4px;
      box-shadow: 0 1px 3px rgba(22,24,36,0.05);
      align-self: flex-start;
    }
    .nili-msg.user {
      background: #161824;
      color: #F5F5F0;
      border-top-right-radius: 4px;
      align-self: flex-end;
    }
    .nili-msg a {
      color: #3E6A78;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .nili-msg.user a { color: #E85E1A; }
    .nili-msg strong { font-weight: 500; }
    @keyframes nili-slide-up {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .nili-typing {
      display: inline-flex;
      gap: 3px;
      padding: 12px 16px;
    }
    .nili-typing span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(22,24,36,0.3);
      animation: nili-bounce 1.2s infinite;
    }
    .nili-typing span:nth-child(2) { animation-delay: 0.15s; }
    .nili-typing span:nth-child(3) { animation-delay: 0.3s; }
    @keyframes nili-bounce {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30%           { transform: translateY(-4px); opacity: 1; }
    }

    .nili-chat-quick {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 12px 14px 14px;
      background: #fff;
      border-top: 1px solid rgba(22,24,36,0.06);
      flex-shrink: 0;
      max-height: 180px;
      overflow-y: auto;
    }
    .nili-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 7px 12px;
      background: #F5F5F0;
      border: 1px solid rgba(22,24,36,0.08);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 500;
      color: #161824;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.15s ease;
    }
    .nili-chip:hover {
      background: #161824;
      color: #F5F5F0;
      border-color: #161824;
    }
    .nili-chip.cta {
      background: #E85E1A;
      color: #fff;
      border-color: #E85E1A;
    }
    .nili-chip.cta:hover { background: #c04010; border-color: #c04010; }

    @media (max-width: 480px) {
      .nili-chat { bottom: 16px; right: 16px; }
      .nili-chat-panel {
        width: calc(100vw - 32px);
        right: 0;
      }
    }

    /* Décale le chatbot au-dessus de WhatsApp s'il existe */
    .float-whatsapp ~ .nili-chat,
    .nili-chat:has(~ .float-whatsapp) { bottom: 92px; }

    /* ━━━ Calculateur : repères de poids (visual helper) ━━━ */
    .calc-weight-helper {
      margin-top: 16px;
      background: #FAFAF7;
      border: 1px solid #E0E0DC;
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 14px;
    }
    .calc-weight-helper summary {
      cursor: pointer;
      font-weight: 600;
      color: #3E6A78;
      list-style: none;
      padding: 2px 0;
    }
    .calc-weight-helper summary::-webkit-details-marker { display: none; }
    .calc-weight-helper summary::before {
      content: "▸ ";
      display: inline-block;
      transition: transform 200ms;
    }
    .calc-weight-helper[open] summary::before { transform: rotate(90deg); }
    .calc-weight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 8px 16px;
      margin-top: 14px;
      color: #4B5563;
      font-size: 13.5px;
    }
    .calc-weight-grid div { padding: 4px 0; }
    .calc-weight-grid strong { color: #161824; font-weight: 600; }
    .calc-weight-note { font-size: 12px; color: #6B7280; font-style: italic; margin: 12px 0 0; }

/* Contact form: file upload */
.file-input {
  width: 100%;
  padding: 10px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  cursor: pointer;
}
.file-input:hover { border-color: rgba(255,255,255,0.35); }
.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.file-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 12px;
}

/* Language switcher FR/NL dans la navbar */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(22,24,36,0.04);
  border: 1px solid var(--c-border-subtle);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-right: 14px;
  font-family: var(--nm-font-body);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  text-decoration: none;
  transition: all 200ms;
}
.lang-switch a:hover { color: var(--c-anthracite); }
.lang-switch a.lang-active {
  background: var(--c-anthracite);
  color: white;
}
.navbar.scrolled .lang-switch { background: rgba(22,24,36,0.06); }
@media (max-width: 1024px) {
  .lang-switch { margin-right: 8px; }
  .lang-switch a { min-width: 28px; padding: 0 8px; font-size: 11px; }
}


    /* Testimonials — CTA-band style (Sprint 2) */

                                                  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Testimonials — 4-card clickable grid (Phase 1.2 refonte)
   DS §6.3 cards canoniques · cards as <a> linking to share.google URLs
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nm-testimonials {
  padding: var(--nm-space-9) var(--nm-space-6);
  background: var(--nm-cream);
}

.nm-testimonials__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--nm-space-7);
  align-items: end;
  padding-bottom: var(--nm-space-6);
  margin-bottom: var(--nm-space-6);
  border-bottom: 0.5px solid var(--nm-border-strong);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.nm-testimonials__intro {
  min-width: 0;
}

.nm-testimonials__eyebrow {
  display: block;
  font-family: var(--nm-font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--nm-slate);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--nm-space-3);
}

.nm-testimonials__title {
  font-family: var(--nm-font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--nm-charcoal);
  margin: 0;
  text-transform: uppercase;
}

.nm-testimonials__dot {
  color: var(--nm-orange);
}

.nm-testimonials__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--nm-space-2);
  justify-self: end;
}

.nm-testimonials__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nm-testimonials__score {
  font-family: var(--nm-font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--nm-charcoal);
  letter-spacing: -0.01em;
}

.nm-testimonials__stars {
  color: var(--nm-orange);
  font-size: 14px;
  letter-spacing: 2px;
}

.nm-testimonials__count {
  font-family: var(--nm-font-body);
  font-size: 13px;
  color: var(--nm-slate);
}

.nm-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--nm-space-3);
  max-width: 1280px;
  margin: 0 auto;
}

.nm-testimonial-card {
  background: var(--nm-white);
  border: 0.5px solid var(--nm-border);
  border-radius: var(--nm-radius-xl);
  padding: var(--nm-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--nm-space-4);
  min-height: 280px;
  text-decoration: none;
  color: inherit;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.nm-testimonial-card:hover {
  border-color: var(--nm-border-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 40, 38, 0.06);
}

.nm-testimonial-card:focus-visible {
  outline: 2px solid var(--nm-orange);
  outline-offset: 2px;
}

.nm-testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nm-space-3);
}

.nm-testimonial-card__stars {
  color: var(--nm-orange);
  font-size: 12px;
  letter-spacing: 1px;
}

.nm-testimonial-card__source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--nm-font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--nm-slate);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 200ms ease;
}

.nm-testimonial-card__source > span {
  font-size: 12px;
  line-height: 1;
}

.nm-testimonial-card:hover .nm-testimonial-card__source {
  color: var(--nm-orange);
}

.nm-testimonial-card__quote {
  font-family: var(--nm-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--nm-charcoal);
  flex: 1;
  margin: 0;
  font-style: normal;
}

.nm-testimonial-card__quote::before {
  content: "« ";
  color: var(--nm-slate);
  font-weight: 600;
}

.nm-testimonial-card__quote::after {
  content: " »";
  color: var(--nm-slate);
  font-weight: 600;
}

.nm-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: var(--nm-space-4);
  border-top: 0.5px solid var(--nm-border);
}

.nm-testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--nm-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nm-font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--nm-white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.nm-testimonial-card__avatar--orange { background: var(--nm-orange); }
.nm-testimonial-card__avatar--charcoal { background: var(--nm-charcoal); }
.nm-testimonial-card__avatar--forest { background: var(--nm-forest); }

.nm-testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.nm-testimonial-card__author-name {
  font-family: var(--nm-font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--nm-charcoal);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nm-testimonial-card__author-type {
  font-family: var(--nm-font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--nm-slate);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nm-testimonial-card--accent {
  background: var(--nm-charcoal);
  border-color: var(--nm-charcoal);
}

.nm-testimonial-card--accent .nm-testimonial-card__quote {
  color: var(--nm-cream);
}

.nm-testimonial-card--accent .nm-testimonial-card__quote::before,
.nm-testimonial-card--accent .nm-testimonial-card__quote::after {
  color: rgba(244, 240, 232, 0.5);
}

.nm-testimonial-card--accent .nm-testimonial-card__source {
  color: rgba(244, 240, 232, 0.6);
}

.nm-testimonial-card--accent:hover .nm-testimonial-card__source {
  color: var(--nm-orange);
}

.nm-testimonial-card--accent .nm-testimonial-card__author {
  border-top-color: rgba(244, 240, 232, 0.1);
}

.nm-testimonial-card--accent .nm-testimonial-card__author-name {
  color: var(--nm-cream);
}

.nm-testimonial-card--accent .nm-testimonial-card__author-type {
  color: rgba(244, 240, 232, 0.6);
}

.nm-testimonials__footer {
  margin-top: var(--nm-space-6);
  padding-top: var(--nm-space-5);
  border-top: 0.5px solid var(--nm-border-strong);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.nm-testimonials__footer-text {
  font-family: var(--nm-font-body);
  font-size: 13px;
  color: var(--nm-slate);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.nm-testimonials__footer-text strong {
  color: var(--nm-charcoal);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .nm-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nm-testimonials__head {
    grid-template-columns: 1fr;
    gap: var(--nm-space-5);
  }
  .nm-testimonials__rating {
    justify-self: start;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nm-testimonials {
    padding: var(--nm-space-7) var(--nm-space-5);
  }
  .nm-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nm-testimonial-card,
  .nm-testimonial-card__source {
    transition: none;
  }
  .nm-testimonial-card:hover {
    transform: none;
  }
}

/* ============================================ */
/*  CALCULATEUR — Lead capture (Sprint 3)      */
/* ============================================ */
.calc-lead-trigger{
  margin-top:18px;display:inline-flex;align-items:center;gap:8px;
  background:var(--c-anthracite,#2f3030);color:#fff;border:0;cursor:pointer;
  padding:14px 22px;border-radius:999px;font-family:inherit;font-weight:500;
  font-size:14px;letter-spacing:.01em;
  transition:transform .15s ease,background-color .15s ease;
}
.calc-lead-trigger:hover{background:#1e1f1f;transform:translateY(-1px)}
.calc-lead-trigger:focus-visible{outline:2px solid var(--c-teal,#3B6479);outline-offset:3px}

.calc-lead-section{display:none}
.calc-lead-section.is-open{display:block;animation:cl-fadein .35s ease both}
@keyframes cl-fadein{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.calc-lead-card{
  max-width:780px;margin:8px auto 0;background:#fff;border-radius:18px;
  padding:36px 32px;box-shadow:0 8px 30px rgba(15,23,42,.06);
  border:1px solid rgba(0,0,0,.04);
}
.calc-lead-head{text-align:center;margin-bottom:24px}
.calc-lead-head h2{
  font-family:var(--font-display,Unbounded,sans-serif);font-weight:600;
  font-size:clamp(22px,2.6vw,30px);color:var(--c-anthracite,#2f3030);
  margin:8px 0 10px;letter-spacing:-.01em;text-transform:uppercase;
}
.calc-lead-sub{font-size:14.5px;color:rgba(47,48,48,.65);line-height:1.6;margin:0 auto;max-width:520px}

.calc-lead-form{display:grid;gap:16px;margin-top:8px}
.calc-lead-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width:540px){.calc-lead-row{grid-template-columns:1fr}}
.calc-lead-form label{display:flex;flex-direction:column;gap:6px;font-size:13px;color:#444}
.calc-lead-form label > span{font-weight:500;color:var(--c-anthracite,#2f3030)}
.calc-lead-form label > span em{color:#B23A11;font-style:normal;margin-left:2px}
.calc-lead-form label > span small{font-weight:400;color:#888;font-size:12px}
.calc-lead-form input[type="email"],
.calc-lead-form input[type="tel"],
.calc-lead-form input[type="text"]{
  height:46px;padding:0 14px;font:inherit;color:#2f3030;
  background:#fafaf7;border:1px solid #e4e1d8;border-radius:10px;
  transition:border-color .15s ease,background .15s ease,box-shadow .15s ease;
}
.calc-lead-form input:focus{outline:none;border-color:var(--c-teal,#3B6479);background:#fff;box-shadow:0 0 0 3px rgba(59,100,121,.15)}
.calc-lead-form input:invalid:not(:placeholder-shown){border-color:#c0392b}

.calc-lead-summary{
  display:grid;grid-template-columns:repeat(4,1fr);gap:10px;
  background:#fafaf7;border:1px solid #ece8dc;border-radius:12px;
  padding:14px;font-size:12px;
}
.cl-sum-row{display:flex;flex-direction:column;gap:2px;text-align:center}
.cl-sum-row strong{font-size:14px;color:var(--c-anthracite,#2f3030);font-weight:600}
.cl-sum-row span{font-size:11px;text-transform:uppercase;letter-spacing:.05em;color:#888}
.cl-sum-total strong{color:#B23A11;font-size:16px}
@media (max-width:540px){.calc-lead-summary{grid-template-columns:repeat(2,1fr)}}

.calc-lead-rgpd{flex-direction:row !important;align-items:flex-start;gap:10px !important;font-size:12.5px;color:#666;line-height:1.5}
.calc-lead-rgpd input{margin-top:3px;flex-shrink:0;accent-color:#B23A11}
.calc-lead-rgpd a{color:var(--c-teal,#3B6479);text-decoration:underline}

.calc-lead-submit{
  margin-top:6px;background:#B23A11;color:#fff;border:0;cursor:pointer;
  padding:16px 24px;border-radius:999px;font-family:inherit;font-weight:600;
  font-size:14.5px;letter-spacing:.01em;
  transition:transform .15s ease,background-color .15s ease,opacity .2s ease;
}
.calc-lead-submit:hover{background:#8d2d0c;transform:translateY(-1px)}
.calc-lead-submit:disabled{opacity:.55;cursor:wait}

.calc-lead-status{margin:8px 0 0;font-size:13px;min-height:18px;text-align:center}
.calc-lead-status.is-error{color:#c0392b}
.calc-lead-status.is-ok{color:#1d7a3a}

.calc-lead-done{text-align:center;padding:8px}
.calc-lead-done .check{
  width:64px;height:64px;margin:0 auto 14px;border-radius:50%;
  background:#e8f5ee;color:#1d7a3a;display:flex;align-items:center;justify-content:center;
  font-size:32px;
}
.calc-lead-done h3{font-family:var(--font-display,Unbounded,sans-serif);font-weight:600;font-size:20px;margin:0 0 10px;color:var(--c-anthracite,#2f3030);text-transform:uppercase}
.calc-lead-done p{color:#666;font-size:14px;line-height:1.6;margin:0 auto;max-width:440px}
