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

    :root {
      /* Palette bleu de marque : sombre / foncé / accent / clair / blanc.
         Un seul accent, décliné en une seule teinte (pas de dérivé clair/foncé
         inventé) : il fonctionne aussi bien en pop sur fond sombre qu'en texte
         lisible sur fond clair. Fond de carte aligné sur relocation-in-paris.fr. */
      --navy-deep:  #0C101D;
      --navy:       #192857;
      --navy-light: #2E4A8F;
      --accent:       #4F6DCF;
      --accent-dark:  #4F6DCF;
      --accent-dim:   rgba(79,109,207,.12);
      --cream:      #DFE4F6;
      --text:       #13172A;
      --muted:      #5C6478;
      --border:     #E2E6EF;
      --bg-light:   #FAFAFA;
      --font:       'Figtree', -apple-system, sans-serif;
      --serif:      'Libre Caslon Display', Georgia, serif;
      --ease-out:   cubic-bezier(0.23, 1, 0.32, 1);
      --ease-in-out:cubic-bezier(0.77, 0, 0.175, 1);
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text); background: #FFFFFF; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; }

    ::selection { background: var(--navy); color: var(--accent); }

    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--navy); outline-offset: 2px; border-radius: 4px;
    }

    /* ─── NAV ─── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      height: 64px; padding: 0 max(24px, calc((100% - 1200px) / 2));
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      transition: box-shadow 250ms;
    }
    .nav.scrolled { box-shadow: 0 8px 24px rgba(12,16,29,.06); }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-mark {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .nav-logo-mark img { width: 22px; height: auto; display: block; }
    .nav-wordmark { display: flex; flex-direction: column; }
    .nav-wordmark-top { font-family: 'Libre Caslon Text', serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); line-height: 1; }
    .nav-wordmark-bottom { font-family: 'Libre Caslon Text', serif; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); line-height: 1.5; }
    .nav-divider { width: 1px; height: 24px; background: var(--border); margin: 0 4px; }
    .nav-center { display: flex; gap: 28px; list-style: none; }
    .nav-center a {
      position: relative; font-size: 13.5px; font-weight: 500; color: var(--text);
      text-decoration: none; letter-spacing: -.01em; transition: color 150ms;
    }
    .nav-center a::after {
      content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px;
      background: var(--accent-dark); transform: scaleX(0); transform-origin: left;
      transition: transform 250ms var(--ease-out);
    }
    .nav-center a:hover { color: var(--navy); }
    .nav-center a:hover::after { transform: scaleX(1); }
    .nav-dropdown { position: relative; }
    /* Zone invisible qui comble l'espace entre le lien et la carte, pour que le
       survol reste continu (sans ce padding, la souris "sort" du hover en
       traversant le vide et le menu se ferme avant qu'on puisse l'atteindre). */
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%);
      padding-top: 14px;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 180ms var(--ease-out), visibility 180ms;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; pointer-events: auto;
    }
    .nav-dropdown-menu-inner {
      background: #fff; border: 1px solid var(--border); border-radius: 12px;
      box-shadow: 0 16px 40px rgba(12,16,29,.14);
      padding: 8px; min-width: 210px;
      display: flex; flex-direction: column; gap: 2px;
      transform: translateY(4px);
      transition: transform 180ms var(--ease-out);
    }
    .nav-dropdown:hover .nav-dropdown-menu-inner { transform: translateY(0); }
    .nav-dropdown-menu a {
      padding: 9px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 500;
      color: var(--text); text-decoration: none; transition: background 150ms, color 150ms;
      white-space: nowrap;
    }
    .nav-dropdown-menu a::after { display: none; }
    .nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--navy); }
    .btn-primary {
      background: var(--navy); color: #fff; border: none; border-radius: 100px;
      padding: 10px 22px; font-size: 13.5px; font-weight: 600; font-family: var(--font);
      cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: opacity 160ms, transform 160ms var(--ease-out);
    }
    .btn-primary:hover { opacity: .86; }
    .btn-primary:active { transform: scale(0.97); }

    /* ─── Language switcher ─── */
    .nav-lang {
      position: relative;
    }

    .nav-lang-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 4px 8px;
    }

    .nav-lang-arrow {
      font-size: 0.75rem;
      color: var(--muted);
    }

    .nav-lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: white;
      border: 1px solid var(--border);
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      min-width: 60px;
      padding: 4px;
      z-index: 100;
    }

    .nav-lang-dropdown a {
      display: block;
      padding: 8px 12px;
      font-family: var(--font);
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--muted);
      text-decoration: none;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }

    .nav-lang-dropdown a:hover {
      color: var(--text);
      background: var(--bg-light);
    }

    .nav-lang:hover .nav-lang-dropdown {
      display: block;
    }

    /* Sur mobile le hover ne fonctionne pas au doigt : site.js bascule .is-open au tap */
    .nav-lang.is-open .nav-lang-dropdown {
      display: block;
    }

    /* ─── NAV MOBILE (burger + panel) ─── */
    .nav-burger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; padding: 0; margin: 0; border: none; background: none;
      cursor: pointer; flex-shrink: 0;
    }
    .nav-burger span {
      display: block; width: 20px; height: 2px; margin: 0 auto;
      background: var(--navy); border-radius: 2px;
      transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
    }
    .nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
    .nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-dropdown-toggle {
      display: none; align-items: center; justify-content: center;
      width: 28px; height: 28px; padding: 0; margin-left: auto;
      border: none; background: none; color: var(--muted); cursor: pointer;
      transition: transform 220ms var(--ease-out), color 150ms;
    }
    .nav-dropdown-toggle svg { width: 16px; height: 16px; }
    .nav-dropdown.is-expanded .nav-dropdown-toggle { transform: rotate(180deg); color: var(--navy); }

    @media (max-width: 900px) {
      .nav { justify-content: flex-start; gap: 10px; }
      .nav-logo { margin-right: auto; }
      .nav-burger { display: flex; }
      .btn-primary { padding: 9px 16px; font-size: 12.5px; }
      .nav-cta-arrow { display: none; }
      .nav-lang-btn { padding: 4px 4px; font-size: 0.8rem; }
      .nav-center {
        display: flex; flex-direction: column; gap: 0; list-style: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--border);
        padding: 8px max(24px, calc((100% - 1200px) / 2)) 20px;
        box-shadow: 0 16px 32px rgba(12,16,29,.10);
        max-height: 0; overflow: hidden; opacity: 0;
        transition: max-height 320ms var(--ease-out), opacity 240ms var(--ease-out);
      }
      .nav.is-open .nav-center { max-height: 80vh; opacity: 1; overflow-y: auto; }
      .nav-center > li { width: 100%; border-bottom: 1px solid var(--border); }
      .nav-center > li:last-child { border-bottom: none; }
      .nav-center a { display: block; padding: 14px 0; }
      .nav-center a::after { display: none; }
      .nav-dropdown { display: flex; flex-wrap: wrap; align-items: center; }
      .nav-dropdown > a { flex: 1 1 auto; }
      .nav-dropdown-toggle { display: flex; }
      .nav-dropdown-menu {
        position: static; transform: none; padding-top: 0; width: 100%;
        opacity: 1; visibility: visible; pointer-events: none;
        max-height: 0; overflow: hidden;
        transition: max-height 260ms var(--ease-out);
      }
      .nav-dropdown.is-expanded .nav-dropdown-menu { max-height: 400px; pointer-events: auto; }
      .nav-dropdown-menu-inner {
        background: none; border: none; box-shadow: none; padding: 0 0 12px 12px;
        transform: none; min-width: 0;
      }
      .nav-dropdown-menu a { padding: 10px 0; }
    }

    /* ─── HERO ─── */
    .hero-wrap { padding: 16px max(16px, calc((100% - 1280px) / 2)) 0; }
    .hero {
      position: relative; border-radius: 18px; overflow: hidden;
      height: clamp(520px, 85vh, 960px);
      display: flex; flex-direction: column;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('https://images.pexels.com/photos/17160708/pexels-photo-17160708.jpeg') center 30% / cover no-repeat;
      animation: heroZoom 2200ms var(--ease-out) both;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1); }
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(12,16,29,.45) 0%, rgba(12,16,29,.28) 55%, rgba(12,16,29,.34) 100%);
    }
    .hero-inner {
      position: relative; z-index: 2; flex: 1;
      display: flex; align-items: center; justify-content: space-between; gap: 48px;
      padding: clamp(28px, 4vw, 52px) clamp(40px, 6vw, 80px);
    }
    .hero-content {
      display: flex; flex-direction: column;
      align-items: flex-start; text-align: left;
      max-width: 640px;
    }
    .hero-h1 {
      font-family: var(--serif); font-weight: 400;
      font-size: clamp(2.3rem, 4.2vw, 3.7rem); color: #fff;
      line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 20px;
      text-shadow: 0 2px 12px rgba(12,16,29,.7), 0 6px 36px rgba(12,16,29,.5);
      animation: heroTitle 800ms var(--ease-out) 160ms both;
    }
    @keyframes heroTitle {
      from { opacity: 0; transform: translateY(18px); filter: blur(6px); }
      to   { opacity: 1; transform: translateY(0); filter: blur(0); }
    }
    .hero-h1 em { font-style: normal; }
    .hero-sub {
      font-size: clamp(14px, 1.4vw, 17px); font-weight: 400;
      color: rgba(255,255,255,.78); line-height: 1.65; max-width: 48ch; margin-bottom: 32px;
      animation: fadeUp 600ms var(--ease-out) 260ms both;
    }
    .hero-cta-row {
      display: flex; align-items: center; justify-content: flex-start; gap: 14px; flex-wrap: wrap;
      animation: fadeUp 500ms var(--ease-out) 360ms both;
    }
    .btn-hero {
      background: var(--navy); color: #fff; border: none; border-radius: 100px;
      padding: 14px 32px; font-size: 14.5px; font-weight: 700; font-family: var(--font);
      cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: opacity 160ms, transform 160ms var(--ease-out), box-shadow 200ms;
    }
    .btn-hero:hover { opacity: .88; box-shadow: 0 4px 20px rgba(25,40,87,.35); }
    .btn-hero:active { transform: scale(0.97); }
    .btn-hero-ghost {
      color: #fff; border: 1.5px solid rgba(255,255,255,.45); border-radius: 100px;
      padding: 13px 26px; font-size: 14px; font-weight: 600; font-family: var(--font);
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: border-color 200ms, background 200ms, transform 160ms var(--ease-out);
    }
    .btn-hero-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }
    .btn-hero-ghost:active { transform: scale(0.97); }
    .hero-trust {
      margin-top: 24px; display: flex; align-items: center; justify-content: flex-start; gap: 12px;
      animation: fadeUp 500ms var(--ease-out) 440ms both;
    }
    .hero-avs { display: flex; }
    .hero-av {
      width: 28px; height: 28px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.4); object-fit: cover;
      background: var(--navy-light); margin-left: -6px;
    }
    .hero-av:first-child { margin-left: 0; }
    .hero-trust-copy { display: flex; flex-direction: column; gap: 1px; }
    .hero-trust-stars { color: #fff; font-size: 12px; letter-spacing: 1.5px; line-height: 1; opacity: .92; }
    .hero-trust-text { font-size: 13px; color: rgba(255,255,255,.78); font-weight: 500; }
    .hero-trust-text strong { color: #fff; }

    /* ─── HERO CARD (parcours Thomas) ─── */
    .hero-card {
      width: 340px; flex-shrink: 0;
      background: rgba(255,255,255,.6);
      backdrop-filter: blur(28px) saturate(190%);
      -webkit-backdrop-filter: blur(28px) saturate(190%);
      border: 1px solid rgba(255,255,255,.85);
      border-radius: 18px; padding: 22px;
      box-shadow: 0 2px 0 rgba(255,255,255,.9) inset, 0 24px 64px rgba(12,16,29,.32), 0 4px 14px rgba(12,16,29,.14);
      animation: fadeUp 700ms var(--ease-out) 520ms both;
    }
    .hc-header { display: flex; align-items: center; gap: 10px; }
    .hc-av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center top; border: 1.5px solid rgba(12,16,29,.12); flex-shrink: 0; }
    .hc-name { font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
    .hc-role { font-size: 11px; color: #6B5F52; }
    .hc-online { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: oklch(38% .16 145); }
    .hc-online-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(62% .18 145); box-shadow: 0 0 0 2.5px rgba(34,197,94,.2); }
    .hc-sep { height: 1px; background: rgba(12,16,29,.08); margin: 16px 0 14px; }
    .hc-label { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
    .hc-steps { display: flex; flex-direction: column; }
    .hc-step { position: relative; display: flex; align-items: flex-start; gap: 12px; padding-bottom: 18px; opacity: 0; }
    .hc-step:last-of-type { padding-bottom: 0; }
    .hc-step:nth-child(1) { animation: fadeUp 500ms var(--ease-out) 900ms both; }
    .hc-step:nth-child(2) { animation: fadeUp 500ms var(--ease-out) 1150ms both; }
    .hc-step:nth-child(3) { animation: fadeUp 500ms var(--ease-out) 1400ms both; }
    .hc-connector { position: absolute; left: 11px; top: 24px; bottom: -2px; width: 1.5px; background: rgba(12,16,29,.14); }
    .hc-dot {
      width: 23px; height: 23px; border-radius: 50%; flex-shrink: 0;
      background: var(--navy); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800; position: relative; z-index: 1;
    }
    .hc-step.active .hc-dot { background: var(--accent); color: #fff; box-shadow: 0 0 0 4px rgba(79,109,207,.25); }
    .hc-step-title { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
    .hc-step-date { font-size: 11px; color: #6B5F52; margin-top: 1px; }
    .hc-badge {
      margin-top: 18px; display: flex; align-items: flex-start; gap: 10px;
      background: rgba(255,255,255,.75); border: 1px solid rgba(79,109,207,.35);
      border-radius: 12px; padding: 11px 13px;
      box-shadow: 0 2px 8px rgba(12,16,29,.08);
      animation: badgePop 550ms var(--ease-out) 1850ms both;
    }
    @keyframes badgePop {
      from { opacity: 0; transform: scale(.95) translateY(6px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .hc-badge-icon { font-size: 17px; line-height: 1.2; }
    .hc-badge-title { font-size: 12.5px; font-weight: 700; color: var(--navy); }
    .hc-badge-body { font-size: 11.5px; color: #6B5F52; line-height: 1.5; }

    /* ─── EYEBROW LABEL ─── */
    .label {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--accent-dark); margin-bottom: 14px;
    }

    /* ─── FEATURE STRIP ─── */
    .features {
      display: grid; grid-template-columns: repeat(3,1fr);
      padding: 0 max(40px, calc((100% - 1200px) / 2));
      margin-top: 64px;
    }
    .feature-item {
      position: relative;
      display: flex; align-items: flex-start; gap: 14px;
      padding: 28px 32px;
      transition: background 250ms;
    }
    .feature-item:not(:last-child)::after {
      content: ''; position: absolute; right: 0; top: 50%;
      transform: translateY(-50%); width: 1px; height: 36%;
      background: var(--border);
    }
    .feature-item:first-child { padding-left: 0; }
    .feature-item:last-child { padding-right: 0; }
    .feature-icon { width: 34px; height: 34px; flex-shrink: 0; color: var(--accent-dark); margin-top: 1px; }
    .feature-icon--stat {
      display: flex; align-items: center; justify-content: center;
      border: 1.5px solid var(--accent-dark); border-radius: 50%;
      font-family: var(--font); font-size: 11px; font-weight: 700;
      letter-spacing: -.02em; color: var(--accent-dark);
    }
    .feature-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; letter-spacing: -.01em; }
    .feature-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

    /* ─── BARRE DE PROGRESSION DE LECTURE ─── */
    .progress {
      position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200;
      background: var(--accent-dark); transform: scaleX(0); transform-origin: left;
      pointer-events: none;
    }

    /* ─── VOTRE SITUATION (deux parcours) : header centré + grille pleine largeur,
       délibérément différent du bloc texte-gauche/grille-droite de la section Services juste après ─── */
    .situation { padding: clamp(80px, 9vw, 108px) max(40px, calc((100% - 1200px) / 2)) clamp(64px, 7vw, 88px); }
    .situation-header { text-align: center; max-width: 620px; margin: 0 auto clamp(48px, 5vw, 64px); }
    .situation-header .label { justify-content: center; }
    .situation-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 14px;
    }
    .situation-header h2 em { font-style: italic; }
    .situation-header p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
    .situation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .situation-card {
      background: #FAFAFA; border-radius: 16px;
      padding: 32px; display: flex; flex-direction: column; gap: 18px;
      text-decoration: none;
      transition: transform 300ms var(--ease-out), box-shadow 300ms;
    }
    .situation-card-top { display: flex; align-items: center; gap: 16px; }
    .situation-icon {
      width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
      background: #fff; box-shadow: 0 2px 10px rgba(12,16,29,.07);
      display: flex; align-items: center; justify-content: center; color: var(--accent-dark);
    }
    .situation-icon svg { width: 20px; height: 20px; }
    .situation-title {
      font-family: var(--serif); font-style: italic;
      font-size: 21px; font-weight: 400; color: var(--navy);
      line-height: 1.25; letter-spacing: -.01em;
    }
    .situation-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
    .situation-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); margin-top: auto; }
    .situation-link svg { width: 14px; height: 14px; transition: transform 250ms var(--ease-out); }

    /* ─── SERVICES ─── */
    .services { padding: clamp(72px, 8vw, 96px) max(40px, calc((100% - 1200px) / 2)); display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }
    .services-left h2 {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; color: var(--navy);
    }
    .services-left p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 38ch; }
    .services-arrows { display: flex; gap: 10px; align-items: center; }
    .arrow-btn {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1.5px solid var(--border); background: transparent;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: var(--text); font-family: var(--font);
      transition: border-color 200ms, background 200ms, transform 160ms var(--ease-out);
    }
    .arrow-btn:hover { border-color: var(--navy); background: var(--bg-light); }
    .arrow-btn:active { transform: scale(0.94); }
    .svc-counter { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: .04em; }
    .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .svc-card {
      background: #FAFAFA; border-radius: 14px;
      padding: 28px 24px 0; min-height: 280px;
      display: flex; flex-direction: column; overflow: hidden;
      transition: transform 300ms var(--ease-out), box-shadow 300ms;
    }
    .svc-icon { width: 36px; height: 36px; color: var(--accent-dark); margin-bottom: 18px; flex-shrink: 0; }
    .svc-title {
      font-family: var(--serif); font-style: italic;
      font-size: 19px; font-weight: 400; color: var(--navy);
      line-height: 1.25; margin-bottom: auto; letter-spacing: -.01em;
    }
    .svc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; padding: 16px 0 26px; }

    /* ─── PROCESS ─── */
    .process-wrap { padding: 0 max(16px, calc((100% - 1280px) / 2)) clamp(80px, 9vw, 108px); }
    .process-outer { background: var(--cream); border-radius: 18px; padding: clamp(88px, 10vw, 116px) max(40px, calc((100% - 1200px) / 2)); }
    .process-inner { max-width: 860px; margin: 0 auto; text-align: center; }
    .process-inner .label { justify-content: center; }
    .process-h2 {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      color: var(--navy); margin-bottom: 56px; letter-spacing: -.02em;
    }
    .process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; position: relative; margin-bottom: 48px; }
    .process-connector {
      position: absolute; top: 21px;
      left: calc(100% / 6); right: calc(100% / 6);
      height: 1px; background: var(--border); overflow: hidden;
    }
    .process-connector-fill { height: 100%; width: 0; background: var(--accent-dark); transition: width 900ms var(--ease-in-out); }
    .process-outer.visible .process-connector-fill { width: 100%; }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); color: #fff; border: none;
      font-size: 13px; font-weight: 700; font-family: var(--font); letter-spacing: .02em;
      display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
      position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--cream);
      transition: background 300ms, transform 300ms var(--ease-out), box-shadow 300ms;
    }
    .step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 22ch; margin: 0 auto; }
    .process-cta-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .process-note { font-size: 13px; color: var(--muted); }

    /* ─── FAMILLES ─── */
    .fam { padding: clamp(80px, 9vw, 108px) max(40px, calc((100% - 1200px) / 2)); display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: center; }
    .fam-left h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 2.9vw, 2.3rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; line-height: 1.14; margin-bottom: 16px;
    }
    .fam-left h2 em { font-style: italic; }
    .fam-left p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 42ch; }
    .fam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .fam-card {
      background: #FAFAFA; border-radius: 14px; padding: 24px 22px;
      transition: transform 300ms var(--ease-out), box-shadow 300ms;
    }
    .fam-icon { width: 32px; height: 32px; color: var(--accent-dark); margin-bottom: 14px; }
    .fam-icon svg { width: 100%; height: 100%; }
    .fam-card-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -.01em; }
    .fam-card-body { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

    /* ─── DIFF (100vh) ─── */
    .diff { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 8vw, 96px) max(40px, calc((100% - 1200px) / 2)); }
    .diff-header { text-align: center; max-width: 620px; margin: 0 auto clamp(48px, 5vw, 64px); }
    .diff-header .label { justify-content: center; }
    .diff-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; line-height: 1.15;
    }
    .diff-header h2 em { font-style: italic; }
    .diff-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
    .diff-card { background: #FAFAFA; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform 300ms var(--ease-out), box-shadow 300ms; }
    .diff-card-body { padding: 28px; }
    .diff-card-title {
      font-family: var(--serif); font-style: italic;
      font-size: 20px; font-weight: 400; color: var(--navy);
      line-height: 1.25; margin-bottom: 10px; letter-spacing: -.01em;
    }
    .diff-card-text { font-size: 13px; color: var(--muted); line-height: 1.65; }
    .diff-card-visual {
      position: relative; flex: 1; overflow: hidden; min-height: 220px;
      display: flex; align-items: center; justify-content: center; padding: 22px;
      background:
        radial-gradient(circle 220px at 25% 15%, rgba(79,109,207,.14) 0%, transparent 70%),
        radial-gradient(circle 180px at 85% 85%, rgba(25,40,87,.06) 0%, transparent 70%),
        var(--cream);
    }
    .diff-card-visual.diff-card-visual--photo { padding: 0; background: none; }
    .diff-card-photo { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; transition: transform 500ms var(--ease-out); }

    .diff-mid { display: flex; flex-direction: column; gap: 16px; }
    .diff-radar-card {
      flex: 1; display: flex; flex-direction: column;
      background: linear-gradient(180deg, rgba(79,109,207,.16) 0%, rgba(245,245,245,.7) 70%, var(--cream) 100%);
      border: 1px solid var(--border); border-radius: 14px;
      padding: 26px 24px 22px;
    }
    .diff-featured-title {
      font-family: var(--serif); font-style: italic;
      font-size: 20px; font-weight: 400; color: var(--navy);
      line-height: 1.3; text-align: center; letter-spacing: -.01em; margin-bottom: 16px;
    }
    .diff-radar { position: relative; flex: 1; min-height: 140px; }
    .diff-radar-av { position: absolute; z-index: 1; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 4px 12px rgba(12,16,29,.14); }
    .diff-radar-av--1 { width: 46px; height: 46px; left: 50%; top: 0; transform: translateX(-50%); z-index: 2; }
    .diff-radar-av--2 { width: 36px; height: 36px; left: 12%; top: 34px; }
    .diff-radar-av--3 { width: 34px; height: 34px; right: 10%; top: 4px; }
    .diff-radar-av--4 { width: 34px; height: 34px; right: 18%; bottom: 30px; }
    .diff-radar-arc { position: absolute; left: 50%; bottom: 22px; width: 200px; height: 100px; transform: translateX(-50%); pointer-events: none; z-index: 0; }
    .radar-ring {
      position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
      border: 1.25px solid rgba(79,109,207,.14); border-bottom: none;
      border-radius: 100px 100px 0 0;
      animation: radarBlink 2.8s ease-in-out infinite;
    }
    .radar-ring--1 { width: 54px;  height: 27px; }
    .radar-ring--2 { width: 127px; height: 63px;  animation-delay: .45s; }
    .radar-ring--3 { width: 200px; height: 100px; animation-delay: .9s; }
    @keyframes radarBlink {
      0%, 45%, 100% { border-color: rgba(79,109,207,.14); }
      20% { border-color: rgba(79,109,207,.5); }
    }
    .diff-radar-pin {
      position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
      display: flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 700; color: var(--accent-dark); letter-spacing: .04em;
    }
    .diff-dark { flex: 1; background: var(--navy); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
    .diff-dark-title { font-family: var(--serif); font-style: italic; font-size: 19px; font-weight: 400; color: #fff; text-align: center; line-height: 1.3; letter-spacing: -.01em; }
    .diff-dark-sub { font-size: 12px; color: rgba(255,255,255,.5); text-align: center; }
    .diff-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
    .diff-chip { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.14); border-radius: 100px; padding: 5px 13px; font-size: 11.5px; font-weight: 500; }
    .diff-chip--more { background: transparent; color: rgba(255,255,255,.4); border-style: dashed; }

    /* ─── VRAI COÛT ─── */
    .cost-outer { padding: 0 max(16px, calc((100% - 1280px) / 2)) clamp(80px, 9vw, 108px); }
    .cost-banner {
      background: var(--navy-deep); border-radius: 18px;
      padding: clamp(88px, 10vw, 116px) max(40px, calc((100% - 1160px) / 2));
      position: relative; overflow: hidden;
    }
    .cost-banner::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(79,109,207,.05) 1px, transparent 1px);
      background-size: 24px 24px; pointer-events: none;
    }
    .cost-header { position: relative; text-align: center; max-width: 640px; margin: 0 auto clamp(56px, 6vw, 72px); }
    .cost-header .label { justify-content: center; color: var(--accent); }
    .cost-h2 {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 400;
      color: #fff; letter-spacing: -.02em; line-height: 1.12;
    }
    .cost-h2 em { font-style: italic; color: var(--accent); }
    .cost-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto clamp(40px, 5vw, 56px); align-items: stretch; }
    .cost-col { border-radius: 14px; padding: 30px 28px; display: flex; flex-direction: column; }
    .cost-col--bad { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); }
    .cost-col--good { background: #fff; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
    .cost-tag {
      align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
      border-radius: 100px; padding: 5px 12px; margin-bottom: 16px;
    }
    .cost-col--bad .cost-tag { color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.2); }
    .cost-col--good .cost-tag { color: var(--accent-dark); border: 1px solid rgba(79,109,207,.4); background: var(--accent-dim); }
    .cost-col-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 21px; letter-spacing: -.01em; line-height: 1.25; margin-bottom: 22px; }
    .cost-col--bad .cost-col-title { color: rgba(255,255,255,.9); }
    .cost-col--good .cost-col-title { color: var(--navy); }
    .cost-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; flex: 1; }
    .cost-item { display: flex; align-items: flex-start; gap: 12px; }
    .cost-ico {
      width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800;
    }
    .cost-col--bad .cost-ico { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
    .cost-col--good .cost-ico { background: var(--accent-dim); color: var(--accent-dark); }
    .cost-item-label { font-size: 13px; line-height: 1.5; }
    .cost-col--bad .cost-item-label { color: rgba(255,255,255,.72); }
    .cost-col--good .cost-item-label { color: var(--text); font-weight: 500; }
    .cost-item-amount { font-size: 12px; font-weight: 700; margin-top: 2px; }
    .cost-col--bad .cost-item-amount { color: rgba(255,255,255,.45); }
    .cost-col--good .cost-item-amount { color: var(--accent-dark); }
    .cost-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 18px; }
    .cost-col--bad .cost-total { border-top: 1px solid rgba(255,255,255,.12); }
    .cost-col--good .cost-total { border-top: 1px solid var(--border); }
    .cost-total-label { font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
    .cost-col--bad .cost-total-label { color: rgba(255,255,255,.5); }
    .cost-col--good .cost-total-label { color: var(--muted); }
    .cost-total-val { font-family: var(--serif); font-style: italic; font-size: 1.8rem; line-height: 1; }
    .cost-col--bad .cost-total-val { color: #fff; }
    .cost-col--good .cost-total-val { color: var(--accent-dark); }
    .cost-cta { position: relative; text-align: center; }
    .cost-cta-note { font-size: 13.5px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
    .cost-cta-note strong { color: var(--accent); font-weight: 600; }
    .btn-white {
      background: #fff; color: var(--navy); border: none; border-radius: 100px;
      padding: 13px 30px; font-size: 14px; font-weight: 700; font-family: var(--font);
      cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: opacity 160ms, transform 160ms var(--ease-out), box-shadow 200ms;
    }
    .btn-white:hover { opacity: .92; box-shadow: 0 6px 24px rgba(0,0,0,.3); }
    .btn-white:active { transform: scale(0.97); }

    /* ─── CHAT CARD (Thomas) ─── */
    .dirc2-wrap { padding: 0 max(16px, calc((100% - 1280px) / 2)) clamp(80px, 9vw, 108px); }
    .dirc2-section {
      background: var(--cream); border-radius: 18px;
      padding: clamp(88px, 10vw, 116px) max(40px, calc((100% - 1200px) / 2));
      position: relative; overflow: hidden;
    }
    .dirc2-section::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(circle 380px at 78% 38%, rgba(79,109,207,.12) 0%, transparent 68%),
        radial-gradient(circle 260px at 72% 72%, rgba(25,40,87,.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .dirc2-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: clamp(3rem,6vw,5rem); align-items: start; position: relative; z-index: 1;
    }
    .dirc2-copy { padding-top: 1rem; }
    .dirc2-title {
      font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.3rem);
      font-weight: 400; color: var(--navy); letter-spacing: -.01em;
      line-height: 1.14; margin-bottom: 1rem;
    }
    .dirc2-sub { font-size: .9rem; line-height: 1.7; color: var(--muted); margin-bottom: 2rem; }
    .dirc2-steps-list { display: flex; flex-direction: column; gap: 1.375rem; }
    .dirc2-sl { display: flex; gap: .875rem; align-items: flex-start; }
    .dirc2-sl-num {
      font-size: 11px; font-weight: 800; color: var(--accent-dark);
      background: rgba(79,109,207,.12); border: 1px solid rgba(79,109,207,.28);
      border-radius: 100px; padding: .2rem .55rem; letter-spacing: .03em;
      flex-shrink: 0; margin-top: .1rem;
    }
    .dirc2-sl-title { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; letter-spacing: -.01em; }
    .dirc2-sl-body { font-size: .78rem; line-height: 1.65; color: var(--muted); }
    .dirc2-cta { margin-top: clamp(2rem,4vw,3rem); }
    .dirc2-chat-window {
      background: rgba(255,255,255,.58);
      backdrop-filter: blur(36px) saturate(200%) brightness(1.04);
      -webkit-backdrop-filter: blur(36px) saturate(200%) brightness(1.04);
      border: 1px solid rgba(255,255,255,.92);
      box-shadow: 0 2px 0 rgba(255,255,255,1) inset, 0 -1px 0 rgba(0,0,0,.04) inset,
        0 20px 60px rgba(25,40,87,.10), 0 4px 14px rgba(25,40,87,.06);
      border-radius: 20px; overflow: hidden;
    }
    .dirc2-chat-bar {
      display: flex; align-items: center; gap: .75rem;
      padding: .875rem 1.125rem; border-bottom: 1px solid rgba(0,0,0,.06);
      background: rgba(255,255,255,.55);
    }
    .dirc2-chat-av { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: center top; border: 1.5px solid rgba(0,0,0,.12); flex-shrink: 0; }
    .dirc2-chat-name { font-weight: 700; font-size: .82rem; color: var(--navy); }
    .dirc2-chat-role { font-size: .69rem; color: var(--muted); }
    .dirc2-online { margin-left: auto; display: flex; align-items: center; gap: .3rem; font-size: .69rem; color: oklch(38% .18 145); }
    .dirc2-online-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(62% .18 145); box-shadow: 0 0 0 2.5px rgba(34,197,94,.2); flex-shrink: 0; }
    .dirc2-msgs { padding: 1.125rem; display: flex; flex-direction: column; gap: .75rem; background: rgba(255,255,255,.32); }
    .dirc2-time { text-align: center; font-size: .67rem; color: var(--muted); margin: .125rem 0; }
    .dirc2-row { display: flex; gap: .5rem; align-items: flex-end; }
    .dirc2-row.user { justify-content: flex-end; }
    .dirc2-row-av { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 1px solid rgba(0,0,0,.1); }
    .dirc2-bubble { max-width: 75%; border-radius: 14px; padding: .55rem .825rem; font-size: .775rem; line-height: 1.5; }
    .dirc2-row.user .dirc2-bubble {
      background: rgba(79,109,207,.2); border: 1px solid rgba(79,109,207,.35);
      color: oklch(24% .06 260); border-bottom-right-radius: 4px;
    }
    .dirc2-row.thomas .dirc2-bubble {
      background: rgba(255,255,255,.82); border: 1px solid rgba(0,0,0,.07);
      color: var(--navy); border-bottom-left-radius: 4px;
      box-shadow: 0 1px 4px rgba(25,40,87,.07);
    }
    .dirc2-notif {
      display: flex; align-items: center; gap: .625rem;
      background: rgba(255,255,255,.72); border: 1px solid rgba(79,109,207,.3);
      border-radius: 12px; padding: .55rem .875rem; margin: .25rem 0;
      box-shadow: 0 1px 4px rgba(25,40,87,.06);
    }
    .dirc2-notif-icon { font-size: .9rem; flex-shrink: 0; }
    .dirc2-notif-title { font-weight: 700; color: var(--navy); font-size: .73rem; }
    .dirc2-notif-sub { color: var(--muted); font-size: .67rem; }
    /* Messages : apparition séquentielle quand la fenêtre entre à l'écran */
    .chat-reveal .dirc2-msgs > * {
      opacity: 0; transform: translateY(10px);
      transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
    }
    .chat-reveal.visible .dirc2-msgs > * { opacity: 1; transform: none; }
    .chat-reveal.visible .dirc2-msgs > :nth-child(1) { transition-delay: 100ms; }
    .chat-reveal.visible .dirc2-msgs > :nth-child(2) { transition-delay: 280ms; }
    .chat-reveal.visible .dirc2-msgs > :nth-child(3) { transition-delay: 520ms; }
    .chat-reveal.visible .dirc2-msgs > :nth-child(4) { transition-delay: 760ms; }
    .chat-reveal.visible .dirc2-msgs > :nth-child(5) { transition-delay: 1000ms; }
    .chat-reveal .dirc2-msgs > .dirc2-notif { transform: translateY(10px) scale(.96); }
    .chat-reveal.visible .dirc2-msgs > :nth-child(6) { transition-delay: 1300ms; }

    /* ─── ÉQUIPE ─── */
    .team { padding: clamp(72px, 8vw, 96px) max(40px, calc((100% - 1200px) / 2)); }
    .team-header { max-width: 560px; margin-bottom: clamp(48px, 5vw, 64px); }
    .team-header h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 14px;
    }
    .team-header h2 em { font-style: italic; }
    .team-header p { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .team-feature {
      display: flex; align-items: stretch; min-height: 400px;
      background: #fff; border-radius: 16px; overflow: hidden; margin-bottom: 20px;
      box-shadow: 0 1px 3px rgba(12,16,29,.06), 0 12px 32px rgba(12,16,29,.08);
    }
    .team-feature-text {
      flex: 1 1 58%; min-width: 0;
      padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    }
    .team-feature-name {
      font-family: var(--serif); font-style: italic; font-weight: 400;
      font-size: clamp(1.65rem, 2.6vw, 2.05rem); color: var(--navy); letter-spacing: -.01em; line-height: 1.1;
    }
    .team-feature-role { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-dark); margin: 8px 0 18px; }
    .team-feature-bio { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 52ch; margin-bottom: 22px; }
    .team-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 12px; font-weight: 600; color: oklch(38% .16 145);
      background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25);
      border-radius: 100px; padding: 6px 14px; margin-bottom: 24px;
    }
    .team-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: oklch(62% .18 145); }
    .team-feature-photo { flex: 0 0 42%; position: relative; overflow: hidden; }
    .team-feature-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .team-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .team-mini {
      display: flex; align-items: stretch; min-height: 190px;
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 1px 3px rgba(12,16,29,.05), 0 4px 14px rgba(12,16,29,.06);
      transition: transform 300ms var(--ease-out), box-shadow 300ms;
    }
    .team-mini-text {
      flex: 1 1 58%; min-width: 0;
      padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; justify-content: center;
    }
    .team-mini-photo { flex: 0 0 42%; position: relative; overflow: hidden; }
    .team-mini-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .team-mini-photo.is-placeholder { background: var(--bg-light); }
    .team-mini-name { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--navy); letter-spacing: -.01em; }
    .team-mini-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

    /* ─── GUIDES ─── */
    .guides { padding: 0 max(40px, calc((100% - 1200px) / 2)) clamp(80px, 9vw, 108px); }
    .guides-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(44px, 5vw, 56px); }
    .guides-head h2 {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.7rem, 2.7vw, 2.2rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; line-height: 1.15;
    }
    .btn-ghost-navy {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--navy); border: 1.5px solid var(--border); border-radius: 100px;
      padding: 11px 24px; font-size: 13px; font-weight: 600; font-family: var(--font); text-decoration: none;
      transition: border-color 200ms, background 200ms, transform 160ms var(--ease-out);
      flex-shrink: 0;
    }
    .btn-ghost-navy:hover { border-color: var(--navy); background: var(--bg-light); }
    .btn-ghost-navy:active { transform: scale(0.97); }
    .guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .g-card {
      display: flex; flex-direction: column;
      border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
      text-decoration: none; background: #fff;
      transition: transform 300ms var(--ease-out), box-shadow 300ms, border-color 250ms;
    }
    .g-img { height: 172px; overflow: hidden; }
    .g-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease-out); }
    .g-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
    .g-cat { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
    .g-title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; letter-spacing: -.01em; margin-bottom: 8px; }
    .g-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; flex: 1; }
    .g-more { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--navy); }
    .g-more svg { width: 13px; height: 13px; transition: transform 250ms var(--ease-out); }

    /* ─── REVIEWS ─── */
    .reviews-wrap { padding: 0 max(16px, calc((100% - 1280px) / 2)) clamp(80px, 9vw, 108px); }
    .reviews-outer { background: var(--bg-light); border-radius: 18px; padding: clamp(72px, 8vw, 96px) max(40px, calc((100% - 1200px) / 2)); }
    .reviews-header { text-align: center; margin-bottom: clamp(52px, 6vw, 64px); }
    .reviews-header .label { justify-content: center; }
    .reviews-header h2 {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; margin-bottom: 8px;
    }
    .reviews-sub { font-size: 13px; color: var(--muted); }
    .reviews-grid { display: grid; grid-template-columns: 1fr 1.08fr 1fr; gap: 16px; margin-bottom: 40px; }
    .review-card { background: #FAFAFA; border-radius: 14px; padding: 22px; transition: transform 300ms var(--ease-out), box-shadow 300ms; }
    .review-card.featured { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.07); }
    .review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .review-av {
      width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
      background: var(--navy); color: var(--accent);
      border: 2px solid rgba(79,109,207,.45);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; letter-spacing: .02em;
    }
    .review-name { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
    .review-role { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
    .review-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
    .stars { color: #C9962E; font-size: 13px; }
    .review-score { font-size: 13px; font-weight: 800; }
    .review-text { font-size: 13px; line-height: 1.65; color: #3D362E; }
    .review-text strong { color: var(--navy); }

    /* ─── FAQ ─── */
    .faq { padding: clamp(80px, 9vw, 108px) max(40px, calc((100% - 1200px) / 2)); display: grid; grid-template-columns: 1fr 1.8fr; gap: 72px; align-items: start; }
    .faq-left { position: sticky; top: 96px; }
    .faq-left h2 {
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.7rem, 2.7vw, 2.2rem); font-weight: 400;
      color: var(--navy); line-height: 1.2; margin-bottom: 14px; letter-spacing: -.02em;
    }
    .faq-left p { font-size: 14px; color: var(--muted); line-height: 1.7; }
    .faq-left a { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
    .faq-list { display: flex; flex-direction: column; gap: 8px; }
    .faq-item { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 200ms; }
    .faq-item.open { border-color: var(--navy); }
    .faq-q {
      padding: 16px 20px; font-size: 14px; font-weight: 600;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      cursor: pointer; user-select: none; background: none; border: none;
      width: 100%; text-align: left; color: var(--text); font-family: var(--font);
      letter-spacing: -.01em; transition: color 200ms;
    }
    .faq-item.open .faq-q { color: var(--navy); }
    .faq-chevron { font-size: 17px; color: var(--muted); flex-shrink: 0; transition: transform 250ms var(--ease-out), color 200ms; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--navy); }
    .faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 300ms var(--ease-out); }
    .faq-item.open .faq-body { grid-template-rows: 1fr; }
    .faq-body-inner { overflow: hidden; }
    .faq-a { padding: 0 20px 16px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }

    /* ─── CTA BANNER ─── */
    .cta-outer { padding: 0 max(16px, calc((100% - 1280px) / 2)) clamp(80px, 9vw, 108px); }
    .cta-banner {
      background: var(--navy-deep); border-radius: 18px; padding: clamp(88px, 10vw, 116px) max(40px, calc((100% - 1200px) / 2));
      display: flex; flex-direction: column; align-items: center; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .cta-bg-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(12,16,29,.82) 0%, rgba(12,16,29,.94) 100%);
    }
    .cta-avs { display: flex; margin-bottom: 28px; position: relative; }
    .cta-av { width: 44px; height: 44px; border-radius: 50%; border: 2.5px solid var(--navy-light); object-fit: cover; object-position: center top; background: #fff; margin-left: -10px; }
    .cta-av:first-child { margin-left: 0; }
    .cta-label {
      position: relative;
      font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 16px;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .cta-h2 {
      position: relative;
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 400;
      color: #fff; letter-spacing: -.02em; margin-bottom: 10px; line-height: 1.1;
    }
    .cta-sub { position: relative; font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
    .btn-outline-white {
      position: relative; display: inline-flex; align-items: center; gap: 8px;
      color: #fff; border: 1.5px solid rgba(255,255,255,.4); border-radius: 100px;
      padding: 13px 30px; font-size: 14px; font-weight: 600; font-family: var(--font); text-decoration: none;
      transition: border-color 200ms, background 200ms, transform 160ms var(--ease-out);
    }
    .btn-outline-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
    .btn-outline-white:active { transform: scale(0.97); }

    /* ─── CONTACT ─── */
    .contact { padding: 0 max(40px, calc((100% - 1200px) / 2)) clamp(96px, 10vw, 128px); display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; }
    .contact-left { position: sticky; top: 96px; }
    .contact-left h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3.1vw, 2.45rem); font-weight: 400;
      color: var(--navy); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px;
    }
    .contact-left h2 em { font-style: italic; }
    .contact-left > p { font-size: 14.5px; color: var(--muted); line-height: 1.7; max-width: 44ch; margin-bottom: 28px; }
    .contact-reassure { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .contact-reassure li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--text); }
    .contact-check {
      width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
      background: var(--accent-dim); color: var(--accent-dark);
      display: flex; align-items: center; justify-content: center;
    }
    .contact-check svg { width: 11px; height: 11px; }
    .contact-form-card {
      background: #FAFAFA; border: 1.5px solid var(--border);
      border-radius: 16px; padding: clamp(24px, 3vw, 36px);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-label { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
    .form-opt { font-weight: 500; color: var(--muted); }
    .form-input {
      font-family: var(--font); font-size: 13.5px; color: var(--text);
      background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
      padding: 11px 14px; width: 100%;
      transition: border-color 200ms, box-shadow 200ms;
    }
    .form-input::placeholder { color: #A69B8C; }
    .form-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(25,40,87,.08); }
    select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 3.5l3.5 3.5 3.5-3.5' fill='none' stroke='%236B7280' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
    textarea.form-input { resize: vertical; min-height: 110px; }
    .form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 20px; cursor: pointer; }
    .form-consent input { margin-top: 2px; accent-color: var(--navy); }
    .form-submit {
      width: 100%; justify-content: center;
      background: var(--navy); color: #fff; border: none; border-radius: 100px;
      padding: 14px 28px; font-size: 14.5px; font-weight: 700; font-family: var(--font);
      cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
      transition: opacity 160ms, transform 160ms var(--ease-out);
    }
    .form-submit:hover { opacity: .88; }
    .form-submit:active { transform: scale(0.98); }
    .form-privacy { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.5; }
    .form-privacy a { color: var(--navy); }
    .form-billing-note { font-size: 11px; font-style: italic; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
    .contact-success { text-align: center; padding: 48px 24px; }
    .contact-success-icon {
      width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 18px;
      background: var(--accent-dim); color: var(--accent-dark);
      display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800;
      animation: badgePop 500ms var(--ease-out) both;
    }
    .contact-success-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; color: var(--navy); margin-bottom: 8px; }
    .contact-success-body { font-size: 14px; color: var(--muted); }

    /* ─── FOOTER ─── */
    footer {
      background:
        radial-gradient(circle 640px at 12% -10%, rgba(79,109,207,.08) 0%, transparent 65%),
        linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 78%, color-mix(in srgb, var(--accent-dark) 30%, var(--navy) 70%) 100%);
      padding: clamp(56px, 6vw, 72px) max(40px, calc((100% - 1200px) / 2)) 40px;
    }
    .footer-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .footer-logo-mark { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
    .footer-logo-mark img { width: 22px; height: auto; display: block; }
    .footer-wordmark { display: flex; flex-direction: column; }
    .footer-wordmark-top { font-family: 'Libre Caslon Text', serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; line-height: 1; }
    .footer-wordmark-bottom { font-family: 'Libre Caslon Text', serif; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; line-height: 1.5; }
    .footer-meta { display: flex; align-items: center; gap: 20px; }
    .footer-badge { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: .04em; }
    .footer-pipe { width: 1px; height: 18px; background: rgba(255,255,255,.12); }
    .footer-rating-text { font-size: 12px; color: rgba(255,255,255,.45); }
    .footer-socials { display: flex; gap: 8px; }
    .social-link {
      width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); text-decoration: none; font-size: 11px; font-weight: 700;
      transition: border-color 200ms, color 200ms;
    }
    .social-link:hover { border-color: rgba(255,255,255,.4); color: #fff; }
    .footer-contact {
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
      padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 40px;
    }
    .footer-team { display: flex; align-items: center; gap: 10px; }
    .footer-team-avs { display: flex; }
    .footer-team-av { width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,.12); margin-left: -7px; object-fit: cover; object-position: center top; background: #333; }
    .footer-team-av:first-child { margin-left: 0; }
    .footer-team-label { font-size: 12.5px; color: rgba(255,255,255,.5); font-weight: 500; }
    .footer-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
    .footer-mail {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 100px; padding: 8px 18px;
      color: #fff; font-size: 13px; font-weight: 600; text-decoration: none;
      transition: background 200ms, border-color 200ms;
    }
    .footer-mail:hover { background: rgba(255,255,255,.09); }
    .footer-whatsapp {
      display: flex; align-items: center; gap: 8px;
      background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3);
      border-radius: 100px; padding: 8px 18px;
      color: #fff; font-size: 13px; font-weight: 600; text-decoration: none;
      transition: background 200ms, border-color 200ms;
    }
    .footer-whatsapp:hover { background: rgba(37,211,102,.2); }
    .footer-whatsapp svg { width: 16px; height: 16px; fill: #25D366; flex-shrink: 0; }
    .badge-open { background: #10B981; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; letter-spacing: .03em; }
    .footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
    .footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
    .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: 10px; transition: color 150ms; }
    .footer-col a:hover { color: rgba(255,255,255,.9); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-copy-group { display: flex; flex-direction: column; gap: 4px; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }
    .footer-dev { font-size: 11px; font-style: italic; color: rgba(255,255,255,.28); }
    .footer-dev a { color: rgba(255,255,255,.4); transition: color 150ms; }
    .footer-dev a:hover { color: rgba(255,255,255,.7); }
    .footer-legal { display: flex; align-items: center; gap: 10px; }
    .footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; transition: color 150ms; }
    .footer-legal a:hover { color: rgba(255,255,255,.8); }
    .footer-legal span { font-size: 12px; color: rgba(255,255,255,.25); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate { opacity: 0; transform: translateY(20px); transition: opacity 550ms var(--ease-out), transform 550ms var(--ease-out); }
    .animate.visible { opacity: 1; transform: none; }
    .animate.d1 { transition-delay: 65ms; }
    .animate.d2 { transition-delay: 130ms; }
    .animate.d3 { transition-delay: 195ms; }
    .animate.d4 { transition-delay: 260ms; }
    .animate.d5 { transition-delay: 320ms; }

    /* Révélation d'image au scroll (clip-path : GPU, interruptible).
       Déclenchée par l'état .visible du parent .animate : un élément avec
       clip-path a une aire peinte nulle avant révélation, donc s'observer
       lui-même avec IntersectionObserver ne peut jamais s'intersecter. */
    .img-reveal { opacity: 1; transform: none; clip-path: inset(0 0 100% 0); transition: clip-path 850ms var(--ease-in-out); }
    .animate.visible .img-reveal, .img-reveal.visible { clip-path: inset(0 0 0 0); }
    .img-reveal img { transform: scale(1.08); transition: transform 1100ms var(--ease-out); }
    .animate.visible .img-reveal img, .img-reveal.visible img { transform: scale(1); }

    /* Hover : uniquement pointeurs précis (évite les faux hovers tactiles) */
    @media (hover: hover) and (pointer: fine) {
      .feature-item:hover { background: var(--bg-light); }
      .svc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }
      .diff-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
      .diff-card:hover .diff-card-photo { transform: scale(1.04); }
      .review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
      .review-card.featured:hover { box-shadow: 0 10px 32px rgba(0,0,0,.1); }
      .process-step:hover .step-num { background: var(--accent-dark); transform: scale(1.08); box-shadow: 0 0 0 6px var(--cream), 0 4px 16px rgba(79,109,207,.25); }
      .situation-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.07); }
      .situation-card:hover .situation-link svg { transform: translateX(3px); }
      .fam-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
      .team-mini:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
      .g-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.08); border-color: transparent; }
      .g-card:hover .g-img img { transform: scale(1.05); }
      .g-card:hover .g-more svg { transform: translateX(3px); }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .animate, .img-reveal, .chat-reveal .dirc2-msgs > * { transition: none; opacity: 1; transform: none; clip-path: none; }
      .img-reveal img { transform: none; transition: none; }
      .hero-bg, .hero-h1, .hero-sub, .hero-cta-row, .hero-trust,
      .hero-card, .hc-step, .hc-badge, .contact-success-icon { animation: none; opacity: 1; }
      .process-connector-fill { transition: none; }
      .radar-ring { animation: none; }
      .nav-center a::after { transition: none; }
    }

    @media (max-width: 1080px) {
      .hero-card { display: none; }
    }
    @media (max-width: 900px) {
      .features { grid-template-columns: 1fr; padding: 0 24px; }
      .feature-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
      .feature-item::after { display: none; }
      .feature-item:last-child { border-bottom: none; }
      .services, .faq, .fam, .contact { grid-template-columns: 1fr; gap: 40px; padding-left: 24px; padding-right: 24px; }
      .services, .faq, .fam { padding-top: 56px; padding-bottom: 56px; }
      .contact { padding-bottom: 64px; }
      .faq-left, .contact-left { position: static; }
      .situation { padding: 56px 24px 40px; }
      .situation-grid { grid-template-columns: 1fr; }
      .diff { min-height: auto; padding: 56px 24px; }
      .diff-cards { grid-template-columns: 1fr; }
      .cost-banner { padding: 56px 24px; }
      .cost-grid { grid-template-columns: 1fr; }
      .team { padding: 56px 24px; }
      .team-feature { flex-direction: column; min-height: 0; }
      .team-feature-text { padding: clamp(24px, 5vw, 32px); }
      .team-feature-photo { flex: none; width: 100%; height: 380px; order: -1; }
      .team-row { grid-template-columns: 1fr; }
      .team-mini { flex-direction: column; min-height: 0; }
      .team-mini-photo { flex: none; width: 100%; height: 380px; order: -1; }
      .guides { padding: 0 24px 56px; }
      .guides-head { flex-direction: column; align-items: flex-start; gap: 16px; }
      .guides-grid { grid-template-columns: 1fr; }
      .reviews-wrap { padding: 0 16px 48px; }
      .reviews-outer { padding: 56px 24px; }
      .reviews-grid { grid-template-columns: 1fr; }
      .process-wrap { padding: 0 16px 48px; }
      .process-outer { padding: 56px 24px; }
      .dirc2-wrap { padding: 0 16px 48px; }
      .dirc2-section { padding: 56px 24px; }
      .process-steps { grid-template-columns: 1fr; gap: 32px; }
      .process-connector { display: none; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .footer-cols { grid-template-columns: repeat(2,1fr); }
      .footer-top { flex-direction: column; gap: 20px; align-items: flex-start; }
      .cta-banner { padding: 56px 24px; }
      .dirc2-layout { grid-template-columns: 1fr; }
    }

/* ═══════════════════════════════════════════════════════════════
   PAGES SECONDAIRES — services, guides, contact
   Même système que la home : îlots arrondis sur fond blanc,
   jamais de bande pleine largeur d'une autre couleur que blanc.
   ═══════════════════════════════════════════════════════════════ */


/* ─── HERO DE PAGE SERVICE (îlot, comme le hero de la home) ─── */
.sp-wrap { padding: 16px max(16px, calc((100% - 1280px) / 2)) 0; }
.sp-hero {
  position: relative; border-radius: 18px; overflow: hidden;
  background: var(--navy-deep); padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 80px);
}
.sp-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.sp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(12,16,29,.96) 42%, rgba(12,16,29,.5) 100%); }
.sp-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.sp-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.sp-hero h1 {
  font-family: var(--serif); font-weight: 400; font-style: normal;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; letter-spacing: -.01em;
  color: #fff; margin-bottom: 20px;
}
.sp-hero-sub { font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.65; max-width: 52ch; margin-bottom: 32px; }
.sp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.sp-hero-actions .btn-primary { padding: 14px 32px; font-size: 14.5px; font-weight: 700; }
.sp-hero-actions .btn-outline-white { padding: 14px 32px; font-size: 14.5px; font-weight: 700; }
.sp-reassure { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 20px; }

