/* ====================================================================
   MNG — Feuille de style globale
   MRMT NEXTGen Conseils & Associés Inc.
   Design system : fondation claire + encre marine + accent vert.
   Chargée par toutes les pages du site.
   ==================================================================== */

    /* ====================================================================
       SKIP LINK (Accessibilité)
       ==================================================================== */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--accent);
      color: var(--bg-card);
      padding: 0.75rem 1.5rem;
      z-index: 1000;
      font-weight: 600;
      border-radius: 0 0 8px 8px;
      text-decoration: none;
      transition: left 0.3s ease;
    }
    .skip-link:focus {
      left: 0;
      outline: 2px solid var(--accent-deep);
      outline-offset: 2px;
    }

    /* ====================================================================
       FOCUS STYLES (Accessibilité)
       ==================================================================== */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Masqué visuellement, exposé aux lecteurs d'écran */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    }

    /* ====================================================================
       TOKENS — Light foundation + green confidence accent
       ==================================================================== */
    :root {
      --bg:           #F6F7F6;
      --bg-2:         #EEF0EE;
      --bg-card:      #FFFFFF;
      --bg-dark:      #042C53;
      --bg-dark-2:    #031F3D;

      --ink:          #042C53;
      --ink-2:        #475569;
      --ink-3:        #556377; /* Contraste WCAG AA : 5.3:1 sur bg-2, 6.1:1 sur blanc */
      --ink-onDark:   #F6F7F6;
      --ink-onDark-2: #94A8C2;

      --accent:       #1D9E75;
      --accent-2:     #25B58A;
      --accent-deep:  #0F6E56;
      --accent-deeper: #0C5F49; /* survol bouton — blanc dessus 7.6:1 */
      --accent-pale:  #E1F5EE;
      --accent-pale-2: #D2EEDF;

      --line:         #E5E7EB;
      --line-2:       #CBD5E1;
      --line-onDark:  rgba(246, 247, 246, 0.14);

      --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

      --gutter:  clamp(1.25rem, 4vw, 3rem);
      --section: clamp(4rem, 8vw, 6.5rem);
      --max:     1320px;

      --radius:    8px;
      --radius-lg: 14px;
      --radius-xl: 24px;

      --shadow-sm: 0 1px 2px rgba(4, 44, 83, 0.04), 0 1px 1px rgba(4, 44, 83, 0.03);
      --shadow:    0 4px 12px rgba(4, 44, 83, 0.06), 0 1px 3px rgba(4, 44, 83, 0.04);
      --shadow-lg: 0 16px 40px rgba(4, 44, 83, 0.10), 0 4px 12px rgba(4, 44, 83, 0.06);
    }

    /* ====================================================================
       RESET
       ==================================================================== */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink-2);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
    img, svg { display: block; max-width: 100%; }
    h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; }
    p { margin: 0; }
    ul, ol { margin: 0; padding: 0; list-style: none; }
    ::selection { background: var(--accent-pale); color: var(--ink); }

    /* ====================================================================
       I18N
       ==================================================================== */
    html[data-lang="fr"] .lang-en { display: none; }
    html[data-lang="en"] .lang-fr { display: none; }

    /* ====================================================================
       PRIMITIVES
       ==================================================================== */
    .container {
      width: 100%;
      max-width: var(--max);
      margin-inline: auto;
      padding-inline: var(--gutter);
    }
    .eyebrow {
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--accent-deep);
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }
    .eyebrow::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--accent);
      display: inline-block;
      border-radius: 2px;
    }
    .eyebrow--onDark { color: var(--accent-2); }
    .heading-xl {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.025em;
      color: var(--ink);
    }
    .heading-lg {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--ink);
    }
    .text-lead {
      color: var(--ink-2);
      font-size: 15.5px;
      line-height: 1.7;
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-size: 14.5px; font-weight: 500;
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
      white-space: nowrap;
      box-shadow: var(--shadow-sm);
    }
    .btn--primary {
      background: var(--accent-deep);
      color: var(--bg-card);
      border: 1px solid var(--accent-deep);
    }
    .btn--primary:hover {
      background: var(--accent-deeper);
      border-color: var(--accent-deeper);
      box-shadow: 0 6px 16px rgba(15, 110, 86, 0.28);
    }
    .btn--outline {
      background: var(--bg-card);
      color: var(--ink);
      border: 1px solid var(--line-2);
      box-shadow: var(--shadow-sm);
    }
    .btn--outline:hover {
      border-color: var(--accent);
      color: var(--accent-deep);
      background: var(--bg-card);
    }
    .btn--ghost-onDark {
      background: transparent;
      color: var(--ink-onDark);
      border: 1px solid var(--line-onDark);
      box-shadow: none;
    }
    .btn--ghost-onDark:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--bg-card); }
    .btn .arrow { transition: transform 0.2s ease; }
    .btn:hover .arrow { transform: translateX(3px); }
    .btn--icon { padding-left: 1rem; }
    .btn--icon svg { width: 18px; height: 18px; }

    /* ====================================================================
       UTILITY BAR
       ==================================================================== */
    .utility {
      background: var(--bg-2);
      border-bottom: 1px solid var(--line);
      font-size: 13px;
    }
    .utility__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem;
      padding-block: 0.7rem;
      flex-wrap: wrap;
    }
    .utility__left { display: flex; gap: 1.75rem; flex-wrap: wrap; }
    .utility__left a {
      color: var(--ink-2);
      display: inline-flex; align-items: center; gap: 0.4rem;
      transition: color 0.2s ease;
    }
    .utility__left a:hover { color: var(--accent-deep); }
    .utility__left svg { width: 13px; height: 13px; color: var(--accent); }
    .utility__right { display: flex; align-items: center; gap: 1.25rem; }
    .utility__socials { display: flex; gap: 1rem; }
    .utility__socials a {
      color: var(--ink-3);
      transition: color 0.2s ease;
      display: inline-flex; align-items: center;
    }
    .utility__socials a:hover { color: var(--accent-deep); }
    .utility__socials svg { width: 13px; height: 13px; }
    .utility__divider { width: 1px; height: 16px; background: var(--line-2); }
    .lang-toggle {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font-size: 12.5px;
      letter-spacing: 0.05em;
    }
    .lang-toggle__btn { color: var(--ink-3); transition: color 0.2s ease; font-weight: 500; }
    .lang-toggle__btn.is-active { color: var(--ink); }
    .lang-toggle__sep { color: var(--line-2); }

    /* ====================================================================
       MAIN NAV
       ==================================================================== */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(246, 247, 246, 0.88);
      backdrop-filter: blur(18px) saturate(1.5);
      -webkit-backdrop-filter: blur(18px) saturate(1.5);
      border-bottom: 1px solid var(--line);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 2rem;
      padding-block: 1.1rem;
    }
    .brand {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-weight: 700;
      font-size: 1.3rem;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .brand__mark {
      width: 32px; height: 32px;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .brand__mark svg { width: 100%; height: 100%; }
    .brand__logo { height: 30px; width: auto; display: block; }
    .brand__name { display: inline-flex; align-items: baseline; gap: 0.4rem; }
    .brand__name .star { color: var(--accent); font-size: 0.85em; transform: translateY(-1px); }
    .brand__sub {
      display: none;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-3);
      padding-left: 0.55rem;
      border-left: 1px solid var(--line-2);
      align-self: center;
    }
    @media (min-width: 1100px) { .brand__sub { display: inline-block; } }

    .nav__links { display: flex; gap: 0.25rem; align-items: center; }
    .nav__links a {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--ink-2);
      padding: 0.55rem 1rem;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
      display: inline-flex; align-items: center; gap: 0.35rem;
    }
    .nav__links a:hover { color: var(--ink); background: var(--bg-2); }
    .nav__links a.is-active { background: var(--accent-pale); color: var(--accent-deep); }
    .nav__links a .caret { font-size: 0.7em; opacity: 0.6; }

    .nav__right { display: flex; align-items: center; gap: 0.85rem; }
    .nav__burger {
      display: none;
      width: 28px; height: 24px;
      flex-direction: column; justify-content: space-between;
    }
    .nav__burger span {
      display: block; height: 2px; width: 100%;
      background: var(--ink);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
    .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* ====================================================================
       HERO — Two-column light
       ==================================================================== */
    .hero {
      padding-block: clamp(3rem, 6vh, 5rem) clamp(3rem, 6vh, 5rem);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -10%; right: -15%;
      width: 55%; aspect-ratio: 1;
      background: radial-gradient(circle, var(--accent-pale) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -20%; left: -10%;
      width: 40%; aspect-ratio: 1;
      background: radial-gradient(circle, var(--accent-pale-2) 0%, transparent 60%);
      opacity: 0.6;
      pointer-events: none;
      z-index: 0;
    }
    .hero > .container { position: relative; z-index: 1; }
    .hero__grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(2.5rem, 5vw, 5rem);
      align-items: center;
    }
    .hero__content { display: flex; flex-direction: column; gap: 1.5rem; }
    .hero__title {
      font-size: clamp(2.2rem, 4.8vw, 4rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.05;
      color: var(--ink);
      margin: 0;
    }
    .hero__title em {
      font-style: normal;
      color: var(--accent-deep);
      position: relative;
      white-space: nowrap;
    }
    .hero__title em::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: 0.08em;
      height: 0.18em;
      background: var(--accent-pale);
      z-index: -1;
      border-radius: 2px;
    }
    .hero__sub {
      color: var(--ink-2);
      max-width: 52ch;
      font-size: clamp(0.98rem, 1.15vw, 1.1rem);
      line-height: 1.65;
    }
    .hero__cta-row {
      display: flex; align-items: center; gap: 1rem;
      flex-wrap: wrap;
    }
    .hero__trust {
      display: flex; align-items: center; gap: 0.85rem;
      padding-top: 0.5rem;
    }
    .hero__avatars { display: flex; }
    .hero__avatars span {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid var(--bg);
      background-size: cover; background-position: center;
      margin-left: -10px;
    }
    .hero__avatars span:first-child { margin-left: 0; }
    .hero__avatars span:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=80&q=80'); }
    .hero__avatars span:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=80&q=80'); }
    .hero__avatars span:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&w=80&q=80'); }
    .hero__trust-text strong {
      display: block;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
    }
    .hero__trust-text small {
      font-size: 12.5px;
      color: var(--ink-2);
    }

    /* Hero visual */
    .hero__visual {
      position: relative;
      isolation: isolate;
    }
    .hero__visual-card {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 4.4;
      box-shadow: var(--shadow-lg);
    }
    .hero__visual-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Floating stat card */
    .hero__floating {
      position: absolute;
      bottom: -1rem;
      left: -1.5rem;
      background: var(--bg-card);
      padding: 1rem 1.25rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 0.85rem;
      z-index: 2;
    }
    .hero__floating-icon {
      width: 44px; height: 44px;
      background: var(--accent-pale);
      color: var(--accent-deep);
      border-radius: 12px;
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero__floating-icon svg { width: 22px; height: 22px; }
    .hero__floating-text strong {
      display: block;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
    }
    .hero__floating-text small {
      font-size: 12px;
      color: var(--ink-2);
      letter-spacing: 0.01em;
    }
    /* Floating badge top */
    .hero__floating-top {
      position: absolute;
      top: 1.25rem;
      right: -1rem;
      background: var(--bg-card);
      padding: 0.7rem 1rem;
      border-radius: 999px;
      box-shadow: var(--shadow);
      display: flex; align-items: center; gap: 0.6rem;
      z-index: 2;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink);
    }
    .hero__floating-top .dot {
      width: 8px; height: 8px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 0 4px var(--accent-pale);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(0.85); }
    }

    /* ====================================================================
       ABOUT
       ==================================================================== */
    .about { padding-block: var(--section); }
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: clamp(2.5rem, 5vw, 4.5rem);
      align-items: center;
    }
    .about__visual {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background-color: var(--bg-2);
      box-shadow: var(--shadow-lg);
    }
    .about__visual img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .about__play {
      position: absolute;
      bottom: 1.5rem; left: 1.5rem;
      display: inline-flex; align-items: center; gap: 0.7rem;
      color: var(--bg-card);
      font-weight: 500;
      font-size: 14px;
      padding: 0.65rem 1rem 0.65rem 0.65rem;
      background: rgba(4, 44, 83, 0.6);
      backdrop-filter: blur(8px);
      border-radius: 999px;
    }
    .about__play-btn {
      width: 36px; height: 36px;
      background: var(--accent);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      transition: transform 0.25s ease;
    }
    .about__play:hover .about__play-btn { transform: scale(1.08); }
    .about__play-btn svg { width: 12px; height: 12px; fill: var(--bg-card); }

    .about__content { display: flex; flex-direction: column; gap: 1.1rem; }
    .about__content h2 { margin: 0.5rem 0; }
    .about__content > p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }
    .about__subhead {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      margin-top: 0.5rem;
    }
    .about__list {
      display: flex; flex-direction: column;
      gap: 0.85rem;
      margin-block: 0.25rem;
    }
    .about__list li {
      display: flex; align-items: flex-start; gap: 0.75rem;
      color: var(--ink-2);
      font-size: 15px;
      line-height: 1.55;
    }
    .about__list .check {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--bg-card);
      display: inline-flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .about__list .check svg { width: 12px; height: 12px; }

    .about__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      padding-top: 1.75rem;
      border-top: 1px solid var(--line);
      margin-top: 1.25rem;
    }
    .stat { display: flex; flex-direction: column; gap: 0.25rem; }
    .stat__num {
      font-size: clamp(1.75rem, 2.8vw, 2.4rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--ink);
      line-height: 1.05;
    }
    .stat__num em {
      font-style: normal;
      color: var(--accent);
    }
    .stat__label {
      font-size: 13px;
      color: var(--ink-2);
      line-height: 1.4;
    }

    /* ====================================================================
       PARTNERS STRIP
       ==================================================================== */
    .partners {
      padding-block: clamp(2.5rem, 4vh, 3.5rem);
      background: var(--bg-card);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .partners__inner {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
    }
    .partners__title {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--ink-2);
      max-width: 16ch;
      line-height: 1.5;
    }
    .partners__title em {
      font-style: normal;
      color: var(--ink);
      font-weight: 700;
    }
    .partners__logos {
      display: flex;
      gap: clamp(1.5rem, 4vw, 3.5rem);
      align-items: center;
      flex-wrap: wrap;
    }
    .partner-logo {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--ink-3);
      letter-spacing: -0.01em;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: color 0.25s ease;
    }
    .partner-logo:hover { color: var(--ink); }
    .partner-logo .dot {
      width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-block;
    }
    .partner-logo .ring {
      width: 16px; height: 16px;
      border-radius: 50%;
      border: 2px solid var(--accent);
      display: inline-block;
    }
    .partner-logo .plus { color: var(--accent); font-size: 1.1em; }
        .partner-logo .sparkle { color: var(--accent); }

    /* ============== BANDE DE CONFIANCE (logos partenaires) ============== */
    .trust { padding: clamp(2rem, 5vw, 3rem) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .trust__title { text-align: center; color: var(--ink-3); font-size: 12.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; margin: 0 0 1.4rem; }
    .trust__logos { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.1rem; padding: 0; margin: 0; }
    .trust__logos li { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
    .trust__name { font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.01em; }
    .trust__chip { display: inline-flex; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; padding: 0.75rem 1.6rem; height: 84px; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s ease, transform 0.2s ease; }
    .trust__chip:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
    .trust__chip img { height: 46px; width: auto; border-radius: 5px; display: block; }

    /* ====================================================================
       SERVICES
       ==================================================================== */
    .services { padding-block: var(--section); }
    .services__head {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: end;
      margin-bottom: clamp(2.5rem, 5vh, 3.5rem);
    }
    .services__head h2 { margin-top: 1rem; max-width: 18ch; }
    .services__head p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .svc {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      min-height: 260px;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      box-shadow: var(--shadow-sm);
    }
    .svc:hover {
      border-color: var(--accent-pale-2);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .svc--featured {
      background: var(--accent-pale);
      border-color: var(--accent-pale-2);
    }
    .svc--featured:hover { border-color: var(--accent); }

    .svc__top {
      display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
    }
    .svc__title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      max-width: 14ch;
    }
    .svc__icon {
      width: 48px; height: 48px;
      background: var(--accent);
      border-radius: 12px;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--bg-card);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .svc:hover .svc__icon { transform: rotate(-8deg) scale(1.05); }
    .svc__icon svg { width: 22px; height: 22px; }
    .svc--featured .svc__icon { background: var(--accent-deep); }
    .svc__desc {
      color: var(--ink-2);
      font-size: 14.5px;
      line-height: 1.65;
      flex: 1;
    }
    .svc__badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bg-card);
      background: var(--accent-deep);
      padding: 0.22rem 0.5rem;
      border-radius: 4px;
      margin-left: 0.4rem;
      vertical-align: middle;
    }
    .svc__cta {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--accent-deep);
      margin-top: 0.25rem;
    }
    .svc__cta .arrow { transition: transform 0.2s ease; }
    .svc:hover .svc__cta .arrow { transform: translateX(3px); }

    .svc--cta {
      background: var(--ink);
      color: var(--ink-onDark);
      border-color: var(--ink);
    }
    .svc--cta .svc__title { color: var(--ink-onDark); }
    .svc--cta .svc__desc { color: var(--ink-onDark-2); }
    .svc--cta:hover { background: var(--bg-dark-2); border-color: var(--bg-dark-2); }

    /* ====================================================================
       BANNER PHOTO
       ==================================================================== */
    .banner {
      padding-block: clamp(1.5rem, 3vh, 2rem);
    }
    .banner__img {
      width: 100%;
      aspect-ratio: 5 / 1.4;
      border-radius: var(--radius-xl);
      background-size: cover;
      background-position: center;
      background-color: var(--bg-2);
      box-shadow: var(--shadow);
    }
    .banner--1 .banner__img { background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=80'); }
    .banner--2 .banner__img { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80'); }

    /* ====================================================================
       CASES
       ==================================================================== */
    .cases { padding-block: var(--section); }
    .cases__head {
      text-align: center;
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: clamp(2.5rem, 5vh, 4rem);
      display: flex; flex-direction: column; gap: 1rem;
      align-items: center;
    }
    .cases__head p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
    .cases__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .case {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: var(--shadow-sm);
    }
    .case:hover { border-color: var(--accent-pale-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .case__img {
      width: 100%;
      aspect-ratio: 4 / 3;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .case--1 .case__img { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=600&q=80'); }
    .case--2 .case__img { background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=600&q=80'); }
    .case--3 .case__img { background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?auto=format&fit=crop&w=600&q=80'); }
        /* Texture pointillée subtile pour les panneaux décoratifs (évite l'effet "aplat vide") */
    .deco--dark, .deco--light { position: relative; }
    .deco--dark::before, .deco--light::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: radial-gradient(circle, var(--dot) 1px, transparent 1.6px);
      background-size: 20px 20px;
    }
    .deco--dark::before  { --dot: rgba(255, 255, 255, 0.09); }
    .deco--light::before { --dot: rgba(4, 44, 83, 0.07); }

    .case__pill {
      position: absolute;
      top: 0.85rem; left: 0.85rem;
      font-size: 12px;
      font-weight: 600;
      color: var(--ink);
      background: var(--bg-card);
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
      display: inline-flex; align-items: center; gap: 0.45rem;
      box-shadow: var(--shadow-sm);
    }
    .case__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
    .case__body { padding: 1.25rem 1.5rem 1.75rem; }
    .case__cat {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent-deep);
      margin-bottom: 0.5rem;
    }
    .case__title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.35;
    }

    /* ====================================================================
       TESTIMONIALS
       ==================================================================== */
    .testi { padding-block: var(--section); background: var(--bg-card); border-block: 1px solid var(--line); }
    .testi__head {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: end;
      margin-bottom: clamp(2.5rem, 5vh, 4rem);
    }
    .testi__head h2 { margin-top: 1rem; max-width: 18ch; }
    .testi__head p {
      font-size: 1.05rem;
      color: var(--ink-2);
      line-height: 1.55;
    }
    .testi__head p em {
      font-style: normal;
      color: var(--accent-deep);
      font-weight: 700;
    }
    .testi__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .testi-card {
      background: var(--bg);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      display: flex; flex-direction: column; gap: 1.25rem;
      position: relative;
    }
    .testi-card::before {
      content: '"';
      position: absolute;
      top: 0.5rem; right: 1.5rem;
      font-size: 4rem;
      line-height: 1;
      color: var(--accent-pale-2);
      font-family: Georgia, serif;
      font-weight: 700;
    }
    .testi-card__quote {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink);
      position: relative;
    }
    .testi-card__foot {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; flex-wrap: wrap;
    }
    .testi-card__author { display: flex; align-items: center; gap: 0.85rem; }
    .testi-card__avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background-size: cover; background-position: center;
      background-color: var(--bg-2);
    }
    .testi-card__name { font-weight: 700; font-size: 15px; color: var(--ink); }
    .testi-card__role { font-size: 12.5px; color: var(--ink-2); }
    .testi-card__rating { color: var(--accent); font-size: 1rem; letter-spacing: 1px; }

    /* ====================================================================
       CONTACT
       ==================================================================== */
    .contact { padding-block: var(--section); }
    .contact__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2.5rem, 5vw, 4.5rem);
      align-items: start;
    }
    .contact__form {
      background: var(--bg-card);
      color: var(--ink);
      border-radius: var(--radius-xl);
      padding: clamp(1.75rem, 3vw, 2.5rem);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--line);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
    .field label {
      font-size: 13.5px;
      font-weight: 600;
      color: var(--ink);
    }
    .field input, .field select, .field textarea {
      font: inherit;
      font-family: var(--sans);
      font-size: 14.5px;
      padding: 0.75rem 0.9rem;
      border: 1px solid #7C8A99; /* 3.5:1 sur blanc — limite perceptible (WCAG 1.4.11) */
      border-radius: 10px;
      background: var(--bg);
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--accent);
      background: var(--bg-card);
      box-shadow: 0 0 0 4px var(--accent-pale);
    }
    .field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
    .field textarea { resize: vertical; min-height: 110px; }
    .form__submit {
      width: 100%;
      justify-content: center;
      margin-top: 0.5rem;
    }

    .contact__content { display: flex; flex-direction: column; gap: 1rem; }
    .contact__content h2 { margin-top: 0.5rem; }
    .contact__content > p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; }
    .contact__details {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      padding-block: 1.5rem;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      margin-top: 1rem;
    }
    .contact__detail h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 0.4rem;
    }
    .contact__detail p {
      font-size: 13.5px;
      color: var(--ink-2);
      line-height: 1.6;
    }
    .contact__benefits-title {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--ink);
      margin-top: 1rem;
      margin-bottom: 0.85rem;
    }
    .contact__benefits {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.7rem 1.5rem;
    }
    .contact__benefits li {
      display: flex; align-items: flex-start; gap: 0.6rem;
      font-size: 13.5px;
      color: var(--ink-2);
      line-height: 1.5;
    }
    .contact__benefits .check {
      flex-shrink: 0; margin-top: 1px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--bg-card);
      display: inline-flex; align-items: center; justify-content: center;
    }
    .contact__benefits .check svg { width: 10px; height: 10px; }

    /* ====================================================================
       BLOG
       ==================================================================== */
    .blog { padding-block: var(--section); background: var(--bg-2); }
    .blog__head {
      text-align: center;
      max-width: 720px;
      margin-inline: auto;
      margin-bottom: clamp(2.5rem, 5vh, 4rem);
      display: flex; flex-direction: column; gap: 1rem;
      align-items: center;
    }
    .blog__head p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
    .blog__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .post {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: var(--shadow-sm);
    }
    .post:hover { border-color: var(--accent-pale-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .post__img {
      width: 100%;
      aspect-ratio: 16 / 10;
      background-size: cover; background-position: center;
      position: relative;
    }
    .post--1 .post__img { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=600&q=80'); }
    .post--2 .post__img { background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=600&q=80'); }
    .post--3 .post__img { background-image: url('https://images.unsplash.com/photo-1531403009284-440f080d1e12?auto=format&fit=crop&w=600&q=80'); }
    .post__badge {
      position: absolute;
      top: 0.85rem; left: 0.85rem;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent-deep);
      background: var(--bg-card);
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
    }
    .post__body { padding: 1.25rem 1.5rem 1.75rem; }
    .post__meta {
      font-size: 12.5px;
      color: var(--ink-2);
      margin-bottom: 0.6rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .post__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }
    .post__title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.4;
    }

    /* ====================================================================
       CTA NEWSLETTER — dark marine band
       ==================================================================== */
    .nl {
      padding-block: clamp(3rem, 6vh, 5rem);
    }
    .nl__inner {
      background: var(--bg-dark);
      color: var(--ink-onDark);
      border-radius: var(--radius-xl);
      padding: clamp(2rem, 4vw, 3rem);
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: clamp(2rem, 4vw, 3rem);
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .nl__inner::before {
      content: ''; position: absolute;
      inset: -30% -20% auto auto;
      width: 60%; aspect-ratio: 1;
      background: radial-gradient(circle, rgba(29, 158, 117, 0.45) 0%, transparent 60%);
      pointer-events: none;
    }
    .nl__content { position: relative; z-index: 1; }
    .nl__title {
      font-size: clamp(1.4rem, 2.4vw, 1.9rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
      max-width: 28ch;
      color: var(--ink-onDark);
    }
    .nl__title em { font-style: normal; color: var(--accent-2); }
    .nl__form { display: flex; flex-direction: column; gap: 0.85rem; position: relative; z-index: 1; }
    .nl__form-label {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-onDark-2);
    }
    .nl__form-row {
      display: flex;
      background: var(--bg-card);
      border-radius: 999px;
      padding: 0.35rem;
      align-items: center;
      box-shadow: var(--shadow-lg);
    }
    .nl__form-row input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      padding: 0.6rem 1rem;
      font: inherit;
      font-size: 14.5px;
      color: var(--ink);
    }
    .nl__form-row input::placeholder { color: var(--ink-3); }
    .nl__form-row .btn { flex-shrink: 0; }

    /* ====================================================================
       FOOTER — dark marine
       ==================================================================== */
    footer {
      background: var(--bg-dark);
      color: var(--ink-onDark);
      padding-block: clamp(3rem, 6vh, 4.5rem) 1.5rem;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
      gap: clamp(2rem, 4vw, 3rem);
      padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
      border-bottom: 1px solid var(--line-onDark);
    }
    .footer__brand .brand { color: var(--ink-onDark); }
    .footer__brand .brand__sub { display: inline-block; color: var(--ink-onDark-2); border-left-color: var(--line-onDark); }
    .footer__about {
      color: var(--ink-onDark-2);
      font-size: 14px;
      line-height: 1.65;
      margin-top: 1.25rem;
      max-width: 36ch;
    }
    .footer__col h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--ink-onDark);
      margin-bottom: 1.1rem;
    }
    .footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
    .footer__col li a {
      font-size: 14px;
      color: var(--ink-onDark-2);
      transition: color 0.2s ease;
      display: inline-flex; align-items: center; gap: 0.5rem;
    }
    .footer__col li a::before {
      content: '';
      width: 4px; height: 1px;
      background: var(--accent-2);
      transition: width 0.25s ease;
    }
    .footer__col li a:hover { color: var(--ink-onDark); }
    .footer__col li a:hover::before { width: 12px; }

    .footer__contact-row {
      display: flex; flex-direction: column;
      gap: 1rem;
    }
    .footer__contact-block h4 {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-onDark-2);
      margin-bottom: 0.35rem;
    }
    .footer__contact-block p {
      font-size: 13.5px;
      color: var(--ink-onDark);
      line-height: 1.55;
    }
    .footer__socials {
      display: flex; gap: 0.5rem;
      margin-top: 1rem;
    }
    .footer__socials a {
      width: 36px; height: 36px;
      display: inline-flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(246, 247, 246, 0.08);
      border: 1px solid var(--line-onDark);
      color: var(--ink-onDark-2);
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }
    .footer__socials a:hover {
      background: var(--accent);
      color: var(--bg-card);
      border-color: var(--accent);
    }
    .footer__socials svg { width: 14px; height: 14px; }

    .footer__bottom {
      padding-top: 1.5rem;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
      font-size: 13px;
      color: var(--ink-onDark-2);
    }
    .footer__bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer__bottom-links a:hover { color: var(--ink-onDark); }

    /* ====================================================================
       REVEAL
       ==================================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; }
    }

    /* ====================================================================
       RESPONSIVE
       ==================================================================== */
    @media (max-width: 1080px) {
      .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
      .hero__visual { max-width: 540px; margin-inline: auto; width: 100%; }
      .about__inner { grid-template-columns: 1fr; }
      .about__visual { aspect-ratio: 16 / 10; max-width: 600px; }
      .services__grid, .cases__grid, .blog__grid { grid-template-columns: repeat(2, 1fr); }
      .services__head, .testi__head { grid-template-columns: 1fr; gap: 1rem; }
      .partners__inner { grid-template-columns: 1fr; gap: 1.25rem; }
      .partners__title { max-width: none; }
      .contact__inner { grid-template-columns: 1fr; }
      .nl__inner { grid-template-columns: 1fr; }
      .testi__grid { grid-template-columns: 1fr; }
      .footer__top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 880px) {
      .utility__left { gap: 1rem; font-size: 12.5px; }
      .nav__links {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 0;
        padding: 1rem var(--gutter) 1.5rem;
        transform: translateY(-120%);
        opacity: 0; pointer-events: none;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.4s ease;
        box-shadow: var(--shadow);
      }
      .nav.is-open .nav__links {
        transform: translateY(0); opacity: 1; pointer-events: auto;
        visibility: visible;
      }
      .nav__links a {
        width: 100%;
        padding: 0.85rem 1rem;
        border-radius: 8px;
        font-size: 1rem;
      }
      .nav__burger { display: flex; }
      .nav__right > .btn { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .about__stats { grid-template-columns: 1fr 1fr; }
      .contact__details, .contact__benefits { grid-template-columns: 1fr; }
      .hero__floating { left: 1rem; bottom: 1rem; }
      .hero__floating-top { right: 1rem; top: 1rem; }
    }
    @media (max-width: 560px) {
      .services__grid, .cases__grid, .blog__grid { grid-template-columns: 1fr; }
      .footer__top { grid-template-columns: 1fr; }
      .hero__cta-row { flex-direction: column; align-items: flex-start; }
      .hero__cta-row .btn { width: 100%; justify-content: center; }
      .about__stats { grid-template-columns: 1fr; }
    }

    /* ====================================================================
       INTERIOR PAGES — shared additions (MNG)
       Built on the same tokens as the homepage design system.
       ==================================================================== */

    /* ---- Generic section spacing ---- */
    .sec { padding-block: var(--section); }
    .sec--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
    .sec--pale { background: var(--bg-2); }
    .sec--dark { background: var(--bg-dark); color: var(--ink-onDark); }
    .sec--dark h1, .sec--dark h2, .sec--dark h3, .sec--dark h4 { color: var(--ink-onDark); }
    .sec__head { max-width: 760px; margin-bottom: 3rem; }
    .sec__head p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; margin-top: 1rem; }
    .sec--dark .sec__head p { color: var(--ink-onDark-2); }
    .sec__head--center { margin-inline: auto; text-align: center; }
    .sec__head--center .eyebrow { justify-content: center; }

    /* ---- Page hero (interior banner) ---- */
    .page-hero {
      position: relative;
      background: var(--bg-dark);
      color: var(--ink-onDark);
      padding-block: clamp(3rem, 7vw, 5.5rem);
      overflow: hidden;
      border-bottom: 1px solid var(--line-onDark);
    }
    .page-hero::after {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(60% 90% at 85% 20%, rgba(29,158,117,0.22), transparent 60%),
        radial-gradient(50% 80% at 10% 90%, rgba(37,181,138,0.12), transparent 55%);
      pointer-events: none;
    }
    .page-hero > .container { position: relative; z-index: 1; }
    .page-hero h1 {
      color: var(--ink-onDark);
      font-size: clamp(2rem, 4.2vw, 3.1rem);
      letter-spacing: -0.03em;
      max-width: 16ch;
      margin-top: 0.75rem;
    }
    .page-hero__lead {
      color: var(--ink-onDark-2);
      font-size: clamp(1rem, 1.4vw, 1.15rem);
      line-height: 1.7;
      max-width: 62ch;
      margin-top: 1.25rem;
    }
    .page-hero .eyebrow { color: var(--accent-2); }
    .page-hero__cta { margin-top: 2rem; display: flex; gap: 0.85rem; flex-wrap: wrap; }

    /* ---- Breadcrumb ---- */
    .breadcrumb { font-size: 13px; color: var(--ink-onDark-2); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
    .breadcrumb a { color: var(--ink-onDark-2); transition: color 0.2s ease; }
    .breadcrumb a:hover { color: var(--accent-2); }
    .breadcrumb span[aria-current] { color: var(--ink-onDark); }
    .breadcrumb .sep { opacity: 0.5; }
    .breadcrumb--light { color: var(--ink-3); }
    .breadcrumb--light a { color: var(--ink-3); }
    .breadcrumb--light a:hover { color: var(--accent-deep); }
    .breadcrumb--light span[aria-current] { color: var(--ink); }

    /* ---- Prose (legal / article content) ---- */
    .prose { max-width: 760px; color: var(--ink-2); font-size: 15.5px; line-height: 1.75; }
    .prose > * + * { margin-top: 1.1rem; }
    .prose h2 { color: var(--ink); font-size: clamp(1.35rem, 2.2vw, 1.6rem); margin-top: 2.75rem; scroll-margin-top: 6rem; }
    .prose h3 { color: var(--ink); font-size: 1.15rem; margin-top: 1.75rem; }
    .prose h2:first-child, .prose h3:first-child { margin-top: 0; }
    .prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
    .prose a:hover { color: var(--accent-deeper); }
    .prose ul, .prose ol { padding-left: 1.25rem; }
    .prose ul { list-style: disc; }
    .prose ol { list-style: decimal; }
    .prose li { margin-top: 0.4rem; }
    .prose strong { color: var(--ink); font-weight: 600; }
    .prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin-top: 0.5rem; }
    .prose th, .prose td { text-align: left; padding: 0.7rem 0.9rem; border: 1px solid var(--line); vertical-align: top; }
    .prose th { background: var(--bg-2); color: var(--ink); font-weight: 600; }
    .prose__meta { font-size: 13px; color: var(--ink-3); margin-bottom: 2rem; }

    /* Legal layout with sticky table of contents */
    .doc { display: grid; grid-template-columns: 240px 1fr; gap: 3.5rem; align-items: start; }
    .doc__toc { position: sticky; top: 6rem; font-size: 13.5px; }
    .doc__toc h2 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.85rem; }
    .doc__toc a { display: block; padding: 0.4rem 0; color: var(--ink-2); border-left: 2px solid var(--line); padding-left: 0.85rem; transition: color 0.2s ease, border-color 0.2s ease; }
    .doc__toc a:hover { color: var(--accent-deep); border-color: var(--accent); }

    /* ---- Feature / value cards grid ---- */
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 1.85rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-pale-2); }
    .card__icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: var(--accent-pale); color: var(--accent-deep);
      display: inline-flex; align-items: center; justify-content: center;
      margin-bottom: 1.15rem;
    }
    .card__icon svg { width: 22px; height: 22px; }
    .card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
    .card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }
    .card__link { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.45rem; color: var(--accent-deep); font-weight: 500; font-size: 14px; }
    .card__link .arrow { transition: transform 0.2s ease; }
    .card__link:hover .arrow { transform: translateX(3px); }

    /* ---- Numbered process / timeline ---- */
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
    .step { position: relative; padding-top: 3.25rem; }
    .step::before {
      counter-increment: step; content: counter(step, decimal-leading-zero);
      position: absolute; top: 0; left: 0;
      font-size: 1.35rem; font-weight: 700; color: var(--accent-deep);
      font-variant-numeric: tabular-nums;
    }
    .step::after {
      content: ''; position: absolute; top: 0.9rem; left: 2.6rem; right: -0.75rem; height: 1px;
      background: var(--line-2);
    }
    .step:last-child::after { display: none; }
    .step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .step p { color: var(--ink-2); font-size: 14px; line-height: 1.6; }

    /* ---- Stat band ---- */
    .statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
    .statband .stat__num { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--ink); display: block; letter-spacing: -0.02em; }
    .sec--dark .statband .stat__num { color: var(--ink-onDark); }
    .statband .stat__num em { color: var(--accent); font-style: normal; }
    .statband .stat__label { font-size: 13.5px; color: var(--ink-2); margin-top: 0.35rem; display: block; }
    .sec--dark .statband .stat__label { color: var(--ink-onDark-2); }

    /* ---- Pricing ---- */
    .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
    .price {
      background: var(--bg-card); border: 1px solid var(--line);
      border-radius: var(--radius-xl); padding: 2.15rem 1.9rem;
      display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .price--featured { border-color: var(--accent); box-shadow: var(--shadow-lg); position: relative; }
    .price__tag {
      position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
      background: var(--accent-deep); color: #fff; font-size: 11.5px; font-weight: 600;
      letter-spacing: 0.04em; padding: 0.35rem 0.85rem; border-radius: 999px; white-space: nowrap;
    }
    .price__name { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
    .price__desc { color: var(--ink-2); font-size: 13.5px; margin-top: 0.4rem; min-height: 2.4em; }
    .price__amount { font-size: clamp(1.9rem, 3vw, 2.4rem); font-weight: 700; color: var(--ink); letter-spacing: -0.03em; margin: 1.15rem 0 0.15rem; }
    .price__amount small { font-size: 0.9rem; font-weight: 500; color: var(--ink-3); }
    .price__period { font-size: 13px; color: var(--ink-3); }
    .price__list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
    .price__list li { display: flex; gap: 0.6rem; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
    .price__list .check {
      flex: none; width: 18px; height: 18px; border-radius: 50%;
      background: var(--accent-pale); color: var(--accent-deep);
      display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
    }
    .price__list .check svg { width: 11px; height: 11px; }
    .price .btn { justify-content: center; width: 100%; }

    /* ---- FAQ accordion ---- */
    .faq { max-width: 820px; margin-inline: auto; }
    .faq__item { border-bottom: 1px solid var(--line); }
    .faq__item summary {
      list-style: none; cursor: pointer; padding: 1.25rem 0;
      display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
      font-weight: 600; color: var(--ink); font-size: 1.02rem;
    }
    .faq__item summary::-webkit-details-marker { display: none; }
    .faq__item summary .icon {
      flex: none; width: 26px; height: 26px; border-radius: 50%;
      border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center;
      color: var(--accent-deep); transition: transform 0.25s ease, background 0.25s ease, border-color 0.2s ease;
    }
    .faq__item[open] summary .icon { transform: rotate(45deg); background: var(--accent-pale); border-color: var(--accent-pale-2); }
    .faq__item .faq__body { padding: 0 0 1.35rem; color: var(--ink-2); font-size: 14.5px; line-height: 1.7; max-width: 68ch; }

    /* ---- Tags / chips ---- */
    .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .tag {
      font-size: 12.5px; font-weight: 500; color: var(--ink-2);
      background: var(--bg-2); border: 1px solid var(--line);
      padding: 0.35rem 0.75rem; border-radius: 999px;
    }
    .tag--accent { background: var(--accent-pale); border-color: var(--accent-pale-2); color: var(--accent-deep); }

    /* ---- Callout / note ---- */
    .callout {
      border-left: 3px solid var(--accent); background: var(--accent-pale);
      padding: 1.1rem 1.35rem; border-radius: 0 var(--radius) var(--radius) 0;
      color: var(--ink-2); font-size: 14.5px; line-height: 1.65;
    }
    .callout strong { color: var(--ink); }

    /* ---- Careers: job listings ---- */
    .jobs { display: flex; flex-direction: column; gap: 1rem; max-width: 900px; }
    .job {
      background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
      padding: 1.5rem 1.75rem; display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem; box-shadow: var(--shadow-sm); transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .job:hover { border-color: var(--accent-pale-2); transform: translateX(4px); box-shadow: var(--shadow); }
    .job__info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
    .job__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 13px; color: var(--ink-3); }
    .job__meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
    .job__apply { flex: none; }

    /* ---- Blog listing filters ---- */
    .filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
    .filters button {
      font-size: 13.5px; font-weight: 500; color: var(--ink-2);
      background: var(--bg-card); border: 1px solid var(--line-2);
      padding: 0.5rem 1.1rem; border-radius: 999px; transition: all 0.2s ease;
    }
    .filters button:hover { border-color: var(--accent); color: var(--accent-deep); }
    .filters button.is-active { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

    /* ---- Contact page split ---- */
    .contactx { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: start; }
    .contactx__aside { position: sticky; top: 6rem; }
    .contactx__card {
      background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
      padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1rem;
    }
    .contactx__card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
    .contactx__card p, .contactx__card a { color: var(--ink-2); font-size: 14px; line-height: 1.6; }
    .contactx__card a:hover { color: var(--accent-deep); }

    /* ---- Team grid ---- */
    .team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .member { text-align: center; }
    .member__ph {
      aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, var(--accent-pale), var(--bg-2));
      display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
    }
    .member__ph img { width: 100%; height: 100%; object-fit: cover; }
    .member__ph span { font-size: 2rem; font-weight: 700; color: var(--accent-deep); }
    .member h3 { font-size: 1.05rem; }
    .member p { font-size: 13.5px; color: var(--ink-3); margin-top: 0.2rem; }

    /* ---- 404 ---- */
    .notfound { min-height: 62vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-block: var(--section); }
    .notfound__code { font-size: clamp(4rem, 14vw, 8rem); font-weight: 700; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
    .notfound h1 { margin: 0.75rem 0 0.75rem; }
    .notfound p { color: var(--ink-2); max-width: 46ch; margin-inline: auto; }
    .notfound__cta { margin-top: 2rem; display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

    /* ---- Small utilities ---- */
    .lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; color: var(--ink-2); max-width: 62ch; }
    .mt-0 { margin-top: 0; }
    .center { text-align: center; }
    .maxw { max-width: 820px; }
    .maxw--center { max-width: 820px; margin-inline: auto; }

    /* ---- Interior responsive ---- */
    @media (max-width: 1080px) {
      .grid-3, .pricing, .team { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .step::after { display: none; }
      .doc { grid-template-columns: 1fr; gap: 2rem; }
      .doc__toc { position: static; display: none; }
      .contactx { grid-template-columns: 1fr; gap: 2.5rem; }
      .contactx__aside { position: static; }
    }
    @media (max-width: 680px) {
      .grid-3, .grid-2, .pricing, .team, .steps { grid-template-columns: 1fr; }
      .job { flex-direction: column; align-items: flex-start; }
      .job__apply { width: 100%; }
      .job__apply .btn { width: 100%; justify-content: center; }
    }
