/* ============================================================
   Digital Dreamsbox — global styles (THÈME SOMBRE)
   Palette : #28374D navy / #43ADE9 sky / #FFFFFF white
   ============================================================ */

:root {
  /* All "lighter than #1F2C3F" navies collapse to the deep #0B1526.
     Variations & depth come from soft radial sky glows, not from base color. */
  --navy: #0B1526;
  --navy-90: rgba(11, 21, 38, 0.92);
  --navy-deep: #0B1526;
  --navy-soft: #0B1526;
  --navy-elev: #0B1526;
  --ink: #060D18;          /* even darker accent (kept for footer & deepest sections) */
  --sky: #43ADE9;
  --sky-08: rgba(67, 173, 233, 0.08);
  --sky-15: rgba(67, 173, 233, 0.15);
  --sky-30: rgba(67, 173, 233, 0.30);
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.72);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-06: rgba(255, 255, 255, 0.06);
  --rule: rgba(255, 255, 255, 0.10);

  --f-sf: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Poppins", system-ui, sans-serif;
  --f-phudu: "Phudu", "Inter", sans-serif;
  --f-sci: "Science Gothic", "Inter", sans-serif;
  --f-logo: "Righteous", "Inter", sans-serif;
  --f-baloo: "Baloo 2", "Inter", sans-serif;

  --rule-strong: rgba(255, 255, 255, 0.16);
  --shell: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--navy-deep); }
body {
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--white);
  background: var(--navy-deep);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* ----- Animated blob background layer -----
   6 orbes lumineux bleus : 3 moyens (ambiance) + 3 petits (accents).
   Injectés via script.js. Vitesse contrôlée au scroll via WAAPI playbackRate. */
#bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
/* ── Moyens — ambiance de fond ── */
.blob-1 {
  width: 300px; height: 250px;
  background: rgba(50, 160, 230, 0.15);
  filter: blur(70px);
  top: -30px; left: -30px;
  animation: blobDrift1 11s ease-in-out infinite alternate;
}
.blob-2 {
  width: 260px; height: 220px;
  background: rgba(67, 173, 233, 0.13);
  filter: blur(65px);
  top: -20px; right: -20px;
  animation: blobDrift2 9s ease-in-out infinite alternate;
}
.blob-3 {
  width: 240px; height: 200px;
  background: rgba(40, 140, 220, 0.14);
  filter: blur(60px);
  bottom: -30px; right: 8%;
  animation: blobDrift3 12s ease-in-out infinite alternate;
}

/* Déformation goutte d'eau : à mi-course le blob s'étire dans la direction de déplacement */
@keyframes blobDrift1 {
  0%   { transform: translate(0,      0    ) scaleX(1)    scaleY(1);    }
  50%  { transform: translate(105px,  80px ) scaleX(1.38) scaleY(0.74); }
  100% { transform: translate(210px,  160px) scaleX(1)    scaleY(1);    }
}
@keyframes blobDrift2 {
  0%   { transform: translate(0,       0    ) scaleX(1.06) scaleY(1);    }
  50%  { transform: translate(-78px,   88px ) scaleX(0.76) scaleY(1.38); }
  100% { transform: translate(-155px,  175px) scaleX(1.06) scaleY(1);    }
}
@keyframes blobDrift3 {
  0%   { transform: translate(0,       0     ) scaleX(1)    scaleY(1);    }
  50%  { transform: translate(-88px,  -65px  ) scaleX(0.78) scaleY(1.32); }
  100% { transform: translate(-175px, -130px ) scaleX(1)    scaleY(1);    }
}
@keyframes blobDrift4 {
  0%   { transform: translate(0,      0     ) scaleX(0.95) scaleY(1);    }
  50%  { transform: translate(68px,  -55px  ) scaleX(1.36) scaleY(0.76); }
  100% { transform: translate(135px, -110px ) scaleX(0.95) scaleY(1);    }
}
main, header, footer { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--sky); color: var(--navy-deep); }

/* ----- shells ----- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad-x); }
.shell-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--pad-x); }

/* ----- type ----- */
.eyebrow {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--sky);
  display: inline-block;
}