/* ─── BÉNÉFICES ─── */
.sp-section { padding: clamp(64px, 8vw, 96px) max(40px, calc((100% - 1200px) / 2)); }
.sp-inner { width: 100%; }
.sp-section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 14px;
}
.sp-section-title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2; letter-spacing: -.01em; color: var(--navy); margin-bottom: 44px;
}
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-card { background: #FAFAFA; border-radius: 14px; padding: 26px 26px 22px; transition: transform 300ms var(--ease-out), box-shadow 300ms; }
.sp-card-icon {
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 10px rgba(12,16,29,.07);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.sp-card-icon svg { width: 18px; height: 18px; stroke: var(--accent-dark); }
.sp-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -.01em; }
.sp-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── ÉTAPES (liste numérotée) ─── */
.sp-steps-list { display: flex; flex-direction: column; margin-top: 8px; }
.sp-step { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.sp-step:last-child { border-bottom: none; }
.sp-step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sp-step-body h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: -.01em; }
.sp-step-body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─── PREUVE SOCIALE (photo + stat + citation) ─── */
.sp-proof-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.sp-proof-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 20px 60px rgba(12,16,29,.16); }
.sp-proof-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-proof-content { display: flex; flex-direction: column; gap: 32px; }
.sp-stat-num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--accent-dark); line-height: 1; letter-spacing: -.02em; }
.sp-stat-label { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.4; }
.sp-quote { border-left: none; background: #FAFAFA; border-radius: 14px; padding: 24px 26px; }
.sp-quote-text { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--navy); line-height: 1.55; margin-bottom: 12px; }
.sp-quote-author { font-size: 12.5px; color: var(--muted); }

