/* ============================================================
   HOME2025.CSS — Zoïs Propreté · Refonte page d'accueil
   ------------------------------------------------------------
   Style : "Trust & Authority" + Social Proof (premium B2B).
   Tout est scopé sous .zh pour ne rien impacter ailleurs.
   Police : Plus Jakarta Sans (chargée dans layout/base.html).
   Icônes : Material Symbols Rounded (chargées globalement).
   ============================================================ */

.zh {
  /* Couleurs de marque */
  --zh-ink:        #0B1220;
  --zh-navy:       #0F172A;
  --zh-brand:      #2563EB;
  --zh-brand-700:  #1D4ED8;
  --zh-brand-300:  #93C5FD;
  --zh-emerald:    #10B981;
  --zh-emerald-600:#059669;
  --zh-gold:       #F59E0B;

  --zh-body:       #475569;
  --zh-muted:      #8A97AA;
  --zh-line:       #E6EBF2;
  --zh-bg:         #FFFFFF;
  --zh-soft:       #F5F8FC;
  --zh-soft-2:     #EEF3FA;

  /* Surfaces / rayons / ombres */
  --zh-r-sm: 12px;
  --zh-r:    18px;
  --zh-r-lg: 26px;
  --zh-r-xl: 34px;
  --zh-pill: 999px;

  --zh-sh-sm: 0 1px 2px rgba(15,23,42,.05), 0 1px 1px rgba(15,23,42,.04);
  --zh-sh:    0 18px 40px -24px rgba(15,23,42,.35);
  --zh-sh-lg: 0 40px 80px -30px rgba(15,23,42,.45);
  --zh-glow:  0 18px 50px -12px rgba(37,99,235,.55);

  --zh-grad:  linear-gradient(120deg, #3B82F6 0%, #2563EB 45%, #10B981 110%);
  --zh-grad-soft: linear-gradient(120deg, #2563EB, #10B981);

  --zh-maxw: 1240px;
  --zh-ease: cubic-bezier(.22,.61,.36,1);

  font-family: var(--font-family, 'Plus Jakarta Sans', sans-serif);
  color: var(--zh-navy);
  background: var(--zh-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: clip;
}
.zh *,
.zh *::before,
.zh *::after { box-sizing: border-box; }

.zh h1, .zh h2, .zh h3, .zh h4, .zh p { margin: 0; }
.zh ul { list-style: none; padding: 0; margin: 0; }
.zh a { text-decoration: none; color: inherit; }
.zh img { display: block; max-width: 100%; }
.zh .material-symbols-rounded { line-height: 1; }

.zh-container {
  width: 100%;
  max-width: var(--zh-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Accessibilité : focus visible homogène */
.zh a:focus-visible,
.zh button:focus-visible,
.zh summary:focus-visible {
  outline: 3px solid var(--zh-brand);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ── En-tête de section générique ───────────────────────── */
.zh-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.zh-head.left { margin-left: 0; text-align: left; }
.zh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--zh-brand-700);
  background: color-mix(in srgb, var(--zh-brand) 11%, transparent);
  padding: 7px 14px; border-radius: var(--zh-pill);
}
.zh-eyebrow .material-symbols-rounded { font-size: 17px; }
.zh-h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.1;
  margin-top: 18px; color: var(--zh-ink);
}
.zh-sub {
  margin-top: 16px; font-size: 1.08rem; color: var(--zh-body);
}
.zh-grad-text {
  background: var(--zh-grad-soft);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── Boutons ────────────────────────────────────────────── */
.zh-btn {
  --b: var(--zh-brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  padding: 16px 28px; border-radius: var(--zh-pill);
  border: 1.5px solid transparent;
  transition: transform .25s var(--zh-ease), box-shadow .25s var(--zh-ease),
              background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.zh-btn .material-symbols-rounded { font-size: 20px; transition: transform .25s var(--zh-ease); }
.zh-btn-primary { background: var(--zh-brand); color: #fff; box-shadow: var(--zh-glow); }
.zh-btn-primary:hover { background: var(--zh-brand-700); transform: translateY(-2px); }
.zh-btn-primary:hover .material-symbols-rounded { transform: translateX(4px); }
.zh-btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.28); backdrop-filter: blur(8px);
}
.zh-btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.zh-btn-dark { background: var(--zh-ink); color: #fff; }
.zh-btn-dark:hover { transform: translateY(-2px); box-shadow: var(--zh-sh); }
.zh-btn-light { background: #fff; color: var(--zh-brand-700); box-shadow: var(--zh-sh-sm); }
.zh-btn-light:hover { transform: translateY(-2px); box-shadow: var(--zh-sh); }
.zh-btn-outline { background: transparent; color: var(--zh-ink); border-color: var(--zh-line); }
.zh-btn-outline:hover { border-color: var(--zh-brand); color: var(--zh-brand-700); transform: translateY(-2px); }

/* Les boutons sont des <a> : on remonte la spécificité de la couleur
   au-dessus de la règle de reset `.zh a { color: inherit }` (0,1,1). */
.zh-btn.zh-btn-primary,
.zh-btn.zh-btn-ghost,
.zh-btn.zh-btn-dark { color: #fff; }
.zh-btn.zh-btn-light { color: var(--zh-brand-700); }
.zh-btn.zh-btn-outline { color: var(--zh-ink); }
.zh a.zh-cta__phone { color: #fff; }

/* ════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════ */
.zh-hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(130px, 17vh, 200px) 0 clamp(150px, 18vh, 220px);
  background: var(--zh-ink);
  overflow: hidden; isolation: isolate;
}
.zh-hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background: url("/static/Banqueimage/back3.webp") center/cover no-repeat;
  transform: scale(1.06);
}
.zh-hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,18,32,.82) 0%, rgba(11,18,32,.55) 45%, rgba(11,18,32,.92) 100%),
    linear-gradient(105deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.30) 60%, transparent 100%);
}
/* Halos aurora */
.zh-hero__aurora {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(90px); opacity: .55; pointer-events: none;
  animation: zhFloat 16s ease-in-out infinite;
}
.zh-hero__aurora.a1 { width: 540px; height: 540px; top: -120px; left: -80px;
  background: radial-gradient(circle, #2563EB, transparent 65%); }
.zh-hero__aurora.a2 { width: 480px; height: 480px; bottom: -140px; right: -60px;
  background: radial-gradient(circle, #10B981, transparent 65%); animation-delay: -6s; }
@keyframes zhFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(20px,-26px) scale(1.08); }
}
/* Grille fine */
.zh-hero__grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 70%);
}

.zh-hero__inner { position: relative; max-width: 880px; color: #fff; }
.zh-hero__chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: var(--zh-pill);
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  font-size: .9rem; font-weight: 600; color: #E8EEF6;
}
.zh-hero__chip .material-symbols-rounded { font-size: 18px; color: var(--zh-emerald); }
.zh-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.03em;
  margin: 22px 0 0;
}
.zh-hero h1 .zh-grad-text {
  background: linear-gradient(100deg, #93C5FD, #5EEAD4 80%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.zh-hero__desc {
  margin-top: 22px; max-width: 600px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: #D5DEEA;
}
.zh-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.zh-hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-top: 34px;
}
.zh-hero__trust .ti {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .92rem; color: #CBD6E4; font-weight: 500;
}
.zh-hero__trust .ti .material-symbols-rounded { font-size: 19px; color: var(--zh-emerald); }
.zh-hero__trust .ti.rate .material-symbols-rounded { color: var(--zh-gold); }

/* Indicateur de scroll */
.zh-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: rgba(255,255,255,.7); z-index: 2; animation: zhBounce 2.4s infinite;
}
.zh-scroll .material-symbols-rounded { font-size: 34px; }
@keyframes zhBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Bandeau KPI flottant (chevauche le bas du hero) */
.zh-stats {
  position: relative; z-index: 3; margin-top: -78px;
}
.zh-stats__card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--zh-r-lg);
  box-shadow: var(--zh-sh-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.zh-stat { padding: 26px 22px; text-align: center; position: relative; }
.zh-stat + .zh-stat::before {
  content: ""; position: absolute; left: 0; top: 22%; height: 56%; width: 1px;
  background: var(--zh-line);
}
.zh-stat__num {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--zh-ink); display: inline-flex; align-items: baseline; gap: 2px;
}
.zh-stat__num .u { color: var(--zh-brand); }
.zh-stat__num .material-symbols-rounded { font-size: 1.6rem; color: var(--zh-emerald); }
.zh-stat__label { margin-top: 6px; font-size: .9rem; color: var(--zh-body); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   2. LOGOS / CONFIANCE
   ════════════════════════════════════════════════════════════ */
.zh-logos { padding: 64px 0 8px; background: var(--zh-bg); }
.zh-logos__title {
  text-align: center; font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--zh-muted); margin-bottom: 30px;
}
.zh-marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.zh-marquee__track {
  display: flex; align-items: center; gap: 64px; width: max-content;
  animation: zhMarquee 38s linear infinite;
}
.zh-marquee:hover .zh-marquee__track { animation-play-state: paused; }
.zh-marquee__track img {
  height: 46px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s;
}
.zh-marquee__track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes zhMarquee { to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   3. SECTEURS (bento)
   ════════════════════════════════════════════════════════════ */
.zh-sectors { padding: 88px 0; background: var(--zh-bg); }
.zh-bento {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
}
.zh-tile {
  position: relative; overflow: hidden; border-radius: var(--zh-r-lg);
  display: flex; align-items: flex-end; isolation: isolate;
  box-shadow: var(--zh-sh-sm); border: 1px solid var(--zh-line);
}
.zh-tile.feature { grid-column: span 2; grid-row: span 2; }
.zh-tile__img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform .7s var(--zh-ease);
}
.zh-tile::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(7,12,22,.45) 62%, rgba(7,12,22,.92) 100%);
  transition: background .4s;
}
.zh-tile:hover .zh-tile__img { transform: scale(1.07); }
.zh-tile__body { padding: 22px 24px; color: #fff; width: 100%; }
.zh-tile__body h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.zh-tile.feature .zh-tile__body h3 { font-size: 1.8rem; }
.zh-tile__body p {
  margin-top: 6px; font-size: .95rem; color: #DCE5F0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  max-height: 0; opacity: 0; transition: max-height .4s var(--zh-ease), opacity .35s, margin .4s;
}
.zh-tile:hover .zh-tile__body p { max-height: 60px; opacity: 1; }
.zh-tile__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: #fff;
}
.zh-tile__link .material-symbols-rounded { font-size: 18px; transition: transform .25s var(--zh-ease); }
.zh-tile:hover .zh-tile__link .material-symbols-rounded { transform: translateX(5px); }
.zh-sectors__more { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════════════════════
   4. POURQUOI ZOÏS (value props)
   ════════════════════════════════════════════════════════════ */
.zh-why { padding: 92px 0; background: var(--zh-soft); }
.zh-why__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.zh-vcard {
  background: #fff; border: 1px solid var(--zh-line); border-radius: var(--zh-r-lg);
  padding: 30px 28px; box-shadow: var(--zh-sh-sm);
  transition: transform .25s var(--zh-ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.zh-vcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--zh-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--zh-ease);
}
.zh-vcard:hover { transform: translateY(-6px); box-shadow: var(--zh-sh); border-color: transparent; }
.zh-vcard:hover::before { transform: scaleX(1); }
.zh-vicon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.zh-vicon .material-symbols-rounded { font-size: 30px; }
.zh-vicon.blue   { background: #EFF6FF; color: var(--zh-brand); }
.zh-vicon.green  { background: #ECFDF5; color: var(--zh-emerald-600); }
.zh-vicon.violet { background: #F5F3FF; color: #7C3AED; }
.zh-vicon.amber  { background: #FFF7ED; color: #EA580C; }
.zh-vicon.teal   { background: #F0FDFA; color: #0D9488; }
.zh-vicon.lime   { background: #F7FEE7; color: #65A30D; }
.zh-vcard h3 { font-size: 1.22rem; font-weight: 700; color: var(--zh-ink); }
.zh-vcard p { margin-top: 10px; color: var(--zh-body); font-size: .98rem; }

/* ════════════════════════════════════════════════════════════
   5. ESPACE CLIENT / TRAÇABILITÉ (différenciateur)
   ════════════════════════════════════════════════════════════ */
.zh-track {
  padding: 96px 0; background: var(--zh-ink); color: #fff;
  position: relative; overflow: hidden; isolation: isolate;
}
.zh-track__aurora {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  filter: blur(110px); opacity: .4; z-index: -1;
  background: radial-gradient(circle, #2563EB, transparent 65%);
  top: -160px; right: -120px;
}
.zh-track__wrap {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
.zh-track .zh-eyebrow { background: rgba(37,99,235,.18); color: #BBD3FF; }
.zh-track h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 800; letter-spacing: -.025em; margin-top: 18px; line-height: 1.12; }
.zh-track__lead { margin-top: 18px; color: #C6D2E2; font-size: 1.08rem; max-width: 520px; }
.zh-track__list { margin-top: 26px; display: grid; gap: 16px; }
.zh-track__list li { display: flex; gap: 14px; align-items: flex-start; }
.zh-track__list .ic {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(16,185,129,.16); color: #6EE7B7;
  display: flex; align-items: center; justify-content: center;
}
.zh-track__list .ic .material-symbols-rounded { font-size: 21px; }
.zh-track__list h4 { font-size: 1.02rem; font-weight: 700; color: #fff; }
.zh-track__list p { font-size: .92rem; color: #AEBCCE; margin-top: 2px; }
.zh-track__cta { margin-top: 32px; }

/* Maquette CSS d'un dashboard (aucune image externe) */
.zh-mock {
  background: linear-gradient(160deg, #182338, #0E1626);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--zh-r-lg);
  box-shadow: var(--zh-sh-lg); overflow: hidden; transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .5s var(--zh-ease);
}
.zh-mock:hover { transform: perspective(1400px) rotateY(0) rotateX(0); }
.zh-mock__bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07);
}
.zh-mock__bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.zh-mock__bar i:nth-child(1){ background:#FF5F57 } .zh-mock__bar i:nth-child(2){ background:#FEBC2E } .zh-mock__bar i:nth-child(3){ background:#28C840 }
.zh-mock__url {
  margin-left: 10px; font-size: .72rem; color: #93A2B8;
  background: rgba(255,255,255,.05); padding: 5px 12px; border-radius: 7px;
}
.zh-mock__body { padding: 20px; display: grid; gap: 14px; }
.zh-mock__row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.zh-mk-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 14px;
}
.zh-mk-card .lbl { font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; color: #8597AE; }
.zh-mk-card .val { font-size: 1.3rem; font-weight: 800; margin-top: 6px; color: #fff; }
.zh-mk-card .val.g { color: #6EE7B7; }
.zh-mk-card .val.b { color: #93C5FD; }
.zh-mock__panel {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 16px;
}
.zh-mock__panel .ph { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.zh-mock__panel .ph span { font-size: .8rem; color: #C6D2E2; font-weight: 600; }
.zh-mock__panel .ph .pill { font-size: .62rem; color: #6EE7B7; background: rgba(16,185,129,.16); padding: 3px 9px; border-radius: 999px; }
.zh-bars { display: flex; align-items: flex-end; gap: 9px; height: 92px; }
.zh-bars span {
  flex: 1; height: 100%; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #3B82F6, #2563EB);
  transform-origin: bottom; transform: scaleY(.15); transition: transform .9s var(--zh-ease);
}
.zh-bars span:nth-child(even){ background: linear-gradient(180deg, #34D399, #10B981); }
.zh-track.is-visible .zh-bars span { transform: scaleY(var(--h, .5)); }
.zh-mock__line {
  display: flex; align-items: center; gap: 12px; padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.zh-mock__line .dot { width: 30px; height: 30px; border-radius: 9px; background: rgba(37,99,235,.18); color:#93C5FD; display:flex; align-items:center; justify-content:center; }
.zh-mock__line .dot .material-symbols-rounded { font-size: 18px; }
.zh-mock__line .t1 { height: 9px; border-radius: 6px; background: rgba(255,255,255,.16); flex: 1; }
.zh-mock__line .t2 { height: 9px; border-radius: 6px; background: rgba(255,255,255,.09); width: 64px; }
.zh-mock__line .ok { color:#6EE7B7; font-size: 18px; }

/* ════════════════════════════════════════════════════════════
   6. PROCESS
   ════════════════════════════════════════════════════════════ */
.zh-process { background: var(--zh-bg); position: relative; }
/* La hauteur du track = distance de scroll « consommée » pendant que la scène est épinglée. */
.zh-proc-track { position: relative; height: 300vh; }
.zh-proc-stage {
  position: absolute; top: 0; left: 0; width: 100%;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden; isolation: isolate;
}
.zh-proc-stage.is-pinned { position: fixed; }              /* épinglé pendant la traversée */
.zh-proc-stage.is-after  { position: absolute; top: auto; bottom: 0; } /* relâché en bas */
.zh-process__aurora {
  position: absolute; width: 680px; height: 680px; border-radius: 50%;
  filter: blur(130px); opacity: .1; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, #2563EB 0%, #10B981 70%, transparent);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.zh-proc-stage .zh-container { position: relative; z-index: 1; width: 100%; }

/* ── Scène split épinglée : rail vertical + texte + photo qui crossfadent ── */
.zh-ps { display: grid; grid-template-columns: 56px 1fr; gap: clamp(28px, 4vw, 56px); max-width: 1120px; margin: 46px auto 0; align-items: stretch; }
/* rail vertical de progression */
.zh-ps__rail { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 6px 0; }
.zh-ps__railline { position: absolute; left: 50%; top: 24px; bottom: 24px; width: 3px; transform: translateX(-50%); background: var(--zh-line); border-radius: 999px; overflow: hidden; }
.zh-ps__fill { position: absolute; left: 0; top: 0; width: 100%; height: 0%; background: var(--zh-grad); border-radius: 999px; transition: height .15s linear; }
.zh-ps__dot {
  appearance: none; border: 0; cursor: pointer; font: inherit; position: relative; z-index: 1;
  width: 46px; height: 46px; margin: 0 auto; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 3px solid var(--zh-line); color: var(--zh-muted);
  font-weight: 800; font-size: .95rem;
  transition: transform .35s var(--zh-ease), background .35s, border-color .35s, color .35s, box-shadow .35s;
}
.zh-ps__dot.passed, .zh-ps__dot.active { background: var(--zh-grad); border-color: transparent; color: #fff; }
.zh-ps__dot.active { transform: scale(1.16); box-shadow: var(--zh-glow); }
/* scène : panneaux superposés qui crossfadent */
.zh-ps__stage { position: relative; min-height: 470px; }
.zh-ps__panel {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(26px, 4vw, 52px); align-items: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity .5s var(--zh-ease), transform .5s var(--zh-ease), visibility .5s;
  pointer-events: none;
}
.zh-ps__panel.active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.zh-ps__num {
  font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: clamp(56px, 6vw, 84px); line-height: 1;
  background: var(--zh-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.zh-ps__tag { display: block; margin-top: 10px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--zh-brand-700); }
.zh-ps__panel h3 { margin-top: 8px; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; color: var(--zh-ink); }
.zh-ps__panel .zh-ps__desc { margin-top: 12px; color: var(--zh-body); font-size: 1.02rem; line-height: 1.65; max-width: 42ch; }
.zh-ps__chip { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--zh-line); box-shadow: var(--zh-sh-sm); font-size: .85rem; font-weight: 700; color: var(--zh-ink); }
.zh-ps__chip .material-symbols-rounded { font-size: 17px; background: var(--zh-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.zh-ps__media { position: relative; height: 100%; min-height: 470px; border-radius: 22px; overflow: hidden; border: 1px solid var(--zh-line); box-shadow: var(--zh-sh); }
.zh-ps__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.1s var(--zh-ease); }
.zh-ps__panel.active .zh-ps__media img { transform: scale(1); }

/* ── Mobile : pas de pin, les 4 panneaux empilés en cartes ── */
@media (max-width: 860px) {
  .zh-proc-track { height: auto; }
  .zh-proc-stage {
    position: static !important; height: auto; min-height: 0;
    display: block; overflow: visible; padding: 84px 0;
  }
  .zh-ps { grid-template-columns: 1fr; max-width: 560px; margin: 36px auto 0; }
  .zh-ps__rail { display: none; }
  .zh-ps__stage { min-height: 0; }
  .zh-ps__panel {
    position: static; opacity: 1; visibility: visible; transform: none; pointer-events: auto;
    grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px;
    background: #fff; border: 1px solid var(--zh-line); border-radius: var(--zh-r-lg); box-shadow: var(--zh-sh-sm); padding: 18px;
  }
  .zh-ps__panel:last-child { margin-bottom: 0; }
  .zh-ps__media { order: -1; min-height: 0; height: auto; aspect-ratio: 16 / 10; }
  .zh-ps__media img { transform: none; }
  .zh-ps__num { font-size: 44px; }
}

/* ════════════════════════════════════════════════════════════
   7. TÉMOIGNAGES
   ════════════════════════════════════════════════════════════ */
.zh-reviews { padding: 92px 0; background: var(--zh-soft); }
.zh-reviews__rating {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 20px;
  background: #fff; border: 1px solid var(--zh-line); border-radius: var(--zh-pill);
  padding: 10px 20px; box-shadow: var(--zh-sh-sm);
}
.zh-reviews__rating .stars { color: var(--zh-gold); display: inline-flex; }
.zh-reviews__rating .stars .material-symbols-rounded { font-size: 22px; font-variation-settings: 'FILL' 1; }
.zh-reviews__rating b { font-size: 1.1rem; color: var(--zh-ink); }
.zh-reviews__rating span { color: var(--zh-body); font-size: .92rem; }
.zh-rgrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px;
}
.zh-rcard {
  background: #fff; border: 1px solid var(--zh-line); border-radius: var(--zh-r-lg);
  padding: 28px; box-shadow: var(--zh-sh-sm); position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s var(--zh-ease), box-shadow .3s;
}
.zh-rcard:hover { transform: translateY(-5px); box-shadow: var(--zh-sh); }
.zh-rcard__stars { color: var(--zh-gold); display: inline-flex; gap: 1px; margin-bottom: 14px; }
.zh-rcard__stars .material-symbols-rounded { font-size: 19px; font-variation-settings: 'FILL' 1; }
.zh-rcard__msg { color: var(--zh-navy); font-size: 1rem; line-height: 1.65; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.zh-rcard__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--zh-line); }
.zh-rcard__av {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  background: var(--zh-grad); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; overflow: hidden;
}
.zh-rcard__av img { width: 100%; height: 100%; object-fit: cover; }
.zh-rcard__name { font-weight: 700; color: var(--zh-ink); font-size: .98rem; }
.zh-rcard__role { color: var(--zh-muted); font-size: .85rem; }
.zh-rcard__src { margin-left: auto; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 4px 9px; border-radius: 999px; }
.zh-rcard__src.g { color: var(--zh-brand-700); background: #EFF6FF; }
.zh-rcard__src.i { color: var(--zh-emerald-600); background: #ECFDF5; }
.zh-rcard__quote { position: absolute; top: 18px; right: 22px; color: var(--zh-soft-2); }
.zh-rcard__quote .material-symbols-rounded { font-size: 46px; }
.zh-reviews__cta { text-align: center; margin-top: 44px; }

/* ════════════════════════════════════════════════════════════
   8. FAQ
   ════════════════════════════════════════════════════════════ */
.zh-faq { padding: 92px 0; background: var(--zh-bg); }
.zh-faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.zh-faq__item {
  border: 1px solid var(--zh-line); border-radius: var(--zh-r);
  background: #fff; box-shadow: var(--zh-sh-sm); overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.zh-faq__item[open] { border-color: color-mix(in srgb, var(--zh-brand) 40%, transparent); box-shadow: var(--zh-sh); }
.zh-faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-weight: 700; font-size: 1.05rem; color: var(--zh-ink);
}
.zh-faq__q::-webkit-details-marker { display: none; }
.zh-faq__q .material-symbols-rounded {
  flex: 0 0 auto; color: var(--zh-brand); transition: transform .3s var(--zh-ease);
}
.zh-faq__item[open] .zh-faq__q .material-symbols-rounded { transform: rotate(45deg); }
.zh-faq__a { padding: 0 24px 22px; color: var(--zh-body); font-size: 1rem; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   9. CTA FINAL
   ════════════════════════════════════════════════════════════ */
.zh-cta { padding: 40px 0 96px; background: var(--zh-bg); }
.zh-cta__box {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--zh-grad); border-radius: var(--zh-r-xl);
  padding: clamp(40px, 6vw, 72px); color: #fff; text-align: center;
  box-shadow: var(--zh-glow);
}
.zh-cta__box::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.25), transparent 40%),
    radial-gradient(circle at 85% 90%, rgba(255,255,255,.18), transparent 45%);
}
.zh-cta__box h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.025em; }
.zh-cta__box p { margin-top: 14px; font-size: 1.12rem; color: #EAF1FF; max-width: 560px; margin-inline: auto; }
.zh-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.zh-cta__phone {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #fff;
  padding: 16px 24px; border-radius: var(--zh-pill);
  border: 1.5px solid rgba(255,255,255,.5);
}
.zh-cta__phone:hover { background: rgba(255,255,255,.15); }

/* ════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ════════════════════════════════════════════════════════════ */
.zh-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--zh-ease), transform .7s var(--zh-ease); }
.zh-reveal.is-visible { opacity: 1; transform: none; }
.zh-reveal.d1 { transition-delay: .08s; }
.zh-reveal.d2 { transition-delay: .16s; }
.zh-reveal.d3 { transition-delay: .24s; }
.zh-reveal.d4 { transition-delay: .32s; }
.zh-reveal.d5 { transition-delay: .40s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .zh-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .zh-tile.feature { grid-column: span 2; grid-row: span 1; }
  .zh-why__grid { grid-template-columns: repeat(2, 1fr); }
  .zh-track__wrap { grid-template-columns: 1fr; gap: 40px; }
  .zh-mock { transform: none; }
  .zh-rgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .zh-container { padding: 0 18px; }
  .zh-hero { padding: 120px 0 130px; text-align: left; }
  .zh-hero__cta .zh-btn { flex: 1 1 auto; }
  .zh-stats { margin-top: -64px; }
  .zh-stats__card { grid-template-columns: repeat(2, 1fr); }
  .zh-stat:nth-child(3)::before, .zh-stat:nth-child(1)::before { display: none; }
  .zh-stat:nth-child(3), .zh-stat:nth-child(4) { border-top: 1px solid var(--zh-line); }
  .zh-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .zh-tile.feature { grid-column: span 1; }
  .zh-tile__body p { max-height: 60px; opacity: 1; } /* lisible au tap sur mobile */
  .zh-why__grid { grid-template-columns: 1fr; }
  .zh-rgrid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .zh *, .zh *::before, .zh *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .zh-reveal { opacity: 1 !important; transform: none !important; }
  .zh-hero__bg { transform: none; }
}

/* ════════════════════════════════════════════════════════════
   HERO scroll-scrub : séquence d'images défilée au scroll
   ════════════════════════════════════════════════════════════ */
.zh-hs { position: relative; height: 320vh; background: var(--zh-ink); }
.zh-hs__sticky {
  position: absolute; top: 0; left: 0; width: 100%;
  height: 100svh; min-height: 540px;
  overflow: hidden; isolation: isolate;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.zh-hs__sticky.is-pinned { position: fixed; }                         /* épinglé pendant la traversée */
.zh-hs__sticky.is-after  { position: absolute; top: auto; bottom: 0; } /* relâché en bas du track */
.zh-hs__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 0;
}
.zh-hs__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,18,32,.74) 0%, rgba(11,18,32,.32) 40%, rgba(11,18,32,.52) 72%, rgba(11,18,32,.92) 100%),
    linear-gradient(100deg, rgba(11,18,32,.86) 0%, rgba(11,18,32,.25) 58%, transparent 100%);
}
.zh-hs__overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; }
.zh-hs__grid { display: grid; width: 100%; }
.zh-hs__grid > .zh-hs__beat { grid-area: 1 / 1; align-self: center; }
.zh-hs__beat { max-width: 880px; color: #fff; will-change: opacity, transform; }
.zh-hs__beat--2 { opacity: 0; max-width: 760px; }
.zh-hs__beat--2 .zh-hero__cta { margin-top: 30px; }

.zh-hs h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.03em; margin: 22px 0 0;
}
.zh-hs__big {
  font-size: clamp(2.4rem, 5.6vw, 4.3rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.03em; margin: 0;
}
.zh-hs__sub {
  margin-top: 20px; max-width: 560px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: #D5DEEA;
}
.zh-hs .zh-grad-text {
  background: linear-gradient(100deg, #93C5FD, #5EEAD4 80%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

@media (max-width: 860px) {
  .zh-hs { height: 260vh; }
}

/* Reduced-motion : pas de scrub, hero statique sur la 1re frame (poster CSS) */
@media (prefers-reduced-motion: reduce) {
  .zh-hs { height: auto; }
  .zh-hs__sticky { position: relative; top: auto; bottom: auto; height: 100svh; }
  .zh-hs__canvas { display: none; }
  .zh-hs__beat--2 { display: none; }
}
