/* ========================================================================
   2SPIGLASS — Design System
   Vitrage automobile — pare-brise à domicile
   Stack : HTML / CSS / JS vanille + GSAP + Lenis
   ======================================================================== */

/* ---------------- 1. RESET & BASE ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; color-scheme: dark; }
htmlhtml.lenis { height: auto; }
body { min-height: 100vh; line-height: 1.6; overflow-x: hidden; }
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------------- 2. DESIGN TOKENS ---------------- */
:root {
  /* Palette dark (default) */
  --bg: #07090f;
  --bg-2: #0c0e15;
  --surface: #11141d;
  --surface-2: #161a25;
  --line: rgba(157, 252, 3, 0.10);
  --line-strong: rgba(157, 252, 3, 0.28);
  --text: #f0f4ee;
  --text-dim: rgba(240, 244, 238, 0.68);
  --text-muted: rgba(240, 244, 238, 0.42);

  /* Brand */
  --lime: #9dfc03;
  --lime-light: #b6ff42;
  --lime-dim: rgba(157, 252, 3, 0.18);
  --violet: #c300ff;
  --violet-light: #d750ff;
  --violet-dim: rgba(195, 0, 255, 0.18);
  --gold: #ffb800;
  --gold-light: #ffd059;
  --danger: #ff3b3b;
  --success: #00d97e;

  --accent: var(--lime);
  --accent-2: var(--violet);

  /* Type */
  --ff-display: 'Teko', 'Bebas Neue', 'Helvetica Condensed', Impact, sans-serif;
  --ff-body: 'Montserrat', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Sizes (fluid) */
  --fs-mega: clamp(56px, 10vw, 156px);
  --fs-h1: clamp(48px, 9vw, 132px);
  --fs-h2: clamp(36px, 6vw, 88px);
  --fs-h3: clamp(28px, 4vw, 56px);
  --fs-h4: clamp(22px, 2.4vw, 32px);
  --fs-lead: clamp(17px, 1.5vw, 22px);
  --fs-body: clamp(15px, 1vw, 17px);
  --fs-small: 13px;
  --fs-label: 11px;

  /* Radius / shadow / motion */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-1: 0 8px 24px rgba(0,0,0,0.18);
  --shadow-2: 0 24px 60px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 64px rgba(157, 252, 3, 0.28), 0 0 24px rgba(157, 252, 3, 0.18);
  --shadow-glow-violet: 0 0 64px rgba(195, 0, 255, 0.28), 0 0 24px rgba(195, 0, 255, 0.18);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.7, 0, 0.2, 1);
  --ease-curtain: cubic-bezier(0.77, 0, 0.18, 1);

  /* Layout */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-py: clamp(80px, 11vw, 160px);

  --nav-h: 88px;
}

/* Light theme */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .lenis { scroll-behavior: auto !important; }
}

/* ---------------- 3. TYPOGRAPHY ---------------- */
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
  transition: background 0.6s var(--ease-out), color 0.6s var(--ease-out);
}

h1, h2, h3, h4, h5, h6, .display {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); }
h4, .h4 { font-size: var(--fs-h4); font-family: var(--ff-body); font-weight: 600; text-transform: none; letter-spacing: -0.01em; line-height: 1.2; }

p { color: var(--text-dim); line-height: 1.7; }
.lead { font-size: var(--fs-lead); color: var(--text); line-height: 1.5; }