/* ─── CTA FINALE DE PAGE (îlot sombre, comme la home) ─── */
.sp-cta-outer { padding: 0 max(16px, calc((100% - 1280px) / 2)) clamp(64px, 8vw, 96px); }
.sp-cta {
  border-radius: 18px; background: var(--navy-deep); text-align: center;
  padding: clamp(56px, 8vw, 80px) 32px; position: relative; overflow: hidden;
}
.sp-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(79,109,207,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sp-cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
.sp-cta h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 3.5vw, 2.3rem); color: #fff; line-height: 1.2; margin-bottom: 14px; }
.sp-cta p { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 28px; }
.sp-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sp-micro { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.sp-micro span { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── PAIN POINTS (variante rouge->accent pour "ce qui ne va pas") ─── */
.sp-pain-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.sp-pain-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; background: #FAFAFA; border-radius: 12px; }
.sp-pain-bullet {
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent-dim); color: var(--accent-dark);
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.sp-pain-item p { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* ─── ARTICLE / GUIDE (hero îlot + corps de texte éditorial) ─── */
.article-wrap { padding: 16px max(16px, calc((100% - 1280px) / 2)) 0; }
.article-hero {
  border-radius: 18px; overflow: hidden; background: var(--navy-deep);
  padding: clamp(48px, 7vw, 72px) clamp(32px, 6vw, 64px);
  text-align: center;
}
.article-hero-inner { max-width: 720px; margin: 0 auto; }
.article-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.article-hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.15; letter-spacing: -.01em; color: #fff; margin-bottom: 16px;
}
.article-hero-sub { font-size: 14.5px; color: rgba(255,255,255,.68); line-height: 1.6; max-width: 56ch; margin: 0 auto; }
.article { max-width: 720px; margin: 0 auto; padding: 48px 24px 96px; }
.article--hub { max-width: 1200px; padding: 48px 24px 96px; }
.article--hub .article-lead { max-width: 68ch; }
.article-lead { font-size: 17px; color: var(--text); line-height: 1.65; margin-bottom: 20px; }
.article-meta { font-size: 12.5px; color: var(--muted); padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.article h2 {
  font-family: var(--serif); font-weight: 400; font-size: 1.55rem;
  color: var(--navy); letter-spacing: -.01em; line-height: 1.25;
  margin: 40px 0 14px;
}
.article p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 16px; max-width: 68ch; }
.article ul { margin: 0 0 20px; padding-left: 20px; max-width: 68ch; }
.article li { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.article li strong { color: var(--navy); }
.article a.inline { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.article-cta {
  margin-top: 48px; background: #FAFAFA; border-radius: 16px; padding: 36px 32px; text-align: center;
}
.article-cta h3 { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.article-cta p { font-size: 14px; color: var(--muted); margin-bottom: 22px; max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ─── CASSURE MI-ARTICLE (pattern interrupt : la preuve de compétence
   avant la fin, pour les lecteurs qui scannent sans tout lire) ─── */
.article-highlight { background: var(--cream); border-radius: 16px; padding: 32px 32px 28px; margin: 8px 0 40px; }
.article-highlight-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-light); margin-bottom: 14px;
}
.article-highlight h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.25rem;
  color: var(--navy); letter-spacing: -.01em; line-height: 1.3; margin-bottom: 16px;
}
.article-highlight ul { list-style: none; margin: 0 0 22px; padding: 0; max-width: none; }
.article-highlight li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 10px;
}
.article-highlight li::before { content: '✓'; color: var(--navy); font-weight: 700; flex-shrink: 0; }
.article-highlight a.inline-cta {
  color: var(--navy); font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.article-highlight a.inline-cta:hover { text-decoration: underline; }

/* ─── HUB DES GUIDES ─── */
.guides-hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 40px 0 56px; }
.guide-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #FAFAFA; border-radius: 14px; padding: 24px 24px 26px;
  text-decoration: none; transition: transform 300ms var(--ease-out), box-shadow 300ms;
}
.guide-card-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); }
.guide-card-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 18px; color: var(--navy); line-height: 1.3; letter-spacing: -.01em; }
.guide-card-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

