/* ============================================================
   GB Studio · www.gbstudio.ca — site public
   Mécanique alignée sur passelemicro / go.gbstudio.ca :
   vanilla + GSAP + ScrollTrigger + SplitText + Lenis.
   Marque GB Studio : NOIR + ROUGE accent (pas d'orange).
   Le HTML déclare via data-*, le JS lit.
   ============================================================ */

:root {
  --black: #000000;
  --bg: #050505;
  --bg-2: #0b0a09;            /* noir légèrement chaud */
  --bg-3: #110f0e;
  --card: #100e0d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Rouge GB Studio — marque, CTA, accents */
  --red: #dc2626;
  --red-bright: #ef4444;
  --red-deep: #b91c1c;
  --red-glow: rgba(220, 38, 38, 0.35);
  --red-soft: rgba(220, 38, 38, 0.16);

  --white: #ffffff;
  --txt: #f6f4f2;
  --muted: #a8a29b;          /* gris chaud */
  --muted-2: #6e6862;

  /* Teinte gris-argile pour murs de logos partenaires (uniformisation) */
  --logo-tint: #cdc6bc;

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 1.75rem;
  --maxw: 1200px;
  --nav-h: 96px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
/* overflow-x: clip (et non hidden) — `hidden` crée un conteneur de défilement
   qui casse `position: sticky` (ciné-zoom + empilement du processus). `clip`
   coupe le débordement horizontal SANS établir de contexte de scroll. */
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--txt);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { line-height: 1.08; margin: 0; letter-spacing: -0.025em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.accent { color: var(--red-bright); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Masque pour le révélateur de titre ligne par ligne (SplitText) */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.16em; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--red); color: var(--white);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 13px 26px; border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, box-shadow .25s ease, border-color .2s ease;
  will-change: transform;
}
.btn:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 10px 30px var(--red-glow); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.22); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.45); box-shadow: none; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   LOGO + LOCKUP
   ============================================================ */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo__img { height: 60px; width: auto; }
.logo__lock { display: flex; flex-direction: column; line-height: 1.05; border-left: 1px solid var(--line-strong); padding-left: 13px; }
.logo__lock b { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; color: var(--white); }
.logo__lock b i { color: var(--red-bright); font-style: normal; }
.logo__lock span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ============================================================
   NAV (header) — Smart Nav + dropdown Services + menu mobile
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(5,5,5,0.45);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform .45s var(--ease-out), background .3s ease, border-color .3s ease;
}
.nav.is-scrolled { background: rgba(5,5,5,0.88); border-bottom-color: var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--nav-h); }

/* Liens principaux (desktop) */
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 999px; white-space: nowrap;
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link.is-active { background: rgba(255,255,255,0.05); }
.nav__link svg { width: 15px; height: 15px; transition: transform .25s ease; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* --- Dropdown Services --- */
.nav__item--has-menu { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 460px; max-width: 86vw;
  background: rgba(16,14,13,0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0,0,0,0.65);
  padding: 12px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__item--has-menu:hover .nav__link svg { transform: rotate(180deg); }
.nav__menu::before { /* pont invisible pour ne pas perdre le hover */
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.menu-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px; border-radius: var(--radius); border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.menu-card:hover { background: var(--bg-3); border-color: var(--line); transform: translateX(2px); }
.menu-card__icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 50% 0%, var(--red-soft), transparent 70%);
  border: 1px solid var(--line);
}
.menu-card__icon svg { width: 22px; height: 22px; color: var(--red-bright); }
.menu-card__title { font-size: 15px; font-weight: 700; color: var(--white); }
.menu-card__txt { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.45; }
.nav__menu-foot {
  margin-top: 4px; padding: 13px 14px 7px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.nav__menu-foot span { font-size: 12.5px; color: var(--muted); }

/* --- Bouton hamburger (mobile) --- */
.nav__burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  border-radius: 12px; background: rgba(255,255,255,0.03); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  transition: border-color .2s ease, background .2s ease;
}
.nav__burger:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.06); }
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s ease; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MENU MOBILE (overlay plein écran)
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: calc(var(--nav-h) + 20px) 24px 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility .35s;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6px; font-size: 21px; font-weight: 700; color: var(--white);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__link span.tag { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.mobile-sub { display: flex; flex-direction: column; }
.mobile-sub__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 18px 6px; font-size: 21px; font-weight: 700; color: var(--white);
  border-bottom: 1px solid var(--line); background: none; border-left: 0; border-right: 0; border-top: 0;
  font-family: inherit; cursor: pointer;
}
.mobile-sub__toggle svg { width: 22px; height: 22px; color: var(--red-bright); transition: transform .3s ease; }
.mobile-sub.is-open .mobile-sub__toggle svg { transform: rotate(45deg); }
.mobile-sub__panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.mobile-sub.is-open .mobile-sub__panel { max-height: 260px; }
.mobile-sub__panel a {
  display: block; padding: 13px 6px 13px 18px; font-size: 16px; font-weight: 500;
  color: var(--muted); border-bottom: 1px solid var(--line);
}
.mobile-sub__panel a:hover { color: var(--white); }
.mobile-menu__cta { margin-top: 28px; }
.mobile-menu__cta .btn { width: 100%; }
.mobile-menu__contact { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__contact a { font-size: 14.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 9px; }
.mobile-menu__contact a:hover { color: var(--white); }
.mobile-menu__contact svg { width: 16px; height: 16px; color: var(--red-bright); }
.mobile-menu__social { margin-top: 22px; display: flex; gap: 12px; }
.mobile-menu__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color .2s ease, border-color .2s ease;
}
.mobile-menu__social a:hover { color: var(--white); border-color: var(--red); }
.mobile-menu__social svg { width: 18px; height: 18px; }