.label {
  font-size: var(--fs-label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::before { content: ''; width: 24px; height: 1px; background: currentColor; }

.gradient-text {
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text-violet {
  background: linear-gradient(90deg, var(--violet) 0%, var(--violet-light) 50%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

::selection { background: var(--lime); color: #07090f; }

/* ---------------- 4. LAYOUT ---------------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container-lg { width: 100%; max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-py) 0; position: relative; }

.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 64px; max-width: 880px; }
.section-head .label { margin-bottom: 4px; }
.section-head h2 { line-height: 0.92; }
.section-head p { max-width: 640px; margin-top: 4px; }

/* ---------------- 5. GRAIN OVERLAY ---------------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------------- 6. NAVBAR ---------------- */
.nav-wrap {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
  padding: 0 var(--gutter);
  transition: transform 0.5s var(--ease-out), top 0.3s var(--ease-out);
}
.nav-wrap.hidden { transform: translateY(-140%); }
/* Décale la navbar quand l'offer bar est visible — évite le chevauchement */
body.has-offer .nav-wrap { top: 70px; }
@media (max-width: 720px) { body.has-offer .nav-wrap { top: 78px; } }

.nav {
  pointer-events: auto;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 14px 14px 28px;
  border-radius: var(--radius-pill);
  background: rgba(7, 9, 15, 0.4);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--line);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(7, 9, 15, 0.78);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-2), inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-brand .brand-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #07090f;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--ff-body);
  letter-spacing: -0.04em;
}
.nav-brand .brand-mark span { display: block; transform: translateY(1px); }
.nav-brand b { color: var(--accent); }

/* HTML/CSS Wordmark — transparent, theme-aware, scales perfectly */
.nav-logo-text {
  display: inline-block;
  position: relative;
  padding: 0 2px 5px;
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  font-style: italic;
  transition: transform 0.3s var(--ease-out);
}
.nav-logo-text b {
  color: var(--accent);
  font-weight: 800;
  font-style: italic;
}
.nav-logo-text::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--violet) 100%);
  box-shadow: 0 0 12px rgba(195, 0, 255, 0.35);
}
.nav-brand:hover .nav-logo-text { transform: translateY(-1px); }

/* Footer logo : un peu plus grand */
.footer-brand .nav-logo-text { font-size: 32px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--radius-pill);
  transition: color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--lime-dim); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #07090f;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--lime-light); box-shadow: var(--shadow-glow); }
.nav-cta svg { width: 14px; height: 14px; }

.nav-mobile-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(157,252,3,0.08); border: 1px solid var(--line); }
.nav-mobile-toggle svg { width: 18px; height: 18px; }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 100px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-curtain);
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  font-family: var(--ff-display);
  font-size: clamp(36px, 9vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  transition: color 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.mobile-nav-links a:hover { color: var(--accent); padding-left: 12px; }
.mobile-nav-links a span { font-family: var(--ff-mono); font-size: 12px; color: var(--text-muted); }
.mobile-nav-foot { display: flex; flex-direction: column; gap: 16px; }
.mobile-nav-foot a.cta-mobile {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 24px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #07090f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------------- 7. BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #07090f;
}
.btn-primary:hover { background: var(--lime-light); box-shadow: var(--shadow-glow); }

.btn-violet {
  background: var(--violet);
  color: #fff;
}
.btn-violet:hover { background: var(--violet-light); box-shadow: var(--shadow-glow-violet); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--lime-dim); }

.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 22px 38px; font-size: 14px; }

.btn-arrow { display: inline-flex; align-items: center; gap: 8px; }
.btn-arrow .arrow {
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(7,9,15,0.18);
  transition: transform 0.4s var(--ease-out);
}
.btn-primary .btn-arrow .arrow { background: rgba(7,9,15,0.18); }
.btn:hover .btn-arrow .arrow { transform: translateX(4px) rotate(-45deg); }

/* ---------------- 8. HERO ---------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(195, 0, 255, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 20% 80%, rgba(157, 252, 3, 0.14) 0%, transparent 60%),
              linear-gradient(180deg, #07090f 0%, #0a0d16 100%);
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.42;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, #000 0%, transparent 75%);
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) saturate(1.05) contrast(1.05);
  transform: scale(1.06);
}

.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.4fr 0.85fr; gap: 60px; align-items: end; }
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: var(--fs-mega);
  line-height: 0.84;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .stroke {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}
.hero-headline .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-headline .line-inner { display: inline-block; white-space: nowrap; }
@media (max-width: 720px) {
  .hero-headline .line-inner { white-space: normal; }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  width: 100%;
}
.hero-meta strong { color: var(--accent); font-weight: 700; }
.hero-meta .pill {
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(157,252,3,0.04);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 8px;
}
.hero-side p {
  font-size: var(--fs-lead);
  line-height: 1.4;
  max-width: 420px;
  color: var(--text);
  font-weight: 500;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-stat .num {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.hero-stat .lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 2.4s var(--ease-out) infinite;
}
@keyframes scrollLine { 0% { top: -40px; } 100% { top: 40px; } }

/* Hero floating badge — version compacte single-line pill */
.hero-badge {
  position: absolute;
  z-index: 3;
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 12px;
  background: rgba(11, 14, 21, 0.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-2);
  font-size: 12px;
  white-space: nowrap;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  position: relative;
  flex-shrink: 0;
}
.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--success);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { 0% { opacity: 0.8; transform: scale(0.8); } 100% { opacity: 0; transform: scale(1.6); } }
.hero-badge.bot-right { bottom: 32px; right: 4vw; }
.hero-badge.top-right {
  top: calc(var(--nav-h) + 24px);
  right: 4vw;
  /* Compact inline display */
  flex-direction: row;
}
.hero-badge.top-right strong {
  display: inline;
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
  margin: 0;
}
.hero-badge.top-right strong + .sub::before { content: " · "; opacity: 0.5; padding: 0 2px; }
.hero-badge.top-right .sub {
  display: inline;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-badge:not(.top-right) strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; font-weight: 700; }
