/* ─────────────────────────────────────────────────────────────────────────────
   SDV — Landing page v2 — bolder, larger, animated
   ───────────────────────────────────────────────────────────────────────────── */

:root {
  --ink: #0A0A0A;
  --ink-2: #111111;
  --char: #161616;
  --steel: #1F1F1F;
  --paper: #ffffff;
  --cream: #F4EFE6;
  --bone: #E8E2D5;
  --orange: #FD5000;
  --orange-deep: #C73E00;
  --orange-soft: #FF8A53;
  --rule-light: rgba(10, 10, 10, 0.10);
  --rule-dark: rgba(255, 255, 255, 0.10);
  --rule-dark-2: rgba(255, 255, 255, 0.06);

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);

  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--orange); color: var(--paper); }

/* ── Scroll progress bar (top) ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 100;
  width: 0;
  transition: width 60ms linear;
  box-shadow: 0 0 12px rgba(253, 80, 0, 0.6);
}

/* ── Grain texture overlay (for dark sections) ─────────────────────────── */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Typography primitives ─────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.018em;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.kicker {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.section {
  padding: clamp(64px, 7vw, 110px) 0;
  position: relative;
}
.section.tight { padding: clamp(44px, 5vw, 72px) 0; }
.section.dark { background: var(--ink); color: var(--paper); position: relative; }
.section.cream { background: var(--cream); }
.section.orange { background: var(--orange); color: var(--paper); }

/* ── Reveal-on-scroll animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 60ms; }
.reveal.delay-2 { transition-delay: 140ms; }
.reveal.delay-3 { transition-delay: 220ms; }
.reveal.delay-4 { transition-delay: 300ms; }
.reveal.fade { transform: none; }
.reveal.from-left { transform: translateX(-40px); }
.reveal.from-left.in { transform: translateX(0); }

/* ── Diamond motif ─────────────────────────────────────────────────────── */
.diamond {
  width: 12px; height: 12px;
  background: var(--orange);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}
.diamond.lg { width: 28px; height: 28px; }
.diamond.outline { background: transparent; border: 2px solid currentColor; }

/* Pulse dot (live indicator) */
.pulse-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.4); opacity: 0; }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--paper);
  box-shadow: 0 6px 24px rgba(253, 80, 0, 0.28);
}
.btn-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 10px 30px rgba(253, 80, 0, 0.42);
}
.btn-ghost {
  background: transparent;
  color: currentColor;
  border: 1.5px solid currentColor;
  opacity: 0.92;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); opacity: 1; }
.section.cream .btn-ghost, .section:not(.dark):not(.orange) .btn-ghost { border-color: rgba(10,10,10,0.25); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: var(--bone); }
.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover .btn-arrow::after,
.btn.btn-arrow:hover::after { transform: translateX(6px); }

/* ── Top nav (hidden until scroll) ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-dark);
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.shown { transform: translateY(0); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo { height: 34px; width: auto; }
.nav-links {
  display: flex;
  gap: 38px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.nav-links a { opacity: 0.7; transition: opacity 140ms, color 140ms; position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border: 1px solid var(--rule-dark);
  transition: border-color 160ms, background 160ms;
}
.nav-phone:hover { border-color: var(--orange); background: rgba(253, 80, 0, 0.06); }
.nav-phone .phone-num { color: var(--orange); }
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-phone .phone-num { display: none; }
}

/* ── HERO v4 (full-bleed photo with gradient) ──────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
  filter: brightness(0.92) contrast(1.05) saturate(0.95);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,10,10,0.96) 0%,
      rgba(10,10,10,0.88) 28%,
      rgba(10,10,10,0.55) 52%,
      rgba(10,10,10,0.2) 78%,
      rgba(10,10,10,0.3) 100%
    ),
    linear-gradient(180deg,
      rgba(10,10,10,0.2) 0%,
      rgba(10,10,10,0) 30%,
      rgba(10,10,10,0) 70%,
      rgba(10,10,10,0.6) 100%
    );
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(28px, 3vw, 48px);
}
.hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 56px);
  gap: 24px;
  flex-wrap: wrap;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.hero-status .pulse-dot { width: 7px; height: 7px; }
.hero-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-body {
  max-width: 640px;
  padding-bottom: clamp(28px, 3vw, 48px);
}

/* Hero video placeholder ── square card, white background ─────────────── */
.hero-video {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  align-self: center;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
}
.hero-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 100px rgba(0,0,0,0.5), 0 6px 20px rgba(253,80,0,0.25);
}
.hero-video::before {
  /* Subtle thumbnail texture — replace with real poster when video lands */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(253,80,0,0.08), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(10,10,10,0.06), transparent 60%),
    linear-gradient(180deg, #FAF7F1 0%, #F0EAE0 100%);
}
.hero-video-frame {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-video-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-video-tag .pulse-dot {
  width: 6px; height: 6px;
  background: var(--orange);
}
.hero-video-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  text-align: right;
  max-width: 50%;
  line-height: 1.2;
}