/* ============================================================
   FOOTER (corporatif, multi-colonnes)
   ============================================================ */
.footer { background: var(--black); border-top: 1px solid var(--line); position: relative; z-index: 5; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px;
  padding: 72px 0 56px;
}
.footer__brand { max-width: 320px; }
.footer__logo { height: 70px; width: auto; opacity: .95; }
.footer__tag { margin-top: 18px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.footer__social { margin-top: 22px; display: flex; gap: 11px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer__social a:hover { color: var(--white); border-color: var(--red); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14.5px; color: var(--muted); transition: color .2s ease; }
.footer__col a:hover { color: var(--white); }

.footer__contact ul { display: flex; flex-direction: column; gap: 13px; }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--muted); }
.footer__contact li svg { width: 17px; height: 17px; color: var(--red-bright); flex-shrink: 0; margin-top: 3px; }
.footer__contact a:hover { color: var(--white); }
.footer__contact .btn { margin-top: 6px; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.footer__copy { font-size: 13px; color: var(--muted-2); }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 13px; }
.footer__legal a, .footer__link-btn { color: var(--muted); transition: color .2s ease; }
.footer__legal a:hover, .footer__link-btn:hover { color: var(--red-bright); }
.footer__legal span { color: var(--muted-2); }
.footer__link-btn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* ============================================================
   RESPONSIVE — bascule desktop → mobile
   ============================================================ */
/* Le menu inline passe en burger plus tôt (≤1100px) : garantit que les liens et le
   CTA restent toujours sur une seule ligne quand ils sont affichés. */
@media (max-width: 1100px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__brand { grid-column: 1 / -1; max-width: 420px; }
}
@media (max-width: 560px) {
  .logo__img { height: 50px; }
  .logo__lock b { font-size: 13.5px; }
  .logo__lock span { font-size: 9px; }
  .nav__inner { height: 80px; }
  :root { --nav-h: 80px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   HERO placeholder (provisoire — les pages de base viennent ensuite)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 90px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow {
  position: absolute; top: -16%; left: calc(50% - 560px); width: 1120px; height: 1120px;
  background: radial-gradient(circle, var(--red-glow) 0%, var(--red-soft) 34%, transparent 64%);
  will-change: transform;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 70%);
}

/* Séquence d'images de fond du hero (mur acoustique, lumière rouge qui balaie).
   Intro à l'arrivée (avant), puis rebours au scroll — piloté par animations.js. */
.hero__frames { position: absolute; inset: 0; }
.hero__frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; will-change: opacity;
}
.hero__frame:first-child { opacity: 1; }               /* état par défaut (sans JS / reduced-motion) */
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(72% 62% at 50% 50%, rgba(5,5,5,0.50) 0%, rgba(5,5,5,0.12) 60%, transparent 82%),
    linear-gradient(180deg, rgba(5,5,5,0.58) 0%, rgba(5,5,5,0.16) 24%, rgba(5,5,5,0.16) 54%, rgba(5,5,5,0.74) 100%);
}