.hero-badge:not(.top-right) .sub { color: var(--text-muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Cache les badges hero quand pas assez de place pour pas overlap le texte */
@media (max-width: 1280px) {
  .hero-badge.top-right { display: none; }
}
@media (max-width: 980px) {
  .hero-badge { display: none; }
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------- 9. MARQUEE ---------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 36px; color: var(--text); }
.marquee-track .sep { color: var(--accent); font-size: 0.5em; }
.marquee-track .stroke { -webkit-text-stroke: 1.5px var(--text); color: transparent; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- 10. SERVICES ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.4s var(--ease-out), transform 0.5s var(--ease-out);
  min-height: 280px;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--lime-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::after { opacity: 1; }
.service-card .num {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.service-card .icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--lime-dim);
  color: var(--accent);
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.service-card p {
  font-size: 14px;
  color: var(--text-dim);
}
.service-card .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.service-card .more::after { content: '→'; transition: transform 0.4s var(--ease-out); }
.service-card:hover .more::after { transform: translateX(4px); }

/* Featured service (large) */
.service-featured {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(157, 252, 3, 0.10) 0%, rgba(195, 0, 255, 0.10) 100%);
}
@media (max-width: 760px) { .service-featured { grid-column: span 1; flex-direction: column; } }
.service-featured .visual {
  flex: 0 0 38%;
  min-height: 260px;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.service-featured .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.05);
  transition: filter 0.7s var(--ease-out), transform 0.9s var(--ease-out);
}
.service-featured:hover .visual img { filter: brightness(0.9); transform: scale(1.04); }
.service-featured .body { flex: 1; display: flex; flex-direction: column; gap: 16px; }

/* ---------------- 11. PROCESS / STEPS ---------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step .step-num {
  font-family: var(--ff-display);
  font-size: 64px;
  line-height: 0.8;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.step h3 { font-family: var(--ff-body); font-size: 20px; font-weight: 700; text-transform: none; line-height: 1.2; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--text-dim); }
.step .step-time {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* ---------------- 12. INSURANCE / LOI HAMON ---------------- */
.insurance {
  position: relative;
  background: var(--bg-2);
}
.insurance::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.insurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 980px) {
  .insurance-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.insurance-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--line);
}
.insurance-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(1.1) contrast(1.05);
}
.insurance-card-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 18px 20px;
  background: rgba(11, 14, 21, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
}
.insurance-card-overlay .article-num {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.insurance-card-overlay .article-info b { display: block; font-size: 13px; }
.insurance-card-overlay .article-info span { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }

.insurance-content h2 { margin-bottom: 8px; }
.insurance-content .lead { margin-bottom: 24px; }
.insurance-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.insurance-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.insurance-list li:hover { border-color: var(--line-strong); background: var(--surface-2); }
.insurance-list .ico {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--lime-dim);
  color: var(--accent);
}
.insurance-list .ico svg { width: 14px; height: 14px; }
.insurance-list .txt b { font-size: 14px; display: block; margin-bottom: 2px; }
.insurance-list .txt span { font-size: 13px; color: var(--text-dim); }

.insurers-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.insurer-badge {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--surface);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.insurer-badge:hover { color: var(--accent); border-color: var(--accent); }