/* Center play button ─────────────────────────────────────────────────── */
.hero-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 12px 32px rgba(253,80,0,0.45);
  animation: playPulse 2.4s ease-in-out infinite;
  transition: transform 180ms ease;
}
.hero-video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.hero-video-play-icon {
  display: inline-block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.hero-video-play-ring,
.hero-video-play-ring.d2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  pointer-events: none;
  animation: playRing 2.4s ease-out infinite;
  opacity: 0;
}
.hero-video-play-ring.d2 { animation-delay: 1.2s; }

@keyframes playRing {
  0%   { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(253,80,0,0.4), 0 0 0 0 rgba(253,80,0,0.5); }
  50%      { box-shadow: 0 12px 32px rgba(253,80,0,0.5), 0 0 0 18px rgba(253,80,0,0); }
}

.hero-video-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  padding-top: 6px;
  border-top: 1px solid rgba(10,10,10,0.08);
  margin-top: auto;
}
.hero-video-foot-r {
  color: var(--orange);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-video { max-width: 380px; justify-self: start; margin-top: 12px; }
}
@media (max-width: 560px) {
  .hero-video { max-width: 100%; }
  .hero-video-play { width: 72px; height: 72px; }
  .hero-video-play-icon { border-width: 12px 0 12px 18px; }
}
.hero-eyebrow { color: var(--orange); margin-bottom: 22px; }
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  margin: 0 0 22px;
  text-wrap: balance;
  color: var(--paper);
}
.hero-h1 .lt { color: var(--orange); }
.hero-arrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}
.hero-arrow-line svg { flex-shrink: 0; }
.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 30px;
  max-width: 540px;
}
.hero-sub strong { color: var(--paper); font-weight: 600; }
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-trust strong { color: rgba(255,255,255,1); font-weight: 700; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

/* Hero foot — Tel que vu sur (full-bleed, content in container) */
.hero-foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,10,10,0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero-foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 36px);
  padding: 18px var(--gutter);
  flex-wrap: wrap;
}
.hero-foot-lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hero-foot-lbl::before {
  content: "";
  width: 18px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero-foot-logos {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: center;
}
.hero-foot-logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: opacity 200ms ease;
}
.hero-foot-logo img {
  height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 1;
  transition: transform 220ms ease;
}
.hero-foot-logo:hover img { transform: scale(1.05); }
.hero-foot-aqtr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .hero-foot-logo img { height: 28px; max-width: 120px; }
  .hero-foot-logos { gap: clamp(16px, 2.4vw, 28px); }
}
@media (max-width: 720px) {
  .hero-foot-inner { justify-content: center; }
  .hero-foot-aqtr { display: none; }
  .hero-foot-lbl { font-size: 10px; }
}

