/* ══════════════════════════════════════════════════════
   home.css — Flora Schaffer
   Styles spécifiques à la page home.html
   Inclus via : <link rel="stylesheet" href="assets/css/home.css">
══════════════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════════════
       1. POLICE TITRES — Cooper Std Black (chargée depuis CDN)
    ══════════════════════════════════════════════════════ */
    @font-face {
      font-family: 'Cooper Std Black';
      src: url('https://assets.zyrosite.com/mp8696bexySxX9Zq/Cooper%20Std%20Black%20Regular.woff2') format('woff2');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    /* ══════════════════════════════════════════════════════
       2. RESET
    ══════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ══════════════════════════════════════════════════════
       3. TOKENS — toutes les valeurs réutilisables ici
    ══════════════════════════════════════════════════════ */
    :root {
      /* Palette principale */
      --olive:     #37392E;   /* fond sombre, titres, bouton principal */
      --lavender:  #DECFFD;   /* accent clair, icônes, tags, hover */
      --light:     #F6F6F6;   /* fond de sections alternées */
      --white:     #FFFFFF;
      --dark:      #37392E;   /* texte courant */
      --gray:      #5A5A5A;   /* texte secondaire */
      --border:    #DCDCDC;

      /* Accents wireframe (usage rare — explications UX uniquement) */
      --blue:      #546FC8;
      --neutral:   #E4E4E4;

      /* Typographie */
      --font-title: 'Cooper Std Black', serif;
      --font-body:  'Montserrat', sans-serif;

      /* Espacements */
      --space-xs:  8px;
      --space-sm:  16px;
      --space-md:  24px;
      --space-lg:  48px;
      --space-xl:  80px;

      /* Border-radius */
      --radius-xs:   0px;    /* highlight, petits tags */
      --radius-sm:   4px;    /* boutons ghost, nav links */
      --radius:      12px;   /* cartes, composants */
      --radius-lg:   24px;   /* hero-stat, blocs flottants */
      --radius-full: 32px;   /* boutons pills, avatars, icônes */

      /* Effets */
      --shadow-card:  0 12px 40px rgba(0,0,0,.1);
      --shadow-float: 0 8px 32px rgba(0,0,0,.2);
      --transition:   .2s ease;

      /* Helpers fond sombre (sections olive) */
      --on-dark:        rgba(255,255,255,.75);  /* texte secondaire */
      --on-dark-muted:  rgba(255,255,255,.55);  /* sous-titres, descriptions */
      --on-dark-faint:  rgba(255,255,255,.12);  /* éléments très discrets */
      --on-dark-border: rgba(255,255,255,.15);  /* séparateurs */

      /* Layout */
      --max-w: 1100px;
    }

    /* ══════════════════════════════════════════════════════
       4. BASE
    ══════════════════════════════════════════════════════ */
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--dark);
      background: var(--white);
      font-size: 16px;
      font-weight: 400;
      background-color: var(--light);
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%2337392E'/%3E%3C/svg%3E") 6 6, auto;
    }
    a, button, label, [role="button"], summary {
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%2337392E'/%3E%3C/svg%3E") 6 6, pointer;
    }
    /* Fond sombre → point blanc */
    .svc-slide-outer, .cta-banner, footer {
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%23FFFFFF'/%3E%3C/svg%3E") 6 6, auto;
    }
    .svc-slide-outer a, .svc-slide-outer button,
    .cta-banner a, .cta-banner button,
    footer a, footer button {
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%23FFFFFF'/%3E%3C/svg%3E") 6 6, pointer;
    }
    /* Services title : curseur masqué → le rond lavande prend le relais */
    .services-title-wrapper, .services-title-wrapper * { cursor: none !important; }

    img { max-width: 100%; height: auto; display: block; }
    a   { color: inherit; text-decoration: none; }

    /* ── Typographie globale ──────────────────────────────────
       Toutes les classes texte sont définies ici.
       Utilise .h1 .h2 .h3 .h4 .label .subtitle .body partout.
    ────────────────────────────────────────────────────────── */

    /* Cooper Std Black sur tous les titres HTML + classes */
    h1, h2, h3, h4, h5, h6,
    .h1, .h2, .h3, .h4 {
      font-family: var(--font-title);
      font-weight: normal;
    }

    /* Tailles */
    h1, .h1      { font-size: clamp(3rem, 5vw, 4.5rem);        line-height: 1.05; color: var(--dark); }
    h2, .h2      { font-size: clamp(1.6rem, 3vw, 2.4rem);      line-height: 1.3;  color: var(--dark); margin-bottom: var(--space-sm); }
    h3, .h3      { font-size: clamp(1.05rem, 1.8vw, 1.5rem);  line-height: 1.3;  color: var(--dark); margin-bottom: var(--space-xs); }
    h4, .h4      { font-size: 0.95rem;                          line-height: 1.3;  color: var(--dark); margin-bottom: var(--space-xs); }

    /* Labels, sous-titres, corps */
    .label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: var(--space-xs);
      line-height: 2rem;
    }
    .subtitle {
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 400;
      color: var(--gray);
    }
 

    /* ══════════════════════════════════════════════════════
       5. UTILITAIRES
    ══════════════════════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--space-md);
    }

    /* Mot-clé surligné en lavande */
    .highlight {
      background: var(--lavender);
      color: var(--dark);
      padding: 8px 8px 0px;
      border-radius: var(--radius-xs);
      display: inline;
    }
    /* Version inversée sur fond sombre (CTA banner) */
    .cta-banner .highlight {
      background: rgba(255,255,255,.18);
      color: var(--white);
    }

    .about-content .highlight {
       background: var(--white);
    }

    /* Centrage des subtitles dans les sections avec header centré */
    .services-header .subtitle,
    .testimonials-header .subtitle,
    .social-header .subtitle { margin: 0 auto; }

    /* flex: 1 uniquement dans les cartes */
    .service-card .body,
    .project-card .body { flex: 1; }

    /* ══════════════════════════════════════════════════════
       7. HEADER
    ══════════════════════════════════════════════════════ */
    header {
      position: sticky;
      top: max(20px, calc(env(safe-area-inset-top, 0px) + 16px));
      z-index: 100;
      margin: 0 12px;
    }
    @media (max-width: 920px) {
      header {
        top: max(16px, calc(env(safe-area-inset-top, 0px) + 12px));
        margin: 0 10px;
      }
      .header-inner { height: 56px; padding: 0 16px; }
      .header-logo img { height: 16px; }
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #F6F6F690;
      backdrop-filter: blur(10px);
      padding: 0 24px;
      border-radius: var(--radius-full);
      height: 72px;
      border: 0.1px solid var(--light);
      
    }
    .header-logo img { height: 20px; width: auto; }
    .header-logo span {
      font-weight: 900;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
    }

    nav { display: flex; gap: var(--space-xs); align-items: center; }
    nav > a {
      font-size: 0.88rem;
      font-weight: 400;
      padding: var(--space-xs) 14px;
      border-radius: var(--radius-sm);
      transition: color var(--transition);
      color: var(--dark);
    }
    nav > a:hover  { color: var(--dark); }
    nav > a.active { color: var(--dark); font-weight: 500; }

    .nav-cta {
      background: var(--dark) !important;
      color: var(--white) !important;
      border-radius: var(--radius-full) !important;
      padding: 10px 20px !important;
      font-weight: 500 !important;
    }
    .nav-cta:hover { background: var(--lavender) !important; color: var(--dark) !important; }

    /* ── Dropdown desktop ── */
    .has-dropdown { position: relative; }

    .nav-trigger {
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--dark);
      background: none;
      border: none;
      cursor: pointer;
      padding: var(--space-xs) 14px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color var(--transition);
    }
    .nav-trigger:hover { color: var(--dark); }
    .nav-trigger-arrow { transition: transform 0.2s ease; display: flex; }
    .has-dropdown:hover .nav-trigger-arrow,
    .has-dropdown.dd-open .nav-trigger-arrow { transform: rotate(180deg); }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 300px;
      background: rgba(250, 250, 248, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 10px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 200;
    }
    .has-dropdown:hover .nav-dropdown,
    .has-dropdown.dd-open .nav-dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dd-section-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      padding: 6px 12px 4px;
    }
    .nav-dd-divider {
      height: 1px;
      background: var(--border);
      margin: 6px 4px;
    }
    .nav-dd-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 9px 12px;
      border-radius: 12px;
      text-decoration: none;
      transition: background var(--transition);
    }
    .nav-dd-item:hover { background: var(--light); }
    .nav-dd-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--lavender);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .nav-dd-title {
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--dark);
      display: block;
      line-height: 1.3;
    }
    .nav-dd-desc {
      font-family: var(--font-body);
      font-size: 0.7rem;
      color: var(--gray);
      display: block;
      margin-top: 1px;
      line-height: 1.4;
    }

    /* Hamburger (mobile) */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: var(--space-xs);
      background: none;
      border: none;
    }
    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark);
      border-radius: var(--radius-full);
      transition: all .3s;
    }

    /* ── Mobile nav ── */
    .mobile-nav {
      display: none;
      flex-direction: column;
      padding: 8px var(--space-md) var(--space-md);
      border-top: 1px solid var(--border);
      background: #FAFAF8; /* opaque — no backdrop-filter to avoid Safari blur */
    }
    .mobile-nav.open { display: flex; }

    .mobile-nav > a {
      font-size: 0.95rem;
      font-weight: 600;
      padding: 12px 4px;
      border-bottom: 1px solid var(--border);
      color: var(--dark);
      width: -webkit-fill-available;
    }
    .mobile-nav > a:last-child { border-bottom: none; }

    /* Accordéon mobile */
    .mob-accordion { border-bottom: 1px solid var(--border); width: -webkit-fill-available; }
    .mob-acc-trigger {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--dark);
      padding: 12px 4px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .mob-acc-arrow { transition: transform 0.22s ease; font-size: 0.7rem; }
    .mob-accordion.open .mob-acc-arrow { transform: rotate(180deg); }
    .mob-acc-content {
      display: none;
      flex-direction: column;
      gap: 2px;
      padding-bottom: 12px;
    }
    .mob-accordion.open .mob-acc-content { display: flex; }

    /* Section label & divider (style dropdown desktop) */
    .mob-dd-label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      padding: 10px 10px 4px;
    }
    .mob-dd-divider {
      height: 1px;
      background: var(--border);
      margin: 6px 10px;
    }

    /* Items style dropdown desktop */
    .mob-acc-content a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 10px;
      border-radius: 10px;
      text-decoration: none;
      transition: background var(--transition);
    }
    .mob-acc-content a:hover { background: var(--light); }
    .mob-dd-icon {
      width: 32px;
      height: 32px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .mob-dd-text { display: flex; flex-direction: column; }
    .mob-dd-title {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.3;
    }
    .mob-dd-desc {
      font-size: 0.75rem;
      color: var(--gray);
      font-weight: 400;
      line-height: 1.3;
    }

    .mob-nav-cta {
      margin-top: 10px;
      background: var(--dark) !important;
      color: var(--white) !important;
      border-radius: var(--radius-full) !important;
      padding: 12px 20px !important;
      font-weight: 500 !important;
      text-align: center;
    }

    /* ══════════════════════════════════════════════════════
       8. HERO
    ══════════════════════════════════════════════════════ */
    .hero {
      background: var(--light);
      padding: var(--space-xl) var(--space-md) 0px;
      color: var(--dark);
    }

    .hero-content {
      padding-bottom: var(--space-xl);
      width: max-content;
    }
    .hero-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-full);
      padding: var(--space-xs) var(--space-sm);
      font-size: 0.82rem;
      font-weight: 500;
      margin-bottom: var(--space-md);
      color: var(--dark);
    }
    .hero-badge::before { content: '⭐'; }
    /* h1 hero : taille et espacement spécifiques au contexte */
    .hero .h1 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.05; margin-bottom: var(--space-md); }
    .hero .body { font-size: 1rem; font-weight: 400; margin-bottom: 32px; max-width: 680px; line-height: 1.6; }
    .hero .body strong { font-weight: 600; }
    .hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }
    .hero-rating { font-weight: 400; color: var(--dark); }
    .hero-rating span { color: var(--dark); font-weight: 500; }

    .hero-image { position: relative; }
    .hero-image img {
      width: 100%;
      object-fit: cover;
      max-height: 540px;
    }
    .hero-stat {
      position: absolute;
      bottom: var(--space-md);
      left: -20px;
      background: var(--dark);
      color: var(--white);
      border-radius: var(--radius-lg);
      padding: var(--space-sm) 20px;
      box-shadow: var(--shadow-float);
      text-align: center;
    }
    .hero-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--lavender); }
    .hero-stat span   { font-size: 0.78rem; font-weight: 400; color: var(--on-dark); }

    .section-services {
      background: var(--white);
      padding: 0;
      position: relative;
    }
    /* ══════════════════════════════════════════════════════
       9. BARRE DE MÉTRIQUES
    ══════════════════════════════════════════════════════ */
    .metrics-strip {
      background: var(--light);
      padding: 0 var(--space-md);
      position: relative;
      z-index: 2;
      overflow: hidden;
    }
    .metrics-strip.fp-section {
      justify-content: center !important;
      overflow: hidden !important;
    }
    /* Orbe 1 — haut-gauche (transform, sans impact sur scrollHeight) */
    .metrics-strip::before {
      content: '';
      position: absolute;
      width: 55vw; height: 55vw;
      background: radial-gradient(circle, rgba(222,207,253,1) 0%, rgba(222,207,253,0.3) 45%, rgba(222,207,253,0) 70%);
      filter: blur(40px);
      top: 0; left: 0;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transform: translate(-30%, -30%);
      animation: svc-orb-1 9s ease-in-out infinite;
    }
    /* Orbe 2 — bas-droite (transform, sans impact sur scrollHeight) */
    .metrics-strip::after {
      content: '';
      position: absolute;
      width: 45vw; height: 45vw;
      background: radial-gradient(circle, rgba(222,207,253,0.9) 0%, rgba(222,207,253,0.25) 45%, rgba(222,207,253,0) 70%);
      filter: blur(35px);
      bottom: 0; right: 0;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      transform: translate(30%, 30%);
      animation: svc-orb-2 12s ease-in-out infinite;
    }
    .metrics-grid {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .metric-item {
      padding: clamp(24px, 4vw, 48px) var(--space-xs);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .metric-item.metric-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .metric-item:nth-child(2) { transition-delay: 0.1s; }
    .metric-item:nth-child(3) { transition-delay: 0.2s; }
    .metric-item:nth-child(4) { transition-delay: 0.3s; }
    .metric-item + .metric-item {
      border-left: 1px solid rgba(0,0,0,0.08);
    }
    .metric-value {
      font-family: var(--font-title);
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      color: var(--dark);
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .metric-label {
      font-weight: 400;
      font-size: 0.85rem;
      color: rgba(0,0,0,0.45);
      line-height: 1.5;
    }

    /* ══════════════════════════════════════════════════════
       10. SITUATIONS — section immersive
    ══════════════════════════════════════════════════════ */
    .situations-immersive {
      padding: 0 var(--space-md) var(--space-xl) var(--space-md);
    }
    .situations-immersive .label    { color: var(--dark); }
    .situations-immersive .subtitle { color: var(--dark); }
    .situations-immersive .highlight {
      background-color: var(--light);
    }

    /* ── Situations : statique en mode fp ── */
    .situations-immersive {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
height: 100svh;
      padding: var(--space-lg) var(--space-md);
      box-sizing: border-box;
      background-color: var(--lavender);
    }
    .situations-immersive .container.services-header {
      width: 100%;
      max-width: var(--max-w);
      text-align: center;
      margin-bottom: var(--space-md);
    }
    .situations-immersive .situations-list {
      width: 100%;
      max-width: var(--max-w);
    }

    /* ── Situations : ligne horizontale de cartes ── */
    .situations-list {
      max-width: var(--max-w);
      display: flex;
      flex-direction: row;
      gap: 12px;
      perspective: 1400px;
      perspective-origin: 50% 50%;
    }
    /* ── Card flip situation-item ── */
    /* Pas de transform-style:preserve-3d sur le container :
       ce contexte 3D force Safari à compositor les enfants
       en mode dégradé → texte flou. On applique perspective()
       inline sur chaque face à la place. */
    .situation-item {
      flex: 1;
      min-height: 300px;
      cursor: pointer;
      position: relative;
    }
    .sit-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 300px;
    }
    .sit-front,
    .sit-back {
      position: absolute;
      inset: 0;
      padding: 28px 20px;
      border-radius: var(--radius);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform .65s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .sit-front {
      background: rgba(255,255,255,16%);
      border: 1px solid rgba(255,255,255,.7);
      transform: perspective(800px) rotateY(0deg);
    }
    .situation-item:hover .sit-front,
    .situation-item.flipped .sit-front {
      transform: perspective(800px) rotateY(-180deg);
    }
    .sit-icon {
      width: 56px;
      height: 56px;
      color: var(--white);
      flex-shrink: 0;
    }
    .sit-back {
      background: rgba(255,255,255,16%);
      transform: perspective(800px) rotateY(180deg);
      justify-content: space-between;
      border: 1px solid rgba(255,255,255,.7);
    }
    .situation-item:hover .sit-back,
    .situation-item.flipped .sit-back {
      transform: perspective(800px) rotateY(0deg);
    }
    .sit-back .situation-desc {
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.6;
      color: var(--dark);

    }
    .sit-back .situation-action { margin-top: auto; }
    .sit-flip-hint {
      position: absolute;
      bottom: 16px;
      right: 16px;
      width: 22px;
      height: 22px;
      color: var(--gray);
      pointer-events: none;
      transition: color .3s, transform .3s;
    }
    .situation-item:hover .sit-flip-hint {
      color: var(--dark);
      transform: scaleX(-1);
    }
   .post-it--fold {
  position: relative;
  width: 180px;
  min-height: 180px;
  padding: 24px;
  background: var(--dark);
  border-radius: 4px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  color: var(--light);
  transform: rotate(3deg);
}

.post-it--fold::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  background: var(--gray);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  border-radius: 0 0 4px 0;
}

.post-it--fold p {
  margin: 0;
}
    .situation-num {
      font-family: var(--font-title);
      font-size: 3.2rem;
      color: var(--on-dark-faint);
      line-height: 1;
      transition: color var(--transition);
      padding-top: 2px;
    }
    .situation-item:hover .situation-num { color: var(--lavender); }

    .situation-tag {
      display: block;
      font-family: var(--font-title);
      font-size: clamp(1.05rem, 1.8vw, 1.35rem);
      font-weight: normal;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 10px;
    }
    /* h3 des cartes situations : taille plus grande, contexte display */
  
    .situation-quote {
      display: block;
      font-style: italic;
      font-size: 0.95rem;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.5;
    }
    .situation-desc {
      font-size: 0.875rem;
      font-weight: 200;
      color: var(--dark);
      line-height: 1.7;
      max-width: 520px;
    }
    .situation-action {
      display: flex;
      align-items: flex-start;
      padding-top: var(--space-xs);
    }
    .situation-action .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      font-size: 0.85rem;
      font-weight: 500;
      font-family: var(--font-body);
      color: var(--dark);
      background-color: var(--light);
      padding: 10px 18px;
      border-radius: var(--radius-lg);
      transition: all var(--transition);
      white-space: nowrap;
    }
    .situation-action .btn-ghost:hover {
      background: var(--white);
      color: var(--dark);
      border-color: var(--white);
    }
    .situation-action .btn-ghost::after { content: ''; }

    /* ══════════════════════════════════════════════════════
       11. SERVICES
    ══════════════════════════════════════════════════════ */
    .services {
      padding: var(--space-xl) var(--space-md);
    }
    .services-header {
      text-align: center;
      margin-bottom: clamp(48px, 7vw, 88px);
      padding: 0 var(--space-md);
      width: 100%;
    }
    .services-header .subtitle { margin: 0 auto; }
    @media (min-width: 921px) {
      .services-header { padding: 0 10rem; }
    }

    /* ── Stack plein écran — Apple style ── */
    .services-stack { position: relative; }

    .svc-slide-outer { height: 100vh;
height: 100svh; background-color: var(--dark); }
    .svc-slide-outer:nth-child(1) .svc-slide { z-index: 1; }
    .svc-slide-outer:nth-child(2) .svc-slide { z-index: 2; }
    .svc-slide-outer:nth-child(3) .svc-slide { z-index: 3; }

    .svc-slide {
      position: relative;
      top: 0;
      height: calc(100vh - 90px);
height: calc(100svh - 90px);
      overflow: hidden;
    }

    /* Fond image */
    .svc-slide-bg {
      position: absolute;
      inset: 0;
    }
    .svc-slide-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* Placeholder avant l'ajout de vraies photos */
    .sp-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(140deg, var(--dark) 0%, #4e513e 100%);
      color: rgba(255,255,255,.2);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    /* Dégradé + contenu texte en bas */
    .svc-slide-content {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.8) 50%,
        transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 72px 80px;
      gap: var(--space-sm);
    }
    .svc-slide-content .label { color: var(--lavender); }
    .svc-slide-content .h2   { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0; }
    .svc-slide-content .body { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 520px; }

    /* Numéro décoratif */
    .svc-slide-num {
      font-family: var(--font-title);
      font-size: clamp(7rem, 14vw, 12rem);
      line-height: 1;
      color: rgba(255,255,255,.06);
      position: absolute;
      top: 32px;
      right: 56px;
      pointer-events: none;
    }

    /* Lien */
    .svc-slide-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(255,255,255,.4);
      padding-bottom: 3px;
      width: fit-content;
      transition: gap var(--transition), color var(--transition), border-color var(--transition);
    }
    .svc-slide-link:hover { gap: 14px; color: var(--lavender); border-color: var(--lavender); }
    .svc-slide-link::after { content: '→'; }

    /* Pills sous-services */
    .svc-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .svc-pill {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      padding: 5px 13px;
      border-radius: 999px;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
      white-space: nowrap;
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
    }
    .svc-pill:hover {
      background: rgba(255,255,255,0.22);
      color: var(--white);
      border-color: rgba(255,255,255,0.5);
    }

    /* ══════════════════════════════════════════════════════
       12. PROJETS
    ══════════════════════════════════════════════════════ */
    .projects {
      background: var(--light);
      padding: 100px var(--space-md);
      position: relative;
    }
    .projects-header {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto var(--space-lg);
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: var(--space-md);
    }
    .projects-grid {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    /* Mode interactif desktop */
    .projects-grid.interactive {
      display: block;
      position: relative;
    }
    @keyframes card-fall-in {
      0%   { opacity: 0; transform: translateY(-80px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .project-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      opacity: 0;
      transition: box-shadow var(--transition);
    }
    .project-card.card-in {
      animation: card-fall-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .project-card.card-in:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    /* Desktop interactif */
    .projects-grid.interactive .project-card {
      position: absolute;
      cursor: grab;
      user-select: none;
      will-change: transform;
    }
    .projects-grid.interactive .project-card:active { cursor: grabbing; }
    .project-img { width: 100%; height: 220px; object-fit: cover; }
    .project-body { padding: var(--space-md); }
    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-xs);
      margin-bottom: 12px;
    }
    .project-tag {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--dark);
      background: var(--lavender);
      padding: 4px 10px;
      border-radius: var(--radius-full);
    }
    .project-card .body {
      margin-bottom: var(--space-sm);
      display: -webkit-box;
      -webkit-line-clamp: 4;
      line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .project-link {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--dark);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid var(--dark);
      padding-bottom: 2px;
    }

    /* ══════════════════════════════════════════════════════
       13. CTA BANNER
    ══════════════════════════════════════════════════════ */
    .cta-banner {
      background: var(--dark);
      color: var(--white);
      min-height: 100vh;
min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-xl) var(--space-md);
      text-align: center;
      position: relative;
    }
    .cta-banner .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      width: 60%;
    }
    .cta-banner .label {
      color: var(--lavender);
      margin-bottom: var(--space-sm);
    }
    .cta-banner h2 {
      margin-bottom: var(--space-sm);
      color: var(--white);
      line-height: 1;
    }
    .cta-banner .body {
      color: rgba(255,255,255,.8);
      max-width: 520px;
      margin: 0 auto var(--space-md);
    }
    .cta-main-btn {
      font-size: 1.05rem;
      padding: 18px 44px;
      margin-bottom: var(--space-xs);
    }
    .cta-cred {
      font-size: 0.72rem;
      color: rgba(255,255,255,.35);
      letter-spacing: 0.06em;
      margin-bottom: var(--space-lg);
    }
    .cta-sep {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      width: 100%;
      max-width: 340px;
      color: rgba(255,255,255,.18);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: var(--space-md);
    }
    .cta-sep hr { flex: 1; border: none; border-top: 1px solid currentColor; margin: 0; }
    /* Puzzle compact dans la CTA */
    .cta-banner .ready-puzzle { margin-top: 0; gap: var(--space-sm); }
    .cta-banner .ready-slot   { width: 46px; height: 52px; font-size: 1.4rem; }
    .cta-banner .ready-tile   { width: 46px; height: 52px; font-size: 1.4rem; }

    /* ══════════════════════════════════════════════════════
       14. TÉMOIGNAGES
    ══════════════════════════════════════════════════════ */
    .testimonials {
      padding: var(--space-xl) var(--space-md);
      position: relative;
      background-color: var(--light);
    }
    /* Masquer le badge initial (logo Google + note globale + boutons) du widget — mobile uniquement */
    @media (max-width: 920px) {
      .sk-ww-google-reviews .sk-badge,
      .sk-masonry-item:has(.sk-badge) { display: none !important; }
    }
    /* Masquer photos de profil et réponses propriétaire dans le widget Google Reviews */
    .sk-ww-google-reviews .soc-avatar,
    .sk-ww-google-reviews .reviewer-image,
    .sk-ww-google-reviews .sk-reviewer-image,
    .sk-ww-google-reviews img.avatar,
    .sk-ww-google-reviews .review-image,
    .sk-ww-google-reviews .user-image { display: none !important; }
    .sk-ww-google-reviews .owner-answer,
    .sk-ww-google-reviews .sk-owner-answer,
    .sk-ww-google-reviews .owner-reply,
    .sk-ww-google-reviews .sk-owner-reply,
    .sk-ww-google-reviews [class*="owner"],
    .sk-ww-google-reviews [class*="reply"] { display: none !important; }
    .sk_branding { display: none !important; visibility: hidden !important; }
    .sk-image-container { display: none !important; }
    /* Fond transparent sur le widget et ses conteneurs */
    .sk-ww-google-reviews,
    .sk-ww-google-reviews > *,
    .sk-ww-google-reviews .reviews-widget,
    .sk-ww-google-reviews .widget-container,
    .sk-ww-google-reviews .sk-widget,
    .sk-ww-google-reviews .sk-widget-container,
    .sk-ww-google-reviews [class*="container"],
    .sk-ww-google-reviews [class*="wrapper"],
    .sk-ww-google-reviews [class*="widget"] { background: transparent !important; background-color: transparent !important; box-shadow: none !important; border: none !important; }
    .testimonials-header {
      text-align: center;
      padding-top: 4rem;
      margin-bottom: var(--space-lg);
    }
    .testimonials-grid {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
    }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
    }

    /* ══════════════════════════════════════════════════════
       15. PROCESS
    ══════════════════════════════════════════════════════ */
    .process {
      background: var(--light);
      padding: var(--space-xl) var(--space-md);
      position: relative;
    }
    .process-inner {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      align-items: start;
    }
    .process-steps { display: flex; flex-direction: column; gap: 0; }
    .process-step {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
    }
    .process-step:last-child { border-bottom: none; }
    .step-num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background: var(--lavender);
      color: var(--dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
    }
    .process .body { color: var(--gray); }

    /* Variante home : numéro grand Cooper, sans bordure, aligné gauche */
    .process-steps--list::before { content: none; }
    .process-steps--list {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }
    .process-steps--list .process-step {
      display: flex;
      flex-direction: row;
      text-align: left;
      gap: var(--space-md);
      padding: 0;
      border-bottom: none;
      align-items: flex-start;
    }
    .process-steps--list .process-step:hover .step-num { background: none; }
    .process-steps--list .step-num {
      font-family: var(--font-title);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      color: var(--lavender);
      background: none;
      border: none;
      border-radius: 0;
      width: auto;
      height: auto;
      font-weight: normal;
      flex-shrink: 0;
      min-width: 2.5rem;
      padding-top: 2px;
    }
    .process-steps--list .step-content h3 {
      margin-bottom: var(--space-xs);
    }
    .process-steps--list .step-content p {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.65;
    }

    /* ══════════════════════════════════════════════════════
       16. À PROPOS
    ══════════════════════════════════════════════════════ */
    .about {
      padding: var(--space-xl) var(--space-md);
      position: relative;
      background-color: var(--lavender);
    }
    .about-inner {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .about-image img {
      border-radius: var(--radius-full);
      width: 100%;
      object-fit: cover;
    }
    .about-content .body { margin-bottom: var(--space-sm); font-size: 0.95rem; }
    .about-content .body strong { font-weight: 500; }
    .about-content .btn { margin-top: var(--space-xs); }

    /* ══════════════════════════════════════════════════════
       17. BLOG
    ══════════════════════════════════════════════════════ */
    .blog {
      background: var(--light);
      padding: var(--space-xl) var(--space-md);
      position: relative;
    }
    .blog .container {
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .blog-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: var(--space-md);
      margin-bottom: 48px;
      padding-top: 4rem;
      flex-wrap: wrap;
    }
    .blog-header-text .h2 { margin-bottom: 8px; }
    .blog-subtitle {
      color: var(--gray);
      font-size: 0.9rem;
      max-width: 520px;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
    }
    .blog-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      transition: box-shadow var(--transition), transform var(--transition);
    }
    .blog-card:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.10);
      transform: translateY(-3px);
    }
    .blog-card-thumb {
      width: 100%;
      aspect-ratio: 16/9;
    }
    .blog-card-thumb--1 {
      background: linear-gradient(135deg, #DECFFD 0%, #c4b0f8 50%, #a892f0 100%);
    }
    .blog-card-thumb--2 {
      background: linear-gradient(135deg, #37392E 0%, #5a5d4e 50%, #8a8d7a 100%);
    }
    .blog-card-thumb--3 {
      background: linear-gradient(135deg, #DECFFD 0%, #e8d9b0 50%, #f0c490 100%);
    }
    .blog-card-body {
      padding: var(--space-md);
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .blog-card-body .label { margin-bottom: 0; }
    .blog-card-title {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
      color: var(--dark);
    }
    .blog-card-excerpt {
      color: var(--gray);
      font-size: 0.85rem;
      line-height: 1.65;
      flex: 1;
    }
    .blog-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: var(--space-sm);
      border-top: 1px solid var(--border);
      margin-top: auto;
    }
    .blog-card-footer time {
      font-size: 0.78rem;
      color: var(--gray);
      font-weight: 400;
    }
    .blog-card-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--dark);
      transition: color var(--transition);
    }
    .blog-card-link:hover { color: var(--lavender); }

    /* ══════════════════════════════════════════════════════
       18. COLLAB BANNER
    ══════════════════════════════════════════════════════ */
    .collab {
      padding: 60px var(--space-md);
      text-align: center;
      position: relative;
    }
    .collab-inner { width: 100%; max-width: 700px; margin: 0 auto; }

    .collab-avatars {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      margin-bottom: var(--space-lg);
    }
    .collab-avatar-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .collab-avatar-wrap:first-child { margin-right: -5px; z-index: 2; }
    .collab-avatar-wrap:last-child  { margin-left:  -5px; z-index: 1; }
    .collab-avatar {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center 15%;
      border: 3px solid var(--light);
      box-shadow: 0 8px 24px rgba(0,0,0,0.10);
      display: block;
    }
    .collab-avatar-name {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--gray);
      text-transform: uppercase;
    }
    .collab h2 {
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 12px;
    }
    .collab .body {
      color: var(--gray);
      font-size: 0.95rem;
      margin-bottom: var(--space-md);
    }

    /* ══════════════════════════════════════════════════════
       18-bis. FAQ
    ══════════════════════════════════════════════════════ */
    .faq {
      background: var(--white);
      padding: var(--space-xl) var(--space-md);
      position: relative;
    }
    .faq-inner { max-width: 880px; }
    .faq-header { text-align: center; margin-bottom: var(--space-lg); padding-top: 4rem; }
    .faq-header h2 { max-width: 720px; margin: var(--space-xs) auto 0; }
    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--light);
      border-radius: var(--radius-lg);
      padding: 18px 24px;
      transition: background var(--transition);
    }
    .faq-item:hover { background: rgba(222,207,253,0.35); }
    .faq-item summary {
      cursor: pointer;
      list-style: none;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 1rem;
      color: var(--dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--space-sm);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: var(--font-title);
      font-size: 1.4rem;
      color: var(--dark);
      flex-shrink: 0;
      transition: transform var(--transition);
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item p {
      margin-top: 12px;
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--gray);
    }

    /* ══════════════════════════════════════════════════════
       20. HERO ZOOM — scroll-driven depuis le moniteur du hero
    ══════════════════════════════════════════════════════ */

    /* Wrapper : une page entière */
    .hero-zoom-wrapper {
      position: relative;
      height: 100vh;
height: 100svh;
    }

    /* Le hero devient sticky pendant la zone de scroll */
    .hero-zoom-wrapper .hero {
      position: fixed;
      top: 0;
      height: 100vh;
height: 100svh;
      overflow: hidden;        /* clip le moniteur quand il dépasse le cadre */
      display: flex;
      align-items: center;
      padding-top: 0px;
      padding-bottom: 0;
      width: 100%;
    }

    /* Indication "scroll" dans le hero */
    .zoom-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      pointer-events: all;
      cursor: pointer;
      transition: opacity var(--transition);
    }
    .zoom-scroll-hint::after {
      content: '';
      display: block;
      width: 1px;
      height: 32px;
      background: var(--border);
      animation: zoom-line 0.8s ease-in-out infinite;
    }
    @keyframes zoom-line {
      0%,100% { opacity: .4; }
      50%      { opacity: 1; }
    }

    /* L'élément sur lequel on applique scale() via JS */
    .zoom-device-wrap {
      position: relative;
      width: 100%;                      /* prend toute la largeur de la colonne */
      will-change: transform;
      transform-origin: 50% 38%;        /* centré sur l'écran, au-dessus du pied */
    }

    /* ── Moniteur CSS ── */
    .zoom-monitor-frame {
      background: var(--dark);
      border-radius: 32px;
      padding: 8px;
      box-shadow: 0 46px 200px rgba(0,0,0,.1), 0 0 0 1px rgba(255,255,255,.00002);
      position: relative;
    }
    /* Petite caméra */
    .zoom-monitor-frame::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      background: #3a3a3a;
      border-radius: 50%;
      position: absolute;
      top: 7px; left: 50%;
      transform: translateX(-50%);
    }

    /* Écran — le SVG wireframe le remplit entièrement */
    .zoom-screen {
      border-radius: var(--radius-lg);
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background-color: var(--lavender);
      position: relative;
    }
    .zoom-screen > svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    /* ── Diaporama glitch sur l'écran ── */
    /* ── Chrome navigateur dans l'écran ── */
    .zoom-browser {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      background: #f2f2f2;
    }

    .zoom-browser-bar {
      height: 26px;
      background: #e8e8e8;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 8px;
      flex-shrink: 0;
      border-bottom: 1px solid #d0d0d0;
    }

    .zoom-browser-dots {
      display: flex;
      gap: 4px;
      flex-shrink: 0;
    }
    .zoom-browser-dots span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }
    .zoom-browser-dots span:nth-child(1) { background: #ff5f57; }
    .zoom-browser-dots span:nth-child(2) { background: #febc2e; }
    .zoom-browser-dots span:nth-child(3) { background: #28c840; }

    .zoom-browser-url {
      flex: 1;
      background: white;
      border-radius: 4px;
      height: 15px;
      display: flex;
      align-items: center;
      padding: 0 6px;
      gap: 4px;
      overflow: hidden;
    }
    .zoom-browser-favicon { font-size: 0.45rem; line-height: 1; }
    .zoom-browser-address {
      font-family: var(--font-body);
      font-size: 0.5rem;
      color: #444;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Barre de progression style navigateur */
    .zoom-browser-progress {
      height: 2px;
      width: 0%;
      background: var(--lavender);
      position: absolute;
      top: 26px;
      left: 0;
      z-index: 20;
      opacity: 0;
    }
    .zoom-browser-progress.zbp-run {
      opacity: 1;
      transition: width 0.38s ease-out;
      width: 82%;
    }
    .zoom-browser-progress.zbp-done {
      transition: width 0.1s ease-out, opacity 0.2s ease 0.12s;
      width: 100%;
      opacity: 0;
    }

    /* Flash blanc "chargement de page" */
    .zoom-browser-flash {
      position: absolute;
      inset: 0;
      background: white;
      opacity: 0;
      pointer-events: none;
      z-index: 15;
    }

    /* Zone des slides */
    .zoom-slides {
      flex: 1;
      position: relative;
      overflow: hidden;
    }

    /* Chaque slide : cross-fade via .sp-active */
    .zoom-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .zoom-slide.sp-active { opacity: 1; }

    .zoom-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    /* ── Pied du moniteur ── */
    .zoom-monitor-stand {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .zoom-stand-neck {
      width: 48px; height: 16px;
      background: #1b1d15;
    }
    .zoom-stand-base {
      width: 110px; height: 7px;
      background: #1b1d15;
      border-radius: 0 0 5px 5px;
    }

    /* ── Ticker avis clients ── */
    .reviews-ticker {
      position: absolute;
      bottom: 110px;
      left: 0;
      right: 0;
      overflow: hidden;
      z-index: 10;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .reviews-track {
      display: flex;
      gap: 14px;
      width: max-content;
      animation: ticker-scroll 40s linear infinite;
    }
    .reviews-track:hover { animation-play-state: paused; }

    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .review-card {
      background: rgba(255, 255, 255, 0.80);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 16px;
      padding: 10px 16px;
      display: flex;
      flex-direction: column;
      gap: 3px;
      width: 240px;
      flex-shrink: 0;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      will-change: transform;
      transform-origin: center center;
    }
    .review-stars {
      font-size: 0.65rem;
      letter-spacing: 1px;
      color: #f5a623;
    }
    .review-text {
      font-family: var(--font-body);
      font-size: 0.72rem;
      color: var(--dark);
      font-style: italic;
      line-height: 1.45;
    }
    .review-author {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 600;
      color: var(--gray);
      letter-spacing: 0.02em;
    }

    /* ── Colonne moniteur : ancrage pour le post-it ── */
    .hero-image {
      position: relative;
    }

    /* ── Post-it collé à gauche du moniteur ── */
    .hero-post-it {
      position: absolute;
      bottom: 64px;        /* au-dessus du pied */
      left: -80px;
      z-index: 10;
      width: 154px;
      background: #fffce0;
      padding: 14px 16px 16px;
      border-radius: 2px;
      box-shadow: 2px 6px 18px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
      transform: rotate(-4deg);
      font-size: 0.78rem;
      line-height: 1.55;
      color: #333;
      transition: opacity var(--transition);
    }
    .hero-post-it strong {
      display: block;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #888;
      margin-bottom: 6px;
    }
    .hero-post-it p {
      font-weight: 500;
      margin-bottom: 10px;
      color: #222;
    }
    .hero-post-it a {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--olive);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    /* Masqué sur tablette/mobile (pas assez de place) */
    @media (max-width: 1080px) { .hero-post-it { display: none; } }

    /* ── Overlay SVG fixe — cadre moniteur persistant ── */
    #monitor-overlay {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 9000;
      pointer-events: none;
      opacity: 0;
      overflow: visible;
    }

    /* ══════════════════════════════════════════════════════
       21. REVEAL ANIMATIONS
    ══════════════════════════════════════════════════════ */

    /* Éléments de la section situations — visibles sans animation */
    .sit-el { opacity: 1; }

    /* Fade + blur — entrée section Mes prestations */
    .fb-ready {
      opacity: 0;
      filter: blur(14px);
      transform: translateY(28px);
      transition: opacity .65s ease, filter .65s ease, transform .65s ease;
    }
    .fb-ready.fb-in {
      opacity: 1;
      filter: blur(0px);
      transform: translateY(0);
    }

    /* ── Titre services : plein écran sticky ── */
    .services-title-wrapper {
      position: relative;
      height: 100vh;
      height: 100svh;
      overflow: hidden;
      background: var(--white);
    }
    .services-title-sticky {
      position: relative;
      height: 100vh;
      height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      overflow: hidden;
    }

    /* ── Vidéo de fond ── */
    .svc-video-bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      filter: blur(6px);
      transform: scale(1.07); /* évite les bords blancs du blur */
      z-index: 0;
      transition: filter 0.6s ease;
      pointer-events: none;
    }

    /* ── Overlay blanc semi-transparent pour lisibilité du texte ── */
    .services-title-sticky::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.52);
      z-index: 1;
      pointer-events: none;
    }

    /* ── Orbes lumineux lavande (sur l'overlay) ── */
    .services-title-sticky::after,
    .svc-orb {
      content: '';
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    /* Orbe 1 — grand, haut-gauche */
    .services-title-sticky::after {
      width: 60vw; height: 60vw;
      background: radial-gradient(circle, rgba(222,207,253,0.85) 0%, rgba(222,207,253,0.2) 50%, rgba(222,207,253,0) 70%);
      filter: blur(35px);
      top: -20%; left: -15%;
      z-index: 2;
      animation: svc-orb-1 9s ease-in-out infinite;
    }
    /* Orbe 2 — centre-haut (injecté via JS) */
    .svc-orb {
      width: 40vw; height: 40vw;
      background: radial-gradient(circle, rgba(222,207,253,0.8) 0%, rgba(222,207,253,0.2) 50%, rgba(222,207,253,0) 70%);
      filter: blur(30px);
      bottom: -10%; right: -8%;
      z-index: 2;
      animation: svc-orb-2 12s ease-in-out infinite;
    }
    /* Le contenu passe au-dessus de tout */
    .services-title-sticky .services-header,
    .services-title-sticky .ready-puzzle {
      position: relative;
      z-index: 3;
    }
    .services-title-sticky .svc-arrow-cta { z-index: 3; }

    @keyframes svc-orb-1 {
      0%,100% { transform: translate(0,   0)   scale(1);    }
      30%     { transform: translate(8vw, 5vh)  scale(1.08); }
      65%     { transform: translate(-4vw,8vh)  scale(0.94); }
    }
    @keyframes svc-orb-2 {
      0%,100% { transform: translate(0,    0)    scale(1);    }
      40%     { transform: translate(-7vw,-6vh)  scale(1.06); }
      72%     { transform: translate(3vw, -10vh) scale(0.92); }
    }

    .services-title-sticky .services-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      margin-bottom: 0;
      text-align: center;
      max-width: 1200px;
    }
    .services-title-sticky .label   { margin-bottom: 18px; }
    .services-title-sticky .subtitle { margin-bottom: 0; }
    /* ── READY Puzzle ── */
    .ready-puzzle {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      width: 100%;
    }
    .ready-puzzle-hint {
      color: rgba(255,255,255,0.5);
      font-size: 0.78rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }
    .ready-slots {
      display: flex;
      gap: 10px;
    }
    .ready-slot {
      width: 62px;
      height: 70px;
      border: 2px dashed rgba(255,255,255,0.25);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 2rem;
      color: var(--dark);
      transition: border-color 0.2s, background 0.2s;
    }
    .ready-slot.slot-active {
      border-color: var(--lavender);
      background: rgba(222,207,253,0.12);
    }
    .ready-slot.slot-filled {
      border-style: solid;
      border-color: var(--lavender);
      background: var(--lavender);
    }
    .ready-tiles {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      min-height: 80px;
    }
    .ready-tile {
      width: 62px;
      height: 70px;
      background: var(--lavender);
      color: var(--dark);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 2rem;
      cursor: grab;
      user-select: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.35);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .ready-tile:hover { transform: scale(1.06) translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.45); }
    .ready-tile.dragging { cursor: grabbing; z-index: 9999; transition: none; box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
    .ready-reward {
      display: none;
      background: rgba(222,207,253,0.1);
      border: 1px solid var(--lavender);
      border-radius: 14px;
      padding: 16px 32px;
      color: var(--white);
      font-size: 0.95rem;
      text-align: center;
      animation: reward-pop 0.55s cubic-bezier(0.22,1,0.36,1);
    }
    .ready-reward strong {
      color: var(--lavender);
      font-size: 1.4rem;
      display: block;
      letter-spacing: 0.12em;
      margin: 6px 0 4px;
    }
    @keyframes reward-pop {
      0%   { transform: scale(0.6); opacity: 0; }
      100% { transform: scale(1);   opacity: 1; }
    }
    .services-punch {
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1;
      margin-top: 20px;
      letter-spacing: -0.02em;
    }
    .services-punch .char {
      display: inline-block;
    }
    .services-punch .char-space { display: inline-block; width: 0.28em; }
    /* Cercle lavender */
    .punch-cursor {
      position: fixed;
      top: 0; left: 0;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: var(--lavender);
      transform: translate(-50%, -50%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease, width 0.12s ease, height 0.12s ease;
      z-index: 0;
      mix-blend-mode: multiply;
      will-change: transform, width, height;
    }
    .svc-arrow-cta {
      position: absolute;
      cursor: pointer;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: grab;
      user-select: none;
      opacity: 0;
      transition: opacity 0.4s ease;
      will-change: transform;
    }
    .svc-arrow-cta.visible { opacity: 1; }
    .svc-arrow-disk {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .svc-arrow-cta:hover .svc-arrow-disk {
      background: var(--lavender);
      transform: translateY(3px);
    }
    .svc-arrow-disk svg { display: block; }
    .svc-arrow-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
    }

    /* ══════════════════════════════════════════════════════
       22. RESPONSIVE — tablette (≤ 920 px)
    ══════════════════════════════════════════════════════ */
    @media (max-width: 920px) {
      nav { display: none; }
      .burger { display: flex; }

      /* ── Header pill → carte expansible sur mobile ── */
      header {
        transition: background 0.22s ease, border-color 0.22s ease, border-radius 0.22s ease;
      }
      /* Désactiver backdrop-filter + fond opaque sur header-inner mobile (évite le flou iOS) */
      .header-inner {
        -webkit-backdrop-filter: none;
        transition: background 0.22s ease, border-color 0.22s ease, border-radius 0.22s ease;
      }
      /* Quand le nav est ouvert : le header devient le conteneur-carte */
      header.nav-open {
        background: #F6F6F6;
        margin: 0 8px;
        backdrop-filter: blur(22px);
        border-radius: 32px;
        border: 0.1px solid var(--light);
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      }
      
      header.nav-open .mobile-nav {
        background: transparent;
        border-top: none;
      }

      .hero-inner { grid-template-columns: 1fr; gap: 12px; }
      .hero-image img { max-height: 280px; }
      /* max-content déborde sur écran étroit */
      .reviews-ticker { display: none; }
      .hero-content { width: 100%; padding-bottom: 0px; text-align: center; }
      .hero .h1 { margin-bottom: 10px; }
      .hero .body { margin: 0 auto 14px; }
      .hero-actions { justify-content: center; }
      .hero-rating { text-align: center; margin-top: 10px !important; }
      /* Moniteur : limiter la taille sur tablette */
      .zoom-device-wrap { max-width: 460px; margin: 0 auto; }
      /* Stat flottante chevauche le contenu en colonne unique */
      .hero-stat { display: none; }

      /* Slides services : moins de scroll + padding réduit */
      .svc-slide-outer { height: 130vh; }
      .svc-slide-content { padding: 40px 36px; }
      .svc-slide-num { font-size: clamp(4rem, 10vw, 7rem); top: 20px; right: 24px; }
      .hero-stat { left: 12px; bottom: 12px; }

      .metrics-grid { grid-template-columns: repeat(2, 1fr); }
      .metric-item + .metric-item { border-left: none; }
      .metrics-grid .metric-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.08); }
      .metrics-grid .metric-item:nth-child(1),
      .metrics-grid .metric-item:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.08); }

      .situations-list { gap: 8px; }
      .situation-num { font-size: 2.2rem; }

      .services-grid { grid-template-columns: 1fr; }
      /* Layout cartes projets : carrousel horizontal mobile (cf. bloc dédié) */
      .project-card, .project-card.card-in { opacity: 1 !important; animation: none !important; }
      .projects-header { flex-direction: column; align-items: flex-start; }
      .projects { padding-top: var(--space-xl); }
      .process-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ══════════════════════════════════════════════════════
       21. RESPONSIVE — mobile (≤ 560 px)
    ══════════════════════════════════════════════════════ */
    @media (max-width: 560px) {
      .container { padding: 0; }
      .hero { padding: 80px var(--space-sm) 12px; }
      .hero .h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); text-align: center; margin-bottom: 8px; }
      .hero .body { margin-bottom: 10px; }
      .hero-inner { gap: 10px; }
      .hero-actions { gap: 8px; }

      .svc-slide-outer { height: 115vh; }
      .svc-slide-content { padding: 32px 20px 100px 20px; gap: 12px; }
      .svc-slide-content .h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
      .svc-slide-num { display: none; }
      .hero-actions { flex-direction: column; align-items: center; }
      .cta-banner .container { width: 100%; }

      .metrics-grid { grid-template-columns: 1fr 1fr; }

      /* ── Situations : carrousel horizontal mobile (cf. bloc dédié) ── */
      .situations-immersive {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-lg);
      }
      .sit-front, .sit-back { padding: var(--space-md) var(--space-sm); gap: 8px; }
      .sit-icon { width: 36px; height: 36px; }
      /* Flip via tap uniquement — annuler hover sur mobile */
      .situation-item:hover .sit-front { transform: perspective(800px) rotateY(0deg); }
      .situation-item:hover .sit-back  { transform: perspective(800px) rotateY(180deg); }
      .situation-item.flipped .sit-front { transform: perspective(800px) rotateY(-180deg); }
      .situation-item.flipped .sit-back  { transform: perspective(800px) rotateY(0deg); }
      .situation-item:hover .sit-flip-hint { color: rgba(255,255,255,.55); transform: none; }
      .situation-item.flipped .sit-flip-hint { color: rgba(255,255,255,.9); transform: scaleX(-1); }

      .situation-num { font-size: 1.6rem; }
      .situation-action { padding-top: 0; }

      /* Moniteur encore plus petit sur 390px */
      .zoom-device-wrap { max-width: 460px; }

      /* Collab titre trop large sur 390px */
      .collab h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
      h3, .h3, .situation-tag { font-size: 1.25rem; }

      .services, .projects, .testimonials, .process, .about, .blog, .collab { padding: 56px var(--space-sm); }
      .cta-banner { padding: 56px var(--space-sm); min-height: 100svh; }
      /* Note : le padding-top des fp-sections est géré globalement par
         .fp-section { padding-top: 104px + safe-area } dans le bloc carrousels mobile */
      .about, .process { justify-content: initial !important; }
      .footer-newsletter-form { width: 100%; }

      /* Très petits écrans : libère l'espace dans la section À propos */
      .about-content .body[style*="italic"] { display: none; }
      .about-image img { max-height: 32vh; }
    }

    /* ══════════════════════════════════════════════════════
       RESPONSIVE — hauteur d'écran (masque le ticker si trop petit)
    ══════════════════════════════════════════════════════ */
    @media (max-height: 820px) {
      .reviews-ticker { display: none; }
    }

    /* ══════════════════════════════════════════════════════
       FULL PAGE SCROLL
    ══════════════════════════════════════════════════════ */
    html, body { overflow: hidden; height: 100%; }

    .fp-section {
      position: fixed !important;
      top: 0; left: 0;
      width: 100%;
      height: 100vh;
height: 100svh;
      overflow: hidden;
      will-change: transform;
      transform: translateY(100vh);
      visibility: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-sizing: border-box;
    }

    .fp-section.fp-active {
      visibility: visible;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      transform: none; /* "none" ≠ translateY(0) : ne crée pas de containing block
                          pour position:fixed/sticky → widgets tiers non cassés */
    }

    /* Hero : l'inner .hero redevient absolu dans son wrapper fixé */
    .fp-section.hero-zoom-wrapper .hero { position: absolute !important; }

    /* Service slides en fp */
    .fp-section.svc-slide-outer .svc-slide { height: 100vh;
height: 100svh; }

    /* Sections dont le contenu peut dépasser 100vh : aligner en haut pour
       éviter que justify-content:center coupe le haut lors du scroll interne */
    .testimonials.fp-section,
    .social.fp-section { justify-content: flex-start; }

    /* Dot nav */
    #fp-nav {
      position: fixed;
      right: 20px; top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 9999;
    }
    .fp-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(55,57,46,0.25);
      border: none; padding: 0;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .fp-dot.fp-dot-active {
      background: var(--dark);
      transform: scale(1.4);
    }

    /* ── Override post-FP : dot nav caché sur mobile ─────────── */
    /* Doit venir APRÈS #fp-nav { display:flex } pour l'écraser   */
    @media (max-width: 920px) {
      #fp-nav { display: none; }
    }

    /* ══════════════════════════════════════════════════════
       MOBILE — Cartes en carrousels horizontaux (TikTok style)
       Chaque section tient en 100vh, scroll vertical = section suivante.
       Cartes glissables horizontalement avec dots indicateurs.
       Sous-services (.svc-slide-outer) = NON modifiés, on garde l'existant.
    ══════════════════════════════════════════════════════ */
    @media (max-width: 920px) {
      /* Containers carrousels horizontaux : helper commun */
      .situations-list,
      .projects-grid,
      .testimonials-grid,
      .blog-grid,
      .process-steps,
      .process-steps--list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: var(--space-md);
        padding: 4px var(--space-sm) 8px;
        scroll-padding-left: var(--space-sm);
        margin: 0 calc(var(--space-sm) * -1);
        width: calc(100% + var(--space-sm) * 2);
        cursor: grab;
        overscroll-behavior-x: contain;
        align-items: stretch;
      }
      .situations-list::-webkit-scrollbar,
      .projects-grid::-webkit-scrollbar,
      .testimonials-grid::-webkit-scrollbar,
      .blog-grid::-webkit-scrollbar,
      .process-steps::-webkit-scrollbar,
      .process-steps--list::-webkit-scrollbar { display: none; }

      .situations-list.dragging,
      .projects-grid.dragging,
      .testimonials-grid.dragging,
      .blog-grid.dragging,
      .process-steps.dragging,
      .process-steps--list.dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
      }

      /* Tailles unitaires */
      .situations-list > .situation-item,
      .projects-grid > .project-card,
      .testimonials-grid > .testimonial-card,
      .blog-grid > .blog-card {
        flex: 0 0 88vw;
        max-width: 420px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
      }
      .process-steps > .process-step,
      .process-steps--list > .process-step {
        flex: 0 0 78vw;
        max-width: 360px;
        scroll-snap-align: center;
        padding: 0;
        border-bottom: none;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: var(--space-md);
        flex-direction: column !important;
        align-items: flex-start;
        gap: 12px;
      }

      /* À propos : tient en 100vh sans scroll, image conservée */
      .about.fp-section {
        padding-bottom: 8px !important;
      }
      .about-inner {
        grid-template-columns: 1fr !important;
        gap: var(--space-sm) !important;
        align-items: start;
        height: 100%;
      }
      .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
      }
      .about-image img {
        max-width: 100%;
        border-radius: var(--radius-full);
      }
      .about-content {
        flex: 1 1 auto;
        min-height: 0;
      }
      .about-content .label { margin-bottom: 4px; }
      .about-content .h2 {
        font-size: clamp(1.25rem, 5vw, 1.65rem);
        line-height: 1.25;
        margin-bottom: 8px;
      }
      .about-content .body {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 8px;
      }
      .about-content .btn {
        margin-top: 4px;
        padding: 10px 20px;
        font-size: 0.85rem;
      }

      /* SociableKit Google Reviews : carousel horizontal swipe */
      .testimonials .sk-wrapper,
      .testimonials .sk-wrapper.masonry,
      .testimonials .js-masonry {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        height: auto !important;
        max-height: 70vh;
        gap: var(--space-md);
        padding: 0 var(--space-sm) 8px;
        margin: 0 calc(var(--space-sm) * -1);
        width: calc(100% + var(--space-sm) * 2) !important;
        cursor: grab;
        overscroll-behavior-x: contain;
      }
      .testimonials .sk-wrapper::-webkit-scrollbar,
      .testimonials .js-masonry::-webkit-scrollbar { display: none !important; }

      .testimonials .sk-masonry-item,
      .testimonials .js-masonry-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        flex: 0 0 85vw !important;
        max-width: 380px !important;
        width: 85vw !important;
        height: auto !important;
        scroll-snap-align: center !important;
        scroll-snap-stop: always !important;
        opacity: 1 !important;
      }
      .testimonials .sk-post {
        height: auto !important;
        max-height: none !important;
      }

      /* FAQ : cartes empilées verticalement, scroll vertical interne autorisé */
      .faq-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
        padding: 0;
      }
      .faq.fp-section,
      .faq.fp-section.fp-active {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
      }

      /* Situations mobile : pas de flip, tout le contenu visible d'un coup */
      .sit-card-inner {
        display: flex;
        flex-direction: column;
        min-height: 0;
        height: auto;
      }
      .sit-front,
      .sit-back {
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transition: none;
      }
      .situation-item:hover .sit-front,
      .situation-item.flipped .sit-front,
      .situation-item:hover .sit-back,
      .situation-item.flipped .sit-back {
        transform: none !important;
      }
      .sit-front {
        border-radius: var(--radius) var(--radius) 0 0;
        border-bottom: none;
      }
      .sit-back {
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: none;
      }
      .sit-flip-hint { display: none !important; }

      /* Situations : reset de l'ancien column + dimensions cartes */
      .situations-list { perspective: none; }
      .situation-item {
        min-height: 0;
        flex: 0 0 88vw !important;
        height: auto;
      }
      .sit-card-inner { min-height: 240px; height: auto; }

      /* Projects : neutralise les transforms desktop */
      .projects-grid {
        height: auto !important;
        grid-template-columns: none !important;
      }
      .projects-grid .project-card,
      .projects-grid.interactive .project-card {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        width: 88vw !important;
        max-width: 420px !important;
        height: auto !important;
        cursor: grab !important;
      }

      /* Toutes les sections tiennent en 100vh : pas de scroll interne vertical
         (TikTok style). La hauteur du contenu reste contenue.
         Padding-top = 56px (menu) + 32px (marge) = 88px. Le menu a un
         backdrop blur translucide donc une légère superposition reste lisible. */
      .fp-section {
        padding-top: 88px !important;
      }
      /* Sub-services : plein écran inchangés (padding interne géré par leur design) */
      .fp-section.svc-slide-outer {
        padding-top: 0 !important;
      }
      /* Section titre services : plein écran (vidéo bg full-bleed) — pas de padding */
      .fp-section.services-title-wrapper {
        padding-top: 0 !important;
      }
      .services-title-wrapper.fp-section .services-title-sticky {
        height: 100% !important;
      }
      /* Hero : plein écran. Le contenu interne gère sa propre marge top
         pour libérer la place du menu (qui se cache au scroll). */
      .fp-section.hero-zoom-wrapper {
        padding-top: 0 !important;
      }
      .fp-section.hero-zoom-wrapper .hero {
        top: 0 !important;
        height: 100% !important;
        padding-top: 0 !important;
      }

      .situations-immersive.fp-section,
      .projects.fp-section,
      .testimonials.fp-section,
      .process.fp-section,
      .about.fp-section,
      .blog.fp-section,
      .faq.fp-section,
      .collab.fp-section,
      .cta-banner.fp-section {
        justify-content: flex-start !important;
        padding-bottom: var(--space-md) !important;
        overflow: hidden !important;
      }
      .metrics-strip.fp-section {
        justify-content: center !important;
        align-items: center !important;
        padding-bottom: var(--space-md) !important;
        overflow: hidden !important;
      }
      .metrics-strip .metrics-grid {
        margin: auto;
      }
      .situations-immersive.fp-section.fp-active,
      .projects.fp-section.fp-active,
      .testimonials.fp-section.fp-active,
      .process.fp-section.fp-active,
      .about.fp-section.fp-active,
      .blog.fp-section.fp-active,
      .faq.fp-section.fp-active,
      .collab.fp-section.fp-active,
      .cta-banner.fp-section.fp-active,
      .metrics-strip.fp-section.fp-active {
        overflow: hidden !important;
      }

      /* Headers de sections : compacts en mobile pour libérer l'espace */
      .projects-header,
      .services-header,
      .testimonials-header,
      .blog-header,
      .faq-header,
      .process-header {
        margin-bottom: var(--space-sm) !important;
        padding-top: 0 !important;
      }
      .faq-header { padding-top: 0 !important; }
      .projects-header > a.btn { display: none; }
      .blog-header { padding-bottom: 0; }

      /* Dots indicateurs (générés en JS) */
      .mobile-dots {
        display: flex;
        gap: 6px;
        justify-content: center;
        margin: 14px auto 0;
        padding: 4px;
      }
      .mobile-dot {
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: rgba(55,57,46,0.20);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.25s, width 0.25s;
      }
      .mobile-dot.is-active {
        background: var(--dark);
        width: 22px;
      }
      /* Sections sombres → dots clairs */
      .cta-banner .mobile-dot {
        background: rgba(255,255,255,0.25);
      }
      .cta-banner .mobile-dot.is-active {
        background: var(--lavender);
      }

      /* Cartes process en mode horizontal : icône numérotée centrée */
      .process-steps--list .process-step .step-num {
        font-size: 2rem;
        margin-bottom: 0;
      }
    }