.h-section {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(26px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: var(--white);
}
.h-section.science {
  font-family: var(--f-sci);
  font-weight: 600;
  font-stretch: 125%;
  letter-spacing: -0.01em;
}

.lede {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  max-width: 58ch;
  color: var(--white);
}

.body-md {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: var(--white-70);
}

/* ----- buttons ----- */
.btn {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  padding: 11px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 220ms cubic-bezier(.2,.7,.2,1),
              background-color 220ms ease,
              color 220ms ease,
              box-shadow 220ms ease,
              border-color 220ms ease;
  will-change: transform;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}
.btn .arr { transition: transform 220ms cubic-bezier(.2,.7,.2,1); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 8px 24px -10px rgba(67, 173, 233, 0.65);
}
.btn-primary:hover {
  background: #2f9dd9;
  box-shadow: 0 18px 30px -12px rgba(67, 173, 233, 0.75);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--sky); color: var(--sky); }

.btn-solid {
  background: var(--white);
  color: var(--navy-deep);
}
.btn-solid:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px 0;
  transition: background-color 280ms ease, backdrop-filter 280ms ease, box-shadow 280ms ease, padding 280ms ease;
}
.site-header.scrolled {
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--rule);
  padding: 12px 0;
}
.site-header.hidden {
  transform: translateY(-100%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { height: 38px; width: auto; }
.brand-text { display: none; }
.brand-text .b1 {
  font-family: var(--f-baloo);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0;
}
.brand-text .b2 {
  font-family: var(--f-baloo);
  font-weight: 700;
  font-size: 18px;
  color: var(--sky);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  position: relative;
  transition: color 150ms ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--sky); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  transition: background 220ms ease, border-color 220ms ease;
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.22);
}
.nav-toggle .line {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity   250ms ease;
}
[aria-expanded="true"].nav-toggle .line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
[aria-expanded="true"].nav-toggle .line:nth-child(2) { opacity: 0; transform: scaleX(0); }
[aria-expanded="true"].nav-toggle .line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Full-screen mobile overlay ───────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 75;
  background: #0B1526;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
  clip-path: circle(0% at calc(100% - 30px) 38px);
  transition:
    opacity 480ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 540ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(160% at calc(100% - 30px) 38px);
}
.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 100px clamp(28px, 6vw, 60px) clamp(36px, 6vw, 60px);
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.nav-overlay-links a {
  font-family: var(--f-phudu);
  font-size: clamp(36px, 8.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.025em;
  line-height: 1;
  opacity: 0;
  transform: translateX(-18px);
  transition:
    color       200ms ease,
    opacity     480ms cubic-bezier(0.16, 1, 0.3, 1),
    transform   480ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 65ms + 160ms);
}
.nav-overlay.open .nav-overlay-links a { opacity: 1; transform: translateX(0); }
.nav-overlay-links a:hover { color: var(--sky); }
.nav-overlay-links a .nav-num {
  font-family: var(--f-sf);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--sky);
  opacity: 0.55;
  width: 26px;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 10px;
}
.nav-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity   480ms cubic-bezier(0.16, 1, 0.3, 1) 400ms,
    transform 480ms cubic-bezier(0.16, 1, 0.3, 1) 400ms;
}
.nav-overlay.open .nav-overlay-bottom { opacity: 1; transform: translateY(0); }
.nav-overlay-bottom .btn { justify-content: center; }
.nav-overlay-location {
  font-family: var(--f-sf);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

body.nav-open { overflow: hidden; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   QUICK CONTACT — collapsed pills that expand on hover
   ============================================================ */
.quick-contact {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.qc-btn {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14px;
  height: 56px;
  padding: 4px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.55);
  overflow: hidden;
  max-width: 56px;
  transition:
    max-width 380ms cubic-bezier(.2,.7,.2,1),
    transform 220ms ease,
    box-shadow 220ms ease;
}
.qc-btn:hover,
.qc-btn:focus-visible {
  max-width: 340px;
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -14px rgba(0,0,0,0.6);
}
.qc-btn .qc-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 220ms ease, color 220ms ease;
}
.qc-btn .qc-icon svg { width: 20px; height: 20px; }
.qc-btn .qc-label {
  padding: 0 22px 0 14px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 240ms ease 80ms, transform 280ms cubic-bezier(.2,.7,.2,1) 80ms;
  white-space: nowrap;
}
.qc-btn:hover .qc-label,
.qc-btn:focus-visible .qc-label { opacity: 1; transform: none; }

/* ============================================================
   HERO  (full-width — matches screenshot)
   ============================================================ */
.hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--rule);
  pointer-events: none;
}
.hero-shell { position: relative; }

