@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; color: #111; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; background-color: #e0e0e0; }
a { color: inherit; }
button { font-family: inherit; }

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --red: #e2001a;
  --black: #111111;
  --dark: #0d0d0d;
  --gray: #bfbfbf;
  --white: #ffffff;
  --bg: #f7f7f7;
  --r: 3px;
  --nav-h: 72px;
}

/* ── UTILITIES ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; }
.stitle { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 4.5vw, 58px); letter-spacing: 2px; line-height: 1; margin-bottom: 18px; }
.sdesc { font-size: 16px; font-weight: 300; color: #666; max-width: 540px; line-height: 1.75; }
.btn-r { background: var(--red); color: var(--white); padding: 15px 32px; border: none; border-radius: var(--r); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; transition: background .2s; white-space: nowrap; }
.btn-r:hover { background: #c00016; }
.btn-o { background: transparent; color: var(--white); padding: 15px 32px; border: 2px solid rgba(255,255,255,.35); border-radius: var(--r); font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px; transition: border-color .2s, background .2s; white-space: nowrap; }
.btn-o:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .actions .btn-r,
.hero .actions .btn-o {
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 12px;
}

/* ── FADE-IN ────────────────────────────────────────── */
.fi { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fi.on { opacity: 1; transform: none; }
.fi-d1 { transition-delay: .1s; }
.fi-d2 { transition-delay: .2s; }
.fi-d3 { transition-delay: .3s; }
.fi-d4 { transition-delay: .4s; }
.fi-d5 { transition-delay: .5s; }
.fi-d6 { transition-delay: .6s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: none;
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); border-bottom: 2px solid var(--red); }
.nav-i { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 44px; width: auto; background: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 12px; color: #444; text-decoration: none; letter-spacing: .5px; text-transform: uppercase; padding: 7px 12px; border-radius: var(--r); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); background: rgba(0,0,0,.05); }
.nav-links a.nav-cta { background: var(--red); color: var(--white); padding: 9px 20px; font-weight: 700; margin-left: 6px; }
.nav-links a.nav-cta:hover { background: #c00016; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--black); transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--dark); z-index: 999; padding: 32px 24px; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,.06); }
.nav-drawer.open { display: flex; }
.nav-drawer a { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 16px; color: rgba(255,255,255,.75); text-decoration: none; letter-spacing: .5px; text-transform: uppercase; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .2s; }
.nav-drawer a:hover { color: var(--white); }
.nav-drawer a:last-child { border-bottom: none; }
.nav-cta-m { margin-top: 20px; border-bottom: none !important; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
@keyframes scrlDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: #050505;
  overflow: hidden;
}

/* Photo — cinematic grade + Ken Burns */
.hero-bg-photo {
  position: absolute; inset: 0;
  background: url('../assets/images/img2.png') 65% center / cover no-repeat;
  filter: saturate(1.1) contrast(1.05) brightness(0.85);
  animation: heroZoom 18s ease-out forwards;
  will-change: transform;
}

/* Overlay multicouche : gauche sombre · vignette radiale · bas profond */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(108deg,
      rgba(5,5,5,.98) 0%,
      rgba(5,5,5,.92) 22%,
      rgba(5,5,5,.62) 44%,
      rgba(5,5,5,.18) 62%,
      transparent 78%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,.5) 0%,
      transparent 20%,
      transparent 48%,
      rgba(0,0,0,.88) 100%
    ),
    radial-gradient(ellipse at 72% 50%, transparent 22%, rgba(0,0,0,.55) 100%);
}


/* Watermark */
.hero-wm {
  position: absolute;
  bottom: 88px; right: -30px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(90px, 14vw, 200px);
  color: rgba(255,255,255,.028);
  letter-spacing: 22px;
  line-height: 1;
  pointer-events: none; user-select: none;
  z-index: 1;
  white-space: nowrap;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 32px 0 0; width: 100%;
}
.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center;
  background: #20505F;
  color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 18px;
  box-shadow: 0 4px 28px rgba(32,80,95,.5);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.2vw, 58px);
  color: var(--white);
  line-height: 1.02;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,.48);
  letter-spacing: .3px; margin-bottom: 24px;
  max-width: 390px; line-height: 1.75;
}
.hero-link { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.32); }
.hero-link a { color: rgba(255,255,255,.58); text-decoration: underline; text-underline-offset: 3px; }
.hero-link a:hover { color: var(--white); }