/* ---------------- 13. OFFER (FRANCHISE 100€) ---------------- */
.offer {
  position: relative;
  overflow: hidden;
}
.offer-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  background: linear-gradient(135deg, var(--lime) 0%, #c5ff5e 60%, var(--gold) 100%);
  color: #07090f;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 900px) { .offer-card { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.offer-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 184, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
  animation: offerPulse 8s ease-in-out infinite;
}
@keyframes offerPulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 0.5; } }
.offer-card .label { color: #07090f; opacity: 0.7; }
.offer-card .label::before { background: #07090f; }
.offer-card h2 {
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  position: relative;
}
.offer-card h2 .euro { color: #c300ff; }
.offer-card p { color: #07090f; opacity: 0.78; font-size: 16px; max-width: 480px; line-height: 1.5; position: relative; }
.offer-card .btn-primary {
  background: #07090f;
  color: var(--lime);
  position: relative;
}
.offer-card .btn-primary:hover { background: #1a1f2e; }

.offer-numbers {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.offer-num {
  background: rgba(7, 9, 15, 0.08);
  border: 1px solid rgba(7, 9, 15, 0.18);
  border-radius: var(--radius);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
}
.offer-num .v {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #07090f;
}
.offer-num .l {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
  color: rgba(7, 9, 15, 0.7);
}

/* ---------------- 14. ZONES / MAP ---------------- */
.zones {
  position: relative;
}
.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 980px) { .zones-grid { grid-template-columns: 1fr 1.1fr; gap: 60px; } }

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.zone-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.zone-item:nth-child(2n) { border-right: 0; }
.zone-item:nth-last-child(-n+2) { border-bottom: 0; }
.zone-item:hover { background: var(--surface-2); }
.zone-item .zone-name { font-weight: 700; font-size: 15px; }
.zone-item .zone-sub { font-size: 12px; color: var(--text-muted); }
.zone-item:hover .zone-arrow { color: var(--accent); transform: translateX(4px); }
.zone-arrow { color: var(--text-muted); font-size: 18px; transition: color 0.3s var(--ease-out), transform 0.3s var(--ease-out); }

.zones-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.zones-map img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(1.1);
}
.zones-map-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7,9,15,0.7) 100%),
    radial-gradient(circle at 50% 60%, transparent 30%, rgba(7,9,15,0.4) 100%);
  pointer-events: none;
}
.zones-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
}
.zones-map-pin .ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--lime-dim);
  display: grid;
  place-items: center;
  position: relative;
}
.zones-map-pin .ring::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing 2.6s ease-out infinite;
}
.zones-map-pin .label {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(7,9,15,0.85);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  white-space: nowrap;
}