@media (max-width: 980px) {
  .hero-bg img { object-position: 75% 30%; }
  .hero-bg::after {
    background:
      linear-gradient(90deg,
        rgba(10,10,10,0.95) 0%,
        rgba(10,10,10,0.8) 60%,
        rgba(10,10,10,0.55) 100%
      ),
      linear-gradient(180deg, rgba(10,10,10,0) 60%, rgba(10,10,10,0.7) 100%);
  }
  .hero-foot-logos { gap: 20px; }
}

/* ── Marquee strip ─────────────────────────────────────────────────────── */
.marquee {
  background: var(--orange);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track .star {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--paper);
  transform: rotate(45deg);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee.dark { background: var(--ink); color: var(--paper); }
.marquee.dark .marquee-track .star { background: var(--orange); }
.marquee.cream { background: var(--cream); color: var(--ink); }
.marquee.cream .marquee-track .star { background: var(--orange); }

/* ── Stats bar (orange, like original SDV) ─────────────────────────────── */
.stats-bar {
  background: var(--orange);
  color: var(--paper);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
}
.stat-block {
  padding: clamp(24px, 2.6vw, 36px) clamp(20px, 2vw, 32px);
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 1px solid rgba(255,255,255,0.18);
  position: relative;
}
.stat-block:first-child { border-left: none; }
.stat-block-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 8px;
}
.stat-block-icon svg { width: 100%; height: 100%; }
.stat-block-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.stat-block-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.014em;
  white-space: nowrap;
}
.stat-block-num .unit { font-size: 0.55em; opacity: 0.9; margin-left: 2px; }
.stat-block-lbl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  max-width: 240px;
}
.stat-block-tag {
  display: none;
}
@media (max-width: 720px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-block { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); }
  .stat-block:first-child { border-top: none; }
}

/* ── Section header (large) ────────────────────────────────────────────── */
.sec-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.sec-head h2 .lt { color: var(--orange); }
.sec-head p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.75;
  max-width: 460px;
}
.sec-head .eyebrow { color: var(--orange); }
.section.dark .sec-head .eyebrow { color: var(--orange); }
@media (max-width: 880px) {
  .sec-head { grid-template-columns: 1fr; align-items: start; }
}

/* ── Pour qui (editorial — cream) ──────────────────────────────────────── */
.pourqui {
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.pourqui-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.pourqui h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 0;
}
.pourqui h2 .accent { color: var(--orange); }
.pourqui-body p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(10,10,10,0.72);
  margin: 0 0 22px;
}
.pourqui-body p:last-child { margin: 0; }
.pourqui-body strong { color: var(--ink); font-weight: 600; }
.pourqui-watermark { display: none; }
.pourqui > .container { position: relative; z-index: 1; }
@media (max-width: 880px) { .pourqui-grid { grid-template-columns: 1fr; } }

/* ── Équipement cards (alternating, larger) ────────────────────────────── */
.equip-list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 64px);
}
.equip-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
  min-height: 480px;
}
.equip-row.flip { grid-template-columns: 1fr 1.1fr; }
.equip-row.flip .equip-media-wrap { order: 2; }
.equip-row.flip .equip-info { order: 1; }

.equip-media-wrap {
  position: relative;
  overflow: hidden;
  background: var(--char);
}
.equip-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.equip-row:hover .equip-media-wrap img { transform: scale(1.05); }
.equip-media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0) 50%);
  pointer-events: none;
  transition: opacity 240ms;
}
.equip-num-huge {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.8;
  color: var(--paper);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 28px rgba(0,0,0,0.6);
  z-index: 2;
  pointer-events: none;
  font-feature-settings: "tnum" 1;
}
.equip-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--paper);
  padding: 9px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.equip-info {
  background: var(--char);
  color: var(--paper);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  border: 1px solid var(--rule-dark);
}
.equip-info-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.equip-info-meta .sep { opacity: 0.4; }
.equip-info h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
.equip-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.equip-uses {
  border-top: 1px solid var(--rule-dark);
  padding-top: 22px;
  margin-top: auto;
}
.equip-uses-lbl {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.equip-uses ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.equip-uses li {
  background: rgba(255,255,255,0.05);
  padding: 8px 13px;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255,255,255,0.85);
  border: 1px solid var(--rule-dark);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 160ms, border-color 160ms;
}
.equip-uses li:hover { background: rgba(253, 80, 0, 0.12); border-color: var(--orange); }