/* Scroll indicator — au-dessus du ticker */
.hero-scroll {
  position: absolute; bottom: 110px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.hero-scroll span { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.22); }
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent); animation: scrlDown 1.8s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════ */
.stats {
  background: linear-gradient(135deg, #0d0d0d 0%, #0e1e24 60%, #0d0d0d 100%);
  padding: 80px 0;
}
.stats-label {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--white); margin-bottom: 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 8px;
}
.stat-item {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(32,80,95,.55);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.stat-item:hover { border-color: rgba(32,80,95,.9); box-shadow: 0 8px 32px rgba(32,80,95,.2); }
.stat-item:hover::after { transform: scaleX(1); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 6vw, 88px);
  color: var(--red);
  line-height: 1;
  letter-spacing: 2px;
}
.stat-sep {
  width: 28px; height: 2px;
  background: var(--red);
  margin: 14px auto 16px;
  opacity: .6;
}
.stat-lbl {
  font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   TICKER AGRÉMENTS
═══════════════════════════════════════════════════ */
.ticker-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--white);
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ddd;
  padding: 10px 0 16px;
  overflow: hidden;
}
.ticker-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  padding: 0 32px;
  margin-bottom: 10px;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }
.ticker-track {
  display: flex; align-items: center;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
  color: var(--black);
  padding: 0 20px;
  white-space: nowrap;
}
.ticker-sep {
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   CARROSSERIE
═══════════════════════════════════════════════════ */
.carrosserie {
  background: #ffffff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Hexagonal SVG pattern — très discret sur blanc */
.carrosserie::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,53 30,68 2,53 2,17' fill='none' stroke='rgba(0,0,0,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
  pointer-events: none; z-index: 0;
}

/* Touches de couleur très subtiles */
.carrosserie::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 0% 40%, rgba(32,80,95,.05) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 100% 85%, rgba(226,0,26,.03) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* Lignes géométriques — souffle architectural */
.carrosserie-geo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(128deg, transparent 0%, transparent 48%, rgba(32,80,95,.025) 49%, rgba(32,80,95,.025) 51%, transparent 52%),
    linear-gradient(52deg,  transparent 0%, transparent 58%, rgba(32,80,95,.018) 59%, rgba(32,80,95,.018) 61%, transparent 62%);
}

.carrosserie .container { position: relative; z-index: 1; }
.carrosserie .tag { color: var(--red); }
.carrosserie .stitle { color: var(--black); }
.carrosserie .sdesc { color: #666; }
.sdesc--red { color: #20505F !important; font-weight: 500; }
.carrosserie-head { margin-bottom: 56px; text-align: center; }
.carrosserie-head .stitle { max-width: none; }
.carrosserie-head .sdesc { max-width: none; }

/* ── Grid ── */
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── Card ── */
.srv-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 28px 30px;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 18px rgba(0,0,0,.055);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; gap: 22px;
  position: relative; overflow: hidden;
  outline: none;
}
.srv-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(32,80,95,.06) 0%, transparent 65%);
  opacity: 0; transition: opacity .3s;
}
.srv-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(0,0,0,.11); border-color: #d0d0d0; }
.srv-card:hover::after { opacity: 1; }
.srv-card:focus-visible { border-color: rgba(32,80,95,.5); box-shadow: 0 0 0 2px rgba(32,80,95,.18); }