.hero .eyebrow { margin-bottom: 38px; }

.hero-title {
  font-family: var(--f-phudu);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 30px;
}
.hero-title .accent { color: var(--sky); }

.hero-sub {
  font-family: var(--f-sf);
  font-weight: 600;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--white-70);
  max-width: 60ch;
  margin: 0 0 36px;
}
.hero-sub .brk-md { display: none; }
@media (min-width: 980px) {
  .hero-sub .brk-md { display: inline; }
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  max-width: 760px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .k {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-55);
}
.hero-meta .v {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

@media (max-width: 720px) {
  .hero { padding: 130px 0 70px; }
  .hero-title { font-size: clamp(34px, 9vw, 52px); }
  .hero-meta { flex-wrap: wrap; gap: 28px; }
}

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: var(--navy);
  overflow: hidden;
  box-shadow: 0 60px 120px -50px rgba(0,0,0,0.7);
  border: 1px solid var(--rule);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 10%, rgba(67,173,233,0.28), transparent 60%),
    radial-gradient(60% 50% at 90% 90%, rgba(67,173,233,0.20), transparent 60%);
}
.hero-visual .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.hero-visual .hv-content {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}
.hv-row { display: flex; justify-content: space-between; align-items: flex-start; }
.hv-chip {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}
.hv-bigmark {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--white);
}
.hv-bigmark .blue { color: var(--sky); }

.hv-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}
.hv-caption {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  max-width: 28ch;
  color: var(--white-70);
}
.hv-dot {
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(67,173,233,0.25);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(67,173,233,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(67,173,233,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,173,233,0); }
}

/* floating cards on hero */
.hv-card {
  position: absolute;
  background: var(--white);
  color: var(--navy-deep);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-y 5s ease-in-out infinite;
}
.hv-card.c1 { left: -18px; top: 26%; }
.hv-card.c2 { right: -22px; bottom: 18%; animation-delay: -2.5s; }
.hv-card .ic {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--sky-15);
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hv-card .ic svg { width: 14px; height: 14px; }
.hv-card span { display: block; }
.hv-card .sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  color: rgba(40,55,77,0.55);
  margin-top: 2px;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 5 / 4; }
  .hv-card.c1 { left: 8px; }
  .hv-card.c2 { right: 8px; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: rgba(255,255,255,0.02);
  color: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .sep { color: var(--sky); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   PROBLEM / EMPATHY  (DARK)
   ============================================================ */
.section-problem {
  padding: 120px 0 100px;
  position: relative;
  isolation: isolate;
}
.section-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.problem-quote {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
}
.problem-quote em {
  font-style: normal;
  color: var(--sky);
}
.problem-stack { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 26px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--rule);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.problem-card .num {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 22px;
  color: var(--sky);
}
.problem-card h4 {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin: 0 0 6px;
}
.problem-card p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--white-70);
  margin: 0;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   ABOUT — Qui sommes-nous
   ============================================================ */
.section-about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-quote {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--white);
  padding: 22px 0 22px 26px;
  border-left: 3px solid var(--sky);
  margin: 28px 0 0;
}
.about-quote .who {
  display: block;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 13px;
  color: var(--white-55);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.about-fact {
  padding: 24px 22px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  min-width: 0;
  overflow: hidden;
}
.about-fact .v {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--sky);
  letter-spacing: -0.02em;
}
.about-fact .k {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-top: 10px;
}
.about-fact .d {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--white-55);
  margin-top: 6px;
}

.about-principles {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-principle {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rule);
}
.about-principle .ic {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--sky-15);
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-principle .ic svg { width: 14px; height: 14px; }
.about-principle p {
  margin: 0;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--white);
}
.about-principle p em { color: var(--sky); font-style: normal; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-facts { grid-template-columns: 1fr 1fr; gap: 10px; }
  .section-about { padding: 72px 0; }
  .about-fact { padding: 16px 14px; }
  .about-fact .v { font-size: clamp(22px, 6vw, 40px); font-stretch: 100%; }
  .about-fact .k { font-size: 10px; margin-top: 6px; }
  .about-fact .d { font-size: 12px; }
}