@media (max-width: 880px) {
  .equip-row, .equip-row.flip { grid-template-columns: 1fr; min-height: 0; }
  .equip-row.flip .equip-media-wrap { order: 1; }
  .equip-row.flip .equip-info { order: 2; }
  .equip-media-wrap { aspect-ratio: 4/3; }
}

/* ── Zones / Map ───────────────────────────────────────────────────────── */
.zones-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.zones-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 14px 0 24px;
}
.zones-text h2 .lt { color: var(--orange); }
.zones-text p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10,10,10,0.72);
  margin: 0 0 18px;
}
.zones-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--rule-light);
}
.zones-list-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-light);
  cursor: pointer;
  transition: padding 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.zones-list-item:hover { padding-left: 12px; }
.zones-list-item .num {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.zones-list-item .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
}
.zones-list-item .meta {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(10,10,10,0.5);
}
.zones-map {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  overflow: hidden;
  border: 1px solid var(--rule-light);
}
.zones-map svg { width: 100%; height: 100%; display: block; }
.zones-map-img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-width: 880px) { .zones-grid { grid-template-columns: 1fr; } }

/* Pulse on map markers */
.map-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: mapPulse 2.4s ease-out infinite;
}
.map-pulse.d2 { animation-delay: 0.8s; }
.map-pulse.d3 { animation-delay: 1.6s; }
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── Process — light, connected steps line ─────────────────────────────── */
.process {
  background: var(--cream);
  color: var(--ink);
  position: relative;
}
.process .grain { display: none; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.process-image-wrap {
  position: sticky;
  top: 110px;
  align-self: start;
  height: calc(100vh - 160px);
  max-height: 640px;
  min-height: 480px;
}
.process-image {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.process-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.process-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.5) 100%);
}
.process-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(20px, 2vw, 32px);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Steps with continuous vertical line behind the numbers */
.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 0;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 28px; /* center of number circle */
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: var(--orange);
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 28px;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}
.process-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.01em;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--cream);
  flex-shrink: 0;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 12px 0 12px;
  text-wrap: balance;
  color: var(--ink);
}
.process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10,10,10,0.72);
  margin: 0;
}
.process .sec-head h2,
.process .sec-head p { color: var(--ink); }
.process .sec-head p { color: rgba(10,10,10,0.7); }
@media (max-width: 940px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-image-wrap { position: relative; top: 0; height: auto; aspect-ratio: 4 / 3; min-height: 0; }
  .process-steps::before { left: 24px; }
  .process-step { grid-template-columns: 48px 1fr; gap: 18px; }
  .process-step-num { width: 48px; height: 48px; font-size: 18px; }
}