/* ── Active state ── */
.srv-card--active {
  border-color: #20505F;
  box-shadow: 0 0 0 1px #20505F, 0 12px 44px rgba(32,80,95,.14);
}
.srv-card--active::after { opacity: 0 !important; }
.srv-card--active .srv-name { color: #20505F; }

/* ── Icon ── */
.srv-icon {
  width: 62px; height: 62px;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  background: linear-gradient(145deg, #ff2233 0%, #c00016 55%, #8a0010 100%);
  box-shadow: 0 6px 20px rgba(226,0,26,.28), inset 0 2px 4px rgba(255,100,100,.35), inset 0 -2px 4px rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: filter .3s, transform .3s;
}
.srv-icon svg { width: 28px; height: 28px; color: var(--white); }
.srv-card:hover .srv-icon { filter: brightness(1.15); transform: scale(1.06) rotate(3deg); }
.srv-card--active .srv-icon { filter: none; transform: none; }

/* ── Body ── */
.srv-body { display: flex; flex-direction: column; gap: 10px; }
.srv-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px; letter-spacing: 1.5px;
  color: var(--black); line-height: 1.1;
  transition: color .3s;
}
.srv-desc { font-size: 13px; color: #888; line-height: 1.8; }

/* ── Featured card (si utilisée) ── */
.srv-card--featured {
  grid-column: 1 / -1;
  flex-direction: row; align-items: center;
  gap: 36px; padding: 32px 38px;
  border-color: rgba(32,80,95,.25);
  box-shadow: 0 4px 28px rgba(32,80,95,.08);
  background: linear-gradient(120deg, rgba(32,80,95,.04) 0%, #ffffff 65%);
}
.srv-card--featured .srv-icon { width: 72px; height: 72px; flex-shrink: 0; }
.srv-card--featured .srv-icon svg { width: 34px; height: 34px; }
.srv-card--featured .srv-body { flex: 1; }
.srv-card--featured .srv-name { font-size: 25px; color: #20505F; }
.srv-card--featured .srv-desc { max-width: 680px; font-size: 14px; }
.srv-card--featured.srv-card--active {
  box-shadow: 0 0 0 1px #20505F, 0 12px 44px rgba(32,80,95,.15);
}

/* ── Badge NOUVEAU ── */
.srv-nouveau {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: #20505F;
  border: none;
  color: #ffffff;
  font-size: 10px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 18px rgba(32,80,95,.55);
  white-space: nowrap; pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   PROCESSUS — SCROLL TIMELINE
═══════════════════════════════════════════════════ */
.process {
  background: #ffffff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,53 30,68 2,53 2,17' fill='none' stroke='rgba(0,0,0,0.035)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
  pointer-events: none; z-index: 0;
}
.process::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 100% 30%, rgba(32,80,95,.05) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 0% 80%, rgba(226,0,26,.03) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.process .container { position: relative; z-index: 1; }
.process .tag { color: var(--red); }
.process .stitle { color: var(--black); }
.process .sdesc { color: #666; }
.ps-head { margin-bottom: 72px; }

.ps-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}
.ps-spine {
  position: absolute;
  left: 75px;
  top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(226,0,26,.25) 12%, rgba(226,0,26,.25) 88%, transparent);
}

.ps-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid #ebebeb;
}
.ps-item:last-child { border-bottom: none; }

.ps-num-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
  position: relative;
}
.ps-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 4.5vw, 68px);
  color: var(--red);
  line-height: 1;
  letter-spacing: 3px;
}
.ps-dot {
  position: absolute;
  right: -22px; top: 20px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(226,0,26,.15), 0 0 0 6px rgba(226,0,26,.06);
}

.ps-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-left: 3px solid #20505F;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.ps-card:hover {
  background: #fafafa;
  border-left-color: var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  transform: translateX(4px);
}
.ps-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #20505F;
  margin-bottom: 8px;
}
.ps-card:hover .ps-tag { color: var(--red); }
.ps-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 1.5px;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.1;
}
.ps-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.85;
  margin-bottom: 16px;
}
.ps-badge {
  display: inline-block;
  background: rgba(226,0,26,.06);
  color: var(--red);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(226,0,26,.18);
}

/* ═══════════════════════════════════════════════════
   INDÉPENDANTS
═══════════════════════════════════════════════════ */
.independants { background: var(--white); padding: 96px 0; }
.independants-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.independants .tag { color: var(--red); }
.independants .stitle { color: var(--black); }
.indep-p { font-size: 16px; font-weight: 300; color: #555; line-height: 1.85; margin-bottom: 20px; }
.indep-args { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.indep-arg { display: flex; align-items: flex-start; gap: 14px; }
.indep-arg-icon { width: 38px; height: 38px; background: var(--red); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.indep-arg-text h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; color: var(--black); margin-bottom: 4px; }
.indep-arg-text p { font-size: 13px; color: #777; line-height: 1.6; }
.indep-img-wrap { position: relative; }
.indep-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r); display: block; }
.indep-badge {
  position: absolute; bottom: 36px; left: -28px;
  background: var(--red); color: var(--white);
  padding: 22px 30px; border-radius: var(--r);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.indep-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; }
.indep-badge-lbl { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════
   ASSURANCES
═══════════════════════════════════════════════════ */
.assur { display: none; background: #20505F; padding: 96px 0; }
#assurances:target { display: block; }
.assur-grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.assur .tag { color: rgba(255,255,255,.6); }
.assur .stitle { color: var(--white); }
.assur-p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 28px; }
.assur-note { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 40px; line-height: 1.6; }
.assur-alert {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.15);
  border-top: 3px solid var(--red);
  padding: 32px 32px 28px;
  border-radius: 10px;
  margin-bottom: 32px;
}
.assur-alert-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1.5px;
  color: var(--white); line-height: 1.2;
  margin-bottom: 24px;
}
.assur-steps {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 24px;
}
.assur-steps li {
  display: flex; align-items: center; gap: 16px;
}
.as-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--red);
  line-height: 1; flex-shrink: 0;
  width: 36px;
}
.as-text {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.as-text strong { color: var(--white); font-weight: 700; }
.assur-engag {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ins-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.ins-logo { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11); padding: 7px 14px; border-radius: var(--r); font-size: 11px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,.55); text-transform: uppercase; transition: background .2s, color .2s; }
.ins-logo:hover { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.circle-box { position: relative; width: 220px; height: 220px; flex-shrink: 0; }
.c-svg { width: 220px; height: 220px; transform: rotate(-90deg); }
.c-bg { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 8; }
.c-prog { fill: none; stroke: var(--red); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 603; stroke-dashoffset: 603; transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1); }
.c-mid { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.c-num { font-family: 'Bebas Neue', sans-serif; font-size: 66px; color: var(--white); line-height: 1; }
.c-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: -4px; }