/* Hero plein écran centré (fond = séquence de mousse acoustique) */
/* Épinglage : la section est haute, la scène colle → la séquence se joue dans le
   scroll (aux ~3/4), puis relâche vers le contenu. Course courte = pas frustrant. */
.hero--full { min-height: 0; height: 175svh; display: block; padding: 0; overflow: visible; }
.hero--full .hero__stage {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 70px;
}
.hero--full .hero__inner { grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; text-align: center; }
.hero--full .hero__copy { text-align: center; }
.hero--full .hero__title { font-size: clamp(44px, 7vw, 88px); }
.hero--full .hero__sub { margin-left: auto; margin-right: auto; }
.hero--full .hero__cta, .hero--full .hero__micro { justify-content: center; }
.hero__inner {
  position: relative; z-index: 3; display: grid;
  grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__copy { text-align: left; }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 22px;
}
.hero__title { font-size: clamp(38px, 5.4vw, 68px); font-weight: 800; letter-spacing: -0.03em; }
.hero__sub { max-width: 560px; margin: 24px 0 0; font-size: clamp(16px, 2vw, 19px); color: var(--muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; margin-top: 34px; }
.hero__micro { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 30px; }
.hero__micro li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.hero__micro svg { width: 16px; height: 16px; color: var(--red-bright); flex-shrink: 0; }
.hero__media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5; max-height: 72vh; box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 1px solid var(--line);
}
.hero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.5) 100%); z-index: 2; }
.hero__media .ph, .hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; }
.hero__media .ph { border-radius: 0; border: 0; }

@media (max-width: 880px) {
  .hero { padding: calc(var(--nav-h) + 40px) 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__copy { text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__micro { justify-content: center; }
  .hero__media { max-height: 56vh; aspect-ratio: 16/12; order: -1; }
}

/* ---------- Consentement (bannière + modale) — repris de go.gbstudio.ca ---------- */
.cc-banner {
  position: fixed; left: 24px; z-index: 60;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 380px; max-width: calc(100vw - 28px);
  background: rgba(16, 14, 13, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(140%); transition: transform .4s var(--ease-out);
}
.cc-banner.is-visible { transform: translateY(0); }
.cc-banner__inner { display: flex; flex-direction: column; gap: 12px; padding: 20px; }
.cc-banner__head { display: flex; align-items: center; gap: 10px; }
.cc-banner__head strong { font-size: 15px; color: var(--white); }
.cc-banner__txt { font-size: 13px; color: var(--muted); line-height: 1.55; }
.cc-banner__links { font-size: 12px; }
.cc-banner__links a { color: var(--red-bright); }
.cc-banner__links a:hover { text-decoration: underline; }
.cc-banner__links span { color: var(--muted-2); margin: 0 4px; }
.cc-banner__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2px; }
.cc-banner__actions .btn { width: 100%; }
.cc-banner__actions .btn[data-cc="accept"] { grid-column: 1 / -1; }

.cc-modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .3s ease; }
.cc-modal[hidden] { display: none; }
.cc-modal.is-visible { opacity: 1; }
.cc-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); }
.cc-modal__card {
  position: relative; width: 100%; max-width: 480px;
  background: #100e0d; border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: scale(.96); transition: transform .3s var(--ease-out);
  max-height: 90vh; overflow-y: auto;
}
.cc-modal.is-visible .cc-modal__card { transform: scale(1); }
.cc-modal__title { font-size: 20px; font-weight: 800; }
.cc-modal__lead { font-size: 13.5px; color: var(--muted); margin: 8px 0 20px; }
.cc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.cc-row--toggle { cursor: pointer; }
.cc-row__txt strong { display: block; font-size: 15px; color: var(--white); }
.cc-row__txt span { font-size: 13px; color: var(--muted); }
.cc-badge { font-size: 11px; font-weight: 600; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 12px; white-space: nowrap; }
.cc-row--toggle input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--red); cursor: pointer; flex-shrink: 0; }
.cc-modal__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }

.cc-reopen {
  position: fixed; left: 18px; bottom: 18px; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(16, 14, 13, 0.9); color: var(--muted);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  cursor: pointer; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.cc-reopen:hover { color: var(--white); border-color: var(--red); transform: translateY(-2px); }
.cc-reopen svg { width: 21px; height: 21px; }
.cc-reopen[hidden] { display: none; }

@media (max-width: 460px) {
  .cc-banner { left: 12px; right: 12px; width: auto; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
  .cc-reopen { left: 12px; bottom: 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-animate], [data-split], [data-arrive], [data-parallax] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}

/* État initial JS (évite le flash : masqué seulement si motion actif) */
.js-motion [data-animate],
.js-motion [data-arrive] { opacity: 0; }

/* ============================================================
   PLACEHOLDER IMAGE (composant .ph — remplaçable par <img>)
   ============================================================ */
.ph {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 9px; text-align: center; min-height: 100%;
  background: linear-gradient(135deg, #17110f, #0b0908);
  border: 1px dashed rgba(239, 68, 68, 0.35); border-radius: var(--radius-xl); overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 80%);
}
.ph svg { position: relative; width: 32px; height: 32px; color: var(--red-bright); opacity: .85; }
.ph__label { position: relative; font-size: 13px; font-weight: 600; color: var(--txt); padding: 0 14px; }
.ph__dim { position: relative; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; align-items: center; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span { font-size: 15px; font-weight: 700; color: var(--muted); white-space: nowrap; letter-spacing: -0.01em; margin: 0 14px; }
.marquee__track i { color: var(--red); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (génériques)
   ============================================================ */
.section { padding: 104px 0; position: relative; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--form { background: var(--bg-2); border-top: 1px solid var(--line); }
.section__head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(28px, 4.4vw, 46px); font-weight: 800; }
.section__lead { color: var(--muted); font-size: 17px; margin-top: 16px; }
.punch { text-align: center; font-size: clamp(22px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; max-width: 880px; margin: 0 auto; }
.punch i { font-style: normal; color: var(--red-bright); }

/* ============================================================
   STATS (compteurs)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 32px 26px; text-align: center;
  transition: border-color .3s ease, transform .3s ease;
}
.stat-card:hover { border-color: rgba(239,68,68,0.4); transform: translateY(-4px); }
.stat-card__num {
  font-size: clamp(40px, 6vw, 60px); font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(120deg, var(--red-bright), #f97316);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card__txt { font-size: 14.5px; color: var(--muted); margin-top: 14px; }
.stat-card__src { font-size: 11px; color: var(--muted-2); margin-top: 10px; }

/* ============================================================
   SPLIT (2 colonnes texte + image)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
.split__title { font-size: clamp(26px, 3.8vw, 40px); font-weight: 800; margin-bottom: 20px; }
.split__txt { color: var(--muted); font-size: 16px; }
.split__txt + .split__txt { margin-top: 16px; }
.split__media { margin: 0; }
.split__media-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5 / 4; will-change: clip-path; }
.split__media-frame .ph, .split__media-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.split__media-frame .ph { border: 0; border-radius: 0; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2.2rem; } .split--rev .split__media, .split__media { order: -1; } }

.checklist { display: grid; gap: 12px; margin-top: 26px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--txt); }
.checklist svg { width: 20px; height: 20px; color: var(--red-bright); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   CINÉ-ZOOM (cadre → plein écran) — effet 7
   ============================================================ */
.cine { position: relative; height: 100svh; background: var(--bg); }
.cine--js { height: 230vh; }
.cine__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.cine__media { position: relative; width: 100vw; height: 100svh; overflow: hidden; will-change: transform; }
.cine__media .ph, .cine__media img, .cine__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cine__media .ph { border: 0; border-radius: inherit; }
.cine__scrim { position: absolute; inset: 0; background: rgba(5,5,5,0); pointer-events: none; }
.cine__caption { position: absolute; z-index: 2; opacity: 0; text-align: center; padding: 0 24px; max-width: 760px; }
.cine__eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 16px; }
.cine__title { font-size: clamp(30px, 5vw, 58px); font-weight: 800; color: var(--white); }
.cine__sub { color: var(--txt); font-size: clamp(16px, 2vw, 19px); margin: 14px auto 0; max-width: 600px; }

/* ============================================================
   SERVICES (3 axes) — cartes + dérive multi-vitesse
   ============================================================ */
.svc { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.svc-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(239,68,68,0.4); box-shadow: 0 26px 60px rgba(0,0,0,.55); }
.svc-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-card__media .ph, .svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__media .ph { border: 0; border-radius: 0; }
.svc-card__body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-card__icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 50% 0%, var(--red-soft), transparent 70%); border: 1px solid var(--line); }
.svc-card__icon svg { width: 23px; height: 23px; color: var(--red-bright); }
.svc-card__title { font-size: 19px; font-weight: 800; color: var(--white); }
.svc-card__txt { font-size: 14.5px; color: var(--muted); flex: 1; }
.svc-card__link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--red-bright); margin-top: 4px; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ============================================================
   PROCESSUS — empilement collant (sticky stack) — effet 8
   ============================================================ */
.proc { position: relative; background: var(--bg-2); border-top: 1px solid var(--line); }
.proc.sticky-on { height: 520svh; }
.proc__pin { position: relative; min-height: 100svh; display: flex; align-items: center; }
.sticky-on .proc__pin { position: sticky; top: 0; height: 100svh; }
.proc__intro { max-width: 460px; }
.proc__intro .eyebrow { color: var(--red-bright); }
.proc__title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.proc__lead { color: var(--muted); font-size: 16px; margin-top: 16px; }
.proc__cards { position: relative; min-height: 380px; }
.pin--js .pcard { position: absolute; left: 0; right: 0; top: 0; bottom: 0; will-change: transform; }
.pcard { z-index: 1; display: flex; align-items: center; }
.pcard--1 { z-index: 1; } .pcard--2 { z-index: 2; } .pcard--3 { z-index: 3; } .pcard--4 { z-index: 4; } .pcard--5 { z-index: 5; }
.pcard__in {
  width: 100%; background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 30px 80px rgba(0,0,0,.6); display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
}
.pcard__num {
  display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px;
  background: linear-gradient(140deg, var(--red), var(--red-deep)); color: var(--white);
  border-radius: 16px; font-weight: 800; font-size: 26px; flex-shrink: 0;
  box-shadow: 0 8px 26px var(--red-glow);
}
.pcard__phase { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 8px; }
.pcard__title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--white); }
.pcard__txt { font-size: 15.5px; color: var(--muted); margin-top: 12px; max-width: 620px; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pcard__tags span { font-size: 12.5px; color: var(--txt); background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }
/* Grille du pin : intro à gauche, cartes à droite */
.proc__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; width: 100%; }
@media (max-width: 900px) {
  .proc__grid { grid-template-columns: 1fr; gap: 2rem; }
  .proc__intro { max-width: none; text-align: center; margin: 0 auto; }
  .pcard__in { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .proc.sticky-on { height: 480svh; }
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: border-color .3s ease, transform .3s ease; }
.quote:hover { border-color: rgba(239,68,68,0.4); transform: translateY(-4px); }
.quote__stars { display: flex; gap: 3px; color: var(--red-bright); }
.quote__stars svg { width: 18px; height: 18px; fill: currentColor; }
.quote__txt { font-size: 15.5px; color: var(--txt); line-height: 1.6; flex: 1; }
.quote__who { display: flex; flex-direction: column; }
.quote__name { font-size: 15px; font-weight: 700; color: var(--white); }
.quote__role { font-size: 13px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 44px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 24px; margin-bottom: 12px; transition: border-color .25s ease; }
.faq[open] { border-color: rgba(239,68,68,0.4); }
.faq summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 16px; color: var(--white); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--red-bright); font-size: 24px; font-weight: 300; line-height: 1; transition: transform .25s ease; flex-shrink: 0; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 22px; color: var(--muted); font-size: 15px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta { position: relative; text-align: center; padding: 116px 0; background: var(--bg); overflow: hidden; border-top: 1px solid var(--line); }
.cta__glow { position: absolute; top: 50%; left: 50%; width: 820px; height: 820px; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(220,38,38,0.22), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; z-index: 1; }
.cta__title { font-size: clamp(32px, 5.4vw, 60px); font-weight: 800; }
.cta__sub { color: var(--muted); font-size: 18px; max-width: 580px; margin: 18px auto 34px; }

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form { margin-top: 8px; max-width: 680px; margin-left: auto; margin-right: auto; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--txt); }
.req { color: var(--red-bright); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--white);
  background: #131110; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #17120f; box-shadow: 0 0 0 3px rgba(220,38,38,.18); }
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-color: var(--red-bright); box-shadow: 0 0 0 3px rgba(220,38,38,.22); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__consent { display: flex; align-items: flex-start; gap: 10px; margin: 2px 0 16px; font-size: 13.5px; color: var(--muted); cursor: pointer; line-height: 1.5; }
.form__consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--red); flex-shrink: 0; cursor: pointer; }
.form__status { margin-top: 16px; text-align: center; font-size: 15px; font-weight: 500; min-height: 22px; }
.form__status.ok { color: #4ade80; }
.form__status.err { color: var(--red-bright); }
.form__note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 16px; }

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   NOS PODCASTS — grille de vignettes clients
   ============================================================ */