/* ── Témoignage placeholder ────────────────────────────────────────────── */
.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--rule-dark);
}
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 50%, rgba(253,80,0,0.2), rgba(10,10,10,0) 70%);
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.video-play {
  position: relative;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 10px 40px rgba(253,80,0,0.5);
}
.video-play::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}
.video-play:hover { transform: scale(1.06); box-shadow: 0 14px 56px rgba(253,80,0,0.7); }
.video-play::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
  position: relative;
  z-index: 3;
}
.video-note {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ── Logo strips ───────────────────────────────────────────────────────── */
.logo-strip {
  display: grid;
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
}
.logo-strip-cell {
  background: var(--paper);
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgba(10,10,10,0.5);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 19px;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}
.logo-strip-cell:hover { opacity: 1; color: var(--ink); transform: scale(1.02); }
.logo-strip.clients { grid-template-columns: repeat(4, 1fr); }
.logo-strip.dark .logo-strip-cell { background: var(--char); color: rgba(255,255,255,0.4); }
.logo-strip.dark .logo-strip-cell:hover { color: var(--paper); }
.logo-strip.dark { background: var(--rule-dark); border-color: var(--rule-dark); }
@media (max-width: 780px) { .logo-strip.clients { grid-template-columns: repeat(2, 1fr); } }

/* ── Services cards ────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--rule-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 320px;
  position: relative;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms, background 280ms, color 280ms;
  cursor: pointer;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.current {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.service-card.current::before { background: var(--orange); transform: scaleX(1); }
.service-card.current .service-icon { color: var(--orange); }
.service-card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--orange);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(10,10,10,0.4);
  text-transform: uppercase;
}
.service-card.current .service-num { color: rgba(255,255,255,0.4); }
.service-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.72;
  flex: 1;
}
.service-card .more {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 200ms;
}
.service-card:hover .more { gap: 12px; }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── À propos ──────────────────────────────────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border: 1px solid var(--rule-light);
  margin-bottom: 56px;
}
.about-stat {
  background: var(--paper);
  padding: clamp(40px, 4vw, 64px) clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: background 240ms;
}
.about-stat:hover { background: var(--bone); }
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.018em;
}
.about-stat-num .unit { color: var(--orange); font-size: 0.55em; margin-left: 4px; letter-spacing: -0.01em; }
.about-stat-lbl {
  font-size: 15px;
  color: rgba(10,10,10,0.65);
  line-height: 1.4;
  max-width: 240px;
}
.about-stat-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(10,10,10,0.4);
  text-transform: uppercase;
}
.about-prose {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  text-wrap: balance;
}
.about-prose strong { color: var(--orange); font-weight: 800; }
@media (max-width: 780px) { .about-stats { grid-template-columns: 1fr; } }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--rule-light); }
.faq-item { border-bottom: 1px solid var(--rule-light); transition: padding-left 240ms; }
.faq-item:hover { padding-left: 8px; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.faq-toggle {
  width: 40px; height: 40px;
  border: 1.5px solid var(--rule-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms, color 200ms, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-q:hover .faq-toggle { border-color: var(--orange); color: var(--orange); }
.faq-item.open .faq-toggle { background: var(--orange); border-color: var(--orange); color: var(--paper); transform: rotate(0deg); }
.faq-toggle svg { width: 14px; height: 14px; transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 360ms ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 4px 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10,10,10,0.72);
  max-width: 720px;
}
.faq-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.16em;
  margin-right: 18px;
}
.faq-aside { position: sticky; top: 110px; align-self: start; }
.faq-aside h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  margin: 14px 0 20px;
  text-wrap: balance;
}
.faq-aside h2 .lt { color: var(--orange); }
.faq-aside p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10,10,10,0.7);
  margin: 0 0 28px;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: relative; top: 0; }
}

/* ── Final CTA ─────────────────────────────────────────────────────────── */
.cta-final {
  background: var(--orange);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(96px, 12vw, 180px) 0;
  max-width: 1180px;
  margin: 0 auto;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.cta-final p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  margin: 0 0 40px;
  opacity: 0.96;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 500;
}
.cta-final-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-final-phone {
  margin-top: 36px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.cta-final-phone .phone-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-left: 10px;
  color: var(--paper);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--rule-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-dark);
  margin-bottom: 32px;
}
.footer-brand img { width: 130px; max-width: 55%; height: auto; opacity: 0.92; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 320px; line-height: 1.55; margin: 0; }
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--orange);
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
}
.footer-col li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

.clients-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 44px);
}

/* ── Video modal ───────────────────────────────────────────────────────── */
.vm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.84);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  animation: vmFade 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes vmFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.vm-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  animation: vmRise 360ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
@keyframes vmRise {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.vm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--rule-dark);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms, transform 200ms, border-color 200ms;
}
.vm-close:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.05); }
.vm-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px 16px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--rule-dark);
}
.vm-meta-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vm-meta-tag .pulse-dot { width: 6px; height: 6px; }
.vm-meta-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.vm-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vm-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vm-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid var(--rule-dark);
}
.vm-foot-r { color: var(--orange); font-weight: 700; }
@media (max-width: 640px) {
  .vm-meta-name { display: none; }
  .vm-foot span:first-child { display: none; }
  .vm-foot { justify-content: flex-end; }
}