/* ═══════════════════════════════════════════════════
   ENTRETIEN
═══════════════════════════════════════════════════ */
.entretien { display: none; background: var(--bg); }
#entretien:target { display: block; }
.entretien-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.entretien-list { list-style: none; display: flex; flex-direction: column; }
.entretien-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; color: var(--black); padding: 16px 0; border-bottom: 1px solid #e8e8e8; }
.entretien-list li:last-child { border-bottom: none; }
.entretien-list li::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.entretien-note { margin-top: 28px; padding: 18px 22px; background: var(--white); border-left: 4px solid #d0d0d0; border-radius: 0 var(--r) var(--r) 0; }
.entretien-note p { font-size: 13px; color: #999; line-height: 1.7; font-style: italic; }
.entretien-visual { background: var(--white); padding: 36px; border-radius: var(--r); }
.entretien-visual-img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--r); margin-bottom: 28px; display: block; }
.entretien-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.entretien-pill { display: flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid #e8e8e8; padding: 8px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; color: #555; }
.entretien-pill::before { content: '✓'; color: var(--red); font-weight: 800; }

/* ═══════════════════════════════════════════════════
   HISTOIRE
═══════════════════════════════════════════════════ */
.histoire {
  display: none;
  background: var(--dark);
  padding: 96px 0;
}
#histoire:target { display: block; }
.histoire .tag { color: var(--red); }
.histoire .stitle { color: var(--white); }
.histoire .sdesc { color: rgba(255,255,255,.4); max-width: 500px; }
.histoire-head { margin-bottom: 72px; }

/* Timeline wrapper */
.hm-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hm-spine {
  position: absolute;
  left: 95px;
  top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(226,0,26,.35) 15%, rgba(226,0,26,.35) 85%, transparent);
}

/* Each milestone */
.hm-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hm-item:last-child { border-bottom: none; }

.hm-year-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
  position: relative;
}
.hm-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5vw, 76px);
  color: var(--red);
  line-height: 1;
  letter-spacing: 3px;
}
.hm-dot {
  position: absolute;
  right: -21px; top: 22px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(226,0,26,.2), 0 0 0 6px rgba(226,0,26,.08);
}

/* Card */
.hm-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid #20505F;
  border-radius: 10px;
  padding: 28px 32px;
  transition: background .3s, border-color .3s;
}
.hm-card:hover {
  background: rgba(255,255,255,.055);
  border-left-color: var(--red);
}
.hm-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #20505F;
  margin-bottom: 10px;
}
.hm-card:hover .hm-tag { color: var(--red); }
.hm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}
.hm-desc {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.85;
}
.hm-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 20px;
}
.hm-badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(226,0,26,.3);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(226,0,26,.06);
}