/* ============================================================
   PROCESS — FREE horizontal scroll (no scroll hijack)
   ============================================================ */
.section-process {
  color: var(--white);
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.section-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.process-intro {
  padding: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.process-intro .right {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: var(--white-70);
  max-width: 46ch;
  justify-self: end;
}

.process-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 28px;
}
.process-hint {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.process-hint .swipe {
  width: 28px; height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  position: relative;
}
.process-hint .swipe::after {
  content: "";
  position: absolute;
  top: 50%; left: 4px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--sky);
  animation: hint-slide 2.2s ease-in-out infinite;
}
@keyframes hint-slide {
  0%, 100% { left: 4px; opacity: 1; }
  50% { left: 18px; opacity: 0.4; }
}

.process-nav {
  display: flex;
  gap: 8px;
}
.process-nav button {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease, background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.process-nav button:hover:not(:disabled) { border-color: var(--sky); color: var(--sky); transform: translateY(-2px); }
.process-nav button:disabled { opacity: 0.35; cursor: not-allowed; }
.process-nav svg { width: 16px; height: 16px; }

.process-rail-wrap {
  position: relative;
}

.process-rail {
  display: flex;
  gap: 24px;
  padding: 12px max(var(--pad-x), calc((100vw - var(--shell)) / 2 + var(--pad-x))) 80px max(var(--pad-x), calc((100vw - var(--shell)) / 2 + var(--pad-x)));
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.process-card { scroll-snap-align: center; }
.process-rail.is-grabbing { cursor: grabbing; scroll-behavior: auto; }
.process-rail::-webkit-scrollbar { display: none; }

.process-card {
  flex: 0 0 clamp(300px, 36vw, 460px);
  min-height: clamp(440px, 58vh, 540px);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--rule);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  position: relative;
  backdrop-filter: blur(6px);
  user-select: none;
  overflow: hidden;
}
.process-card > div:first-child {
  min-height: 185px;
}
.process-card > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-insp-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 12px;
}

.process-card .step-num {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.10);
}
.process-card .step-num { color: rgba(255,255,255,0.10); }
.process-card h3 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 8px 0 12px;
}
.process-card .duration {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.process-card p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: var(--white-70);
  margin: 0 0 18px;
}
.process-card ul {
  list-style: none;
  margin: auto 0 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-card li {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-card li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--sky);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.process-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
  pointer-events: none;
}
.process-progress .pdot {
  width: 28px; height: 4px;
  border-radius: 999px;
  background: var(--rule);
  transition: background-color 280ms ease, width 280ms ease;
}
.process-progress .pdot.on { background: var(--sky); width: 56px; }

@media (max-width: 800px) {
  .process-intro { grid-template-columns: 1fr; gap: 24px; padding: 0 0 32px; }
  .process-controls { flex-direction: column-reverse; align-items: stretch; gap: 14px; }
  .process-nav { justify-content: flex-end; }
}

/* ============================================================
   SERVICES — stack scroll (DARK)
   ============================================================ */
.section-services {
  padding: 140px 0 60px;
  position: relative;
  isolation: isolate;
}
.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.services-head {
  text-align: left;
  margin-bottom: 40px;
}
.services-head h2 { color: var(--white); }
.services-head .lede { color: var(--white-70); margin-top: 14px; }

.services-stack {
  position: relative;
}
.service-card {
  position: sticky;
  top: 90px;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #0B1729, #060917);
  color: var(--white);
  border: 1px solid var(--rule);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 50px 100px -50px rgba(0,0,0,0.7);
  transform-origin: top center;
}
.service-card.alt {
  background: linear-gradient(to bottom, #0B1729, #060917);
}

.service-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 460px;
}
.service-copy {
  padding: 48px clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.service-copy .num-tag {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}
.service-copy h3 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}
.service-copy .promise {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  max-width: 40ch;
  color: var(--white);
}
.service-copy .benefit {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 50ch;
  color: var(--white-70);
}
.service-copy .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.service-copy .pill {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  color: var(--white-70);
}

.service-visual {
  position: relative;
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  border-left: 1px solid var(--rule);
}
.service-card.alt .service-visual {
  background: rgba(0,0,0,0.25);
}
.service-visual--photo {
  background: none;
}
.service-visual--photo img {
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: cover;
  display: block;
  margin: 16px;
  border-radius: 6px;
}