@media (hover: hover) and (pointer: fine) {
  .sp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(12,16,29,.08); }
  .guide-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(12,16,29,.08); }
}

@media (max-width: 900px) {
  .sp-hero { padding: 40px 24px; }
  .sp-section { padding: 48px 24px; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-proof-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-proof-photo { aspect-ratio: 16/9; }
  .sp-wrap, .sp-cta-outer, .article-wrap { padding-left: 16px; padding-right: 16px; }
  .article, .article--hub { padding: 40px 24px 64px; }
  .guides-hub-grid { grid-template-columns: 1fr; }
  .sp-micro { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 12px; text-align: left; }
}

/* ─── PAGES LÉGALES (mentions légales, confidentialité) ─── */
.legal-section { background: var(--bg-light); padding: clamp(64px, 8vw, 96px) 24px; }
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-inner h2 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--navy); letter-spacing: -.01em; margin-bottom: 32px;
}
.legal-inner h3 {
  font-family: var(--font); font-weight: 700; font-size: 12.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-dark); margin: 36px 0 10px;
}
.legal-inner h3:first-of-type { margin-top: 0; }
.legal-inner p { font-size: 14.5px; color: var(--text); line-height: 1.75; margin-bottom: 10px; max-width: 62ch; }
.legal-inner a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ═══════════════════════════════════════════════════
   Tarteaucitron custom styles
   Charte SAL-final : navy-deep #0C101D, navy #192857,
   accent #4F6DCF, cream #DFE4F6, font Figtree

   NB : la bannière visible (showAlertSmall: false) est
   rendue dans #tarteaucitronAlertBig, pas #tarteaucitron
   (qui est le panneau "Personnaliser" détaillé). Les deux
   sont ciblés pour que le style reste cohérent partout.
   ═══════════════════════════════════════════════════ */