/* ═══════════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════════ */
.temoignages { background: var(--bg); }
.temoignages-head { margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); padding: 36px 32px; border-radius: var(--r); border-top: 3px solid var(--red); }
.testi-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text { font-size: 15px; font-weight: 300; color: #444; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--white); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--black); }
.testi-city { font-size: 12px; color: #aaa; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact { display: none; background: var(--white); }
#contact:target { display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 56px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(226,0,26,.07); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 1px; color: var(--black); margin-bottom: 4px; }
.contact-item-body p, .contact-item-body a { font-size: 14px; color: #666; text-decoration: none; line-height: 1.65; }
.contact-item-body a:hover { color: var(--red); }
.contact-map { width: 100%; height: 260px; border: none; border-radius: var(--r); display: block; background: #e0e0e0; }
.contact-form { background: var(--bg); padding: 40px; border-radius: var(--r); }
.contact-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--black); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #888; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: var(--r); font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--black); background: var(--white); transition: border-color .2s; outline: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,0,26,.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: 12px; color: #999; line-height: 1.55; cursor: pointer; }
.form-check a { color: var(--red); }
.form-submit { width: 100%; padding: 15px; background: var(--red); color: var(--white); border: none; border-radius: var(--r); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.form-submit:hover { background: #c00016; }
.form-submit:disabled { background: #888; cursor: default; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: #0d0d0d;
  padding: 72px 0 0;
  border-top: 3px solid var(--red);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.footer-brand .footer-logo { margin-bottom: 16px; background: transparent; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo img { background: transparent; }
.footer-slogan {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,.45);
  line-height: 1.75; font-style: italic;
}
/* Colonnes titre */
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase;
}
/* Liens nav */
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: #ffffff; padding-left: 6px; }
/* Coordonnées */
.footer-col p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.9; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
/* Bas de footer */
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-top: none;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .3px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,.3);
  text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-card--featured { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px; }
  .srv-card--featured .srv-desc { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .assur-grid { gap: 48px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .independants { padding: 64px 0; }
  .assur { padding: 64px 0; }

  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-content { padding: 64px 0 96px; }
  .hero-text { max-width: 100%; }
  .hero-bg-photo {
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    opacity: .45;
  }
  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-item:nth-child(5), .stat-item:nth-child(6) { border-bottom: none; }
  .stat-item:nth-child(4), .stat-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .srv-grid { grid-template-columns: 1fr; }
  .srv-card--featured { grid-column: 1; }

  .tl-spine { left: 28px; transform: none; }
  .tl-item { grid-template-columns: 56px 1fr; gap: 0; }
  .tl-left .tl-card, .tl-right .tl-card { grid-column: 2; margin: 0 0 0 16px; }
  .tl-left .tl-num, .tl-right .tl-num { grid-column: 1; }

  .independants-grid { grid-template-columns: 1fr; gap: 48px; }
  .indep-badge { left: 16px; bottom: -16px; }

  .assur-grid { grid-template-columns: 1fr; gap: 48px; }
  .circle-box { margin: 0 auto; }

  .entretien-grid { grid-template-columns: 1fr; gap: 40px; }
  .histoire-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
  .actions { flex-direction: column; align-items: flex-start; }
  .tl-title { font-size: 18px; }
  .contact-form { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════
   BANDEAU COOKIES
═══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #111111;
  border-top: 3px solid var(--red);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.cookie-visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 260px;
}
.cookie-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}
.cookie-sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.cookie-link {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.cookie-link:hover { color: #ffffff; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--red);
  color: #ffffff;
  border: 2px solid var(--red);
}
.cookie-btn--accept:hover {
  background: #c00016;
  border-color: #c00016;
}
.cookie-btn--refuse {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.3);
}
.cookie-btn--refuse:hover {
  border-color: rgba(255,255,255,.7);
  color: #ffffff;
}

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   BANDEAU CTA — MENSUALISATION ENTRETIEN
═══════════════════════════════════════════════════ */
.cta-band {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='70'%3E%3Cpolygon points='30,2 58,17 58,53 30,68 2,53 2,17' fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 70px;
  pointer-events: none;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band-left { flex: 1; min-width: 280px; }
.cta-band-tag {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 14px;
}
.cta-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 3.8vw, 54px);
  letter-spacing: 2px; line-height: 1.05;
  color: #ffffff;
  margin-bottom: 28px;
}
.cta-band-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
}
.cta-band-list li {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-band-check {
  font-size: 16px;
  color: #111111;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  transform: scale(0);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.fi.on .cta-band-check {
  transform: scale(1);
}
.fi-d1.on .cta-band-check { transition-delay: .15s; }
.fi-d2.on .cta-band-check { transition-delay: .3s; }
.fi-d3.on .cta-band-check { transition-delay: .45s; }
.fi-d4.on .cta-band-check { transition-delay: .6s; }
.cta-band-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cta-band-btn {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.cta-band-btn:hover {
  background: #20505F;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(32,80,95,.4);
}
.cta-band-note {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  text-align: center;
}

@media (max-width: 768px) {
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-right { align-items: flex-start; }
}