.sv-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.sv-overlay {
  position: absolute;
  background: var(--sky);
  color: var(--white);
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 8px;
  bottom: 24px;
  left: 24px;
  box-shadow: 0 14px 30px -10px rgba(67,173,233,0.6);
}
.sv-overlay-2 {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white);
  color: var(--navy-deep);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4);
}
.sv-overlay-2 .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--sky); animation: pulse 2.4s ease-out infinite; }

/* mock window for site */
.sv-window {
  position: absolute;
  inset: 28px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.sv-window .bar {
  height: 26px;
  background: #f0f3f8;
  border-bottom: 1px solid rgba(40,55,77,0.10);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.sv-window .bar .b { width: 8px; height: 8px; border-radius: 999px; background: #cdd5e0; }
.sv-window .bar .url {
  flex: 1;
  height: 14px;
  background: var(--white);
  border-radius: 6px;
  margin-left: 10px;
  border: 1px solid rgba(40,55,77,0.10);
}
.sv-window .body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-window .line { height: 8px; background: #eef1f6; border-radius: 4px; }
.sv-window .line.t { width: 60%; height: 14px; background: var(--navy-deep); }
.sv-window .line.s { width: 40%; }
.sv-window .blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.sv-window .blk { background: #eef1f6; border-radius: 8px; height: 60px; }
.sv-window .blk.hl { background: var(--sky-15); }

/* google ads mock */
.sv-search {
  position: absolute;
  inset: 28px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-search .qbar {
  height: 36px;
  border: 1px solid rgba(40,55,77,0.10);
  border-radius: 999px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(40,55,77,0.55);
}
.sv-search .qbar .qi { width: 12px; height: 12px; border-radius: 999px; border: 1.5px solid var(--navy-deep); }
.ad-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 11.5px;
  color: var(--navy-deep);
}
.ad-row .tag {
  font-family: var(--f-sf);
  font-weight: 700;
  background: var(--sky);
  color: white;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.ad-row .ttl {
  color: #1a0dab;
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 12.5px;
}
.ad-row .url { color: rgba(40,55,77,0.7); font-size: 10.5px; }
.ad-row .desc { color: rgba(40,55,77,0.65); font-size: 10.5px; margin-top: 2px; }

/* signage mock */
.sv-sign {
  position: absolute;
  inset: 28px;
  background: var(--navy-deep);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: white;
  border: 4px solid #2a3a52;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 30px 60px -20px rgba(0,0,0,0.5);
}
.sv-sign .truck {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.02em;
}
.sv-sign .truck .b { color: var(--sky); }
.sv-sign .sub {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-70);
}
.sv-sign .stripe {
  position: absolute;
  left: -10%; right: -10%;
  bottom: 22%;
  height: 14px;
  background: var(--sky);
  transform: rotate(-3deg);
}

/* branding mock */
.sv-brand {
  position: absolute;
  inset: 28px;
  background: var(--navy-deep);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--rule);
}
.sv-brand > div {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.sv-brand .sw1 { background: var(--navy); color: white; font-size: 48px; }
.sv-brand .sw2 { background: var(--sky); color: white; font-size: 16px; font-family: var(--f-sf); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sv-brand .sw3 { background: var(--white); color: var(--navy-deep); font-size: 16px; font-family: var(--f-sf); font-weight: 700; }
.sv-brand .sw4 { background: var(--navy); color: var(--sky); font-size: 36px; }

@media (max-width: 900px) {
  .service-inner { grid-template-columns: 1fr; }
  .service-visual { min-height: 240px; border-left: 0; border-top: 1px solid var(--rule); }
  .service-card { top: 80px; }
  .service-copy .pills { display: none; }
  .service-copy {
    padding: 28px clamp(20px, 5vw, 36px);
    gap: 10px;
  }
  .service-copy .promise { font-size: 15px; }
  .service-copy .benefit  { font-size: 13px; }
}

/* ============================================================
   PROOF / TESTIMONIALS (DARK)
   ============================================================ */
.section-proof {
  padding: 120px 0;
  position: relative;
  isolation: isolate;
}
.section-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.proof-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.proof-head .right p { max-width: 44ch; color: var(--white-70); }

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.tcard {
  background: rgba(255,255,255,0.035);
  color: var(--white);
  border-radius: 22px;
  padding: 30px;
  border: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background-color 240ms ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
  border-color: var(--sky);
  background: rgba(67,173,233,0.08);
}
.tcard.feature {
  background: linear-gradient(180deg, rgba(67,173,233,0.10), rgba(67,173,233,0.02));
  border-color: var(--sky-30);
}
.tcard .quote-mark {
  font-family: var(--f-phudu);
  font-size: 56px;
  line-height: 0.5;
  color: var(--sky);
  height: 24px;
}
.tcard blockquote {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  margin: 0;
  color: var(--white);
}
.tcard.feature blockquote { font-size: 21px; }
.tcard .who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard .who .av {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--sky);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.tcard .who .name {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.tcard .who .role {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--white-55);
}
.tcard .results {
  display: flex;
  gap: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.tcard .results .r {
  display: flex;
  flex-direction: column;
}
.tcard .results .rv {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 28px;
  color: var(--sky);
  line-height: 1;
}
.tcard .results .rk {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .proof-head, .proof-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG / JOURNAL
   ============================================================ */
.section-blog {
  padding: 120px 0;
  position: relative;
  isolation: isolate;
}
.section-blog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.blog-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.blog-head .right { display: flex; justify-content: flex-end; align-items: end; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bcard {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--rule);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.bcard:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6); }
.bcard .thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.bcard .thumb .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.bcard .thumb .mark {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(67,173,233,0.22);
}
.bcard .thumb.v1 { background: radial-gradient(70% 80% at 30% 30%, rgba(67,173,233,0.22), transparent 65%), #0B1526; }
.bcard .thumb.v2 { background: radial-gradient(70% 80% at 70% 60%, rgba(67,173,233,0.18), transparent 65%), #0B1526; }
.bcard .thumb.v3 { background: radial-gradient(70% 80% at 50% 100%, rgba(67,173,233,0.20), transparent 65%), #0B1526; }
.bcard .thumb .tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--rule);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.bcard .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bcard .meta {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-55);
}
.bcard h3 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--white);
}
.bcard p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  color: var(--white-70);
  margin: 0;
}
.bcard .read {
  margin-top: auto;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 13px;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}
.bcard:hover .read svg { transform: translateX(4px); }
.bcard .read svg { width: 14px; height: 14px; transition: transform 220ms ease; }

@media (max-width: 900px) {
  .blog-head { grid-template-columns: 1fr; }
  .blog-head .right { justify-content: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ (DARK)
   ============================================================ */
.section-faq {
  padding: 140px 0 120px;
  position: relative;
  isolation: isolate;
}
.section-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}
.faq-side {
  position: sticky;
  top: 110px;
  align-self: start;
}
.faq-side h2 { color: var(--white); }
.faq-side p { color: var(--white-70); max-width: 36ch; }
.faq-side .ctas { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--white);
  transition: color 200ms ease;
}
.faq-q:hover { color: var(--sky); }
.faq-item.open .faq-q { color: var(--sky); }
.faq-q .ic {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, color 200ms ease, transform 280ms ease, border-color 200ms ease;
}
.faq-item.open .faq-q .ic {
  background: var(--sky);
  color: white;
  border-color: var(--sky);
  transform: rotate(45deg);
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 380ms cubic-bezier(.2,.7,.2,1);
}
.faq-a-inner {
  padding: 0 60px 28px 0;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--white-70);
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .faq-q { font-size: 15px; padding: 20px 0; }
  .faq-a-inner { font-size: 13px; padding-bottom: 20px; }
}

/* ============================================================
   CONTACT / CTA FINAL
   ============================================================ */
.section-contact {
  color: var(--white);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-grid h2 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.contact-grid h2 .blue { color: var(--sky); }
.contact-grid .ctxt {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: var(--white-70);
  max-width: 46ch;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.contact-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-item .k {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-55);
  margin-bottom: 6px;
}
.contact-item .v {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.contact-item .v a:hover { color: var(--sky); }

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.contact-card h3 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--white);
}
.contact-card .sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--white-55);
  margin-bottom: 22px;
}
.form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-55);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--rule);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.field select option { background: var(--navy-deep); color: var(--white); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(67,173,233,0.08);
}
.field textarea { resize: vertical; min-height: 110px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.form-actions small {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--white-55);
}
.form-success {
  display: none;
  padding: 16px;
  background: rgba(67,173,233,0.15);
  border: 1px solid var(--sky);
  border-radius: 12px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.form-success.show { display: block; }

@media (max-width: 900px) {
  .contact-grid { display: flex; flex-direction: column; gap: 32px; align-items: stretch; }
  .contact-card { width: 100%; box-sizing: border-box; margin: 0; padding: 24px; }
  .contact-list { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
  .contact-item .v { font-size: 14px; }
  .contact-item .k { font-size: 10px; margin-bottom: 4px; }
  .field input, .field select, .field textarea { width: 100%; }
  .form-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .form-actions .btn-primary { width: 100%; justify-content: center; text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--white-70);
  padding: 70px 0 30px;
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-top .brand { margin-bottom: 14px; }
.footer-top .brand img { height: 44px; }
.footer-top .brand-text { display: none; }
.footer-blurb {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-col h5 {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color 200ms ease;
}
.footer-col a:hover { color: var(--sky); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--f-body);
  font-size: 12.5px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  /* Logo pleine largeur */
  .footer-top > div:first-child {
    grid-column: 1 / -1;
    order: 1;
  }
  /* Ordre : Contact | Services, puis Agence | Réseaux */
  .footer-top .footer-col:nth-child(4) { order: 2; } /* Contact → col gauche ligne 1 */
  .footer-top .footer-col:nth-child(2) { order: 3; } /* Services → col droite ligne 1 */
  .footer-top .footer-col:nth-child(3) { order: 4; } /* Agence → col gauche ligne 2 */
  .footer-top .footer-col:nth-child(5) { order: 5; } /* Réseaux → col droite ligne 2 */
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
/* Reveals are hidden ONLY when JS has marked the doc ready.
   Without JS (or before init), content is visible by default. */
.reveal { opacity: 1; transform: none; }
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 540ms cubic-bezier(.2,.7,.2,1),
              transform 540ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
html.js-ready .reveal.from-l { transform: translateX(-32px); }
html.js-ready .reveal.from-r { transform: translateX(32px); }
html.js-ready .reveal.from-t { transform: translateY(-28px); }
html.js-ready .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hv-card, .hv-dot { animation: none; }
  .ticker-track { animation: none; }
}

/* ============================================================
   SUB-PAGES — Hero compact + article layout
   ============================================================ */
.page-hero {
  background: transparent;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  color: var(--white);
}
.page-hero h1 .blue { color: var(--sky); }
.page-hero .lede {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--white-70);
  max-width: 46ch;
  margin: 0;
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-55);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--sky); }
.crumbs .sep { color: var(--rule); }