#tarteaucitronRoot #tarteaucitron,
#tarteaucitronRoot #tarteaucitronAlertBig {
  background: #0C101D !important;
  font-family: 'Figtree', sans-serif;
  border-top: 1px solid #192857;
}

#tarteaucitronRoot #tarteaucitron #tarteaucitronInfo,
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
  color: #DFE4F6 !important;
  font-size: 13px;
  line-height: 1.5;
}

#tarteaucitronRoot #tarteaucitron .tarteaucitronAllow,
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow {
  background: #4F6DCF !important;
  color: #ffffff !important;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  border: none;
}

#tarteaucitronRoot #tarteaucitron .tarteaucitronDeny,
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronDeny {
  background: transparent !important;
  color: #DFE4F6 !important;
  border: 1px solid #4F6DCF;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
}

#tarteaucitronRoot #tarteaucitron .tarteaucitronAllow:hover,
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronAllow:hover {
  background: #192857 !important;
}

#tarteaucitronRoot #tarteaucitron .tarteaucitronDeny:hover,
#tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronDeny:hover {
  background: rgba(79,109,207,0.12) !important;
}

/* ═══════════════════════════════════════════════════
   WhatsApp — bulle flottante (mobile uniquement)
   ═══════════════════════════════════════════════════ */