/* ---------------- 15. REVIEWS / 5 stars ---------------- */
.reviews {
  background: var(--bg-2);
  position: relative;
}
.reviews-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 900px) { .reviews-head { grid-template-columns: 1fr auto; gap: 40px; } }
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.reviews-rating .num {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.reviews-rating .stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 4px; }
.reviews-rating .stars svg { width: 16px; height: 16px; }
.reviews-rating .meta { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.review-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.review-card .stars { display: flex; gap: 2px; color: var(--gold); }
.review-card .stars svg { width: 14px; height: 14px; }
.review-card .quote { font-size: 14.5px; line-height: 1.6; color: var(--text); flex: 1; }
.review-card .author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
.review-card .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--violet));
  display: grid; place-items: center;
  font-weight: 700;
  color: #07090f;
  font-size: 14px;
}
.review-card .name { font-size: 13px; font-weight: 600; }
.review-card .when { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---------------- 16. STATS BAND ---------------- */
.stats {
  background: linear-gradient(135deg, #07090f 0%, #11141d 50%, #07090f 100%);
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  padding: 36px 24px;
  background: var(--bg);
  text-align: center;
}
.stat-cell .v {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, var(--text) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-cell .l {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 600;
}

/* ---------------- 17. FAQ ---------------- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--ff-body);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  transition: color 0.3s var(--ease-out);
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lime-dim);
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: #07090f; }
.faq-toggle svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding-top 0.4s var(--ease-out);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 800px; padding-top: 14px; }

/* ---------------- 18. CTA / Form ---------------- */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.32) saturate(1.05) contrast(1.05);
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0.6) 0%, rgba(7,9,15,0.95) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) { .cta-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.cta-text h2 { font-size: clamp(48px, 8vw, 104px); line-height: 0.88; }
.cta-text .lead { margin-top: 18px; }
.cta-text .badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-text .badges span {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.form-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(11, 14, 21, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2);
}
.form-card h3 { font-family: var(--ff-body); font-size: 22px; font-weight: 700; text-transform: none; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 4px; }
.form-card .form-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .form-row.two { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14.5px;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px var(--lime-dim);
}
.form-field select option { background: #11141d; color: #f0f4ee; }
.form-card .btn { width: 100%; margin-top: 4px; }
.form-card .legal { margin-top: 14px; font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.form-card .legal a { color: var(--accent); text-decoration: underline; }

/* ---------------- 19. FOOTER ---------------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand .nav-brand { font-size: 32px; }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-brand .socials { display: flex; gap: 10px; margin-top: 8px; }
.footer-brand .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--text-dim);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.footer-brand .socials a:hover { color: var(--accent); border-color: var(--accent); background: var(--lime-dim); }
.footer-brand .socials svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--accent); }
.footer-col .info-line { font-size: 13px; color: var(--text-dim); }
.footer-col .info-line b { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------------- 20. FLOATING CALL BUTTON (mobile) ---------------- */
.floating-call {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #07090f;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform 0.4s var(--ease-out);
  text-decoration: none;
}
.floating-call::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulseRing 2.4s ease-out infinite;
}
.floating-call svg { width: 24px; height: 24px; position: relative; z-index: 1; }
.floating-call:hover { transform: scale(1.08) rotate(-6deg); }

/* Floating "Être rappelé" — desktop & mobile */
.floating-rappel {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 49;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--violet);
  color: #fff;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(195, 0, 255, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.floating-rappel.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-rappel:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px rgba(195, 0, 255, 0.5); }
.floating-rappel svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .floating-call { display: inline-flex; }
  .floating-rappel { left: 16px; bottom: 16px; padding: 12px 18px; font-size: 13px; }
  .floating-call { right: 16px; bottom: 16px; }
}
@media (min-width: 721px) {
  .floating-rappel { bottom: 28px; left: 28px; }
}

/* ---------------- 21. COOKIE BANNER ---------------- */
.cookies {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 640px;
  margin: 0 auto;
  z-index: 200;
  padding: 22px 26px;
  background: rgba(11, 14, 21, 0.94);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  transform: translateY(120%);
  transition: transform 0.6s var(--ease-out);
}
.cookies.show { transform: translateY(0); }
.cookies p { font-size: 13.5px; flex: 1 1 260px; color: var(--text-dim); line-height: 1.5; }
.cookies p a { color: var(--accent); }
.cookies-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookies-actions button {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.cookies-actions .accept { background: var(--accent); color: #07090f; border-color: var(--accent); }
.cookies-actions .accept:hover { background: var(--lime-light); }
.cookies-actions .refuse:hover { border-color: var(--accent); color: var(--accent); }

/* ---------------- 22. ANIMATIONS UTILITIES ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

.line-mask { display: block; overflow: hidden; padding-bottom: 0.05em; }
.line-mask > * {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.line-mask.in > * { transform: translateY(0); }

.text-shine {
  background: linear-gradient(90deg, var(--text) 30%, var(--accent) 50%, var(--text) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: -200% center; } }

/* ---------------- 23. PAGE HEADER (sub pages) ---------------- */
.page-head {
  position: relative;
  padding: calc(var(--nav-h) + 100px) 0 80px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, var(--lime-dim) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 20% 80%, var(--violet-dim) 0%, transparent 60%);
  z-index: 0;
}
.page-head .container { position: relative; z-index: 1; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--text-muted); }
.page-head h1 { font-size: clamp(48px, 9vw, 132px); line-height: 0.88; max-width: 920px; }
.page-head .lead { max-width: 720px; margin-top: 24px; }

/* ---------------- 24. CONTENT (legal / generic) ---------------- */
.content-block { padding: var(--section-py) 0; }
.content-block h2 { font-family: var(--ff-body); font-size: 28px; font-weight: 700; text-transform: none; letter-spacing: -0.01em; margin-bottom: 16px; line-height: 1.2; }
.content-block h3 { font-family: var(--ff-body); font-size: 20px; font-weight: 700; text-transform: none; letter-spacing: -0.005em; margin: 28px 0 10px; line-height: 1.3; }
.content-block p { margin-bottom: 14px; }
.content-block ul, .content-block ol { margin: 14px 0 14px 24px; }
.content-block ul li { list-style: disc; margin-bottom: 8px; color: var(--text-dim); }
.content-block ol li { list-style: decimal; margin-bottom: 8px; color: var(--text-dim); }
.content-block strong { color: var(--text); }
.content-block a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.content-block hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.content-block table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.content-block th, .content-block td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.content-block th { font-weight: 600; color: var(--text); background: var(--surface); }

/* ---------------- 25. RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav { padding: 12px 12px 12px 22px; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 100px); }
  .hero-grid { gap: 36px; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
  .hero { padding-bottom: 60px; }
  .hero-side p { font-size: 16px; }
  .service-card { padding: 28px 24px; min-height: 240px; }
  .form-card { padding: 28px 22px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .nav { padding: 10px 10px 10px 18px; }
  .hero-meta .pill { font-size: 11px; padding: 5px 10px; }
}

/* ---------------- 26. PRINT ---------------- */
@media print {
  body { background: #fff !important; color: #000 !important; }
  .nav-wrap, .floating-call, .cookies, .hero-bg, .grain { display: none !important; }
  a { color: #000 !important; text-decoration: underline; }
  body::before { display: none !important; }
}

/* ---------------- 27. ACCESSIBILITY ---------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--accent);
  color: #07090f;
  font-weight: 700;
  border-radius: var(--radius);
  transition: top 0.3s var(--ease-out);
}
.skip-link:focus { top: 16px; outline: 2px solid var(--violet); outline-offset: 2px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------------- 28. UTILITIES ---------------- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-accent { color: var(--accent); }
.text-violet { color: var(--violet); }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: 40px; }
.hide-desktop { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block; }
}

/* ============ View Transitions API (Chrome/Safari) ============ */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out {
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

/* ============ MODAL — Rappel form popup ============ */
.modal-rappel {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  overscroll-behavior: contain;
}
.modal-rappel.open { display: flex; }
.modal-rappel[aria-hidden="false"] { display: flex; }

.modal-rappel .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 15, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  opacity: 0;
  animation: modal-bg-in 0.32s var(--ease-out) forwards;
  cursor: pointer;
}

.modal-rappel .modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(157, 252, 3, 0.08), 0 0 80px rgba(157, 252, 3, 0.10);
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: modal-in 0.42s var(--ease-out) 0.05s forwards;
}

@keyframes modal-bg-in {
  to { opacity: 1; }
}
@keyframes modal-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-rappel .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.25s var(--ease-out);
}
.modal-rappel .modal-close:hover {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
  transform: rotate(90deg);
}
.modal-rappel .modal-close svg { width: 18px; height: 18px; }

.modal-rappel .modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.modal-rappel .modal-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(157, 252, 3, 0.25);
  animation: pulseRing 2s infinite;
}