@media (max-width: 900px) {
  .page-hero { padding: 130px 0 60px; }
  .page-hero .inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Article ----------------------------------------------------- */
.article {
  background: var(--navy-deep);
  padding: 60px 0 120px;
}
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 80px;
  align-items: start;
}
.article-body {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.75;
  color: var(--white);
}
.article-body p { margin: 0 0 20px; color: var(--white); }
.article-body h2 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 48px 0 16px;
}
.article-body h3 {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin: 32px 0 12px;
}
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin: 0 0 22px;
  color: var(--white);
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body em { color: var(--sky); font-style: normal; }
.article-body a { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 3px solid var(--sky);
  background: var(--navy-soft);
  border-radius: 0 14px 14px 0;
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--white);
}

.article-aside {
  position: sticky;
  top: 100px;
}
.article-aside .box {
  background: var(--navy-soft);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 16px;
}
.article-aside h4 {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 14px;
}
.article-aside p, .article-aside li {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white-70);
}
.article-aside ul { padding-left: 18px; margin: 0; }
.article-aside .meta-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.article-aside .meta-line:last-child { border-bottom: 0; }
.article-aside .meta-line span:last-child { color: var(--white-55); }

.article-cta {
  margin-top: 60px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(67,173,233,0.12), rgba(67,173,233,0.02));
  border: 1px solid var(--sky-30);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
}
.article-cta h3 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 6px;
  color: var(--white);
}
.article-cta p {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--white-70);
  margin: 0;
}

