/* ============================================================
   VELIX DIGITAL — SITE V3
   Direction : premium doux inspiré pixel-pop, palette Velix
   ============================================================ */

:root {
  /* Palette Velix (design system v1.4) */
  --purple: #b84dd6;
  --purple-deep: #7824c2;
  --lavender: #d2b0f9;
  --mint: #59d8c9;
  --amber: #ffbd59;
  --black: #1c1c1c;
  --off-white: #faf8f8;
  --white: #ffffff;

  /* Rôles */
  --bg: #faf8fc;
  --ink: #241d2b;
  --ink-strong: #1c1626;
  --ink-soft: #6b6377;
  --line: rgba(36, 29, 43, 0.1);
  --card: #ffffff;
  --card-shadow: 0 2px 6px rgba(60, 30, 90, 0.05), 0 24px 60px -18px rgba(60, 30, 90, 0.16);
  --card-shadow-hover: 0 4px 10px rgba(60, 30, 90, 0.07), 0 34px 80px -16px rgba(96, 42, 150, 0.28);
  --pill-shadow: 0 1px 2px rgba(60, 30, 90, 0.06), 0 12px 32px -8px rgba(60, 30, 90, 0.18);

  --font: "Gilroy", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  /* ---- Échelle d'espacement ----
     Le site utilisait 39 valeurs différentes, choisies une par une à l'œil :
     9, 10, 11, 12, 13, 14, 16, 18, 20, 22, 24, 26px… Des écarts d'un pixel que
     personne ne perçoit isolément, mais qui empêchent tout rythme vertical
     d'exister. Base 4px, progression proche du doublement : assez de paliers
     pour tout exprimer, assez peu pour que deux marges voisines soient soit
     identiques, soit franchement différentes.

     Correspondances : sp-1=4 sp-2=8 sp-3=12 sp-4=16 sp-5=24 sp-6=32 sp-7=48
                       sp-8=64 sp-9=96 sp-10=128 */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

h3 { line-height: 1.2; }

.ico { width: 1.05em; height: 1.05em; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico.star { fill: var(--amber); stroke: none; }
.ico.check .check-bg { fill: rgba(184, 77, 214, 0.14); stroke: none; }
.ico.check .check-mark { stroke: var(--purple-deep); stroke-width: 2.2; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--black); color: #fff; padding: 10px 18px; border-radius: 999px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 14px; }

.container { max-width: var(--max); margin-inline: auto; padding-inline: clamp(20px, 4.5vw, 64px); }
.container-narrow { max-width: 880px; }
/* Espacement vertical FIXE par palier : le rythme reste identique sur tous les
   écrans. Paliers 96 / 64 / 48 : deux sections consécutives donnaient 256px de
   blanc à 128px de padding, soit un tiers d'écran sans contenu. 96px sépare
   franchement deux sections sans que le regard ait à traverser du vide. */
.section { padding-block: var(--sp-9); }
@media (max-width: 1280px) { .section { padding-block: var(--sp-8); } }
@media (max-width: 940px)  { .section { padding-block: var(--sp-7); } }
@media (max-width: 560px)  { .section { padding-block: var(--sp-6); } }

::selection { background: rgba(184, 77, 214, 0.24); }

/* ============ NAV ============ */
.nav-shell {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 16px clamp(14px, 3vw, 28px) 0;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  width: min(1060px, 100%);
  display: flex; align-items: center; gap: var(--sp-5);
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--pill-shadow);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.nav-pill[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 4px rgba(60, 30, 90, 0.08), 0 18px 44px -10px rgba(60, 30, 90, 0.26);
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 30px; width: auto; }
.nav-links {
  display: flex; gap: 4px; margin-inline: auto;
}
.nav-links a {
  /* inline-flex + min-height : garantit les 24px WCAG 2.2 AA (2.5.8) même quand le
     menu passe en colonne sur mobile, où le padding seul ne suffisait pas. */
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 24px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--ink-strong); background: rgba(184, 77, 214, 0.08); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--ink-strong); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--purple-deep); }
.lang-switch {
  display: flex; padding: 3px; border-radius: 999px;
  background: rgba(36, 29, 43, 0.07);
}
.lang-switch button {
  padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
}
.lang-switch button.is-active {
  background: var(--card); color: var(--ink-strong);
  box-shadow: 0 2px 8px rgba(60, 30, 90, 0.18);
}
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(36, 29, 43, 0.07);
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.theme-toggle:hover { color: var(--ink-strong); background: rgba(184, 77, 214, 0.14); }
.theme-toggle .ico { width: 18px; height: 18px; }
.theme-toggle .ico-moon { display: none; }
html[data-theme="dark"] .theme-toggle .ico-sun { display: none; }
html[data-theme="dark"] .theme-toggle .ico-moon { display: block; }
.nav-brand .logo-dark { display: none; }
html[data-theme="dark"] .nav-brand .logo-light { display: none; }
html[data-theme="dark"] .nav-brand .logo-dark { display: block; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 12px; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink-strong); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ============ HERO ============ */
/* Hauteur FIXE par palier d'écran : la composition ne dépend plus de la hauteur du viewport */
.hero {
  position: relative;
  height: 860px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 150px 48px 48px;
  overflow: hidden;
}
@media (max-width: 1280px) { .hero { height: 800px; padding: 140px 40px 44px; } }
@media (max-width: 940px)  { .hero { height: 740px; padding: 130px 32px 40px; } }
@media (max-width: 560px)  { .hero { height: auto; min-height: 640px; padding: 110px 20px 40px; } }
.hero-sky { position: absolute; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(120% 80% at 15% 0%, #ffeef6 0%, transparent 55%),
    radial-gradient(110% 90% at 90% 8%, #e9d8ff 0%, transparent 60%),
    radial-gradient(120% 100% at 50% 105%, #f3e8ff 0%, transparent 62%),
    linear-gradient(180deg, #fdf3f6 0%, #f6edff 48%, #faf6ff 100%);
}
/* La vidéo se cale sur la LARGEUR : les deux galets restent toujours entièrement
   visibles, le dégradé du ciel comble le haut/bas. Centrage vertical par marge
   négative basée sur le ratio 2752/1536 de la vidéo (GSAP ne peut pas l'écraser). */
.hero-bg {
  position: absolute; left: 0; top: 50%;
  width: 100%; height: auto;
  margin-top: calc(100vw * (1536 / 2752) / -2);
}
@media (max-width: 860px) {
  /* Mobile : plein cadre, recadrage accepté */
  .hero-bg { inset: 0; width: 100%; height: 100%; object-fit: cover; margin-top: 0; top: 0; }
}
/* Scène glassmorphism CSS (alternative sans vidéo — réactivable en remettant
   .sky-wash + .glass-orb dans le markup du hero à la place de la vidéo) */
.sky-wash {
  position: absolute; inset: -20%;
  background:
    radial-gradient(42% 55% at 18% 30%, rgba(210, 176, 249, 0.5) 0%, transparent 70%),
    radial-gradient(46% 60% at 84% 62%, rgba(184, 77, 214, 0.28) 0%, transparent 72%),
    radial-gradient(50% 65% at 55% 85%, rgba(120, 36, 194, 0.16) 0%, transparent 75%),
    linear-gradient(180deg, #f3ecfb 0%, #ece2f8 55%, #f6f1fc 100%);
  animation: skyDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes skyDrift {
  0%   { transform: translate3d(-2.5%, -1.5%, 0) scale(1); }
  50%  { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
  100% { transform: translate3d(3%, -1%, 0) scale(1.02); }
}
.glass-orb {
  position: absolute;
  width: clamp(340px, 38vw, 640px); aspect-ratio: 1;
  border-radius: 44% 56% 58% 42% / 48% 44% 56% 52%;
  background:
    radial-gradient(58% 58% at 38% 40%, rgba(120, 36, 194, 0.5) 0%, rgba(184, 77, 214, 0.22) 48%, transparent 72%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0.42) 100%);
  box-shadow:
    inset 0 2px 14px rgba(255, 255, 255, 0.9),
    inset 0 -20px 50px rgba(120, 36, 194, 0.18),
    0 50px 110px -40px rgba(96, 42, 150, 0.4);
  filter: blur(1.5px) saturate(1.08);
  will-change: transform, border-radius;
}
.orb-left {
  left: max(-16vw, -260px); top: 50%; margin-top: -19vw;
  animation: orbMorph 24s ease-in-out infinite alternate, orbDriftL 34s ease-in-out infinite alternate;
}
.orb-right {
  right: max(-17vw, -280px); top: 46%; margin-top: -17vw;
  width: clamp(380px, 42vw, 700px);
  animation: orbMorph 28s ease-in-out infinite alternate-reverse, orbDriftR 40s ease-in-out infinite alternate;
}
@keyframes orbMorph {
  0%   { border-radius: 44% 56% 58% 42% / 48% 44% 56% 52%; }
  50%  { border-radius: 56% 44% 42% 58% / 42% 58% 46% 54%; }
  100% { border-radius: 48% 52% 55% 45% / 55% 45% 52% 48%; }
}
@keyframes orbDriftL {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(3.5vw, -3vh, 0) rotate(7deg) scale(1.05); }
  100% { transform: translate3d(1vw, 3vh, 0) rotate(-4deg) scale(0.98); }
}
@keyframes orbDriftR {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(-3vw, 3.5vh, 0) rotate(-8deg) scale(1.06); }
  100% { transform: translate3d(-1vw, -2.5vh, 0) rotate(5deg) scale(1); }
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(56% 52% at 50% 44%, rgba(255, 253, 255, 0.72) 0%, rgba(255, 250, 255, 0.32) 55%, transparent 78%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.blob-a { width: 44vw; height: 30vw; left: -10vw; top: 8vh; background: #ffd9ec; animation: drift 16s ease-in-out infinite alternate; }
.blob-b { width: 40vw; height: 28vw; right: -8vw; top: 20vh; background: var(--lavender); animation: drift 20s ease-in-out infinite alternate-reverse; }
.blob-c { width: 34vw; height: 24vw; left: 30vw; bottom: -6vh; background: #cdeffb; opacity: 0.4; animation: drift 24s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(5vw, 3vh, 0) scale(1.12); }
}
.hero-haze {
  position: absolute; inset-inline: 0; bottom: 0; height: 34%;
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bg) 55%, transparent) 45%, var(--bg) 92%, var(--bg) 100%);
}
/* Fondu haut : gomme la jonction entre la nav et le bord supérieur de la vidéo */
.hero-sky::after {
  content: ""; position: absolute; inset: 0 0 auto;
  height: 140px;
  background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 45%, transparent) 55%, transparent 100%);
}

.hero-inner { max-width: 1060px; }
.hero-chip { margin-bottom: var(--sp-5); }
.chip-mono {
  display: inline-block;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 9px 18px; border-radius: 10px;
  box-shadow: 0 8px 24px -10px rgba(60, 30, 90, 0.18);
}
.hero-title {
  font-size: clamp(36px, 4.9vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ink-strong);
}
.hero-title span { display: block; }
.hero-line-1 { font-weight: 500; opacity: 0.82; }
.hero-line-2 {
  font-weight: 800;
  background: linear-gradient(96deg, #3b2456 0%, var(--purple-deep) 55%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-bottom: 0.08em;
}
.hero-sub {
  margin: 20px auto 0; max-width: 640px;
  font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft);
}
.hero-pills {
  margin-top: var(--sp-5);
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3);
}
.hero-pills li {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px -12px rgba(60, 30, 90, 0.2);
  padding: 10px 18px; border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.hero-cta-zone { margin-top: var(--sp-6); display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
/* Marquee de logos partenaires : défilement continu, gris → couleur au survol */
.hero-clients {
  margin-top: var(--sp-8);
  width: min(880px, 100%);
  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);
}
.clients-track {
  display: flex; align-items: center;
  gap: clamp(var(--sp-6), 4.5vw, var(--sp-8));
  width: max-content;
  padding-inline: 24px;
  animation: marquee 45s linear infinite;
}
.hero-clients:hover .clients-track { animation-play-state: paused; }
.clients-track img {
  height: 70px; width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}
.clients-track img:hover { filter: none; opacity: 1; }
html[data-theme="dark"] .clients-track img {
  filter: grayscale(1) invert(1) brightness(1.6);
  opacity: 0.5;
}
html[data-theme="dark"] .clients-track img:hover { filter: none; opacity: 1; }
@media (max-width: 560px) { .clients-track img { height: 54px; } }

.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: var(--sp-3);
  background: var(--ink-strong); color: #fff;
  padding: 8px 8px 8px 28px; border-radius: 999px;
  font-size: 16.5px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(28, 22, 38, 0.24), 0 22px 48px -12px rgba(96, 42, 150, 0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, var(--purple-deep), var(--purple));
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.btn-primary > * { position: relative; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(28, 22, 38, 0.26), 0 30px 60px -12px rgba(120, 36, 194, 0.55); }
.btn-primary:hover::before { opacity: 1; }
.btn-orb {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.35s var(--ease), background 0.35s;
}
.btn-primary:hover .btn-orb { transform: translateX(3px); background: rgba(255, 255, 255, 0.26); }
.btn-lg { font-size: 18px; padding: 10px 10px 10px 32px; }
.btn-lg .btn-orb { width: 48px; height: 48px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: #fff; color: var(--ink-strong);
  border: 1px solid var(--line);
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 16px;
  box-shadow: 0 12px 30px -14px rgba(60, 30, 90, 0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(184, 77, 214, 0.5); box-shadow: 0 18px 40px -14px rgba(96, 42, 150, 0.32); }

.cta-note { font-size: 14px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: var(--sp-2); }
.cta-note b { color: var(--ink); font-weight: 600; }
.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #2fbf71; flex: none; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(47, 191, 113, 0.5);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* Hero reveal (entrée) */
/* Cascade légèrement resserrée par rapport à l'origine (0,92s -> 0,62s de délai cumulé) :
   assez pour garder l'effet d'entrée, sans faire attendre le premier écran.
   Le vrai coût du premier rendu est ailleurs — c'est l'évaluation de GSAP. */
.hero-reveal { opacity: 0; transform: translateY(26px); animation: heroIn 0.85s var(--ease) forwards; }
.hero-reveal:nth-child(1), .hero-chip { animation-delay: 0.08s; }
.hero-title .hero-reveal:nth-child(1) { animation-delay: 0.16s; }
.hero-title .hero-reveal:nth-child(2) { animation-delay: 0.26s; }
.hero-sub { animation-delay: 0.36s; }
.hero-pills { animation-delay: 0.44s; }
.hero-cta-zone { animation-delay: 0.52s; }
.hero-clients { animation-delay: 0.62s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ============ KICKERS & HEADINGS ============ */
.kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--purple-deep); font-weight: 500;
  margin-bottom: var(--sp-4);
}
.kicker-light { color: var(--lavender); }
.section-head { margin-bottom: clamp(var(--sp-6), 4.5vw, var(--sp-8)); max-width: 720px; }
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.1; font-weight: 700; color: var(--ink-strong);
}
.section-head p { margin-top: var(--sp-3); font-size: 18px; color: var(--ink-soft); max-width: 56ch; }
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255, 255, 255, 0.66); }

/* ============ CAS CLIENTS ============ */
.work { padding-top: clamp(var(--sp-7), 6vw, var(--sp-9)); }
/* Deux colonnes sur desktop : cartes verticales (image + contenu), page plus courte */
.work-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.6vw, 36px); }
.case-card {
  display: flex; flex-direction: column;
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(14px, 1.6vw, 22px);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.case-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.case-media {
  border-radius: var(--radius-md); overflow: hidden; display: block;
  background: #efe9f6;
}
.case-media img { transition: transform 0.9s var(--ease); }
.case-card:hover .case-media img { transform: scale(1.04); }
.case-body { padding: 22px 12px 12px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
.case-body .case-link { margin-top: auto; padding-top: var(--sp-5); }
.case-tags { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-2); }
.case-tags h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; color: var(--ink-strong); margin-right: 6px; }
.tag { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.tag-sep { color: rgba(36, 29, 43, 0.3); font-size: 12px; }
.case-award {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  background: rgba(255, 189, 89, 0.16);
  border: 1px solid rgba(255, 189, 89, 0.45);
  padding: 6px 14px; border-radius: 999px; margin-bottom: var(--sp-4);
}
.case-copy { color: var(--ink-soft); font-size: 16.5px; max-width: 46ch; }
.case-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-5); font-weight: 600; font-size: 15.5px; color: var(--purple-deep);
  transition: gap 0.3s var(--ease);
}
.case-link:hover { gap: var(--sp-3); }
.work-more { display: flex; justify-content: center; margin-top: clamp(var(--sp-6), 4vw, var(--sp-7)); }
.work-stat {
  margin-top: clamp(var(--sp-7), 6vw, var(--sp-9));
  text-align: center;
  font-size: clamp(22px, 3vw, 34px); font-weight: 500; color: var(--ink-soft);
}
.work-stat b {
  font-weight: 800;
  background: linear-gradient(96deg, var(--purple-deep), var(--purple));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Bande stat pleine largeur : champ de verre Velix en parallaxe (piloté GSAP) */
/* La bande vit DANS une .section, qui apporte déjà son padding-block. Sa marge
   propre s'y ajoutait (128 + 96 + 150 = 374px au-dessus du chiffre) : trois
   espaces empilés que rien ne justifiait. La marge tombe à sp-6 et le padding
   interne suffit à isoler la bande. */
.stat-band {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: var(--sp-6);
  padding: var(--sp-9) var(--sp-5);
  overflow: hidden;
  text-align: center;
}
@media (max-width: 1280px) { .stat-band { padding: var(--sp-8) var(--sp-5); } }
@media (max-width: 940px)  { .stat-band { padding: var(--sp-7) var(--sp-5); } }
.stat-band-wash {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(46% 60% at 12% 28%, rgba(210, 176, 249, 0.42) 0%, transparent 70%),
    radial-gradient(50% 65% at 88% 68%, rgba(184, 77, 214, 0.24) 0%, transparent 72%),
    radial-gradient(60% 70% at 50% 108%, rgba(120, 36, 194, 0.14) 0%, transparent 75%),
    linear-gradient(180deg, var(--bg) 0%, #f0e8fa 45%, var(--bg) 100%);
}
.glass-el {
  position: absolute; z-index: 0;
  height: auto; pointer-events: none;
  filter: drop-shadow(0 26px 50px rgba(96, 42, 150, 0.3));
  will-change: transform;
}
/* Tous les galets restent entiers dans la bande : à -6% / -10% ils étaient sectionnés
   net par l'arête basse, ce qui trahissait le débordement au lieu de suggérer la
   profondeur. Le flou et l'échelle portent désormais seuls la hiérarchie de plans. */
.glass-el-1 { left: 5%; top: 14%; width: clamp(70px, 9vw, 150px); filter: blur(3px) drop-shadow(0 26px 50px rgba(96, 42, 150, 0.25)); }
.glass-el-2 { right: 6%; top: 10%; width: clamp(110px, 14vw, 220px); }
.glass-el-3 { left: 13%; bottom: 8%; width: clamp(90px, 11vw, 180px); transform: rotate(-14deg); filter: blur(1px) drop-shadow(0 26px 50px rgba(96, 42, 150, 0.3)); }
.glass-el-4 { right: 17%; bottom: 10%; width: clamp(60px, 8vw, 130px); filter: blur(4px) drop-shadow(0 20px 40px rgba(96, 42, 150, 0.22)); }
.stat-band .work-stat {
  position: relative; z-index: 1;
  margin-top: 0;
}
.stat-band .work-stat b {
  display: block;
  font-size: clamp(72px, 12vw, 152px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}
.stat-band .work-stat span {
  display: block;
  font-size: clamp(17px, 2.2vw, 26px);
}
@media (max-width: 560px) {
  .glass-el-3, .glass-el-4 { display: none; }
  .stat-band { padding-block: 64px; }
}
html[data-theme="dark"] .stat-band-wash {
  background:
    radial-gradient(46% 60% at 12% 28%, rgba(120, 36, 194, 0.35) 0%, transparent 70%),
    radial-gradient(50% 65% at 88% 68%, rgba(184, 77, 214, 0.2) 0%, transparent 72%),
    linear-gradient(180deg, var(--bg) 0%, #1c1329 45%, var(--bg) 100%);
}
html[data-theme="dark"] .glass-el { filter: saturate(1.15) brightness(0.85) drop-shadow(0 26px 50px rgba(0, 0, 0, 0.5)); }

/* ============ BÉNÉFICES (bento) ============ */
.benefits { background: linear-gradient(180deg, var(--bg) 0%, #f5eefb 60%, var(--bg) 100%); }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.bento-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 24px 24px 28px;
  box-shadow: var(--card-shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.bento-card h3 { font-size: 19px; font-weight: 700; color: var(--ink-strong); margin-bottom: var(--sp-2); }
.bento-card p { font-size: 15px; color: var(--ink-soft); }
.bento-visual {
  height: 150px; border-radius: var(--radius-md);
  background: linear-gradient(150deg, #f6efff 0%, #fdeef7 100%);
  margin-bottom: var(--sp-5);
  display: grid; place-items: center; overflow: hidden;
  position: relative;
}
.bv-message { display: flex; flex-direction: column; gap: var(--sp-2); align-items: flex-start; }
.bv-bubble {
  font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  background: #fff; box-shadow: 0 6px 16px -6px rgba(60, 30, 90, 0.25);
}
.bv-bubble-b { align-self: center; background: var(--ink-strong); color: #fff; }
.bv-bubble-c { align-self: flex-end; background: rgba(89, 216, 201, 0.2); color: #0d7d6d; border: 1px solid rgba(89, 216, 201, 0.5); }
.bv-type { text-align: center; }
.bv-type span { display: block; font-size: 52px; font-weight: 800; line-height: 1;
  background: linear-gradient(96deg, var(--purple-deep), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bv-type small { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.08em; }
.bv-steps { display: flex; gap: var(--sp-2); }
.bv-steps i {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 2px solid rgba(120, 36, 194, 0.18);
  position: relative;
}
.bv-steps i.done { background: var(--purple-deep); border-color: var(--purple-deep); }
.bv-steps i.done::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 700; }
.bv-steps i.active { border-color: var(--purple); box-shadow: 0 0 0 5px rgba(184, 77, 214, 0.16); }
.bv-auto { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }
.bv-chip { font-size: 12.5px; font-weight: 600; background: #fff; padding: 7px 13px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(60, 30, 90, 0.22); }
.bv-chip-you { background: var(--ink-strong); color: #fff; }

/* ============ PROCESS ============ */
.steps { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 44px); }
.step-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 72px);
  align-items: center;
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.6vw, 56px);
  box-shadow: var(--card-shadow);
}
/* Empilement sticky des cartes au scroll (effet deck, façon pixel-pop) */
@media (min-width: 861px) {
  .step-card {
    position: sticky;
    top: calc(104px + var(--stack-i, 0) * 14px);
    transform-origin: center top;
    will-change: transform, filter;
  }
  .step-card:nth-child(1) { --stack-i: 0; }
  .step-card:nth-child(2) { --stack-i: 1; }
  .step-card:nth-child(3) { --stack-i: 2; }
  .step-card:nth-child(4) { --stack-i: 3; }
}
.step-card.is-flipped .step-info { order: 2; }
.step-card.is-flipped .step-visual { order: 1; }
.step-badge {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  background: rgba(184, 77, 214, 0.1);
  color: var(--purple-deep);
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em;
  padding: 7px 18px 7px 7px; border-radius: 999px;
  margin-bottom: var(--sp-4);
}
.step-badge-ico {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  box-shadow: 0 4px 10px -4px rgba(96, 42, 150, 0.45);
}
.step-badge-ico .ico { width: 16px; height: 16px; }
.step-info h3 { font-size: clamp(22px, 2.6vw, 32px); font-weight: 700; color: var(--ink-strong); margin-bottom: var(--sp-3); }
.step-copy { color: var(--ink-soft); margin-bottom: var(--sp-5); max-width: 48ch; }
.step-info ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.step-info li {
  display: flex; align-items: center; gap: var(--sp-3);
  background: #e9f6ec; color: #1b6b40;
  padding: 13px 18px; border-radius: 13px;
  font-size: 15.5px; font-weight: 600;
}
.step-info .ico.check .check-bg { fill: rgba(47, 191, 113, 0.16); }
.step-info .ico.check .check-mark { stroke: #1e9c5a; }
.step-visual {
  min-height: 230px; border-radius: var(--radius-md);
  background: linear-gradient(150deg, #f4ecfe 0%, #fdeef7 100%);
  display: grid; place-items: center; overflow: hidden;
}
.sv-board { position: relative; width: 74%; background: #fff; border-radius: 16px; padding: 22px; box-shadow: 0 18px 40px -14px rgba(60, 30, 90, 0.3); }
.sv-tag { display: inline-block; font-size: 12px; font-weight: 600; background: #f1eaf9; padding: 6px 12px; border-radius: 999px; margin: 0 6px 10px 0; }
.sv-tag-purple { background: rgba(184, 77, 214, 0.16); color: var(--purple-deep); }
.sv-tag-dark { background: var(--ink-strong); color: #fff; }
.sv-line { height: 8px; border-radius: 6px; background: #eee7f5; margin-top: var(--sp-2); }
.sv-line-short { width: 60%; }
.sv-canvas { position: relative; display: grid; place-items: center; }
.sv-frame {
  width: 150px; height: 110px; background: #fff; border-radius: 14px;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -14px rgba(60, 30, 90, 0.3);
  font-size: 38px; font-weight: 800;
  background-image: linear-gradient(#fff, #fff);
}
.sv-frame span { background: linear-gradient(96deg, var(--purple-deep), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sv-swatches { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); justify-content: center; }
.sv-swatches i { width: 22px; height: 22px; border-radius: 50%; box-shadow: 0 4px 10px -2px rgba(60, 30, 90, 0.3); }
.sv-swatches i:nth-child(1) { background: var(--purple); }
.sv-swatches i:nth-child(2) { background: var(--purple-deep); }
.sv-swatches i:nth-child(3) { background: var(--lavender); }
.sv-swatches i:nth-child(4) { background: var(--ink-strong); }
.sv-checks { display: flex; flex-direction: column; gap: var(--sp-3); }
.sv-check-pill {
  font-size: 14px; font-weight: 600;
  background: #fff; padding: 10px 20px; border-radius: 999px;
  box-shadow: 0 12px 26px -10px rgba(60, 30, 90, 0.28);
  display: inline-flex; align-items: center; gap: var(--sp-2);
}
.sv-check-pill::before { content: "✓"; color: #2fbf71; font-weight: 800; }
.sv-check-perf::before { color: var(--purple-deep); }
.sv-growth { display: flex; align-items: flex-end; gap: var(--sp-3); height: 130px; }
.sv-growth i {
  width: 26px; height: var(--h, 40%); border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-deep) 100%);
  opacity: 0.85;
  animation: grow 1.4s var(--ease) both;
}
.sv-growth i:nth-child(odd) { opacity: 0.45; }
@keyframes grow { from { height: 8%; } }

/* ============ CTA INTERMÉDIAIRE ============ */
.midcta { padding-block: clamp(var(--sp-5), 4vw, var(--sp-7)); }
.midcta-card {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 4vw, 72px);
  align-items: center;
  background: linear-gradient(120deg, #241d2b 0%, #3a2154 55%, #56258b 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.5vw, 64px);
  box-shadow: 0 30px 80px -20px rgba(60, 30, 90, 0.5);
}
.midcta-card blockquote p { font-size: clamp(19px, 2.2vw, 26px); font-weight: 600; line-height: 1.4; }
.midcta-card footer { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: 2px; }
.midcta-card footer b { font-size: 15px; }
.midcta-card footer span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--lavender); }
.midcta-action { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
.midcta-action .btn-primary { background: #fff; color: var(--ink-strong); box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.45); }
.midcta-action .btn-primary .btn-orb { background: rgba(120, 36, 194, 0.12); }
.midcta-action .btn-primary:hover { color: #fff; }
.midcta-action .cta-note { color: rgba(255, 255, 255, 0.72); }

/* ============ OFFRE ============ */
.offer-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(20px, 2.6vw, 36px); align-items: start; }
.offer-core {
  background: var(--card); border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 48px);
  box-shadow: var(--card-shadow-hover);
  border: 1px solid rgba(184, 77, 214, 0.22);
  position: relative; overflow: hidden;
}
.offer-core::before {
  content: ""; position: absolute; inset: 0 0 auto;
  height: 5px; background: linear-gradient(90deg, var(--purple-deep), var(--purple), var(--lavender));
}
.offer-core-head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-2); }
.offer-core-head h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; color: var(--ink-strong); }
.offer-badge {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  background: linear-gradient(96deg, var(--purple-deep), var(--purple)); color: #fff;
  padding: 7px 14px; border-radius: 999px;
}
.offer-core-sub { color: var(--ink-soft); margin-bottom: var(--sp-5); max-width: 46ch; }
.offer-list { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.offer-list li { display: flex; align-items: center; gap: var(--sp-3); font-size: 15.5px; font-weight: 500; }
.offer-core-foot { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
.offer-ext {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
.offer-ext-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-2); }
.offer-ext-head h3 { font-size: 22px; font-weight: 700; color: var(--ink-strong); }
.offer-ext-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; color: var(--ink-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.offer-ext-sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: var(--sp-5); }
.ext-list { display: flex; flex-direction: column; }
.ext-list li { padding: 16px 0; border-top: 1px solid var(--line); }
.ext-list li:first-child { border-top: 0; }
.ext-list b { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink-strong); margin-bottom: 3px; }
.ext-list p { font-size: 14.5px; color: var(--ink-soft); }

/* ============ PERFORMANCE ============ */
/* Section sombre avec entrées/sorties en dégradé lumineux : le fondu voyage
   par des violets saturés (jamais de gris terne), halos recentrés au cœur */
.perf {
  background:
    radial-gradient(55% 38% at 78% 48%, rgba(184, 77, 214, 0.22) 0%, transparent 60%),
    radial-gradient(48% 34% at 20% 58%, rgba(120, 36, 194, 0.26) 0%, transparent 60%),
    linear-gradient(180deg,
      var(--bg) 0%,
      #ddc9f2 7%,
      #9a63cf 16%,
      #4a2a72 27%,
      #1b1326 40%,
      #171220 50%,
      #1b1326 60%,
      #4a2a72 73%,
      #9a63cf 84%,
      #ddc9f2 93%,
      var(--bg) 100%);
  color: #fff;
  padding-block: 200px;
}
html[data-theme="dark"] .perf {
  background:
    radial-gradient(55% 38% at 78% 48%, rgba(184, 77, 214, 0.2) 0%, transparent 60%),
    radial-gradient(48% 34% at 20% 58%, rgba(120, 36, 194, 0.24) 0%, transparent 60%),
    linear-gradient(180deg,
      var(--bg) 0%,
      #2a1b40 10%,
      #3d2360 22%,
      #1b1326 38%,
      #14101c 50%,
      #1b1326 62%,
      #3d2360 78%,
      #2a1b40 90%,
      var(--bg) 100%);
}
@media (max-width: 1280px) { .perf { padding-block: 176px; } }
@media (max-width: 940px)  { .perf { padding-block: 150px; } }
@media (max-width: 560px)  { .perf { padding-block: 120px; } }
.perf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.perf-grid article {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 50px -24px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: background 0.4s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.perf-grid article:hover {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 30px 60px -22px rgba(120, 36, 194, 0.45);
}
.perf-grid b {
  display: block; font-size: clamp(34px, 3.6vw, 52px); font-weight: 800; line-height: 1;
  background: linear-gradient(96deg, #e8d5ff, var(--lavender), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: var(--sp-3);
}
.perf-grid span { font-size: 14.5px; color: rgba(255, 255, 255, 0.66); }

/* ============ NUAGES DÉCORATIFS ============ */
.cloud-accent {
  position: absolute; z-index: 0;
  width: clamp(70px, 8vw, 130px); height: auto;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 18px 34px rgba(96, 42, 150, 0.2));
  animation: cloudFloat 9s ease-in-out infinite alternate;
}
.cloud-accent-a { right: 7%; top: 12%; left: auto; }
.cloud-accent-b { left: 4%; bottom: 10%; right: auto; transform: scaleX(-1) scale(0.85); animation-delay: -4s; filter: blur(2px) drop-shadow(0 18px 34px rgba(96, 42, 150, 0.16)); }
/* Rentré dans le cadre : à 3% la sphère effleurait l'arête droite de la page et donnait
   l'impression d'un élément mal placé plutôt que d'un accent flottant. */
.cloud-accent-c { right: 7%; top: 8%; transform: scale(0.8) rotate(-6deg); animation-delay: -7s; }
@keyframes cloudFloat {
  from { translate: 0 0; }
  to { translate: 0 -18px; }
}
/* clip horizontal : les accents flottants animés ne doivent jamais élargir la page.
   `clip` plutôt que `hidden` pour ne pas créer de conteneur de défilement parasite. */
.offer, .quotes { position: relative; overflow-x: clip; }
.offer .container, .quotes .container { position: relative; z-index: 1; }
@media (max-width: 860px) { .cloud-accent { display: none; } }
html[data-theme="dark"] .cloud-accent { filter: brightness(0.6) saturate(0.9) drop-shadow(0 24px 40px rgba(0, 0, 0, 0.4)); }
html[data-theme="dark"] .final-bg { filter: brightness(0.45) saturate(0.85) hue-rotate(-8deg); }
html[data-theme="dark"] .final-glow {
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(20, 16, 25, 0.55) 14%, transparent 34%),
    radial-gradient(52% 40% at 50% 22%, rgba(20, 14, 30, 0.6) 0%, rgba(20, 14, 30, 0.28) 55%, transparent 80%);
}

/* ============ TÉMOIGNAGES ============ */
.quotes { overflow: hidden; position: relative; padding-bottom: var(--sp-7); }
.marquee { position: relative; margin-top: var(--sp-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: var(--sp-5); width: max-content;
  animation: marquee 42s linear infinite;
  padding-block: 10px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.quote-card {
  width: min(400px, 82vw);
  background: var(--card); border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--card-shadow);
  flex: none;
  display: flex; flex-direction: column;
}
.quote-card blockquote { font-size: 16.5px; font-weight: 500; line-height: 1.55; color: var(--ink); }
.quote-card figcaption { margin-top: auto; padding-top: var(--sp-4); display: flex; align-items: baseline; gap: var(--sp-2); }
.quote-card figcaption b { font-size: 14.5px; }
.quote-card figcaption span { font-size: 13.5px; color: var(--purple-deep); font-weight: 600; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: var(--card); border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(184, 77, 214, 0.3); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: 20px 24px;
  font-size: 17px; font-weight: 600; color: var(--ink-strong);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 20px; height: 20px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--purple-deep); border-radius: 2px;
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { inset: 9px 3px; }
.faq-icon::after { inset: 3px 9px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { color: var(--ink-soft); font-size: 16px; max-width: 62ch; }

/* ============ CTA FINAL ============ */
/* Le padding-top s'ajoutait aux 128px de la section précédente : ~288px entre la
   dernière carte et le sur-titre « CONTACT », soit un écran de vide sur un
   portable. Le paysage en bas justifie une réserve généreuse, mais elle n'a pas
   besoin de 480px : le footer vient s'y superposer. */
.final-cta {
  position: relative; overflow: hidden;
  padding: clamp(var(--sp-7), 6vw, var(--sp-9)) 0 clamp(200px, 26vw, 380px);
  text-align: center;
}
.final-sky { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, #f7eefc 100%);
}
.final-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
}
.final-glow {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(250, 248, 252, 0.55) 14%, transparent 34%),
    radial-gradient(52% 40% at 50% 22%, rgba(255, 253, 255, 0.72) 0%, rgba(255, 250, 255, 0.3) 55%, transparent 80%);
}
.final-inner { display: flex; flex-direction: column; align-items: center; }
.final-inner .kicker { margin-bottom: var(--sp-5); }
.final-inner h2 {
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.08; font-weight: 700; color: var(--ink-strong);
}
.final-inner h2 em {
  font-style: normal; font-weight: 800;
  background: linear-gradient(96deg, var(--purple-deep), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.final-sub { margin-top: var(--sp-5); max-width: 54ch; color: var(--ink-soft); font-size: 18px; }
.final-actions { margin-top: var(--sp-7); display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
.final-meta {
  margin-top: var(--sp-8);
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3) 34px;
  font-size: 14.5px; color: var(--ink-soft);
}
.final-meta a { font-weight: 600; color: var(--ink); transition: color 0.25s; }
.final-meta a:hover { color: var(--purple-deep); }

/* ============ FOOTER (carte glassmorphism sur le paysage) ============ */
.footer {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(26px) saturate(1.4);
  -webkit-backdrop-filter: blur(26px) saturate(1.4);
  color: var(--ink);
  padding: clamp(var(--sp-6), 4.5vw, var(--sp-8)) 0 32px;
  width: min(1360px, calc(100% - 32px));
  margin: calc(-1 * clamp(180px, 22vw, 320px)) auto 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 40px 90px -30px rgba(96, 42, 150, 0.4);
  position: relative; z-index: 2;
}
.footer .logo-dark { display: none; }
html[data-theme="dark"] .footer .logo-light { display: none; }
html[data-theme="dark"] .footer .logo-dark { display: block; }
html[data-theme="dark"] .footer {
  background: rgba(23, 18, 32, 0.5);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 40px 90px -30px rgba(0, 0, 0, 0.6);
}
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; gap: var(--sp-5) 48px; align-items: center; }
.footer-brand img { height: 34px; width: auto; }
.footer-tagline { font-size: 15px; color: var(--ink-soft); }
.footer-links { display: flex; gap: var(--sp-5); font-size: 15px; }
.footer-links a { color: var(--ink-soft); transition: color 0.25s; }
.footer-links a:hover { color: var(--ink-strong); }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid rgba(36, 29, 43, 0.14);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) 32px; justify-content: space-between;
  font-size: 13.5px; color: var(--ink-soft);
}
.footer-top { color: var(--ink); transition: color 0.25s; }
.footer-top:hover { color: var(--purple-deep); }

/* ============ CIBLES TACTILES — WCAG 2.2 AA (2.5.8 Target Size Minimum) ============ */
/* Ces liens mesuraient 22-23px de haut : il manquait 1 à 2px. Les passer en
   inline-flex avec une hauteur minimale suffit — un lien inline ignore le padding
   vertical dans le calcul de sa boîte, d'où l'échec malgré le padding existant.
   Aucun impact visuel : le texte ne bouge pas, seule la zone cliquable grandit. */
.footer-col a,
.footer-bottom a,
.footer-top {
  display: inline-flex; align-items: center;
  min-height: 24px;
}
html[data-theme="dark"] .footer-tagline,
html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .footer-bottom { color: rgba(255, 255, 255, 0.62); }
html[data-theme="dark"] .footer-links a:hover { color: #fff; }
html[data-theme="dark"] .footer-bottom { border-top-color: rgba(255, 255, 255, 0.12); }
html[data-theme="dark"] .footer-top { color: rgba(255, 255, 255, 0.8); }
html[data-theme="dark"] .footer-top:hover { color: #fff; }

/* ============ REVEAL AU SCROLL ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
/* ---- Laptop / petite résolution desktop ---- */
@media (max-width: 1100px) {
  .hero-title { font-size: clamp(36px, 5.6vw, 58px); }
}
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .midcta-card { grid-template-columns: 1fr; }
}
/* ---- Tablette ---- */
@media (max-width: 940px) {
  .work-list { grid-template-columns: 1fr; }
  .case-copy { max-width: none; }
}
@media (max-width: 860px) {
  .step-card { grid-template-columns: 1fr; }
  .step-card.is-flipped .step-visual { order: 0; }
  .step-card.is-flipped .step-info { order: 1; }
  .nav-links {
    position: absolute; top: calc(100% + 10px); inset-inline: 0;
    flex-direction: column; align-items: stretch; text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: var(--pill-shadow);
    padding: 14px;
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-pill[data-menu-open="true"] .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px; }
  .nav-burger { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 12px; }
}
/* ---- Mobile ---- */
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .hero-pills { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { justify-content: center; }
  .nav-pill { padding: 8px 8px 8px 16px; gap: var(--sp-2); }
  .nav-brand img { height: 24px; }
  .lang-switch button { padding: 5px 9px; font-size: 12px; }
  .theme-toggle { width: 34px; height: 34px; }
  .case-body { padding: 16px 6px 8px; }
}

/* ============ THÈME SOMBRE ============ */
html[data-theme="dark"] {
  --bg: #141019;
  --ink: #e9e4f0;
  --ink-strong: #f6f2fa;
  --ink-soft: #a89dbb;
  --line: rgba(255, 255, 255, 0.12);
  --card: #1e1827;
  --card-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 24px 60px -18px rgba(0, 0, 0, 0.55);
  --card-shadow-hover: 0 4px 10px rgba(0, 0, 0, 0.4), 0 34px 80px -16px rgba(120, 36, 194, 0.4);
  --pill-shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px -8px rgba(0, 0, 0, 0.55);
}
html[data-theme="dark"] body { background: var(--bg); }
html[data-theme="dark"] .nav-pill {
  background: rgba(26, 20, 34, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}
html[data-theme="dark"] .nav-pill[data-elevated="true"] { background: rgba(26, 20, 34, 0.94); }
html[data-theme="dark"] .nav-links a:hover { background: rgba(184, 77, 214, 0.16); }
@media (max-width: 860px) {
  html[data-theme="dark"] .nav-links {
    background: rgba(26, 20, 34, 0.97);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
html[data-theme="dark"] .nav-cta { background: linear-gradient(96deg, var(--purple-deep), var(--purple)); }
html[data-theme="dark"] .nav-cta:hover { background: var(--purple-deep); }
html[data-theme="dark"] .nav-burger span { background: var(--ink-strong); }
html[data-theme="dark"] .lang-switch,
html[data-theme="dark"] .theme-toggle { background: rgba(255, 255, 255, 0.08); }

/* Hero : le ciel pastel devient crépuscule */
html[data-theme="dark"] .hero-sky { background: linear-gradient(180deg, #191227 0%, #1d1430 55%, #141019 100%); }
html[data-theme="dark"] .hero-bg { filter: brightness(0.62) saturate(1.7); }
html[data-theme="dark"] .sky-wash {
  background:
    radial-gradient(42% 55% at 18% 30%, rgba(120, 36, 194, 0.4) 0%, transparent 70%),
    radial-gradient(46% 60% at 84% 62%, rgba(184, 77, 214, 0.24) 0%, transparent 72%),
    radial-gradient(50% 65% at 55% 85%, rgba(210, 176, 249, 0.12) 0%, transparent 75%),
    linear-gradient(180deg, #191227 0%, #1e1531 55%, #171120 100%);
}
html[data-theme="dark"] .glass-orb {
  background:
    radial-gradient(58% 58% at 38% 40%, rgba(184, 77, 214, 0.45) 0%, rgba(120, 36, 194, 0.2) 48%, transparent 72%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow:
    inset 0 2px 14px rgba(255, 255, 255, 0.22),
    inset 0 -20px 50px rgba(120, 36, 194, 0.3),
    0 50px 110px -40px rgba(0, 0, 0, 0.6);
}
html[data-theme="dark"] .hero-glow { background: radial-gradient(56% 52% at 50% 44%, rgba(20, 14, 30, 0.55) 0%, rgba(20, 14, 30, 0.25) 55%, transparent 78%); }
html[data-theme="dark"] .chip-mono,
html[data-theme="dark"] .hero-pills li {
  background: rgba(30, 24, 40, 0.72);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}
html[data-theme="dark"] .hero-line-1 { color: #cfc5e2; }
/* Hero v1 : la ligne 2 entière portait le dégradé. En v2, seul le <em> le porte
   et le reste du texte est en couleur pleine — d'où `:not(.hero-v2 *)`.
   Sans cette exclusion, `background-clip: text` s'appliquait au parent alors que
   .hero-v2 .hero-line-2 remet `-webkit-text-fill-color: currentColor` : le texte
   plein ET le dégradé clippé se dessinaient l'un sur l'autre, donnant un titre
   dédoublé en mode sombre. */
html[data-theme="dark"] .hero-line-2:not(.hero-v2 *) {
  background: linear-gradient(96deg, #c9a0f2 0%, var(--purple) 60%, #e08cf5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
html[data-theme="dark"] .hero-clients span { color: rgba(233, 228, 240, 0.35); }
html[data-theme="dark"] .btn-primary { background: linear-gradient(96deg, var(--purple-deep), var(--purple)); }
html[data-theme="dark"] .btn-primary::before { background: #0f0b16; }
html[data-theme="dark"] .btn-ghost { background: var(--card); color: var(--ink-strong); }

/* Sections */
html[data-theme="dark"] .benefits { background: linear-gradient(180deg, var(--bg) 0%, #1b1326 60%, var(--bg) 100%); }
html[data-theme="dark"] .bento-visual,
html[data-theme="dark"] .step-visual { background: linear-gradient(150deg, #251b33 0%, #2b1c2e 100%); }
html[data-theme="dark"] .bv-bubble,
html[data-theme="dark"] .bv-chip { background: #322a42; color: var(--ink); }
html[data-theme="dark"] .bv-bubble-b, html[data-theme="dark"] .bv-chip-you { background: var(--purple-deep); color: #fff; }
html[data-theme="dark"] .bv-steps i { background: #322a42; }
html[data-theme="dark"] .sv-board, html[data-theme="dark"] .sv-frame, html[data-theme="dark"] .sv-check-pill { background: #2a2138; color: var(--ink); }
html[data-theme="dark"] .sv-tag { background: #3a2f4e; color: var(--ink); }
html[data-theme="dark"] .sv-tag-dark { background: var(--purple-deep); color: #fff; }
html[data-theme="dark"] .sv-line { background: #3a3049; }
html[data-theme="dark"] .step-info li { background: rgba(47, 191, 113, 0.12); color: #8ce4b4; }
html[data-theme="dark"] .step-info .ico.check .check-mark { stroke: #5ed695; }
html[data-theme="dark"] .case-award { background: rgba(255, 189, 89, 0.12); border-color: rgba(255, 189, 89, 0.3); color: #ffd9a0; }
html[data-theme="dark"] .case-media { background: #251d31; }
html[data-theme="dark"] .case-link { color: #c9a0f2; }
html[data-theme="dark"] .offer-ext { background: rgba(255, 255, 255, 0.04); }
html[data-theme="dark"] .quote-card figcaption span { color: #c9a0f2; }
html[data-theme="dark"] .faq-icon::before, html[data-theme="dark"] .faq-icon::after { background: #c9a0f2; }
html[data-theme="dark"] .final-sky {
  background:
    radial-gradient(100% 80% at 50% 110%, rgba(120, 36, 194, 0.32) 0%, transparent 60%),
    radial-gradient(90% 70% at 12% 0%, rgba(184, 77, 214, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #1a1226 100%);
}
html[data-theme="dark"] .final-inner h2 em {
  background: linear-gradient(96deg, #c9a0f2, #e08cf5);
  -webkit-background-clip: text; background-clip: text;
}
html[data-theme="dark"] .final-meta a { color: var(--ink); }
html[data-theme="dark"] .kicker { color: #c9a0f2; }
html[data-theme="dark"] .work-stat b,
html[data-theme="dark"] .bv-type span {
  background: linear-gradient(96deg, #c9a0f2, #e08cf5);
  -webkit-background-clip: text; background-clip: text;
}

/* ============ ACCESSIBILITÉ ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-reveal, .reveal { opacity: 1; transform: none; }
  .marquee-track, .clients-track { animation: none; flex-wrap: wrap; width: auto; }
}


/* ============================================================================
   SECTION V2 — surcharges de la refonte hero/nav/footer.
   Fusionnée depuis styles-v2.css le 29/07/2026. L'ordre est significatif :
   ces règles surchargent volontairement celles au-dessus (.nav-links,
   .nav-cta, .nav-brand, .footer-col, .ico). Ne pas remonter ce bloc.
   ============================================================================ */

/* ============================================================
   VELIX DIGITAL — HERO V2
   Surcouche de styles.css : signature visuelle « V », hero épuré,
   double CTA, références lisibles, projets remontés.
   ============================================================ */

/* ============ NAV AFFINÉE ============ */
/* Hauteur 68px, 22px du haut, largeur max 1140px */
.nav-shell { padding-top: var(--sp-5); }
.nav-pill {
  width: min(1140px, 100%);
  min-height: 68px;
  padding: 10px 10px 10px 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(184, 77, 214, 0.16);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(60, 30, 90, 0.04),
    0 12px 30px -14px rgba(60, 30, 90, 0.16);
}
.nav-pill[data-elevated="true"] {
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 4px rgba(60, 30, 90, 0.07),
    0 18px 44px -14px rgba(60, 30, 90, 0.26);
}
.nav-brand img { height: 38px; }
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 14.5px;
}
/* Indicateur de section active, discret */
.nav-links a::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 2px; height: 1.5px;
  border-radius: 2px;
  background: var(--purple);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-links a.is-current { color: var(--ink-strong); }
.nav-cta {
  padding: 10px 18px;
  font-size: 14.5px;
  white-space: nowrap;          /* jamais sur deux lignes */
}

/* Mode burger : .nav-links sort du flux (absolute), son margin auto ne pousse
   plus rien — on renvoie explicitement les actions à droite. */
@media (max-width: 860px) {
  .nav-pill { justify-content: space-between; }
  .nav-pill .nav-actions { margin-left: auto; }
}

/* Écrans intermédiaires (menu encore déplié, largeur serrée) : nav compactée */
@media (max-width: 1124px) {
  .nav-pill { min-height: 62px; padding: 8px 8px 8px 18px; gap: var(--sp-3); }
  .nav-brand img { height: 32px; }
  .nav-links a { padding: 7px 10px; font-size: 14px; }
  .nav-links a::after { left: 10px; right: 10px; }
  .nav-actions { gap: var(--sp-2); }
  .nav-cta { padding: 9px 15px; font-size: 13.5px; }
  .lang-switch button { padding: 5px 9px; font-size: 12px; }
  .theme-toggle { width: 34px; height: 34px; }
}
html[data-theme="dark"] .nav-pill {
  background: rgba(26, 20, 34, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 44px -14px rgba(0, 0, 0, 0.6);
}
html[data-theme="dark"] .nav-pill[data-elevated="true"] { background: rgba(26, 20, 34, 0.88); }

/* ============ HERO V2 ============ */
/* Hero seul : 720px, contenu en un bloc compact et centré */
.hero-v2 { height: 700px; padding: 124px 48px 36px; justify-content: center; }
@media (max-width: 1280px) { .hero-v2 { height: 680px; padding: 116px 40px 32px; } }
@media (max-width: 1124px) { .hero-v2 { height: 636px; padding: 104px 36px 28px; } }
@media (max-width: 940px)  { .hero-v2 { height: 600px; padding: 96px 32px 26px; } }
@media (max-width: 560px)  { .hero-v2 { height: auto; min-height: 580px; padding: 104px 20px 40px; } }

/* Voile lumineux stable derrière le contenu (contraste du texte garanti) */
.hero-v2 .hero-glow {
  background:
    radial-gradient(46% 52% at 50% 46%, rgba(255, 252, 255, 0.86) 0%, rgba(252, 248, 255, 0.62) 46%, rgba(250, 246, 255, 0.28) 68%, transparent 84%),
    linear-gradient(180deg, rgba(250, 248, 252, 0.5) 0%, transparent 22%);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
html[data-theme="dark"] .hero-v2 .hero-glow {
  background:
    radial-gradient(46% 52% at 50% 46%, rgba(16, 12, 24, 0.82) 0%, rgba(18, 13, 26, 0.6) 46%, rgba(20, 16, 25, 0.26) 68%, transparent 84%),
    linear-gradient(180deg, rgba(20, 16, 25, 0.55) 0%, transparent 22%);
}

/* Badge discret */
.hero-v2 .chip-mono {
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(60, 45, 80, 0.62);
  box-shadow: none;
}
html[data-theme="dark"] .hero-v2 .chip-mono {
  background: rgba(30, 24, 40, 0.5);
  color: rgba(233, 228, 240, 0.6);
}
.hero-v2 .hero-chip { margin-bottom: var(--sp-5); }

/* Titre : dégradé limité à quelques mots */
.hero-v2 .hero-title {
  font-size: clamp(38px, 5.1vw, 70px);
  line-height: 1.06;
  font-weight: 600;
}
.hero-v2 .hero-line-1 { font-weight: 600; opacity: 1; color: var(--ink-strong); }
.hero-v2 .hero-line-2 {
  font-weight: 600;
  color: var(--ink-strong);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.hero-v2 .hero-line-2 em {
  font-style: normal; font-weight: 700;
  background: linear-gradient(96deg, var(--purple-deep) 0%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
html[data-theme="dark"] .hero-v2 .hero-line-1,
html[data-theme="dark"] .hero-v2 .hero-line-2 { color: #ece6f5; }
/* Le parent .hero-line-2 remet `-webkit-text-fill-color: currentColor` pour
   afficher son texte en couleur pleine. Sans la remise à `transparent` ici, le
   `em` héritait de cette valeur tout en gardant `background-clip: text` : le
   texte s'affichait en couleur ET le dégradé clippé se superposait par-dessus,
   d'où un doublon visuel du titre en mode sombre. */
html[data-theme="dark"] .hero-v2 .hero-line-2 em {
  background: linear-gradient(96deg, #c9a0f2, #e08cf5);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Apparition progressive mot à mot */
.hero-v2 .word { display: inline-block; will-change: transform, opacity; }

.hero-v2 .hero-sub {
  margin-top: var(--sp-4);
  font-size: clamp(16.5px, 1.5vw, 19px);
  max-width: 560px;
}

/* Preuves : capsules à cadre avec pastille de validation pleine */
.hero-pills-v2 {
  margin-top: var(--sp-5);
  gap: var(--sp-3);
}
.hero-pills-v2 li {
  gap: var(--sp-2);
  padding: 7px 18px 7px 8px;
  font-size: 14.5px; font-weight: 500; line-height: 1.3;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 26px -14px rgba(60, 30, 90, 0.25);
}
.ico.check-solid { width: 20px; height: 20px; }
.ico.check-solid circle { fill: var(--purple-deep); stroke: none; }
.ico.check-solid path { stroke: #fff; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
html[data-theme="dark"] .hero-pills-v2 li {
  background: rgba(30, 24, 40, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 26px -14px rgba(0, 0, 0, 0.5);
}
html[data-theme="dark"] .ico.check-solid circle { fill: var(--purple); }

/* Double CTA */
.hero-actions {
  margin-top: var(--sp-6);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-3) 26px;
}
.btn-solid {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--ink-strong); color: #fff;
  padding: 16px 30px; border-radius: 999px;
  font-size: 16px; font-weight: 600;
  box-shadow: 0 3px 10px rgba(28, 22, 38, 0.2), 0 18px 40px -14px rgba(96, 42, 150, 0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.btn-solid::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.btn-solid:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 5px 14px rgba(28, 22, 38, 0.22), 0 26px 54px -14px rgba(120, 36, 194, 0.55); }
.btn-solid:hover::after { transform: translateX(130%); }
.btn-solid .ico { width: 16px; height: 16px; }
html[data-theme="dark"] .btn-solid { background: linear-gradient(96deg, var(--purple-deep), var(--purple)); }

.btn-quiet {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  padding: 14px 4px;
  transition: color 0.3s, gap 0.3s var(--ease);
}
.btn-quiet .ico { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn-quiet:hover { color: var(--purple-deep); gap: var(--sp-3); }
.btn-quiet:hover .ico { transform: translateX(2px); }
html[data-theme="dark"] .btn-quiet { color: var(--ink); }
html[data-theme="dark"] .btn-quiet:hover { color: #c9a0f2; }

.hero-note {
  margin-top: var(--sp-4);
  font-size: 13px; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: var(--sp-2);
}

/* ============ SECTION « ILS NOUS FONT CONFIANCE » ============ */
/* Section autonome dans le flux : ni absolute, ni sticky, ni marge négative */
.trust {
  height: 168px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-3);
  background: linear-gradient(180deg, rgba(244, 238, 252, 0.55), rgba(250, 248, 252, 0.9));
  border-top: 1px solid rgba(36, 29, 43, 0.07);
  border-bottom: 1px solid rgba(36, 29, 43, 0.07);
  overflow: hidden;
}
.trust-intro {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.8;
}
.trust-viewport {
  width: min(1180px, 100%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust .clients-track {
  gap: clamp(35px, 5vw, 35px);
  animation-duration: 60s;
}
.trust .clients-track img {
  height: 85px;
  opacity: 0.5;
  filter: grayscale(1) contrast(1.15) brightness(0.9);
  transition: opacity 0.3s, filter 0.3s;
}
.trust .clients-track img:hover { opacity: 1; filter: none; }
.trust:hover .clients-track { animation-play-state: paused; }
html[data-theme="dark"] .trust {
  background: linear-gradient(180deg, rgba(28, 19, 41, 0.6), rgba(20, 16, 25, 0.9));
  border-color: rgba(255, 255, 255, 0.08);
}
html[data-theme="dark"] .trust .clients-track img { opacity: 0.45; filter: grayscale(1) invert(1) brightness(1.6); }
html[data-theme="dark"] .trust .clients-track img:hover { opacity: 1; filter: none; }
@media (max-width: 940px) { .trust { height: 148px; } .trust .clients-track img { height: 70px; } }
@media (max-width: 560px) { .trust { height: 128px; } .trust .clients-track img { height: 56px; } }

/* ============ PROJETS REMONTÉS ============ */
.work-v2 { margin-top: 0; padding-top: var(--sp-8); position: relative; z-index: 2; }
@media (max-width: 940px) { .work-v2 { padding-top: var(--sp-8); } }
/* Grille : conteneur 1320px, colonnes égales, gouttières 30px / 72px, ratio 16:10 */
.work-v2 .container { max-width: 1320px; }
.work-v2 .work-list { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) 30px; }
.work-v2 .case-media { aspect-ratio: 16 / 10; }
.work-v2 .case-media img { width: 100%; height: 100%; object-fit: cover; }
.work-v2 .case-featured .case-media { aspect-ratio: 16 / 10; }
@media (max-width: 940px) { .work-v2 .work-list { grid-template-columns: 1fr; gap: var(--sp-6); } }
.work-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-5); margin-bottom: var(--sp-6);
}
.work-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; line-height: 1.15; color: var(--ink-strong);
}
.work-head .kicker { margin-bottom: var(--sp-2); }
.work-head-link { font-size: 15px; font-weight: 600; color: var(--purple-deep); white-space: nowrap; display: inline-flex; gap: var(--sp-2); align-items: center; transition: gap 0.3s var(--ease); }
.work-head-link:hover { gap: var(--sp-3); }
html[data-theme="dark"] .work-head-link { color: #c9a0f2; }

/* Étude de cas principale en pleine largeur */
.case-featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.case-featured .case-media { height: 100%; }
.case-featured .case-media img { height: 100%; object-fit: cover; }
.case-featured .case-body { padding: 8px 16px 8px 6px; }
.case-featured .case-tags h3 { font-size: clamp(26px, 2.8vw, 36px); }
@media (max-width: 940px) { .case-featured { grid-template-columns: 1fr; } }

/* Résultat concret par projet */
.case-result {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  background: rgba(184, 77, 214, 0.1);
  border: 1px solid rgba(184, 77, 214, 0.24);
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: var(--sp-4);
}
.case-result .ico { width: 14px; height: 14px; color: var(--purple-deep); }
html[data-theme="dark"] .case-result { background: rgba(184, 77, 214, 0.16); border-color: rgba(184, 77, 214, 0.3); color: #ece6f5; }
html[data-theme="dark"] .case-result .ico { color: #c9a0f2; }

/* Profondeur au survol des cartes projets */
.work-v2 .case-card { transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease); }
.work-v2 .case-card:hover { transform: translateY(-6px); }
.work-v2 .case-card:hover .case-media img { transform: scale(1.03); }

/* ============ 7. ANCRES : le titre ne passe plus sous la nav ============ */
section[id] { scroll-margin-top: var(--sp-9); }

/* ============ CARTE-INSTRUMENT : plus de bloc sombre ni de dégradés ============ */
.perf-v3 {
  background: none;              /* le fond clair de la page reprend ses droits */
  color: inherit;
  padding-block: 40px;
}
.perf-card {
  position: relative;
  overflow: hidden;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding: clamp(36px, 4.2vw, 68px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(70% 90% at 88% 12%, rgba(120, 36, 194, 0.34) 0%, transparent 60%),
    radial-gradient(60% 80% at 8% 92%, rgba(184, 77, 214, 0.18) 0%, transparent 60%),
    linear-gradient(150deg, #241a36 0%, #17111f 55%, #1b1428 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 40px 90px -34px rgba(60, 25, 100, 0.6);
  color: #fff;
}
/* Balayage de lumière au premier passage à l'écran */
.perf-sweep {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.09) 50%, transparent 66%);
  transform: translateX(-120%);
}
.perf-card.is-scanned .perf-sweep { animation: perfSweep 1.5s var(--ease) forwards; }
@keyframes perfSweep { to { transform: translateX(120%); } }
/* Tore de verre en profondeur : la DA Velix Glass entre enfin ici */
.perf-deco {
  position: absolute; right: -70px; top: -90px;
  width: clamp(220px, 26vw, 380px); height: auto;
  opacity: 0.12; pointer-events: none;
  filter: saturate(1.2);
}

.perf-intro { position: relative; z-index: 1; }
.perf-intro h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12; font-weight: 700; color: #fff;
  margin-bottom: var(--sp-4);
}
.perf-sub {
  font-size: 16px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 44ch;
}
.perf-pledge {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 13.5px; line-height: 1.4; color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 11px 18px; border-radius: 14px;
}
.perf-pledge .ico { width: 17px; height: 17px; flex: none; color: #9be3bc; }

/* ============ JAUGES DE VERRE ============ */
.gauges {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 34px);
}
.gauge { text-align: center; }
.gauge-ring {
  position: relative;
  width: clamp(104px, 11vw, 138px); aspect-ratio: 1;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 45%, transparent 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: box-shadow 0.4s var(--ease);
}
/* Cible uniquement le SVG de l'anneau, pas la pastille de validation.
   display:block est indispensable : en inline, le descender de la ligne de base
   ajoute ~8px sous le SVG et déforme le conteneur rond en ellipse. */
.gauge-ring > svg:not(.gauge-check) {
  display: block;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.gauge-track {
  fill: none; stroke: rgba(255, 255, 255, 0.1); stroke-width: 7;
}
.gauge-arc {
  fill: none; stroke: url(#gaugeGrad); stroke-width: 7; stroke-linecap: round;
  stroke: #c9a0f2;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;               /* vide par défaut, rempli par GSAP */
  filter: drop-shadow(0 0 7px rgba(184, 77, 214, 0.55));
}
.gauge-value {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: clamp(21px, 2.2vw, 27px); font-weight: 800; letter-spacing: -0.01em;
  color: #fff;
}
.gauge-check {
  position: absolute; right: 4%; bottom: 4%;
  width: 28px; height: 28px; flex: none;
  padding: 6px; border-radius: 50%;
  box-sizing: border-box;
  background: #2fbf71; color: #fff;
  stroke: currentColor; stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(0.6);
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.6);
}
.gauge.is-done .gauge-check { animation: checkPop 0.5s var(--ease) 0.5s forwards; }
@keyframes checkPop { to { opacity: 1; transform: scale(1); } }
.gauge p {
  font-size: 13px; line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  max-width: 20ch; margin-inline: auto;
}
.gauge:hover .gauge-ring { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 0 34px -6px rgba(184, 77, 214, 0.5); }

@media (max-width: 940px) {
  .perf-card { grid-template-columns: 1fr; }
  .perf-deco { right: -60px; top: -70px; }
}
@media (max-width: 560px) {
  .gauges { gap: var(--sp-5) 14px; }
  .gauge p { font-size: 12.5px; }
}

/* ============ 2+3. TÉMOIGNAGES : grille statique nominative ============ */
.quotes-v2 { padding-top: var(--sp-9); }
.quotes-v2 .section-head { margin-bottom: var(--sp-7); }
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  align-items: stretch;
}
.quote-card-v2 {
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px 26px;
  box-shadow: var(--card-shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.quote-card-v2:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.quote-card-v2 blockquote {
  font-size: 15.5px; line-height: 1.6; color: var(--ink);
  margin-bottom: var(--sp-5);
}
.quote-card-v2 figcaption {
  margin-top: auto; padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: var(--sp-3);
}
.quote-avatar {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--purple-deep), var(--purple));
  color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
}
.quote-id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.quote-id b { font-size: 15.5px; font-weight: 700; color: var(--ink-strong); }
.quote-id small { font-size: 12.5px; color: var(--ink-soft); line-height: 1.35; }
.quote-rel {
  align-self: flex-start;
  margin-top: 5px;
  font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--purple-deep);
  background: rgba(184, 77, 214, 0.1);
  padding: 3px 9px; border-radius: 6px;
}
html[data-theme="dark"] .quote-rel { color: #d9b6f7; background: rgba(184, 77, 214, 0.18); }

/* 4. CTA de conversion juste après la preuve sociale */
.quotes-cta {
  margin-top: var(--sp-7);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3);
}
@media (max-width: 940px) { .quotes-grid { grid-template-columns: 1fr; gap: var(--sp-4); } }

/* ============ 5. RATTRAPAGE EN FIN DE FAQ ============ */
.faq-rescue {
  margin-top: var(--sp-6);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-4) 24px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(184, 77, 214, 0.07), rgba(120, 36, 194, 0.05));
  border: 1px solid rgba(184, 77, 214, 0.2);
}
.faq-rescue b { display: block; font-size: 17px; color: var(--ink-strong); margin-bottom: 3px; }
.faq-rescue span { font-size: 14.5px; color: var(--ink-soft); }
.faq-rescue .btn-quiet { padding: 10px 4px; }
html[data-theme="dark"] .faq-rescue {
  background: linear-gradient(120deg, rgba(184, 77, 214, 0.12), rgba(120, 36, 194, 0.08));
  border-color: rgba(184, 77, 214, 0.26);
}

/* ============ NUAGES FLOTTANTS : effet de cadre autour du contenu ============ */
.hero-cloud {
  position: absolute; z-index: 1;
  height: auto; pointer-events: none; user-select: none;
  filter: drop-shadow(0 26px 44px rgba(96, 42, 150, 0.14));
  will-change: transform;
}
/* Les nuages sont soit entièrement dans le cadre, soit franchement sortis : un décor
   effleuré par le bord se lit comme une erreur de placement, pas comme une composition.
   D'où des retraits positifs et un fondu latéral (masque) sur ceux qui touchent l'arête. */
/* Grand nuage en bas à gauche, au premier plan */
.hero-cloud-1 { left: 2%; bottom: 6%; width: clamp(200px, 24vw, 370px); }
/* Nuage moyen à droite, à mi-hauteur */
.hero-cloud-2 { right: 2.5%; top: 32%; width: clamp(150px, 18vw, 280px); }
/* Petit nuage haut-gauche, le plus lointain */
.hero-cloud-3 { left: 10%; top: 12%; width: clamp(100px, 13vw, 200px); opacity: 0.9; }
/* Respiration lente, décalée pour chaque nuage */
.hero-cloud-1 { animation: cloudDrift 13s ease-in-out infinite alternate; }
.hero-cloud-2 { animation: cloudDrift 17s ease-in-out infinite alternate-reverse; }
.hero-cloud-3 { animation: cloudDrift 21s ease-in-out infinite alternate; }
@keyframes cloudDrift {
  from { translate: 0 0; }
  to { translate: 2% -12px; }
}
html[data-theme="dark"] .hero-cloud { filter: brightness(0.55) saturate(1.2) drop-shadow(0 26px 44px rgba(0, 0, 0, 0.45)); }
/* Pas de masque de fondu : les nuages sont détourés proprement (aucun pixel opaque ne
   touche les bords du PNG) et entièrement dans le cadre. Un masque les écrêterait
   sans raison. */
@media (max-width: 860px) {
  .hero-cloud-3 { display: none; }
  /* Sous 860px la place manque : les nuages sortent franchement du cadre (>40% de leur
     masse hors champ), ce qui se lit comme un cadrage voulu et non comme une coupe. */
  .hero-cloud-1 { bottom: 2%; left: -18%; }
  .hero-cloud-2 { right: -16%; top: 26%; }
}

/* ============ VIDÉO DU HERO : couvre toujours toute la hauteur ============ */
/* min-width + min-height : la vidéo grandit jusqu'à couvrir la plus contraignante
   des deux dimensions. Calée sur la largeur seule, elle laissait une bande vide
   en bas dès que le viewport passait sous ~1250px. */
.hero-v2 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;   /* le V converge au centre : rognage minimal et symétrique */
}

/* ============ CLÔTURE : un seul décor pour le CTA final + le footer ============ */
/* Avant, le footer remontait sur le paysage par marge négative : sa hauteur
   variant selon la langue et la largeur (345px desktop, 730px mobile), il
   finissait toujours par déborder sur le fond clair. Le décor englobe
   désormais les deux : le raccord est juste par construction. */
.closing { position: relative; overflow: hidden; }
.closing .final-sky { position: absolute; inset: 0; z-index: 0; }
.closing .final-bg { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* Ancrage sombre du bas : garantit un fond profond sous le footer quelle que
   soit la portion d'image visible (écrans très hauts ou très étroits). */
.closing-anchor {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 0%, transparent 42%,
    rgba(23, 17, 31, 0.28) 66%,
    rgba(20, 15, 27, 0.72) 88%,
    rgba(18, 13, 24, 0.86) 100%);
}
.closing .final-cta {
  position: relative; z-index: 1;
  background: none;
  padding-bottom: clamp(var(--sp-8), 8vw, var(--sp-10));
}

/* ============ FOOTER : carte de verre sombre, contraste garanti ============ */
/* Le footer clair translucide tombait à 1,5:1 de contraste au-dessus des zones
   violettes du paysage. En verre nuit, la lisibilité ne dépend plus de l'image. */
.footer-v2 {
  background: rgba(20, 15, 28, 0.72);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 40px 90px -30px rgba(10, 5, 20, 0.7);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(40px, 4.6vw, 60px) 0 30px;
  /* plus de marge négative : le décor .closing couvre déjà toute la zone */
  position: relative; z-index: 1;
  margin: 0 auto 28px;
}
html[data-theme="dark"] .footer-v2 { background: rgba(14, 10, 20, 0.8); }

.footer-v2 .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: var(--sp-7) 48px;
  align-items: start;
}
.footer-v2 .footer-brand img { height: 34px; width: auto; }
.footer-v2 .footer-tagline {
  margin-top: var(--sp-4);
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
}

/* Colonnes de liens */
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
.footer-col-title {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  /* 0.42 donnait 4,05:1 sur le footer en thème sombre — sous le seuil AA de 4,5:1
     pour ce corps de texte. 0.56 remonte à ~5,6:1 sans changer la hiérarchie. */
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s;
}
.footer-col a:hover { color: #fff; }

/* Réseaux sociaux en pastilles de verre */
.footer-social { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(184, 77, 214, 0.24);
  border-color: rgba(184, 77, 214, 0.5);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(184, 77, 214, 0.7);
}
.footer-social svg {
  width: 19px; height: 19px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.footer-social svg .dot { fill: currentColor; stroke: none; }

/* Barre du bas */
.footer-v2 .footer-bottom {
  grid-column: 1 / -1;
  margin-top: var(--sp-2); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) 32px; justify-content: space-between;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.48);
}
.footer-v2 .footer-bottom a { color: rgba(255, 255, 255, 0.62); transition: color 0.25s; }
.footer-v2 .footer-bottom a:hover { color: #fff; }

@media (max-width: 940px) {
  .footer-v2 .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-v2 .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-v2 .footer-bottom { justify-content: flex-start; }
}

/* ============ ACCESSIBILITÉ ============ */
/* Le hero a été une vidéo à un moment ; il est aujourd'hui une image servie par
   <picture> avec trois largeurs. La règle qui plaquait un poster vidéo en fond sous
   640px a été retirée : elle chargeait une image de 41 Ko inutile sous celle du hero. */
@media (prefers-reduced-motion: reduce) {
  .hero-v2 .word { opacity: 1 !important; transform: none !important; }
  .btn-solid::after { display: none; }
}