.modal-rappel h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.modal-rappel .modal-sub {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 24px;
}

.modal-rappel .form-row { margin-bottom: 14px; }
.modal-rappel .form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-rappel .form-field { display: flex; flex-direction: column; gap: 6px; }
.modal-rappel label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.modal-rappel input,
.modal-rappel select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 15px;
  transition: all 0.25s var(--ease-out);
  width: 100%;
}
.modal-rappel input:focus,
.modal-rappel select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(157, 252, 3, 0.06);
  box-shadow: 0 0 0 3px rgba(157, 252, 3, 0.18);
}
.modal-rappel select { cursor: pointer; }
.modal-rappel select option { background: var(--surface); color: var(--text); }

.modal-rappel .modal-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  background: var(--accent);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  border: 0;
  cursor: pointer;
}
.modal-rappel .modal-submit:hover {
  background: var(--lime-light);
  box-shadow: 0 12px 30px rgba(157, 252, 3, 0.32);
  transform: translateY(-2px);
}
.modal-rappel .modal-submit:disabled {
  background: var(--success);
  color: #fff;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.modal-rappel .modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.modal-rappel .modal-divider::before,
.modal-rappel .modal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.modal-rappel .modal-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal-rappel .modal-quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s var(--ease-out);
}
.modal-rappel .modal-quick a:hover {
  border-color: var(--accent);
  background: rgba(157, 252, 3, 0.06);
  transform: translateY(-2px);
}
.modal-rappel .modal-quick a.whatsapp:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.10);
}
.modal-rappel .modal-quick svg { width: 16px; height: 16px; }