.pods { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.pod-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.pod-card:hover { border-color: rgba(239,68,68,0.4); transform: translateY(-5px); box-shadow: 0 24px 54px rgba(0,0,0,.55); }
.pod-card__art { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-3); }
.pod-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.pod-card:hover .pod-card__art img { transform: scale(1.04); }
.pod-card__art .ph { border: 0; border-radius: 0; }
.pod-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--white); background: rgba(220,38,38,0.92); border-radius: 999px; padding: 5px 11px; backdrop-filter: blur(4px); }
.pod-card__badge svg { width: 13px; height: 13px; }
.pod-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pod-card__title { font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.25; }
.pod-card__org { font-size: 12.5px; font-weight: 600; color: var(--red-bright); }
.pod-card__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-top: 4px; }
.pod-desc__ell { color: var(--muted); }
.pod-desc__rest { display: none; }
.pod-card__desc.is-open .pod-desc__rest { display: inline; }
.pod-card__desc.is-open .pod-desc__ell { display: none; }
.pod-desc__cue { border: 0; background: none; padding: 0; margin: 0; font: inherit; cursor: pointer; color: var(--red-bright); font-weight: 600; white-space: nowrap; }
.pod-desc__cue:hover { text-decoration: underline; }
.pod-desc__cue::after { content: 'Lire plus'; }
.pod-card__desc.is-open .pod-desc__cue::after { content: 'Réduire'; }
.pod-card__link { margin-top: auto; padding-top: 14px; font-size: 14px; font-weight: 600; color: var(--red-bright); display: inline-flex; align-items: center; gap: 7px; }
.pod-card__link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.pod-card:hover .pod-card__link svg { transform: translateX(3px); }