.wa-float {
  display: none;
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(12,16,29,.28);
  transition: transform 160ms var(--ease-out);
}
.wa-float:active { transform: scale(0.94); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@media (max-width: 900px) {
  .wa-float { display: flex; }
}

/* ═══════════════════════════════════════════════════
   Choix de contact (WhatsApp / formulaire) — modal
   déclenché par les CTA "Parler à un expert"
   ═══════════════════════════════════════════════════ */
.cc-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12,16,29,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 220ms var(--ease-out), visibility 220ms;
}
.cc-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.cc-modal {
  background: #fff; border-radius: 16px; padding: 32px;
  max-width: 380px; width: 100%; position: relative;
  transform: scale(.96) translateY(8px);
  transition: transform 220ms var(--ease-out);
  box-shadow: 0 24px 60px rgba(12,16,29,.25);
}
.cc-overlay.is-open .cc-modal { transform: scale(1) translateY(0); }
.cc-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border: none; background: var(--bg-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted); font-size: 14px; transition: background 150ms;
}
.cc-close:hover { background: var(--border); }
.cc-modal h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.4rem;
  color: var(--navy); letter-spacing: -.01em; margin-bottom: 6px;
}
.cc-modal > p { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.cc-option {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: #fff; text-decoration: none; margin-bottom: 10px;
  transition: border-color 150ms, background 150ms;
  cursor: pointer; font-family: var(--font); text-align: left; box-sizing: border-box;
}
.cc-option:last-child { margin-bottom: 0; }
.cc-option:hover { border-color: var(--accent-dark); background: var(--bg-light); }
.cc-option-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cc-option-icon svg { width: 20px; height: 20px; }
.cc-option--whatsapp .cc-option-icon { background: rgba(37,211,102,.12); }
.cc-option--whatsapp .cc-option-icon svg { fill: #25D366; }
.cc-option--form .cc-option-icon { background: var(--accent-dim); }
.cc-option--form .cc-option-icon svg { stroke: var(--accent-dark); }
.cc-option-title { display: block; font-size: 14.5px; font-weight: 700; color: var(--text); }
.cc-option-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ─── Mise en avant WhatsApp sur la page contact ─── */
.contact-wa-callout {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding: 16px 18px; border-radius: 14px;
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.25);
  text-decoration: none; transition: background 150ms;
}
.contact-wa-callout:hover { background: rgba(37,211,102,.14); }
.contact-wa-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #25D366; display: flex; align-items: center; justify-content: center;
}
.contact-wa-icon svg { width: 20px; height: 20px; fill: #fff; }
.contact-wa-title { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.contact-wa-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }
