/* =============================================
   CLEANNED — style.css (v3)
   ============================================= */

@font-face {
  font-family: 'Harse';
  src: url('../fonts/HARSE.woff2') format('woff2'),
       url('../fonts/HARSE.woff') format('woff'),
       url('../fonts/HARSE.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Variables ---- */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --bg-dark: #05060F;
  --bg-dark2: #0A0D1E;
  --accent: #40FFA7;
  --accent-dark: #1CC97C;
  --navy: #050761;
  --navy-light: #0B0EA8;
  --text: #0D1117;
  --text-muted: #64748B;
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 6px 28px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.13);
  --radius: 16px;
  --font-brand: 'Harse', 'Arial Narrow', sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1160px;
  /* Liquid glass */
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.85);
  --glass-blur: blur(20px) saturate(180%);
  --glass-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; background: var(--bg); }
.section-alt { padding: 72px 0; background: var(--bg-alt); }

/* ---- Typography ---- */
.section-header { text-align: center; margin-bottom: 48px; }
#contact .section-header { margin-bottom: 28px; }
#blog .section-header { margin-bottom: 48px; }
#faq .section-header { margin-bottom: 28px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(64,255,167,0.1);
  color: #0a8f56;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(64,255,167,0.25);
  margin-bottom: 14px;
}
.section-tag-light {
  background: rgba(64,255,167,0.15);
  color: var(--accent);
  border-color: rgba(64,255,167,0.3);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; }

.accent-text { color: var(--accent-dark); }
.title-em { color: #059669; }

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 15px 32px; font-size: 0.97rem; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,7,97,0.28);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border-strong);
}
.btn-ghost-dark:hover { border-color: var(--text-muted); color: var(--text); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-card {
  width: 100%;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-strong);
  margin-top: auto;
}
.btn-card:hover {
  border-color: var(--navy);
  background: rgba(5,7,97,0.04);
  transform: translateY(-1px);
}

/* =============================================
   NAVBAR
   ============================================= */
/* ---- NAVBAR PILL ---- */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 900px;
  transition: top 0.3s;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(48px) saturate(220%) brightness(1.05);
  -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(1.05);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 100px;
  padding: 10px 12px 10px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.nav-logo {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  color: #1a5c2e !important;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  transition: opacity 0.2s;
  margin-right: 8px;
}
.nav-logo:hover { opacity: 0.7; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 7px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(0,0,0,0.05); color: var(--navy); }
.nav-cta {
  background: #40ffa7 !important;
  color: #0a0d18 !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.15s !important;
  border: none !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: #1a5c2e;
  border: none;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-left: auto;
  transition: opacity 0.2s, transform 0.15s;
}
.nav-burger:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* Mobile nav */
.nav-mobile {
  display: flex;
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: 24px;
  padding: 18px 16px 16px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 0.24s var(--ease),
    transform 0.32s var(--ease),
    visibility 0.24s;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-mobile a {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.15s;
}
.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile.open a:nth-child(1) { transition-delay: 0.06s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.10s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.14s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.18s; }
.nav-mobile.open a:nth-child(5) { transition-delay: 0.22s; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 16px 14px;
  border-radius: 14px;
  transition: background 0.15s;
  letter-spacing: -0.01em;
}
.nav-mobile a:hover,
.nav-mobile a:active { background: var(--bg-alt); }
.nav-mobile .btn,
.nav-mobile .btn-primary {
  background: #0a0d18 !important;
  color: #fff !important;
  text-align: center;
  margin-top: 10px;
  padding: 12px 24px !important;
  border-radius: 100px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .navbar { width: calc(100% - 24px); top: 14px; }
  .nav-pill { padding: 8px 8px 8px 22px; }
  .nav-cta { display: none; }
}

/* =============================================
   HERO
   ============================================= */
/* ============================================
   HERO — Blanc + lueurs vertes
   ============================================ */
.hero {
  background: transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 80px;
  padding-bottom: 24px;
}
/* ---- PAGE GLOW (fixed, like agenceshort) ---- */
.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, transparent 65%, #ffffff 100%),
    radial-gradient(ellipse 50% 90% at -6% 38%, rgba(64,255,167,1.0) 0%, rgba(64,255,167,0.4) 40%, transparent 65%),
    radial-gradient(ellipse 50% 90% at 106% 38%, rgba(64,255,167,1.0) 0%, rgba(64,255,167,0.4) 40%, transparent 65%),
    #ffffff;
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 36px 28px 24px;
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #374151;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,185,129,0.18);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(16,185,129,0.08), 0 1px 0 rgba(255,255,255,0.6) inset;
  letter-spacing: 0.005em;
}
.hero-badge-text { display: inline; }
.hero-badge-main { color: #1f2937; font-weight: 600; }
.hero-badge-main::after {
  content: '·';
  margin: 0 8px;
  color: #cbd5e1;
  font-weight: 400;
}
.hero-badge-loc { color: #64748b; font-weight: 400; display: inline-flex; align-items: center; gap: 4px; }
.hero-badge-pin { font-size: 0.9em; flex-shrink: 0; line-height: 1; }
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: #0a0d18;
  margin-bottom: 16px;
  font-weight: 900;
}
.hero-title-line1 {
  font-style: italic;
  color: #0a0d18;
  display: block;
}
.hero-title-em {
  font-style: normal;
  color: #059669;
  display: block;
}
.hero-title-noir {
  color: #0a0d18;
  font-style: italic;
}

/* ---- chouchoutée soap + hearts ---- */
.hero-chouchouter {
  position: relative;
  display: inline-block;
}
.chouchouter-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.chouchouter-heart {
  position: absolute;
  line-height: 1;
  pointer-events: none;
  animation: float-heart linear forwards;
}
@keyframes float-heart {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  60%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-70px) scale(0.4); }
}
.hero-sub {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}
.hero-actions { margin-bottom: 20px; }
.btn-hero-cta {
  background: #40ffa7;
  color: #0a0d18;
  border: none;
  border-radius: 100px !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px !important;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(64,255,167,0.25);
}
.btn-hero-cta:hover {
  background: #1cc97c;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(64,255,167,0.35);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.84rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0;
}
.hero-trust span { display: flex; align-items: center; gap: 5px; }
.hero-trust-dot { color: #d1d5db; font-size: 1.2rem; }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: #0a0d18;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee-inner {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  will-change: transform;
  padding: 0 18px;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.mq-sep {
  color: #40ffa7 !important;
  font-size: 0.45rem !important;
  letter-spacing: 0 !important;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- FEATURED VIDEO (peek depuis hero) ---- */
.fv-section {
  background: transparent;
  padding: 0 24px 40px;
}
.fv-inner { max-width: 900px; margin: 0 auto; }
.fv-card {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1d2e;
}
.fv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.fv-card:hover .fv-overlay { background: rgba(0,0,0,0.4); }
.fv-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0d18;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform 0.2s;
  margin-bottom: 16px;
}
.fv-card:hover .fv-play { transform: scale(1.08); }
.fv-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

/* ---- VIDEO CAROUSEL SECTION ---- */
.vidcaro-section {
  background: #0a0d18;
  padding: 56px 0 0;
  overflow: hidden;
}
.vidcaro-header {
  text-align: center;
  margin-bottom: 44px;
}
.vidcaro-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 10px 0 12px;
}
.vidcaro-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.vidcaro-wrap {
  overflow: hidden;
  padding-left: 40px;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 88%, transparent 100%);
}
.vidcaro-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.vidc {
  flex: 0 0 220px;
  aspect-ratio: 9/16;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.vidc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
  transition: background 0.3s;
}
.vidc:hover .vidc-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 65%, transparent 100%); }
.vidc-play {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0d18;
  margin-bottom: auto;
  margin-top: auto;
  transition: transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.vidc:hover .vidc-play { transform: scale(1.1); }
.vidc-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0 12px 16px;
  text-align: center;
  letter-spacing: 0.02em;
}
.vt1 { background: linear-gradient(160deg, #0d3d24 0%, #1a5e38 60%, #0a2a1a 100%); }
.vt2 { background: linear-gradient(150deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); }
.vt3 { background: linear-gradient(140deg, #2d1b69 0%, #11998e 100%); }
.vt4 { background: linear-gradient(160deg, #0a0a0a 0%, #1a2a1a 60%, #0d3d1a 100%); }
.vt5 { background: linear-gradient(140deg, #1a2a0a 0%, #2e5e10 100%); }
.vidcaro-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 40px;
}
.vidcaro-dots {
  display: flex;
  gap: 6px;
}
.vidc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.vidc-dot.active {
  background: #40ffa7;
  width: 20px;
  border-radius: 3px;
}
.vidcaro-arrows {
  display: flex;
  gap: 8px;
}
.vidc-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.vidc-arrow:hover { background: rgba(255,255,255,0.2); color: #fff; }
.vidc-arrow:disabled { opacity: 0.3; cursor: default; }

/* ---- ON VIENT À VOUS (sticky scroll) ---- */
.onsite-section {
  background: #ffffff;
  padding: 80px 0 24px;
}
.onsite-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.onsite-sticky {
  position: sticky;
  top: 38vh;
}
.onsite-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  color: #0a0d18;
  letter-spacing: -0.01em;
}
.onsite-headline em {
  font-style: italic;
  color: #059669;
}
.onsite-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.onsite-scenario {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.onsite-scenario.is-active {
  opacity: 1;
  transform: translateY(0);
}
.onsite-scenario.is-past {
  opacity: 0.25;
  transform: translateY(0);
}
.onsite-scenario-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.onsite-scenario-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.onsite-scenario h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a0d18;
  margin: 0;
}
.onsite-scenario h3 em {
  font-style: normal;
  color: #059669;
}
.onsite-scenario p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 12px;
}
.onsite-result {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #374151 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .onsite-layout { grid-template-columns: 1fr; gap: 40px; }
  .onsite-sticky { position: static; }
}

/* ---- LOGOS SECTION ---- */
.logos-section {
  background: transparent;
  padding: 4px 40px 40px;
  text-align: center;
}
.logos-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.logos-marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-item img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s;
}
.logo-item img:hover {
  filter: grayscale(0) opacity(1);
}

/* ---- KPI SECTION ---- */
.kpi-section {
  background: #40ffa7;
  padding: 72px 0;
}
.kpi-card {
  background: #050761;
  border-radius: 28px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  max-width: 860px;
  margin: 0 auto 36px;
  overflow: hidden;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 48px 48px;
  border-right: 1px solid rgba(64,255,167,0.18);
}
.kpi-item:last-child { border-right: none; }
.kpi-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 700;
  color: #40ffa7;
  line-height: 1;
  letter-spacing: -0.02em;
}
.kpi-label {
  font-size: 1rem;
  color: #40ffa7;
  font-weight: 500;
}
.kpi-detail {
  font-size: 0.82rem;
  color: rgba(64,255,167,0.55);
  font-weight: 400;
}
.kpi-cta {
  text-align: center;
}
.kpi-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #050761;
  border: 2px solid rgba(5,7,97,0.35);
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.kpi-btn-cta:hover {
  background: rgba(5,7,97,0.08);
  border-color: #050761;
}

/* ============================================
   WHY CLEANNED SECTION
   ============================================ */
.why-section { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.why-icon-svg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(64,255,167,0.1);
  border: 1px solid rgba(64,255,167,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Photo placeholder */
.hero-photo { position: relative; }
.photo-frame {
  border-radius: 20px;
  overflow: visible;
  position: relative;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 500px;
  background: linear-gradient(145deg, #0c1230 0%, #0f1628 100%);
  border: 1.5px dashed rgba(64,255,167,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-overlay-logo {
  font-family: var(--font-brand);
  font-size: 5.5rem;
  color: rgba(64,255,167,0.08);
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  user-select: none;
  white-space: nowrap;
}
.photo-hint {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.2);
  font-size: 0.82rem;
}

/* Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(64,255,167,0.25);
  background: rgba(64,255,167,0.03);
  animation: floatUp linear infinite;
}
.b1{width:38px;height:38px;bottom:20%;left:12%;animation-duration:7s}
.b2{width:22px;height:22px;bottom:38%;left:28%;animation-duration:9s;animation-delay:1s}
.b3{width:52px;height:52px;bottom:8%;right:14%;animation-duration:6.5s;animation-delay:2s}
.b4{width:16px;height:16px;top:26%;right:22%;animation-duration:8s;animation-delay:0.5s}
.b5{width:30px;height:30px;top:42%;left:8%;animation-duration:5.5s;animation-delay:1.5s}

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0.5; }
  50%  { transform: translateY(-28px) scale(1.06); opacity: 0.8; }
  100% { transform: translateY(-56px) scale(0.9); opacity: 0; }
}

.star {
  position: absolute;
  color: var(--accent);
  animation: twinkle 3s ease-in-out infinite;
  font-size: 1rem;
}
.s1{top:18%;left:18%;font-size:1.2rem;animation-delay:0s}
.s2{top:14%;right:20%;font-size:0.85rem;animation-delay:0.9s}
.s3{bottom:24%;right:10%;font-size:1rem;animation-delay:1.8s}

@keyframes twinkle {
  0%,100%{opacity:0.3;transform:scale(1)}
  50%{opacity:1;transform:scale(1.4)}
}

.hero-badge-float {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), 0 6px 24px rgba(64,255,167,0.15);
  color: var(--navy);
  border-radius: 100px;
  padding: 10px 22px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hero-badge-float strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-badge-float span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Stats bar — single unified glass bar */
.stats-bar {
  position: relative;
  z-index: 5;
  padding: 24px 28px 48px;
  background: var(--bg);
}
.stats-bar .stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
}
.stats-bar .stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px;
  text-align: center;
  background: none;
  border-right: 1px solid rgba(0,0,0,0.06);
  min-width: 0;
}
.stats-bar .stat-item:last-child { border-right: none; }
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.stats-bar .stat-item strong.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-bar .stat-item .stat-num-wrap span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.stats-bar .stat-item p {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stat-divider { display: none; }

/* =============================================
   PRESTATIONS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

/* Vehicle type filter */
.vehicle-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.vf-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: #374151;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.vf-btn:hover:not(.active) {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
}
.vf-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
/* Price update animation */
.card-price.price-updating {
  opacity: 0;
  transform: translateY(6px);
}
.card-price {
  transition: opacity 0.15s, transform 0.15s;
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

/* Base card */
.card {
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(5,7,97,0.12); }

/* Pack number */
.card-pack-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Card name */
.card-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

/* Price */
.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid;
  padding-top: 20px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.card-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 700;
}
.card-duration {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.6;
}

/* Features */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-features li {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.82rem;
}

/* Badge */
.card-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Vehicle type tags on cards */
.card-vehicles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 4px;
}
.card-vehicles span {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(5,7,97,0.07);
  color: #050761;
  border-radius: 100px;
  padding: 3px 9px;
}
.card-vehicles-dark span {
  background: rgba(64,255,167,0.12);
  color: #40ffa7;
}

/* ---- Personnalisé card ---- */
.card-perso {
  background: #f9fafb;
  border: 2px dashed #d1d5db;
}
.card-perso .card-name { color: #374151; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.card-price-perso {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.card-features-perso li { color: #4b5563 !important; }
.card-features-perso li::before { color: #9ca3af !important; }
.btn-perso {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid #d1d5db;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-perso:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(5,7,97,0.04);
}
.card-perso:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.06); }

/* ---- Confort card (light) ---- */
.card-confort {
  background: #f4f6ff;
  border: 1.5px solid rgba(5,7,97,0.1);
}
.card-confort .card-pack-num { color: rgba(5,7,97,0.4); }
.card-confort .card-name { color: #050761; }
.card-confort .card-price-row { border-color: rgba(5,7,97,0.12); }
.card-confort .card-price { color: #050761; }
.card-confort .card-duration { color: #050761; }
.card-confort .card-features li { color: #0a0d18; }
.card-confort .card-features li::before { color: #059669; }
.card-confort:hover { box-shadow: 0 16px 48px rgba(5,7,97,0.12); }

/* ---- Concession card (dark) ---- */
.card-concession {
  background: #050761;
  border: none;
}
.card-concession .card-pack-num { color: rgba(64,255,167,0.45); }
.card-concession .card-name { color: #40ffa7; }
.card-concession .card-price-row { border-color: rgba(64,255,167,0.15); }
.card-concession .card-price { color: #40ffa7; }
.card-concession .card-duration { color: rgba(64,255,167,0.7); }
.card-concession .card-features li { color: rgba(255,255,255,0.85); }
.card-concession .card-features li::before { color: #40ffa7; }
.card-concession .card-badge-top { background: #40ffa7; color: #050761; }
.card-concession:hover { box-shadow: 0 16px 48px rgba(5,7,97,0.4); }

/* Buttons inside cards */
.btn-card {
  background: #050761 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
}
.btn-card:hover {
  background: #0a0f8f !important;
  color: #fff !important;
  opacity: 1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(5,7,97,0.3) !important;
}
.btn-concession {
  background: #40ffa7;
  color: #050761;
  border-radius: 100px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-concession:hover {
  background: #6effc0;
  color: #050761;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64,255,167,0.4);
}

/* Bubble animation (prestige card) */
.card-concession { overflow: visible; }
.card-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(64,255,167,0.25);
  border: 1px solid rgba(64,255,167,0.5);
  pointer-events: none;
  animation: bubbleRise var(--dur, 1.4s) ease-out forwards;
  z-index: 10;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) scale(0.4); opacity: 0.9; }
  60%  { opacity: 0.6; }
  100% { transform: translateY(-130px) scale(1.1); opacity: 0; }
}

@media (max-width: 900px) {
  .cards-grid-3col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-3col { grid-template-columns: 1fr; }
  .card { padding: 32px 24px; }
}

/* =============================================
   RAIN ON GLASS SECTION
   ============================================= */
.rain-section {
  position: relative;
  background: #050761;
  overflow: hidden;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#rainCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}
.rain-content {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.rain-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(64,255,167,0.55);
}
.rain-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.rain-title em {
  font-style: italic;
  color: #40ffa7;
}
.rain-btn {
  pointer-events: all;
  background: #40ffa7;
  color: #050761;
  font-weight: 700;
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rain-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(64,255,167,0.4);
}

/* =============================================
   PHOTO SECTION (parallax)
   ============================================= */
.photo-section {
  background: var(--bg-dark2);
  overflow: hidden;
}
.photo-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.photo-parallax-wrap {
  will-change: transform;
}

.photo-section-placeholder {
  aspect-ratio: 1;
  max-width: 480px;
  background: linear-gradient(145deg, #0c1230 0%, #0f1628 100%);
  border: 1.5px dashed rgba(64,255,167,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ps-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 5;
}
/* Quand la photo est présente, masquer le placeholder (bulles, étoiles, "Photos à venir") */
.photo-section-placeholder:has(.ps-photo) { border-style: solid; border-color: rgba(64,255,167,0.25); }
.photo-section-placeholder:has(.ps-photo) .ps-logo,
.photo-section-placeholder:has(.ps-photo) .ps-hint,
.photo-section-placeholder:has(.ps-photo) .ps-bubble,
.photo-section-placeholder:has(.ps-photo) .ps-star { display: none; }
.ps-logo {
  font-family: var(--font-brand);
  font-size: 6rem;
  color: rgba(64,255,167,0.08);
  letter-spacing: 0.08em;
  user-select: none;
}
.ps-hint {
  position: absolute;
  bottom: 24px;
  color: rgba(255,255,255,0.2);
  font-size: 0.82rem;
}
.ps-bubble {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(64,255,167,0.2);
  background: rgba(64,255,167,0.02);
  animation: floatUp linear infinite;
}
.ps-b1{width:46px;height:46px;bottom:18%;left:10%;animation-duration:7s}
.ps-b2{width:26px;height:26px;bottom:40%;left:22%;animation-duration:9s;animation-delay:1s}
.ps-b3{width:60px;height:60px;bottom:8%;right:12%;animation-duration:6.5s;animation-delay:2s}
.ps-b4{width:18px;height:18px;top:22%;right:18%;animation-duration:8s;animation-delay:0.5s}
.ps-b5{width:34px;height:34px;top:38%;left:6%;animation-duration:5.5s;animation-delay:1.5s}
.ps-star {
  position: absolute;
  color: var(--accent);
  animation: twinkle 3s ease-in-out infinite;
}
.ps-s1{top:14%;left:16%;font-size:1.3rem;animation-delay:0s}
.ps-s2{top:12%;right:20%;font-size:0.9rem;animation-delay:0.7s}
.ps-s3{bottom:20%;right:10%;font-size:1.1rem;animation-delay:1.4s}
.ps-s4{bottom:30%;left:5%;font-size:0.75rem;animation-delay:2.1s}

.photo-section-text .section-tag { margin-bottom: 14px; }
.photo-section-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.photo-section-text h2 .accent-text { color: var(--accent); }
.photo-section-text p {
  color: rgba(255,255,255,0.5);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.ps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.ps-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.ps-list svg { width: 14px; height: 14px; flex-shrink: 0; }

/* =============================================
   GARANTIES
   ============================================= */
.garanties-section {
  background: var(--navy);
  padding: 60px 0;
}
.garanties-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.garantie-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
}
.garantie-item:hover { background: rgba(255,255,255,0.07); }
.garantie-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(64,255,167,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.garantie-icon-wrap svg { width: 22px; height: 22px; color: var(--accent); }
.garantie-item strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.garantie-item span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
}

/* =============================================
   WIZARD
   ============================================= */
.wizard-section { background: var(--bg-alt); }

.wizard-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px 48px;
  box-shadow: var(--shadow);
}

.wizard-progress { margin-bottom: 36px; }
.wizard-progress-track { display: none; }
.wizard-progress-fill { display: none; }

/* Devis mode — only show dots 1 & 2 */
.wizard-dots.devis-mode .wdot[data-step="3"],
.wizard-dots.devis-mode .wdot[data-step="4"],
.wizard-dots.devis-mode .wdot[data-step="5"] {
  display: none;
}
.wizard-dots.devis-mode::before { display: none; }

.wizard-dots {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 20px;
  overflow: visible;
}
.wizard-dots::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}
.wdot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.wdot span {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  transition: background 0.3s, color 0.3s;
  overflow: visible;
}
.wdot label {
  font-size: 0.68rem;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
}
.wdot.active span { background: #050761; color: #fff; }
.wdot.active label { color: #050761; font-weight: 700; }
.wdot.done span { background: #40ffa7; color: #050761; }
.wdot.done { cursor: pointer; }
.wdot.has-crown { position: relative; }
.wdot.has-crown span::before {
  content: '👑';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  line-height: 1;
}

.wstep { display: none; }
.wstep.active {
  display: block;
  animation: stepIn 0.3s var(--ease);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.wstep-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

/* Wash grid */
.wash-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.wash-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px 16px;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  text-align: center;
  font-family: var(--font-display);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  cursor: pointer;
}
.wash-emoji {
  font-size: 2rem;
  line-height: 1;
}
.wash-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}
.wash-card-surcharge {
  position: absolute;
  top: -9px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
}
.wash-card:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.wash-card.selected {
  border-color: var(--navy);
  background: rgba(5,7,97,0.04);
  color: var(--navy);
  box-shadow: 0 0 0 3px rgba(5,7,97,0.08);
}
.wash-card-premium.selected,
.wash-card-service.selected {
  border-color: var(--navy);
  background: rgba(5,7,97,0.04);
}

/* Devis badge on wash cards */
.wash-card-devis {
  border-style: dashed;
  opacity: 0.82;
}
.wash-card-devis:hover { opacity: 1; }
.wash-card-devis.selected { opacity: 1; border-style: solid; }
.wash-devis-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 100px;
  padding: 2px 7px;
  margin-top: -4px;
}

/* ---- Canapé configurator ---- */
.canape-config { padding: 4px 0 8px; }
.canape-angle-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.canape-angle-btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.canape-angle-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(5,7,97,0.18);
}
.canape-places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.canape-place-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 8px 16px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-display);
}
.canape-place-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(64,255,167,0.2);
}
.canape-place-card.selected {
  border-color: var(--navy);
  background: rgba(5,7,97,0.04);
  box-shadow: 0 0 0 3px rgba(5,7,97,0.08);
}
.canape-place-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.canape-place-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.canape-place-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 4px;
}
.canape-multi-hint {
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 4px;
}
.canape-devis-link {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
.canape-devis-link:hover { opacity: 0.7; }

/* Options group titles */
.options-group-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 16px 0 8px;
}

/* Devis contact form */
.devis-form-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.devis-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.devis-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--text);
  resize: vertical;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.devis-form textarea:focus { outline: none; border-color: var(--navy); }
.req { color: #ef4444; }
.btn-envoyer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s, transform 0.2s;
}
.btn-envoyer:hover:not(:disabled) { background: #0a0f8f; transform: translateY(-1px); }
.btn-envoyer:disabled { opacity: 0.45; cursor: not-allowed; }
.devis-sent-msg {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #059669;
  margin-top: 12px;
}
@media (max-width: 560px) {
  .canape-places-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-form-row { grid-template-columns: 1fr; }
}

/* Formula list */
.formula-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.formula-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  text-align: left;
  position: relative;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.formula-item:hover { border-color: var(--navy); }
.formula-item.selected {
  border-color: var(--navy);
  background: rgba(5,7,97,0.04);
  box-shadow: 0 0 0 3px rgba(5,7,97,0.07);
}
.formula-featured { border-color: rgba(5,7,97,0.2); }
.fi-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.fi-left { display: flex; flex-direction: column; gap: 2px; }
.fi-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.fi-desc { font-size: 0.8rem; color: var(--text-muted); }
.fi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.fi-price {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  color: var(--navy);
  line-height: 1;
}
.fi-duration { font-size: 0.75rem; color: var(--text-muted); }

/* Devis info */
.devis-info-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(64,255,167,0.06);
  border: 1.5px solid rgba(64,255,167,0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
}
.devis-info-box svg { width: 40px; height: 40px; flex-shrink: 0; margin-top: 2px; }
.devis-info-box p { font-size: 0.92rem; color: var(--text); line-height: 1.6; }
.devis-info-box p + p { margin-top: 6px; }
.devis-note { font-size: 0.82rem; color: var(--text-muted); }

.wstep-nav { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }

/* Lieu grid */
.lieu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.lieu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px 16px;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lieu-card:hover { border-color: #050761; }
.lieu-card.selected {
  border-color: #050761;
  background: rgba(5,7,97,0.04);
  box-shadow: 0 0 0 3px rgba(5,7,97,0.08);
}
.lieu-emoji { font-size: 1.8rem; line-height: 1; }
.lieu-label { font-size: 0.78rem; font-weight: 600; color: #374151; text-align: center; }
.lieu-address-wrap { margin-bottom: 16px; }
@media (max-width: 560px) {
  .lieu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Summary */
.summary-box {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.si { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.si span { color: var(--text-muted); }
.si strong { font-weight: 600; }
.si-total .si span { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.si-total strong {
  font-family: var(--font-brand);
  font-size: 1.7rem;
  color: var(--navy);
}

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.fg input, .fg textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(5,7,97,0.07);
}
.fg input::placeholder, .fg textarea::placeholder { color: #C0C8D4; }
.fg textarea { resize: vertical; }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.35; cursor: pointer; }
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}
.form-footer p { font-size: 0.8rem; color: var(--text-muted); }
.form-actions { display: flex; gap: 10px; }

/* =============================================
   AVIS CLIENTS
   ============================================= */
.reviews-section { padding-top: 32px; }

.reviews-marquee-wrap {
  overflow: visible;
  clip-path: inset(-80px 0);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviews-scroll 45s linear infinite;
  will-change: transform;
  padding: 12px 0 20px;
}
/* no pause on hover — scroll continues */
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  width: 310px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}
.review-card-heart {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  animation: rc-heart-float linear forwards;
}
@keyframes rc-heart-float {
  0%   { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--hx, 0px), var(--hy, -50px)) scale(0.5); }
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(5,7,97,0.1);
}
.review-stars svg { width: 80px; height: 16px; }
.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.87rem; font-weight: 700; color: var(--text); }
.review-author span { display: block; font-size: 0.74rem; color: var(--text-muted); }

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.rev-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.rev-btn svg { width: 16px; height: 16px; }
.rev-btn:hover { border-color: var(--navy); color: var(--navy); }
.rev-dots { display: flex; gap: 6px; }
.rev-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.2s;
}
.rev-dot.active { background: var(--navy); }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 2px;
  text-align: left;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--navy); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] { color: var(--navy); }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease), padding 0.38s var(--ease);
}
.faq-answer.open { max-height: 400px; padding-bottom: 16px; }
.faq-answer p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.72; }
.faq-link { color: #059669; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(5,150,105,0.3); transition: border-color 0.2s; }
.faq-link:hover { border-color: #059669; }

/* =============================================
   ZONE
   ============================================= */
.zone-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zone-map {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-map svg { width: 100%; max-width: 300px; height: auto; }
.zone-cities h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 14px;
}
.cities-list li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.cities-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}
.zone-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  padding: 60px 28px 36px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.footer-tagline { color: rgba(255,255,255,0.35); font-size: 0.92rem; margin-bottom: 28px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links svg { width: 16px; height: 16px; }
.footer-legal { font-size: 0.73rem; color: rgba(255,255,255,0.15); margin-bottom: 6px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.1); }

/* =============================================
   WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 20px; height: 20px; }

/* =============================================
   CAR VISUAL (hero SVG illustration)
   ============================================= */
.car-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.car-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(64,255,167,0.12));
}
.car-label {
  text-align: center;
  margin-top: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes bubble-anim {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-10px) scale(1.1); opacity: 0.9; }
}
@keyframes star-anim {
  0%, 100% { opacity: 0.25; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.25) rotate(20deg); }
}
.bubble-anim { animation: bubble-anim 4s ease-in-out infinite; }
.star-anim { animation: star-anim 3s ease-in-out infinite; }

/* =============================================
   PROCESSUS — sticky card-stack
   ============================================= */
.processus-section {
  background: var(--bg-alt);
}

.processus-scroll {
  height: 400vh;
  position: relative;
}

.processus-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0 0;
  gap: 44px;
  overflow: hidden;
}

.proc-top {
  text-align: center;
}
.proc-top .section-tag { margin-bottom: 10px; }
.proc-top .section-title { margin-bottom: 0; }

.proc-cards-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 220px;
}

.proc-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-70px) scale(0.95);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease,
    box-shadow 0.4s ease;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  border-radius: 24px;
  padding: 48px 64px;
  display: grid;
  grid-template-columns: 80px 1fr 64px;
  align-items: center;
  gap: 40px;
  will-change: transform, opacity;
}

.proc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  opacity: 0.7;
}

.proc-card.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  z-index: 4;
  box-shadow: var(--glass-shadow), 0 16px 48px rgba(0,0,0,0.09);
}

.proc-card.prev-1 {
  transform: translateY(10px) scale(0.97);
  opacity: 0.6;
  z-index: 3;
}

.proc-card.prev-2 {
  transform: translateY(19px) scale(0.94);
  opacity: 0.3;
  z-index: 2;
}

.proc-card.prev-3 {
  transform: translateY(27px) scale(0.91);
  opacity: 0.12;
  z-index: 1;
}

.proc-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 6rem);
  opacity: 0.12;
  line-height: 1;
  flex-shrink: 0;
  color: var(--navy);
  min-width: 80px;
  text-align: center;
}

.proc-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.proc-card-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   ZONE (Leaflet map + checker)
   ============================================= */
.zone-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
#leafletMap {
  width: 100%;
  height: 380px;
}
/* Leaflet tile overrides */
.leaflet-container { font-family: var(--font-body); }

.zone-checker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zone-checker h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.zone-checker-sub {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -6px;
}
.address-check-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.address-check-form .btn { align-self: flex-start; }

.check-result {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}
.check-result.in-zone {
  background: rgba(64,255,167,0.08);
  border: 1.5px solid rgba(64,255,167,0.3);
  color: #087a49;
}
.check-result.out-zone {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: #4b5563;
}
.out-zone-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #6b7280;
}
.out-zone-cta a {
  color: #050761;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.out-zone-cta a:hover { opacity: 0.75; }
.check-result.error {
  background: rgba(220,50,50,0.07);
  border: 1.5px solid rgba(220,50,50,0.2);
  color: #b02020;
}

/* ---- Address autocomplete ---- */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(5,7,97,0.12);
  overflow: hidden;
  list-style: none;
  padding: 4px 0;
  margin: 0;
}
.autocomplete-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.ac-active {
  background: #f4f6ff;
}
.ac-icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; opacity: 0.6; }
.ac-info { display: flex; flex-direction: column; }
.ac-main { font-size: 0.88rem; font-weight: 600; color: #111827; }
.ac-sub  { font-size: 0.76rem; color: #9ca3af; margin-top: 1px; }

.cities-more {
  background: transparent !important;
  border: 1.5px dashed #d1d5db !important;
  color: #9ca3af !important;
  font-style: italic;
  font-weight: 500 !important;
}
.zone-cities-compact { margin-top: 4px; }
.zone-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.cities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cities-tags span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.cities-tags span:hover { border-color: var(--navy); color: var(--navy); }

/* =============================================
   BEFORE/AFTER SECTION
   ============================================= */
.before-after-section { padding: 80px 0; background: var(--bg); }
.ba-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .ba-layout { grid-template-columns: 1fr; } }
.ba-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.ba-list { list-style: none; padding: 0; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.ba-list li { font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.ba-check { color: #16a34a; font-weight: 700; }
.ba-card { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; }
.ba-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); display: flex; align-items: center; justify-content: center; }
.ba-placeholder-inner { text-align: center; color: #999; }
.ba-placeholder-inner p { margin: 4px 0; font-size: 0.9rem; }
.ba-ph-sub { font-size: 0.78rem; opacity: 0.7; }

/* =============================================
   WIZARD — OPTIONS (Step 3)
   ============================================= */
.options-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.options-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-bottom: 28px; }
.option-item { position: relative; cursor: pointer; }
.option-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.option-content {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; transition: all 0.2s;
  background: var(--bg);
}
.option-item input:checked + .option-content {
  border-color: var(--navy); background: rgba(5,7,97,0.04);
}
.option-content:hover { border-color: var(--text-muted); }
.option-name { font-size: 0.88rem; font-weight: 500; }
.option-price { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.option-check { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; margin-right: 10px; }
.option-item input:checked ~ .option-content .option-check { background: var(--navy); border-color: var(--navy); }

/* =============================================
   WIZARD — DOUBT LINK (Step 1)
   ============================================= */
.doubt-link { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; margin-bottom: 16px; text-align: center; }
.doubt-btn { background: none; border: none; color: var(--navy); font-size: inherit; cursor: pointer; font-weight: 500; text-decoration: underline; }

/* =============================================
   WIZARD — LIEU (Step 4)
   ============================================= */
.lieu-intro { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

/* =============================================
   WIZARD — RÉSERVATION (Step 5)
   ============================================= */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .reservation-layout { grid-template-columns: 1fr; }
}

/* Calendar */
.cal-widget { background: var(--bg-alt); border-radius: 16px; padding: 20px; margin-bottom: 24px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-header button { background: none; border: 1.5px solid var(--border); border-radius: 8px; width: 34px; height: 34px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.cal-header button:hover { background: var(--bg); }
.cal-header span { font-weight: 600; font-size: 0.95rem; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; border: none; border-radius: 8px; font-size: 0.82rem;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
  background: none; display: flex; align-items: center; justify-content: center;
}
.cal-day.empty { background: none; cursor: default; }
.cal-day.disabled { opacity: 0.25; cursor: not-allowed; color: var(--text-muted); }
.cal-day.available { color: var(--text); }
.cal-day.available:hover { background: var(--navy); color: #fff; }
.cal-day.selected { background: var(--navy); color: #fff; font-weight: 600; }
.cal-day.full { color: var(--text-muted); text-decoration: line-through; cursor: not-allowed; }

/* Time slots */
.cal-slots { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.cal-slots-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.cal-slots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-slot {
  padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--border);
  background: none; font-family: inherit; font-size: 0.83rem; cursor: pointer;
  transition: all 0.15s; display: flex; flex-direction: column; align-items: center;
}
.cal-slot:hover:not(.taken):not(.selected) { border-color: var(--navy); color: var(--navy); }
.cal-slot.selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.cal-slot.taken { opacity: 0.4; cursor: not-allowed; }
.cal-slot span { font-size: 0.7rem; }

/* Payment block */
.payment-block { border-top: 1px solid var(--border); padding-top: 24px; }
.payment-block h4 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.acompte-explain { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.payment-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.payment-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); background: var(--bg-alt); border-radius: 8px; padding: 6px 12px; }
.btn-full { width: 100%; justify-content: center; margin-top: 16px; }

/* Mini FAQ */
.faq-mini { margin-bottom: 20px; }
.faq-mini-item { border-bottom: 1px solid var(--border); }
.faq-mini-question { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-family: inherit; font-size: 0.83rem; cursor: pointer; text-align: left; color: var(--text); font-weight: 500; }
.faq-mini-question svg { flex-shrink: 0; transition: transform 0.25s; }
.faq-mini-item.open .faq-mini-question svg { transform: rotate(180deg); }
.faq-mini-answer { font-size: 0.82rem; color: var(--text-muted); max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-mini-item.open .faq-mini-answer { max-height: 200px; padding-bottom: 12px; }

/* Recap */
.reservation-summary { background: var(--bg-alt); border-radius: 20px; padding: 24px; position: sticky; top: 100px; }
.reservation-summary h4 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.recap-lines { display: flex; flex-direction: column; gap: 10px; }
.recap-line { display: flex; justify-content: space-between; align-items: flex-start; font-size: 0.88rem; gap: 12px; }
.recap-line span { color: var(--text-muted); }
.recap-line strong { text-align: right; max-width: 180px; }
.recap-option-line span { color: var(--text-muted); font-size: 0.82rem; }
.recap-option-line strong { color: #374151; font-size: 0.82rem; }
.recap-total { padding-top: 12px; border-top: 1px solid var(--border); font-weight: 700; font-size: 1rem; }
.recap-total span { color: var(--text); }
.recap-acompte { background: rgba(5,7,97,0.06); border-radius: 10px; padding: 10px 12px; margin-top: 4px; }
.recap-acompte span { color: var(--navy); font-weight: 600; font-size: 0.83rem; }
.recap-acompte strong { color: var(--navy); font-size: 1rem; }

/* =============================================
   VEHICLE GUIDE MODAL
   ============================================= */
.vehicle-guide-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.vehicle-guide-overlay[hidden] { display: none; }
.vehicle-guide-modal {
  background: var(--bg); border-radius: 24px; padding: 40px;
  max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.vgm-title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--text); letter-spacing: -0.02em; margin-bottom: 24px; }
.vgm-close { position: absolute; top: 20px; right: 20px; background: var(--bg-alt); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.vgm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.vgm-item { background: var(--bg-alt); border-radius: 16px; padding: 20px; }
.vgm-icon { font-size: 2rem; margin-bottom: 8px; }
.vgm-item strong { display: block; font-size: 0.95rem; margin-bottom: 6px; }
.vgm-item p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; }
.vgm-brands { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }
.vgm-footer { font-size: 0.85rem; color: var(--text-muted); text-align: center; }
.vgm-footer a { color: var(--navy); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .wash-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { padding: 60px 20px 28px; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .stats-bar .stats-inner { flex-wrap: wrap; border-radius: 12px; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); flex: 1 1 45%; }
  .stats-bar .stat-item:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.06); }
  .stats-bar .stat-item:last-child,
  .stats-bar .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .photo-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .photo-section-placeholder { max-width: 100%; }
  .zone-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .reviews-track { grid-template-columns: 1fr; }
  /* Processus: disable sticky on mobile, show all cards */
  .processus-scroll { height: auto; }
  .processus-sticky {
    position: relative;
    height: auto;
    padding: 80px 28px 60px;
    gap: 28px;
  }
  .proc-cards-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .proc-card {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: var(--glass-shadow) !important;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .wizard-wrapper { padding: 24px 20px 32px; }
  .wash-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-actions { width: 100%; }
  .form-actions .btn { flex: 1; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 13px; border-radius: 50%; }
  #leafletMap { height: 280px; }
  .address-check-form .btn { width: 100%; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-item { border-right: none; border-bottom: 1px solid rgba(64,255,167,0.18); padding: 36px 32px; }
  .kpi-item:nth-child(3), .kpi-item:last-child { border-bottom: none; }
  .vidcaro-wrap { padding-left: 20px; }
  .vidcaro-nav { padding: 20px; }
}

/* ============================================
   MOBILE FIXES — Polish < 640px
   ============================================ */
@media (max-width: 640px) {
  /* Badge hero : grid pour que la 2e ligne soit vraiment centrée au milieu du pill */
  .hero-badge {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 11px;
    row-gap: 2px;
    align-items: start;
    padding: 10px 18px 11px;
    line-height: 1.35;
  }
  .hero-badge-text { display: contents; }
  .hero-badge-dot { margin-top: 7px; grid-row: 1; grid-column: 1; }
  .hero-badge-main {
    font-size: 0.84rem;
    font-weight: 600;
    grid-row: 1;
    grid-column: 2;
  }
  .hero-badge-main::after { content: none; }
  .hero-badge-loc {
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #94a3b8;
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: center;
  }

  /* Hero sub : tient sur 2 lignes */
  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 100%;
    padding: 0 4px;
  }

  /* KPI : 1 colonne propre, sans 3e KPI orphelin */
  .kpi-section { padding: 56px 0; }
  .kpi-card { border-radius: 24px; margin: 0 auto 28px; }
  .kpi-grid { grid-template-columns: 1fr; }
  .kpi-item {
    padding: 32px 32px;
    border-right: none;
    border-bottom: 1px solid rgba(64,255,167,0.18);
    align-items: flex-start;
  }
  .kpi-item:last-child { border-bottom: none; }
  .kpi-num { font-size: 2.6rem; }
  .kpi-label { font-size: 0.98rem; }
  .kpi-detail { font-size: 0.8rem; }

  /* Reviews carousel : densité + vitesse pour tuer le « vide » */
  .reviews-marquee-track {
    gap: 10px;
    animation-duration: 24s;
    padding: 12px 0 16px;
  }
  .review-card {
    width: 240px;
    padding: 20px 18px;
    gap: 12px;
  }
  .review-text { font-size: 0.82rem; line-height: 1.55; }
  .review-author strong { font-size: 0.83rem; }
  .review-author span { font-size: 0.7rem; }
  .review-avatar { width: 34px; height: 34px; font-size: 0.85rem; }
  .reviews-marquee-wrap {
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  }

  /* Footer : empilé vertical, plus aéré */
  .footer { padding: 48px 24px 32px; }
  .footer-logo { font-size: 2.2rem; margin-bottom: 4px; }
  .footer-tagline { font-size: 0.9rem; margin-bottom: 24px; }
  .footer-links {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }
  .footer-links a {
    justify-content: center;
    font-size: 0.92rem;
    padding: 4px 0;
  }
  .footer-copy { font-size: 0.72rem; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); margin: 0 auto; max-width: 220px; }
}

@media (max-width: 480px) {
  .wash-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 7.5vw; }
  .stats-bar .stat-item { flex: 1 1 100%; border-right: none !important; }
  .stats-bar .stat-item:last-child { border-bottom: none; }
  .proc-card { padding: 24px 28px; gap: 20px; }
}

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
}
.blog-card--placeholder .blog-card-img {
  background: linear-gradient(135deg, rgba(64,255,167,0.08) 0%, rgba(64,255,167,0.03) 100%);
  border-bottom: 1px dashed rgba(64,255,167,0.2);
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 10px 0 8px;
}
.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-date {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