/* ── "Voir la vidéo" CTA (animated) ────────────────────────────────────── */
.video-cta {
  position: relative;
  overflow: visible;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(253, 80, 0, 0.28), 0 0 0 0 rgba(253,80,0,0.55); }
  50%      { box-shadow: 0 10px 32px rgba(253, 80, 0, 0.5), 0 0 0 14px rgba(253,80,0,0); }
}
.video-cta-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  margin-right: 6px;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.video-cta:hover .video-cta-play {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}
.video-cta-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
  position: relative;
  z-index: 2;
}
.video-cta-play-ring,
.video-cta-play-ring.d2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  pointer-events: none;
  animation: ctaRing 2.4s ease-out infinite;
  opacity: 0;
}
.video-cta-play-ring.d2 { animation-delay: 1.2s; }
@keyframes ctaRing {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
.video-cta:hover { animation-play-state: paused; transform: translateY(-3px); }

/* ── Floating quote button ─────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 280ms ease, transform 280ms ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.float-cta.shown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.float-cta .btn {
  padding: 16px 24px;
  font-size: 15px;
  box-shadow: 0 12px 36px rgba(253,80,0,0.4), 0 4px 12px rgba(0,0,0,0.25);
}
.float-cta-meta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  background: rgba(255,255,255,0.95);
  padding: 5px 10px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(10,10,10,0.08);
  white-space: nowrap;
}
.float-cta-meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
@media (max-width: 560px) {
  .float-cta { right: 16px; bottom: 16px; }
  .float-cta-meta { display: none; }
}

/* ── Utility ───────────────────────────────────────────────────────────── */
.hide { display: none !important; }
.text-orange { color: var(--orange); }

/* ─────────────────────────────────────────────────────────────────────────
   v2 overrides (were inline in SDV Landing Page v2.html)
   ───────────────────────────────────────────────────────────────────────── */
/* v2: 5 logos clients sur une seule rangée */
.logo-strip.clients-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .logo-strip.clients-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-strip.clients-5 { grid-template-columns: repeat(2, 1fr); } }
/* v2: footer sans colonne Régions */
.footer-grid-3 { grid-template-columns: 1.6fr 1fr 1fr; }
@media (max-width: 880px) { .footer-grid-3 { grid-template-columns: 1fr 1fr; } }

/* ── Nav : numéro sans frais (sans highlight) à côté du bouton ──────────── */
.nav-cta-group { display: flex; align-items: center; gap: 18px; }
.nav-tollfree {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: color 140ms;
}
.nav-tollfree:hover { color: #fff; }
@media (max-width: 1100px) { .nav-tollfree { display: none; } }

/* ── Hero : poster vidéo dans la carte de droite ───────────────────────── */
.hero-video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-video:has(.hero-video-poster)::before {
  background: linear-gradient(180deg, rgba(10,10,10,0.10) 0%, rgba(10,10,10,0.55) 100%);
  z-index: 2;
}
.hero-video:has(.hero-video-poster) .hero-video-frame { z-index: 3; }
.hero-video:has(.hero-video-poster) .hero-video-tag,
.hero-video:has(.hero-video-poster) .hero-video-name,
.hero-video:has(.hero-video-poster) .hero-video-foot,
.hero-video:has(.hero-video-poster) .hero-video-foot-r { color: #fff; }
.hero-video:has(.hero-video-poster) .hero-video-foot { border-top-color: rgba(255,255,255,0.28); }

/* ── Logos clients (images) ────────────────────────────────────────────── */
.logo-strip.clients .logo-strip-cell img {
  max-height: 44px;
  max-width: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-strip.clients .logo-strip-cell:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 560px) { .logo-strip.clients .logo-strip-cell img { max-height: 38px; } }