.modal-rappel .modal-legal {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}
.modal-rappel .modal-legal a { color: var(--accent); text-decoration: underline; }

.modal-rappel .modal-success {
  display: none;
  text-align: center;
  padding: 12px 0 0;
  color: var(--success);
  font-weight: 600;
  font-size: 14px;
}
.modal-rappel.success .modal-success { display: block; }

@media (max-width: 540px) {
  .modal-rappel { padding: 0; align-items: flex-end; }
  .modal-rappel .modal-card {
    width: 100%;
    max-height: 92vh;
    border-radius: 24px 24px 0 0;
    transform: translateY(40px);
    animation-name: modal-in-mobile;
  }
  @keyframes modal-in-mobile {
    to { opacity: 1; transform: translateY(0); }
  }
  .modal-rappel .form-row.two { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .modal-rappel .modal-backdrop,
  .modal-rappel .modal-card { animation: none !important; opacity: 1 !important; transform: none !important; }
}

body.modal-open { overflow: hidden; }

/* ================================================================
   PHASE 2 — Premium components & animations
   ================================================================ */

/* ============ STICKY OFFER BAR ============ */
.offer-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--bg-2) 0%, #0e1019 50%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
}
.offer-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(157, 252, 3, 0.10) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: offer-shine 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes offer-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.offer-bar.hidden { display: none; }
.offer-bar .offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.offer-bar .offer-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(157, 252, 3, 0.20);
  animation: pulseRing 2s infinite;
}
.offer-bar strong { color: var(--accent); font-weight: 700; }
.offer-bar a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s;
}
.offer-bar a:hover { color: var(--accent); }
.offer-bar .offer-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  border-radius: 50%;
  transition: all 0.25s var(--ease-out);
}
.offer-bar .offer-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.offer-bar .offer-close svg { width: 12px; height: 12px; }
@media (max-width: 720px) {
  .offer-bar { font-size: 11px; gap: 10px; padding-right: 36px; }
  .offer-bar .hide-on-small { display: none; }
}

/* ============ LIVE INTERVENTIONS COUNTER ============ */
.live-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0 0;
}
.live-stat {
  background: var(--surface);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.live-stat::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 217, 126, 0.22);
  animation: pulseRing 1.6s ease-out infinite;
}
.live-stat .live-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--accent);
}
.live-stat .live-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.live-stat .live-sub { font-size: 12px; color: var(--text-muted); }
@media (max-width: 720px) {
  .live-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .live-stats { grid-template-columns: 1fr; }
}

/* ============ COMPARATEUR 2SPIGLASS vs CONCURRENTS ============ */
.compare-table {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  margin-top: 32px;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
}
.compare-row:first-child { border-top: 0; }
.compare-row > * {
  padding: 18px 20px;
  font-size: 14px;
}
.compare-row.head > * {
  padding: 22px 20px;
  background: var(--bg-2);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.compare-row.head .col-2sg {
  background: linear-gradient(180deg, rgba(157, 252, 3, 0.08), rgba(157, 252, 3, 0.02));
  color: var(--accent);
  position: relative;
}
.compare-row.head .col-2sg::after {
  content: "★ ÉLITE";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.compare-row .feature {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}
.compare-row .feature small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.compare-row .col-2sg {
  background: rgba(157, 252, 3, 0.04);
  border-left: 1px solid rgba(157, 252, 3, 0.12);
  border-right: 1px solid rgba(157, 252, 3, 0.12);
  text-align: center;
  font-weight: 600;
  color: var(--accent);
}
.compare-row .col-other {
  text-align: center;
  color: var(--text-muted);
}
.compare-row:hover { background: rgba(255, 255, 255, 0.02); }
.compare-row .check, .compare-row .cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.compare-row .check svg { width: 18px; height: 18px; color: var(--accent); }
.compare-row .cross svg { width: 14px; height: 14px; color: var(--danger); opacity: 0.7; }
@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .compare-row > * { padding: 14px 10px; font-size: 12px; }
  .compare-row .feature { font-size: 13px; }
  .compare-row .feature small { display: none; }
}

/* ============ AVANT / APRÈS SLIDER ============ */
.before-after {
  position: relative;
  width: 100%;
  max-width: 780px;
  aspect-ratio: 1 / 1;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-2);
}

