    /* ── RESET (copie exacte de l'original) ────────────────────── */
    html,body,div,span,h1,h2,h3,h4,h5,h6,p,a,ul,li,nav,header,footer,section,main,figure,figcaption{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}
    *,*::before,*::after{box-sizing:border-box}
    html{scroll-behavior:smooth;text-rendering:optimizeSpeed;-webkit-font-smoothing:antialiased}
    article,aside,figcaption,figure,footer,header,menu,nav,section{display:block}
    body{line-height:1}
    ol,ul{list-style:none}
    img,picture,video,canvas,svg{display:block;max-width:100%;height:auto}
    input,button,textarea,select{font:inherit}
    p,h1,h2,h3,h4,h5,h6,a{overflow-wrap:break-word}
    a{text-decoration:none;color:inherit}

    /* ── ROOT ───────────────────────────────────────────────────── */
    :root {
      --dark:    #1A3050;   /* adaptation de #263040 aux couleurs CS */
      --blue:    #1A4F8B;   /* accent primaire CS */
      --vivid:   #1A4F8B;   /* CTA color */
      --green:   #2E7D4F;
      --muted:   #676e79;
      --border:  #e8ecf0;
      --radius:  clamp(1.5rem, 1.0663rem + 1.2048vi, 2rem);
      --pad-x:   clamp(1.25rem, 0.1657rem + 3.012vi, 2.5rem);
      --pad-y:   clamp(3.75rem, 0.497rem + 9.0361vi, 7.5rem);
      --container: min(1440px, 100%);
      --container-sm: min(1140px, 100%);
    }

    /* ── BASE ───────────────────────────────────────────────────── */
    html {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem; font-weight: 500; line-height: 1.3;
      color: var(--dark);
    }
    body { font-family: inherit; font-size: clamp(0.875rem, 0.7666rem + 0.3012vi, 1rem); line-height: inherit; }
    .site-wrapper { overflow: hidden; }
    body.locked { overflow: hidden; }

    h1 { --fs: clamp(2.5rem, -0.9036rem + 10.8434vi, 7rem); --lh: 1.05; }
    h2 { --fs: clamp(1.5rem, 1.0663rem + 1.2048vi, 2rem);   --lh: 1.2; }
    h3 { --fs: clamp(1.25rem, 1.0331rem + 0.6024vi, 1.5rem); --lh: 1.3; }
    h1,h2,h3,h4,h5,h6 { font-size: var(--fs, 1rem); line-height: var(--lh, 1.5); font-weight: 700; }

    @keyframes float {
      0%   { transform: translateY(-10px) }
      50%  { transform: translateY(10px) }
      100% { transform: translateY(-10px) }
    }

    /* ── HEADER — floating pill island ─────────────────────────── */
    .header {
      position: fixed; z-index: 100;
      top: 0; left: 0; width: 100%;
      background: transparent;
      padding: 16px clamp(1rem, 3vw, 2.5rem);
      pointer-events: none;           /* laisse passer les clics sur le fond */
    }
    .header__inner {
      pointer-events: auto;
      max-width: 1200px;
      margin-inline: auto;
      background: #EAE7E0;            /* beige pill — même teinte que l'image */
      border-radius: 100px;
      padding: 8px 8px 8px 20px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.05);
      transition: box-shadow 200ms;
    }
    .is-fixed .header__inner {
      box-shadow: 0 4px 20px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.06);
    }

    /* Branding */
    .branding__image { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .site-logo { height: 50px; width: auto; display: block; }
    /* Logo WordPress natif (Customizer) */
    .custom-logo-link { display: flex; align-items: center; flex-shrink: 0; }
    .custom-logo { height: 50px; width: auto; display: block; }

    /* Nav links */
    .nav--primary { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .nav__wrapper  { display: flex; align-items: center; gap: 16px; }
    .nav__list     { display: flex; align-items: center; gap: 24px; }
    .nav__link {
      font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--dark);
      opacity: .65; transition: opacity 150ms; white-space: nowrap;
    }
    .nav__link:hover { opacity: 1; }
    .nav__list--right { gap: 10px; }

    /* Numéro de tel — discret */
    .nav__tel {
      font-size: 12px; font-weight: 700; letter-spacing: .04em;
      color: var(--dark); opacity: .55; white-space: nowrap;
      transition: opacity 150ms;
    }
    .nav__tel:hover { opacity: 1; }

    /* CTA pill sombre */
    .nav-btn {
      font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
      background: var(--dark); color: #fff; border: none;
      padding: 9px 16px; border-radius: 100px; transition: background 150ms;
      letter-spacing: .04em; white-space: nowrap;
    }
    .nav-btn:hover { background: #0d1e34; }

    /* Email CTA */
    .nav-btn--email { background: var(--blue); }
    .nav-btn--email:hover { background: #163f70; }

    /* Call CTA — vert + pulse */
    .nav-btn--call {
      background: #3B9A4C;
      animation: nav-pulse 2.2s ease-out infinite;
    }
    .nav-btn--call:hover { background: #2d7a3c; animation: none; }
    @keyframes nav-pulse {
      0%   { box-shadow: 0 0 0 0   rgba(59,154,76,.55); }
      70%  { box-shadow: 0 0 0 10px rgba(59,154,76,0);  }
      100% { box-shadow: 0 0 0 0   rgba(59,154,76,0);   }
    }

    /* Burger mobile */
    .nav__toggle {
      cursor: pointer; display: none; place-content: center;
      width: 40px; height: 40px; background: none; border: 1.5px solid rgba(26,48,80,.3);
      border-radius: 50px; flex-shrink: 0;
    }
    .nav__toggle span {
      position: relative; display: block; width: 18px; height: 1.5px;
      background-color: var(--dark); border-radius: 2px; transition: 150ms;
    }
    .nav__toggle span::before, .nav__toggle span::after {
      content: ''; position: absolute; left: 0; width: 18px; height: 1.5px;
      background-color: var(--dark); border-radius: 2px; transition: 150ms;
    }
    .nav__toggle span::before { top: -5px; }
    .nav__toggle span::after  { top: 5px; }
    .nav__toggle.is-open span { background: transparent; }
    .nav__toggle.is-open span::before { transform: rotate(45deg); top: 0; }
    .nav__toggle.is-open span::after  { transform: rotate(-45deg); top: 0; }

    /* Mobile drawer */
    .nav__mobile {
      display: none; position: fixed; z-index: 99;
      top: 0; left: 0; width: 100%; height: 100svh;
      background: #EAE7E0; flex-direction: column;
      padding: clamp(80px, 10vw, 100px) var(--pad-x) var(--pad-x);
      gap: 4px;
    }
    .nav__mobile.is-open { display: flex; }
    .nav__mobile a {
      font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
      color: var(--dark); padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.1);
    }
    .nav__mobile a:last-child { border-bottom: none; color: var(--blue); }

    /* ── HERO (section-sticky--first) ───────────────────────────── */
    .section-sticky {
      position: sticky; z-index: 10; top: 0;
      border-radius: var(--radius);
    }
    .section-sticky--first { top: 0 !important; border-radius: 0; }

    .home-hero {
      display: grid; place-content: center;
      min-height: 100svh;
      padding-top: clamp(6rem, 14vw, 10rem);   /* espace pour le pill nav flottant */
      background: #F8F9FB;
    }
    .home-hero__wrapper {
      width: var(--container); margin-inline: auto;
      padding-inline: var(--pad-x);
      display: flex; flex-direction: column; align-items: center; text-align: center;
      gap: clamp(1.5rem, 1.0663rem + 1.2048vi, 2rem);
    }

    /* Le grand titre avec mots animés — copie exacte du mécanisme */
    .home-hero__heading {
      position: relative; z-index: 10;
      font-size: var(--fs, clamp(3rem, -0.5rem + 10.8434vi, 7rem));
      --fs: clamp(3rem, -0.5rem + 10.8434vi, 7rem);
      line-height: 1.05; font-weight: 800;
      color: var(--dark); letter-spacing: -0.04em;
    }
    /* Mots animés — boucle infinie CSS pure, pas de JS nécessaire */
    @keyframes wordLoop {
      0%          { opacity: 0; }
      8%          { opacity: 1; }
      25%         { opacity: 1; }
      33%, 100%   { opacity: 0; }
    }
    .curtain-words {
      display: inline-grid;
      color: var(--blue);
    }
    .curtain-words .curtain-word {
      grid-column: 1/2; grid-row: 1/2;
      backface-visibility: hidden; opacity: 0;
      animation: wordLoop 9s ease-in-out infinite;
    }
    .curtain-words .curtain-word:nth-of-type(1) { animation-delay: 0s;  }
    .curtain-words .curtain-word:nth-of-type(2) { animation-delay: 3s;  }
    .curtain-words .curtain-word:nth-of-type(3) { animation-delay: 6s;  }

    .home-hero__description {
      font-size: clamp(1rem, 0.7831rem + 0.6024vi, 1.25rem);
      line-height: 1.6; color: var(--muted);
      max-width: 560px; font-weight: 400;
    }

    .hero-ctas {
      display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
      background: var(--blue); color: #fff; border: none;
      padding: 14px 28px; border-radius: 10px; transition: 200ms;
      letter-spacing: .2px;
    }
    .btn-primary:hover { background: #123d6e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,79,139,.25); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
      background: #fff; color: var(--dark); border: 1.5px solid var(--border);
      padding: 13px 26px; border-radius: 10px; transition: 200ms;
    }
    .btn-secondary:hover { border-color: var(--dark); }

    /* Petits logos de confiance sous les CTA */
    .hero-trust-row {
      display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center;
      margin-top: 8px;
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 500; color: var(--muted);
    }
    .hero-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

    /* Image flottante sous le hero */
    .home-hero__image {
      width: min(640px, 100%);
      animation: float 6s ease-in-out infinite;
    }
    .home-hero__image-placeholder {
      width: min(640px, 90vw); margin-inline: auto;
      aspect-ratio: 16/9; border-radius: var(--radius);
      background: linear-gradient(135deg, #c8d8f0 0%, #dce6f4 100%);
      display: flex; align-items: center; justify-content: center;
      color: rgba(26,79,139,.25); font-size: 80px;
      animation: float 6s ease-in-out infinite;
      box-shadow: 0 32px 80px rgba(26,79,139,.12);
    }

    /* ── HERO SPLIT (texte + formulaire) ───────────────────────── */
    .home-hero--split {
      background: #ffffff;
      position: relative; overflow: hidden;
      min-height: auto;
      padding-block: clamp(7rem, 9vw, 10rem) clamp(4rem, 7vw, 7rem);
    }
    .home-hero__bg-orb {
      position: absolute; border-radius: 50%; filter: blur(100px);
      pointer-events: none;
    }
    .home-hero__bg-orb--1 {
      width: 520px; height: 520px; left: -200px; top: 5%;
      background: radial-gradient(circle, #1A4F8B 0%, transparent 70%);
      opacity: .10;
    }
    .home-hero__bg-orb--2 {
      width: 420px; height: 420px; right: -150px; bottom: -150px;
      background: radial-gradient(circle, #3B9A4C 0%, transparent 70%);
      opacity: .08;
    }
    .home-hero__wrapper--split {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
      text-align: left;
      position: relative; z-index: 2;
    }
    .home-hero__col--text { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: #EEF5FC; border: 1px solid #c8d8f0;
      padding: 6px 14px; border-radius: 999px;
      font-size: 12px; font-weight: 600; letter-spacing: .3px;
      color: #1A4F8B;
    }
    .hero-eyebrow__dot {
      width: 7px; height: 7px; border-radius: 50%; background: #5bdf80;
      box-shadow: 0 0 0 3px rgba(91,223,128,.2);
      animation: pulseDot 2s ease-in-out infinite;
    }
    @keyframes pulseDot {
      0%, 100% { box-shadow: 0 0 0 3px rgba(91,223,128,.2); }
      50%      { box-shadow: 0 0 0 6px rgba(91,223,128,.05); }
    }

    .home-hero__heading--split {
      font-size: clamp(2.25rem, 1rem + 3.5vi, 4.25rem);
      line-height: 1.05; color: #0B1D3A;
      letter-spacing: -0.035em; margin: 0;
    }
    .home-hero__heading--split .curtain-words { color: #1A4F8B; }

    .home-hero__description--split {
      color: #4b5563;
      font-size: clamp(1rem, .9rem + .3vi, 1.125rem);
      max-width: 520px; margin: 0;
    }

    .home-hero--split .hero-ctas { justify-content: flex-start; margin-top: .25rem; }
    .btn-primary--invert { background: #1A4F8B; color: #fff; }
    .btn-primary--invert:hover { background: #154275; color: #fff; box-shadow: 0 8px 24px rgba(26,79,139,.25); }
    .btn-secondary--ghost {
      background: transparent; color: #0B1D3A;
      border: 1.5px solid #d1d5db;
    }
    .btn-secondary--ghost:hover { border-color: #0B1D3A; background: #f3f4f6; }

    .hero-trust-row--split { justify-content: flex-start; gap: 18px 24px; margin-top: .5rem; }
    .hero-trust-row--split .hero-trust-item { color: #6b7280; font-size: 13px; }
    .hero-trust-row--split .hero-trust-dot { background: #3B9A4C; box-shadow: 0 0 0 3px rgba(59,154,76,.15); }

    /* Form card variant hero */
    .contact-form-card--hero {
      position: relative;
      padding: 1.75rem 1.75rem 1.25rem;
      box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(26,79,139,.12);
      border: 1px solid #e5e7eb;
      border-radius: 22px;
      animation: cardIn .7s cubic-bezier(.2,.7,.2,1) both;
    }
    @keyframes cardIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .contact-form-card__badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, #1A4F8B 0%, #2563a5 100%);
      color: #fff; font-size: 11px; font-weight: 700;
      padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
      letter-spacing: .3px; text-transform: uppercase;
    }
    .contact-form-card--hero .contact-form-card__title {
      font-size: 1.5rem; margin-bottom: 4px;
    }
    .contact-form-card__foot {
      display: flex; flex-wrap: wrap; gap: 8px 16px;
      margin-top: 14px; padding-top: 14px;
      border-top: 1px solid #eef0f3;
      font-size: 11.5px; font-weight: 600; color: #6b7280;
    }

    /* ── SECTION AFTER STICKY ───────────────────────────────────── */
    .section-after-sticky {
      position: relative; z-index: 11;
      background-color: #ffffff;
    }

    /* Media-large : copie exacte du composant vidéo arrondi */
    .media-large {
      margin-inline: auto;
      padding-inline: var(--pad-x);
      width: var(--container);
      height: 100svh; max-height: 620px;
      position: relative;
    }
    .media-large__media {
      width: 100%; height: 100%;
      object-fit: cover;
      border-radius: var(--radius);
    }
    .media-large__placeholder {
      width: 100%; height: 100%;
      border-radius: var(--radius);
      background: linear-gradient(135deg, #0B1D3A 0%, #1A4F8B 100%);
      display: flex; align-items: flex-end;
      overflow: hidden; position: relative;
    }
    /* Pattern grille décoratif sur la media-large */
    .media-large__placeholder::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .media-large__text {
      padding: clamp(2rem, 1.5rem + 1.2vi, 3rem) clamp(2rem, 1.5rem + 3vi, 4rem);
      position: relative; z-index: 1;
      width: 100%;
    }
    .media-large__text > p {
      font-size: clamp(2rem, 1.0663rem + 3.6145vi, 4rem);
      font-weight: 800; color: #fff; line-height: 1.1;
      letter-spacing: -0.04em; margin-bottom: 12px;
    }
    .media-large__tagline {
      font-size: 13px; color: rgba(255,255,255,.5);
      max-width: 480px; line-height: 1.6;
    }
    .media-large__tagline strong { color: rgba(255,255,255,.75); }

    /* ── TEXT BLOCKS (alternating sections — copie exacte) ─────── */
    .text-blocks {
      margin-block: var(--pad-y);
      margin-inline: auto;
      padding-inline: var(--pad-x);
      width: var(--container-sm);
    }
    .text-blocks__section {
      display: flex; align-items: center; gap: clamp(2.5rem, 0.3313rem + 6.0241vi, 5rem);
      justify-content: space-between;
      margin-block: clamp(1.25rem, 0.1657rem + 3.012vi, 2.5rem);
      padding-block: clamp(2.5rem, 0.3313rem + 6.0241vi, 5rem);
    }
    .text-blocks__section + .text-blocks__section {
      border-top: 1px solid var(--border);
    }
    /* Alternance : pair = image à droite, impair = image à gauche */
    .text-blocks__section:nth-child(even) { flex-direction: row-reverse; }

    .text-blocks__section__inner { flex: 1; min-width: 0; }
    .section-tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--blue); background: rgba(26,79,139,.08);
      padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .section-tag.green { color: var(--green); background: rgba(46,125,79,.1); }
    .text-blocks__section__heading {
      font-size: var(--fs);
      --fs: clamp(1.75rem, 1.2rem + 1.6vi, 2.5rem);
      line-height: 1.1; font-weight: 800; letter-spacing: -0.04em;
      color: var(--dark); margin-bottom: 16px;
    }
    .text-blocks__section__text {
      font-size: clamp(0.9375rem, 0.8291rem + 0.3012vi, 1.0625rem);
      line-height: 1.7; color: var(--muted); font-weight: 400;
      max-width: 44ch;
    }
    .text-blocks__section__cta {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 28px; font-size: 14px; font-weight: 700;
      color: var(--blue); transition: gap .2s;
    }
    .text-blocks__section__cta:hover { gap: 12px; }
    .text-blocks__section__image {
      flex: 1; min-width: 0;
    }
    .img-placeholder {
      width: 100%; aspect-ratio: 4/3.5;
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 80px;
    }
    .img-ph-blue   { background: linear-gradient(135deg, #C8D8F0 0%, #dce6f4 100%); }
    .img-ph-amber  { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
    .img-ph-green  { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
    .service-img {
      width: 100%; aspect-ratio: 4/3.5;
      border-radius: var(--radius);
      object-fit: cover; display: block;
    }
    .home-hero__image {
      width: min(640px, 90vw); margin-inline: auto;
      aspect-ratio: 16/9; border-radius: var(--radius);
      object-fit: cover; display: block;
      animation: float 6s ease-in-out infinite;
      box-shadow: 0 32px 80px rgba(26,79,139,.12);
    }
    .media-large__placeholder--has-img { background: none; }
    .media-large__placeholder--has-img::before {
      background-image: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
      background-size: auto;
    }

    /* ── TEXT BOXES (Swiper carrousel features — copie exacte) ──── */
    .text-boxes {
      margin-block: var(--pad-y);
      margin-inline: auto;
      padding-inline: var(--pad-x);
      width: var(--container);
    }
    .text-boxes__header {
      max-width: var(--container-sm); margin-inline: auto;
      text-align: center; margin-bottom: clamp(2rem, 1rem + 3vi, 3.5rem);
    }
    .text-boxes__header h2 { letter-spacing: -0.04em; font-weight: 800; }
    .text-boxes__header p { color: var(--muted); margin-top: 12px; font-weight: 400; line-height: 1.65; }

    /* Même comportement que l'original : flex-wrap sur desktop, carousel mobile */
    .text-boxes .swiper-wrapper {
      overflow: visible;
    }
    @media (min-width: 576px) {
      .text-boxes .swiper-wrapper {
        display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
      }
      .text-boxes .swiper-wrapper .swiper-slide {
        width: calc((100% - 20px) / 2);
        flex-grow: 1;
      }
    }
    @media (min-width: 960px) {
      .text-boxes .swiper-wrapper .swiper-slide {
        width: calc((100% - 60px) / 4);
      }
    }
    .text-boxes__box {
      border: 1px solid var(--border);
      border-radius: clamp(1rem, 0.8rem + 0.5vi, 1.5rem);
      padding: clamp(1.5rem, 1rem + 1.5vi, 2.5rem);
      background: #fff; height: 100%;
      display: flex; flex-direction: column; gap: 14px;
      transition: box-shadow .2s, transform .2s, border-color .2s;
    }
    .text-boxes__box:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-4px); border-color: transparent; }
    .text-boxes__box__icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(26,79,139,.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
    }
    .text-boxes__box__title {
      font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3;
    }
    .text-boxes__box__text {
      font-size: 0.875rem; line-height: 1.7; color: var(--muted); font-weight: 400;
    }

    /* ── GRADIENT SECTION (section-gradient — même bg que l'original) */
    .section-gradient {
      position: relative; z-index: 12;
      padding-block: clamp(3.75rem, 0.497rem + 9.0361vi, 7.5rem);
      background: linear-gradient(160deg, #EEF5FC 0%, #F0EDFA 100%);
    }
    .section-gradient-inner {
      width: var(--container-sm); margin-inline: auto; padding-inline: var(--pad-x);
    }
    .section__title {
      --fs: clamp(2rem, 1rem + 3.0120vi, 3.5rem); letter-spacing: -0.04em; font-weight: 800;
    }
    .section__heading {
      font-size: clamp(1rem, 0.8rem + 0.6vi, 1.25rem);
      color: var(--muted); font-weight: 400; line-height: 1.65;
      max-width: 52ch; margin-top: 16px;
    }
    .section-header-row {
      display: flex; gap: clamp(2rem, 1rem + 3vi, 5rem);
      align-items: flex-start; justify-content: space-between;
      margin-bottom: clamp(2.5rem, 1rem + 4vi, 5rem);
    }

    /* Cards étapes */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .step-card {
      background: #fff; border-radius: var(--radius); padding: 36px 28px;
      position: relative; overflow: hidden;
      transition: box-shadow .2s, transform .2s;
      border: 1px solid var(--border);
    }
    .step-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
    .step-num-bg {
      font-size: 80px; font-weight: 800; color: #f0f2f5;
      position: absolute; top: -12px; right: 16px; line-height: 1; user-select: none;
      letter-spacing: -4px;
    }
    .step-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(26,79,139,.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 20px;
    }
    .step-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .step-text  { font-size: 0.875rem; line-height: 1.7; color: var(--muted); font-weight: 400; }

    /* ── ABOUT / LABEL AB (dark section) ────────────────────────── */
    .section-dark {
      background: #0B1D3A;
      position: relative; z-index: 12;
      padding-block: var(--pad-y);
    }
    .section-dark-inner {
      width: var(--container-sm); margin-inline: auto; padding-inline: var(--pad-x);
    }
    .about-split {
      display: flex; gap: clamp(3rem, 1rem + 5vi, 7rem); align-items: center;
    }
    .about-text { flex: 1; min-width: 0; }
    .about-text h2 { color: #fff; letter-spacing: -0.04em; font-weight: 800; }
    .about-text p { color: rgba(255,255,255,.6); font-weight: 400; line-height: 1.75; margin-top: 16px; }
    .about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
    .about-list-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.9375rem; color: rgba(255,255,255,.75); font-weight: 500;
    }
    .about-list-icon {
      width: 24px; height: 24px; border-radius: 6px;
      background: rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 13px;
    }
    .about-card-side { flex: 1; min-width: 0; }
    .label-ab-box {
      background: linear-gradient(135deg, #162c1f, #0f1e15);
      border: 1px solid rgba(91,223,128,.15);
      border-radius: var(--radius); padding: clamp(2rem, 1rem + 2vi, 3rem);
      position: relative; overflow: hidden;
    }
    .label-ab-box::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #5bdf80, var(--green));
    }
    .label-ab-box h3 { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
    .label-ab-box p  { color: rgba(255,255,255,.55); font-size: 0.875rem; line-height: 1.7; font-weight: 400; margin-bottom: 24px; }
    .lab-checklist { display: flex; flex-direction: column; gap: 12px; }
    .lab-check-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.875rem; color: rgba(255,255,255,.75); font-weight: 500;
    }
    .lab-dot { width: 7px; height: 7px; border-radius: 50%; background: #5bdf80; flex-shrink: 0; }
    .dark-tag {
      display: inline-block; font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,.6); background: rgba(255,255,255,.1);
      padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .dark-btn {
      display: inline-flex; align-items: center; gap: 8px; margin-top: 32px;
      font-size: 14px; font-weight: 700; cursor: pointer;
      background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.25);
      padding: 12px 24px; border-radius: 10px; transition: 200ms;
    }
    .dark-btn:hover { border-color: rgba(255,255,255,.6); }

    /* ── VIDEOS ─────────────────────────────────────────────────── */
    .section-videos {
      padding-block: var(--pad-y);
      background: #F8F9FB;
    }
    .section-videos-inner {
      width: var(--container-sm); margin-inline: auto; padding-inline: var(--pad-x);
    }
    .videos-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px;
    }
    .video-card {
      border-radius: clamp(1rem, 0.8rem + 0.5vi, 1.25rem);
      overflow: hidden; aspect-ratio: 9/16;
      background: #0B1D3A; border: 1px solid var(--border);
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .video-card iframe { width: 100%; height: 100%; border: none; position: absolute; inset: 0; }
    .video-ph {
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      color: rgba(255,255,255,.3);
    }
    .video-ph-play {
      width: 56px; height: 56px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; color: rgba(255,255,255,.4);
    }
    .video-ph p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }

    /* ── AVANT / APRÈS ──────────────────────────────────────────── */
    .section-ba {
      padding-block: var(--pad-y);
      background: #fff;
    }
    .section-ba-inner {
      width: var(--container); margin-inline: auto; padding-inline: var(--pad-x);
    }
    .ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 44px; }
    .ba-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
    .ba-head {
      padding: 14px 18px;
      background: #F8F9FB; border-bottom: 1px solid var(--border);
      font-weight: 700; font-size: 13px; color: var(--dark);
      display: flex; align-items: center; justify-content: space-between;
    }
    .ba-tags { display: flex; gap: 6px; }
    .ba-tag { font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
    .ba-tag.av { background: #fee2e2; color: #b91c1c; }
    .ba-tag.ap { background: #dcfce7; color: #166534; }
    .ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
    .ba-img { aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; font-size: 36px; }
    .ba-img.a1 { background: linear-gradient(135deg, #fef2f2, #fee2e2); }
    .ba-img.a2 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
    .ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform .2s; }


    /* ── LIGHTBOX ───────────────────────────────────────────────── */
    .lb-overlay {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,.88); align-items: center; justify-content: center;
      cursor: zoom-out;
    }
    .lb-overlay.is-open { display: flex; }
    .lb-img {
      max-width: 92vw; max-height: 88vh;
      object-fit: contain; border-radius: 8px;
      box-shadow: 0 8px 40px rgba(0,0,0,.5);
      cursor: default;
    }
    .lb-close {
      position: fixed; top: 20px; right: 24px;
      font-size: 2rem; color: #fff; cursor: pointer;
      background: rgba(255,255,255,.12); border: none; border-radius: 50%;
      width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
      line-height: 1; font-family: sans-serif;
    }
    .lb-label {
      position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
      font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600;
      letter-spacing: .8px; text-transform: uppercase;
    }

    /* ── FAQ ────────────────────────────────────────────────────── */
    .section-faq {
      padding-block: var(--pad-y);
      background: linear-gradient(160deg, #EEF5FC 0%, #F0EDFA 100%);
      position: relative; z-index: 12;
    }
    .section-faq-inner {
      width: var(--container-sm); margin-inline: auto; padding-inline: var(--pad-x);
    }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
    .faq-col  { display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
    .faq-item.is-open { border-color: var(--blue); box-shadow: 0 4px 20px rgba(26,79,139,.1); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
      padding: 18px 22px; cursor: pointer; user-select: none;
      font-weight: 700; font-size: 0.9375rem; color: var(--dark); line-height: 1.35;
    }
    .faq-icon {
      width: 28px; height: 28px; border-radius: 8px;
      background: #F3F4F6; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; font-size: 16px; color: var(--muted);
      transition: background .2s, transform .25s, color .2s;
    }
    .faq-item.is-open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s ease;
      font-size: 0.875rem; color: var(--muted); line-height: 1.75; font-weight: 400;
      padding: 0 22px;
    }
    .faq-a.is-open { max-height: 300px; padding: 0 22px 18px; }

    /* ── CTA FINAL ──────────────────────────────────────────────── */
    .section-cta {
      background: #0B1D3A;
      position: relative; overflow: hidden;
      padding-block: var(--pad-y);
    }
    .section-cta::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(26,79,139,.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 85% 50%, rgba(46,125,79,.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .section-cta-inner {
      width: var(--container-sm); margin-inline: auto; padding-inline: var(--pad-x);
      text-align: center; position: relative; z-index: 1;
    }
    .cta-title {
      font-size: clamp(2rem, 1rem + 4vi, 4rem); font-weight: 800;
      color: #fff; letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 16px;
    }
    .cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,.55); font-weight: 400; margin-bottom: 36px; line-height: 1.65; }
    .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
    .btn-cta-yt { background: #E00; color: #fff; }
    .btn-cta-yt:hover { background: #b00; }
    .cta-badges {
      display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
      font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500;
    }
    .cta-badges span { display: flex; align-items: center; gap: 6px; }

    /* ── CTA SPLIT + FORMULAIRE CONTACT ─────────────────────────── */
    .section-cta-inner--split {
      width: var(--container) !important;
      max-width: 100%;
      display: flex !important;
      align-items: center;
      gap: 4rem;
      text-align: left !important;
    }
    .cta-split__left { flex: 1; }
    .cta-split__right { flex: 1; min-width: 0; }

    .contact-form-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem 2rem 1.5rem;
      box-shadow: 0 24px 64px rgba(0,0,0,.35);
    }
    .contact-form-card__title {
      font-size: 1.375rem;
      font-weight: 700;
      color: #0B1D3A;
      margin-bottom: 6px;
      font-family: 'Playfair Display', serif;
    }
    .contact-form-card__sub {
      font-size: 0.875rem;
      color: #6b7280;
      margin-bottom: 1.25rem;
    }
    .cf7-notice {
      color: #6b7280;
      font-size: 0.875rem;
      padding: 1rem 0;
    }

    /* CF7 champs */
    .cf7-row { display: flex; gap: 10px; }
    .cf7-row .wpcf7-form-control-wrap { flex: 1; min-width: 0; }

    .contact-form-card .wpcf7-form input[type="text"],
    .contact-form-card .wpcf7-form input[type="email"],
    .contact-form-card .wpcf7-form input[type="tel"],
    .contact-form-card .wpcf7-form select,
    .contact-form-card .wpcf7-form textarea {
      width: 100%;
      background: #f3f4f6;
      border: 1.5px solid #e5e7eb;
      border-radius: 10px;
      padding: 11px 14px;
      color: #111827;
      font-size: 0.9375rem;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color .2s, background .2s;
      margin-bottom: 10px;
      box-sizing: border-box;
      appearance: auto;
    }
    .contact-form-card .wpcf7-form input:focus,
    .contact-form-card .wpcf7-form select:focus,
    .contact-form-card .wpcf7-form textarea:focus {
      border-color: #1A4F8B;
      background: #fff;
    }
    .contact-form-card .wpcf7-form textarea { resize: vertical; min-height: 88px; }

    /* CF7 submit */
    .contact-form-card .wpcf7-form input[type="submit"],
    .contact-form-card .wpcf7-submit {
      width: 100%;
      background: #1A4F8B;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: 10px;
      padding: 14px 24px;
      cursor: pointer;
      transition: background .2s, transform .1s;
      font-family: 'DM Sans', sans-serif;
      margin-bottom: 0;
    }
    .contact-form-card .wpcf7-submit:hover { background: #154275; }
    .contact-form-card .wpcf7-submit:active { transform: scale(.98); }

    /* CF7 messages */
    .contact-form-card .wpcf7-not-valid-tip {
      color: #dc2626; font-size: 0.8125rem;
      margin-top: -6px; margin-bottom: 8px; display: block;
    }
    .contact-form-card .wpcf7-response-output {
      margin-top: 12px; padding: 10px 14px;
      border-radius: 8px; font-size: 0.875rem; border: none;
    }
    .contact-form-card .wpcf7-mail-sent-ok {
      background: #dcfce7; color: #166534;
    }
    .contact-form-card .wpcf7-validation-errors,
    .contact-form-card .wpcf7-mail-sent-ng {
      background: #fee2e2; color: #991b1b;
    }

    /* ── FOOTER ─────────────────────────────────────────────────── */
    footer {
      background: #05101F;
      border-top: 1px solid rgba(255,255,255,.07);
      padding-block: clamp(3rem, 1rem + 4vi, 5rem) clamp(1.5rem, 1rem + 1vi, 2rem);
    }
    .footer-inner { width: var(--container-sm); margin-inline: auto; padding-inline: var(--pad-x); }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 1rem + 4vi, 5rem);
      padding-bottom: clamp(2rem, 1rem + 2vi, 3rem);
      border-bottom: 1px solid rgba(255,255,255,.07);
      margin-bottom: clamp(1.5rem, 1rem + 1vi, 2rem);
    }
    .footer-brand-name { font-weight: 800; font-size: 1rem; color: #fff; }
    .footer-brand-sub  { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
    .footer-desc { font-size: 0.875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; margin-bottom: 20px; font-weight: 400; }
    .footer-contacts a {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.875rem; color: rgba(255,255,255,.55); margin-bottom: 10px;
      font-weight: 500; transition: color .2s;
    }
    .footer-contacts a:hover { color: #fff; }
    .footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,.5); font-weight: 500; transition: color .2s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; }
    .footer-copy   { font-size: 0.8125rem; color: rgba(255,255,255,.3); }
    .footer-legal  { font-size: 0.8125rem; color: rgba(255,255,255,.3); transition: color .2s; }
    .footer-legal:hover { color: rgba(255,255,255,.6); }
    .footer-ab {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(91,223,128,.1); border: 1px solid rgba(91,223,128,.2);
      padding: 5px 12px; border-radius: 8px;
      font-size: 11px; font-weight: 700; color: #5bdf80; margin-top: 16px;
    }

    /* ── SAL OVERRIDE ───────────────────────────────────────────── */
    [data-sal] { transition-property: opacity, transform; }

    /* ── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1048px) {
      .nav__wrapper, .nav__list { display: none; }
      .nav__toggle { display: grid; }
      /* Sur tablette/mobile le pill garde un fond mais prend toute la largeur */
      .header { padding: 12px 16px; }
      .header__inner { border-radius: 60px; padding: 6px 6px 6px 16px; }
      .videos-grid  { grid-template-columns: repeat(2, 1fr); }
      .footer-grid  { grid-template-columns: 1fr 1fr; }
      .ba-grid      { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .home-hero__wrapper--split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
      }
      .home-hero__col--text { align-items: center; }
      .home-hero--split .hero-ctas,
      .hero-trust-row--split { justify-content: center; }
      .home-hero__description--split { margin-inline: auto; }
    }
    @media (max-width: 767px) {
      .text-blocks__section, .text-blocks__section:nth-child(even) {
        flex-direction: column;
      }
      .about-split { flex-direction: column; }
      .section-cta-inner--split { flex-direction: column !important; gap: 2.5rem; }
      .cf7-row { flex-direction: column; gap: 0; }
      .cta-split__right { width: 100%; }
      .contact-form-card--hero { padding: 1.5rem 1.25rem 1.25rem; }
      .home-hero--split { padding-block: clamp(6rem, 14vw, 8rem) 3rem; }
      .ba-grid    { grid-template-columns: 1fr; }
      .faq-grid   { grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
      .videos-grid { grid-template-columns: 1fr 1fr; }
      .section-header-row { flex-direction: column; gap: 12px; }
      .media-large { max-height: 480px; }
    }
    @media (max-width: 575px) {
      .text-boxes .swiper-wrapper { flex-wrap: nowrap; }
      .text-boxes .swiper-wrapper .swiper-slide { width: 80vw; flex-shrink: 0; }
      .hero-ctas { flex-direction: column; width: 100%; }
      .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
      .cta-badges { gap: 16px; }
      .videos-grid  { grid-template-columns: 1fr; }
    }