/* ============================================================
   HUB / LISTE D'ARTICLES (boîte à outils, catégories)
   ============================================================ */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.post-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.post-card:hover { border-color: rgba(239,68,68,0.4); transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,.5); }
.post-card__cat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red-bright); }
.post-card__title { font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.3; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--red-bright); }
.post-card__excerpt { font-size: 14px; color: var(--muted); flex: 1; }
.post-card__date { font-size: 12.5px; color: var(--muted-2); }
.post-card::after { content: ''; }

/* ============================================================
   ARTICLE DE BLOGUE (boîte à outils) — typographie de lecture
   ============================================================ */
.post { padding: calc(var(--nav-h) + 48px) 0 80px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); margin-bottom: 26px; }
.breadcrumb a { color: var(--muted); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--red-bright); }
.post__eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red-bright); }
.post__title { font-size: clamp(30px, 5vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin: 14px 0 12px; }
.post__meta { font-size: 14px; color: var(--muted-2); padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 36px; }

.prose { color: #d3cec6; font-size: 17px; line-height: 1.75; }
.prose > * + * { margin-top: 1.35em; }
.prose h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--white); margin: 1.9em 0 0; letter-spacing: -0.02em; }
.prose h3 { font-size: 19px; font-weight: 700; color: var(--white); margin: 1.5em 0 0; }
.prose a { color: var(--red-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: .5em; }
.prose li { list-style: disc; color: #d3cec6; }
.prose ol li { list-style: decimal; }
.prose blockquote { border-left: 3px solid var(--red); padding-left: 18px; color: var(--muted); font-style: italic; }
.prose strong { color: var(--white); }

.post__nav { margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.post__nav a { font-size: 14.5px; font-weight: 600; color: var(--red-bright); display: inline-flex; align-items: center; gap: 8px; }
.post__nav svg { width: 16px; height: 16px; }
.post__nav .prev svg { order: -1; }

/* ============================================================
   FEATURES (grille de cartes icône + titre + texte)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.feature:hover { border-color: rgba(239,68,68,0.4); transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,0,0,0.5); }
.feature__icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 50% 0%, var(--red-soft), transparent 70%); border: 1px solid var(--line); }
.feature__icon svg { width: 24px; height: 24px; color: var(--red-bright); }
.feature__title { font-size: 17px; font-weight: 700; color: var(--white); }
.feature__txt { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   PHASES (timeline de processus détaillé — pages services)
   ============================================================ */
.phases { display: flex; flex-direction: column; }
.phase {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.phase + .phase { margin-top: clamp(2.5rem, 6vw, 5rem); padding-top: clamp(2.5rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.phase__num {
  font-size: clamp(56px, 9vw, 110px); font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(140deg, var(--red-bright), var(--red-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.phase__label { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); }
.phase__title { font-size: clamp(23px, 3.2vw, 34px); font-weight: 800; margin-top: 8px; }
.phase__txt { color: var(--muted); font-size: 16px; margin-top: 14px; }
.phase__list { display: grid; gap: 14px; }
.phase__list li { display: flex; align-items: flex-start; gap: 14px; }
.phase__list .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 50% 0%, var(--red-soft), transparent 70%); border: 1px solid var(--line); }
.phase__list .ic svg { width: 20px; height: 20px; color: var(--red-bright); }
.phase__list strong { display: block; font-size: 15.5px; font-weight: 700; color: var(--white); }
.phase__list span { display: block; font-size: 14px; color: var(--muted); margin-top: 2px; }
@media (max-width: 820px) {
  .phase { grid-template-columns: 1fr; gap: 1.4rem; }
}

/* ============ FORFAITS ============ */
.fine-note { margin-top: 28px; max-width: 760px; font-size: 13.5px; color: var(--muted-2); line-height: 1.6; }

/* Frise 4 étapes */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { position: relative; padding: 20px 20px 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { display: block; font-size: 13px; font-weight: 700; color: var(--red-bright); letter-spacing: .06em; margin-bottom: 10px; }
.step__label { display: block; font-size: 15px; font-weight: 600; color: var(--txt); line-height: 1.4; }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* Sélecteur d'épisodes */
.ep-select { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.ep-select__label { font-size: 14px; color: var(--muted); }
.ep-select__btns { display: inline-flex; background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 2px; }
.ep-select__btns button { border: 0; background: transparent; color: var(--txt); font: inherit; font-size: 14px; padding: 10px 20px; border-radius: 999px; cursor: pointer; transition: background .2s var(--ease-out), color .2s var(--ease-out); white-space: nowrap; }
.ep-select__btns button:hover { color: var(--white); }
.ep-select__btns button.is-on { background: var(--red); color: var(--white); }

/* Cartes de forfaits */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.plan { display: flex; flex-direction: column; padding: 30px 28px 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.plan--featured { border: 2px solid var(--red); }
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.plan__name { font-size: 20px; font-weight: 700; color: var(--white); }
.plan__badge { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,0.07); color: var(--logo-tint); white-space: nowrap; }
.plan__badge--red { background: var(--red); color: var(--white); }
.plan__price { font-size: 40px; font-weight: 800; letter-spacing: -0.01em; color: var(--white); line-height: 1; }
.plan__per { font-size: 14px; color: var(--muted); margin-top: 8px; }
.plan__feats { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; }
.plan__feats li { position: relative; padding-left: 24px; font-size: 14.5px; color: #d8d4d0; line-height: 1.5; }
.plan__feats li::before { content: ''; position: absolute; left: 4px; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); }
.plan .btn { margin-top: auto; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* Studio mobile */
.mobile-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; align-items: start; }
.mrates { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.mrate { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 16px; padding: 20px 24px; }
.mrate + .mrate { border-top: 1px solid var(--line); }
.mrate__k { font-size: 15.5px; font-weight: 600; color: var(--txt); }
.mrate__sub { grid-column: 1; font-size: 13px; color: var(--muted-2); margin-top: 2px; }
.mrate__v { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: 22px; font-weight: 800; color: var(--white); white-space: nowrap; }
.mrate__v em { font-size: 13px; font-weight: 400; color: var(--muted); font-style: normal; }
.mexample { background: var(--bg-3); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 26px 26px 24px; }
.mexample__eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-bright); font-weight: 700; }
.mexample__lead { font-size: 16px; font-weight: 600; color: var(--white); margin-top: 8px; line-height: 1.45; }
.mexample__lines { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 12px; }
.mexample__lines li { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); }
.mexample__lines li span:last-child { color: var(--txt); font-weight: 600; white-space: nowrap; }
.mexample__total { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.mexample__total span:first-child { font-size: 15px; font-weight: 600; color: var(--white); }
.mexample__total span:last-child { font-size: 26px; font-weight: 800; color: var(--red-bright); white-space: nowrap; }
.mexample__foot { font-size: 12.5px; color: var(--muted-2); margin-top: 16px; line-height: 1.55; }
@media (max-width: 720px) { .mobile-grid { grid-template-columns: 1fr; } }

/* Extras */
.extras { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.extra { display: flex; flex-direction: column; padding: 22px 22px 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s var(--ease-out), transform .25s var(--ease-out); }
.extra:hover { border-color: rgba(239,68,68,0.4); transform: translateY(-3px); }
.extra__name { font-size: 16px; font-weight: 700; color: var(--white); }
.extra__desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 8px; flex: 1; }
.extra__price { font-size: 15px; font-weight: 700; color: var(--red-bright); margin-top: 16px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--txt); transition: color .2s var(--ease-out); }
.contact-method:hover { color: var(--white); }
.contact-method:hover .contact-method__ic { border-color: rgba(239,68,68,0.5); }
.contact-method__ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 50% 0%, var(--red-soft), transparent 70%); border: 1px solid var(--line); transition: border-color .2s var(--ease-out); }
.contact-method__ic svg { width: 20px; height: 20px; color: var(--red-bright); }
.contact-method__k { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
.contact-method__v { display: block; font-size: 16px; font-weight: 600; line-height: 1.45; }
.contact-info__social { padding-top: 20px; }
.contact-info__social-row { display: flex; gap: 12px; margin-top: 12px; }
.contact-info__social-row a { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--muted); transition: color .2s var(--ease-out), border-color .2s var(--ease-out); }
.contact-info__social-row a:hover { color: var(--white); border-color: var(--line-strong); }
.contact-info__social-row svg { width: 18px; height: 18px; }
.contact-formwrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px; }
.contact-formwrap .form { margin: 0; max-width: none; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-formwrap { padding: 28px 22px; }
}

/* ============ FAQ ============ */
.faq { max-width: 880px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q { cursor: pointer; list-style: none; padding: 22px 2px; font-size: 17px; font-weight: 600; color: var(--txt); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; font-size: 24px; line-height: 1; color: var(--red-bright); transition: transform .2s var(--ease-out); flex-shrink: 0; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 2px 24px; font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 72ch; }
.faq__a p { margin: 0; }

/* Bouton texte inline dans la prose (ex. Gérer mes témoins) */
.prose button.link-inline, .link-inline { border: 0; background: none; padding: 0; margin: 0; font: inherit; color: var(--red-bright); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.link-inline:hover { color: var(--white); }

/* ============ MERCI / CONFIRMATION ============ */
.thanks { max-width: 640px; }
.thanks__badge { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 50% 0%, var(--red-soft), transparent 70%); border: 1px solid var(--line-strong); margin-bottom: 28px; }
.thanks__badge svg { width: 30px; height: 30px; color: var(--red-bright); }
.thanks__title { font-size: clamp(30px, 5vw, 52px); font-weight: 800; line-height: 1.05; margin-top: 10px; }
.thanks__lead { color: var(--muted); font-size: 18px; line-height: 1.6; margin-top: 20px; }
.thanks__lead a { color: var(--txt); font-weight: 600; }
.thanks__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