/* Grid for multiple realisations */
.realisations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.realisations-grid .real-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.realisations-grid .before-after {
  margin: 0;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}
.realisations-grid .real-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}
.realisations-grid .real-meta .case-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.realisations-grid .real-meta h3 {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 4px 0 6px;
}
.realisations-grid .real-meta p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.realisations-grid .real-meta .real-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.realisations-grid .real-meta .real-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--text-dim);
}
.realisations-grid .real-meta .real-time {
  text-align: right;
  flex-shrink: 0;
}
.realisations-grid .real-meta .real-time .num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--accent);
  line-height: 1;
}
.realisations-grid .real-meta .real-time .lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 880px) {
  .realisations-grid { grid-template-columns: 1fr; gap: 36px; }
}
.before-after .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.before-after .ba-after {
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.before-after .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(157, 252, 3, 0.5), 0 0 0 1px rgba(0,0,0,0.2);
  pointer-events: none;
}
.before-after .ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(157, 252, 3, 0.4), 0 0 0 4px rgba(157, 252, 3, 0.18);
  color: var(--bg);
  pointer-events: none;
  transition: transform 0.18s var(--ease-out);
}
.before-after.dragging .ba-knob { transform: translate(-50%, -50%) scale(0.92); }
.before-after .ba-knob svg { width: 22px; height: 22px; }
.before-after .ba-label {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  background: rgba(7, 9, 15, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.before-after .ba-label.left { left: 14px; }
.before-after .ba-label.right { right: 14px; color: var(--accent); }

/* ============ MARQUEE ASSUREURS ============ */
.assureurs-marquee {
  --speed: 36s;
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.assureurs-marquee .am-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: am-scroll var(--speed) linear infinite;
}
.assureurs-marquee:hover .am-track { animation-play-state: paused; }
.assureurs-marquee .am-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.3s;
}
.assureurs-marquee .am-item:hover { color: var(--accent); }
.assureurs-marquee .am-item .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes am-scroll {
  to { transform: translateX(-50%); }
}

/* ============ CUSTOM CURSOR (desktop only) ============ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: opacity 0.2s, width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(157, 252, 3, 0.5);
  border-radius: 50%;
  opacity: 0;
}
body.cursor-ready { cursor: none; }
body.cursor-ready a, body.cursor-ready button, body.cursor-ready [role="button"], body.cursor-ready input, body.cursor-ready select, body.cursor-ready textarea { cursor: none; }
body.cursor-ready .cursor-dot, body.cursor-ready .cursor-ring { opacity: 1; }
body.cursor-ready .cursor-ring.hover { width: 56px; height: 56px; border-color: var(--accent); border-width: 2px; }
body.cursor-ready .cursor-dot.hover { opacity: 0; }
@media (hover: none), (max-width: 720px), (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body.cursor-ready { cursor: auto; }
}

/* ============ 3D TILT CARDS ============ */
[data-tilt] {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.4s var(--ease-out);
  will-change: transform;
}
[data-tilt]:hover { transition: transform 0.08s linear; }
@media (hover: none), (prefers-reduced-motion: reduce) {
  [data-tilt] { transform: none !important; }
}

/* ============ TEXT SCRAMBLE ============ */
.scramble {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.scramble .ch { display: inline-block; }

/* ============ Print styles polish ============ */
@media print {
  .nav-wrap, .mobile-nav, .floating-call, .cookies-banner, .footer-bottom .legal-links, .modal-rappel { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a { color: #000 !important; text-decoration: underline; }
  .container { max-width: 100% !important; padding: 0 !important; }
}