@media (max-width: 900px) {
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-aside { position: static; }
  .article-cta { grid-template-columns: 1fr; }
}

/* Service detail block ---------------------------------------- */
.svc-block {
  padding: 80px 0;
  background: var(--navy-deep);
  border-top: 1px solid var(--rule);
}
.svc-block.alt { background: var(--navy); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.svc-grid.flip > :first-child { order: 2; }
.svc-grid .copy h2 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  color: var(--white);
}
.svc-grid .copy .promise {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  max-width: 42ch;
}
.svc-grid .copy .body {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--white-70);
  margin: 14px 0 22px;
  max-width: 50ch;
}
.svc-grid .copy ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 10px;
}
.svc-grid .copy li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
}
.svc-grid .copy li::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--sky-15);
  border: 1.5px solid var(--sky);
  margin-top: 4px;
}
.svc-grid .visual {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: var(--navy);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

/* Gallery ----------------------------------------------------- */
.gal-section { background: var(--navy-deep); padding: 80px 0 120px; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gal-card {
  display: flex;
  flex-direction: column;
  background: var(--navy-soft);
  border: 1px solid var(--rule);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}
.gal-card:hover { transform: translateY(-4px); border-color: var(--sky); }
.gal-card .visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.gal-card .visual .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.gal-card .visual .mark {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 110px;
  letter-spacing: -0.04em;
  color: rgba(67,173,233,0.25);
}
.gal-card .visual.a { background: linear-gradient(135deg, #243352, #1a2536); }
.gal-card .visual.b { background: linear-gradient(135deg, #2b3d5b, #1f2c3f); }
.gal-card .visual.c { background: linear-gradient(135deg, #1c2840, #0f1626); }
.gal-card .meta-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--rule);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.gal-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.gal-card .body .who {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}
.gal-card .body h3 {
  font-family: var(--f-phudu);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  color: var(--white);
}
.gal-card .body p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--white-70);
  margin: 0;
}
.gal-card .stats {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--rule);
}
.gal-card .stats .s {
  font-family: var(--f-sci);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 18px;
  color: var(--sky);
}
.gal-card .stats .l {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-55);
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .gal-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid.flip > :first-child { order: 0; }
}

/* ============================================================
   COOKIES
   ============================================================ */
.cookies {
  position: fixed;
  left: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 90;
  max-width: 380px;
  background: var(--navy-soft);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}
.cookies.show { opacity: 1; transform: none; pointer-events: auto; }
.cookies h4 {
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 6px;
  color: var(--white);
}
.cookies p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--white-70);
  margin: 0 0 12px;
}
.cookies .actions { display: flex; gap: 8px; }
.cookies .actions button {
  flex: 1;
  font-family: var(--f-sf);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 200ms ease, color 200ms ease;
}
.cookies .actions .accept { background: var(--sky); color: white; }
.cookies .actions .accept:hover { background: #2f9dd9; }
.cookies .actions .reject { background: rgba(255,255,255,0.08); color: var(--white); }
.cookies .actions .reject:hover { background: rgba(255,255,255,0.14); }

/* ============================================================
   SECTION ÉQUIPE — Page Agence
   ============================================================ */
.section-equipe {
  padding: 96px 0 64px;
}

.equipe-intro {
  text-align: center;
  margin-bottom: 64px;
}

.equipe-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.equipe-card {
  position: relative;
  flex: 0 0 38%;
  max-width: 360px;
  border-radius: 24px;
  overflow: hidden;
}

.eq-leo {
  margin-top: 130px;
}

.eq-photo-wrap {
  width: 100%;
  height: 100%;
}

.equipe-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.eq-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 72px 20px 24px;
  background: linear-gradient(to bottom, transparent, rgba(6, 9, 23, 0.90));
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eq-name {
  font-family: 'Burbank Big Condensed', 'Barlow Condensed', 'Impact', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 76px);
  color: #fff;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: block;
}

.eq-role {
  font-family: 'Gimlet Sans Variable', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}

@media (max-width: 640px) {
  .equipe-grid {
    gap: 12px;
    padding: 0 20px;
  }
  .equipe-card {
    flex: 1 1 0;
    max-width: none;
    border-radius: 16px;
  }
  .eq-leo {
    margin-top: 72px;
  }
  .eq-name {
    font-size: 36px;
  }
  .eq-label {
    padding: 48px 14px 16px;
  }
}

