/* ═══════════════════════════════════════════════════════════
   MIRACLE — Base, Tokens, Layout
   Luxe automobile · Noir & Blanc · Editorial
═══════════════════════════════════════════════════════════ */

:root {
  /* ── Couleurs ── */
  --black:        #050505;
  --black-2:      #0b0b0c;
  --black-3:      #111113;
  --ink:          #18181b;
  --line:         rgba(255, 255, 255, 0.10);
  --line-2:       rgba(255, 255, 255, 0.06);
  --line-strong:  rgba(255, 255, 255, 0.22);

  --white:        #f5f1ea;       /* ivoire chaud */
  --white-pure:   #ffffff;
  --muted:        #8a8580;       /* texte secondaire */
  --muted-2:      #5b5854;
  --accent:       #ffffff;       /* le blanc EST l'accent */

  /* ── Typo ── */
  --font-display: 'Anton', 'Archivo Black', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;

  /* ── Espacement ── */
  --section-pad-y: clamp(80px, 10vw, 160px);
  --container:     min(1280px, 92vw);
  --gutter:        clamp(20px, 4vw, 48px);

  /* ── Rayons ── */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* ── Easing ── */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'ss02', 'cv01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, select, button { font: inherit; }

/* ── Selection ── */
::selection { background: var(--white); color: var(--black); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.22); }

/* ═══════════════════ BACKGROUND LAYERS ═══════════════════ */
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top, transparent 30%, rgba(0,0,0,0.6) 90%),
    radial-gradient(ellipse at center, rgba(20,20,20,0.0) 30%, rgba(0,0,0,0.55) 100%);
}

/* ═══════════════════ CURSOR ═══════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--white);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.55);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
}
.cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--white); }
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  background: rgba(5, 5, 5, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .35s var(--ease-out), backdrop-filter .35s var(--ease-out), padding .25s var(--ease-out), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  padding: 12px var(--gutter);
  border-bottom-color: var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.10));
  transition: transform .4s var(--ease-spring), filter .4s var(--ease-out);
}
.nav-logo:hover img {
  transform: rotate(-8deg) scale(1.08);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.25));
}
/* Slight shrink when scrolled state engages, but stays prominent */
.nav.is-scrolled .nav-logo img { width: 44px; height: 44px; }
.nav.is-scrolled .nav-logo { font-size: 16px; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  color: rgba(255,255,255,0.72);
  transition: color .2s var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 6px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  flex-shrink: 0;
}
.nav-burger span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform .35s var(--ease-out), opacity .2s, top .35s var(--ease-out);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }
.nav-burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-drawer a { padding: 8px 18px; }
.mobile-drawer .btn { margin-top: 12px; font-size: 14px; }

@media (max-width: 900px) {
  .nav .nav-links,
  .nav .nav-cta { display: none !important; }
  .nav .nav-burger { display: block; }
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .35s var(--ease-spring), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(0,0,0,0.12) 50%, transparent 65%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position .8s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { background-position: -100% 0; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-line {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 11px;
}
.btn-line:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  padding: 140px var(--gutter) 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.02);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px rgba(255,255,255,0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--white);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
  position: relative;
}
.hero-title .reveal-line {
  display: block;
  overflow: hidden;
}
.hero-title .reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.hero-title.is-revealed .reveal-line > span { transform: translateY(0); }
.hero-title .reveal-line:nth-child(1) > span { transition-delay: 0.05s; }
.hero-title .reveal-line:nth-child(2) > span { transition-delay: 0.18s; }
.hero-title .reveal-line:nth-child(3) > span { transition-delay: 0.30s; }

.hero-sub {
  max-width: 600px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.72);
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 60px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.stat-num i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin-left: 4px;
  font-weight: 400;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 6;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--white), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: var(--black);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* ── Marquee ── */
.marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  z-index: 6;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--muted);
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(calc(-100% / 3)); }
}

/* ═══════════════════ SECTIONS ═══════════════════ */
.section {
  position: relative;
  z-index: 5;
  padding: var(--section-pad-y) var(--gutter);
  width: var(--container);
  margin: 0 auto;
  scroll-margin-top: 90px;
}
/* Ensure inner anchor targets (like #tarifs inside services) also clear the sticky nav */
[id] { scroll-margin-top: 90px; }

.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-num {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--white);
}
.section-label {
  position: relative;
  padding-left: 14px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--muted);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7.5vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 18ch;
  text-transform: uppercase;
}
.section-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  text-stroke: 1.5px var(--white);
}

/* ═══════════════════ PROMESSE ═══════════════════ */
.promesse-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) {
  .promesse-grid { grid-template-columns: 1fr; }
}
.promesse-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  position: sticky;
  top: 120px;
  text-transform: uppercase;
}
.promesse-title em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
  text-stroke: 1.5px var(--white);
}

.promesse-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.promesse-card {
  position: relative;
  padding: 32px 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  transition: border-color .35s var(--ease-out), transform .5s var(--ease-out), background .35s;
  overflow: hidden;
}
.promesse-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.promesse-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.promesse-card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.20em;
  color: var(--muted);
  margin-bottom: 18px;
}
.promesse-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.promesse-card p {
  color: rgba(245, 241, 234, 0.65);
  font-size: 15px;
  line-height: 1.6;
  max-width: 48ch;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  position: relative;
  padding: 36px 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color .35s var(--ease-out), transform .5s var(--ease-out);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.pricing-card:hover { border-color: var(--line-strong); transform: translateY(-6px); }
.pricing-card:hover::before { opacity: 1; }

.pricing-card--featured {
  border-color: rgba(255,255,255,0.45);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset, 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(-12px);
}
.pricing-card--featured:hover { transform: translateY(-18px); }
@media (max-width: 1000px) {
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
}

.pc-badge {
  position: absolute;
  top: 18px; right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
}
.pc-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--black);
  animation: pulse 2s ease-in-out infinite;
}

.pc-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.pc-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pc-from {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pc-was {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.pc-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--white);
}
.pc-amount i {
  font-style: normal;
  font-size: 0.45em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.pc-price--lg .pc-amount { font-size: clamp(60px, 9vw, 100px); }

.pc-range {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pc-range--save {
  color: var(--white);
  font-weight: 600;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pc-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: rgba(245, 241, 234, 0.78);
  line-height: 1.55;
}
.pc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px;
  height: 1px;
  background: var(--white);
}
.pc-list li strong { color: var(--white); font-weight: 600; }

.pc-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.pc-conseil {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════ OPTIONS ═══════════════════ */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.option-card {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .35s var(--ease-out), transform .5s var(--ease-out);
  overflow: hidden;
}
.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.06), transparent 65%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.option-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.option-card:hover::before { opacity: 1; }
.option-card:hover .opt-icon { transform: rotate(-6deg) scale(1.05); border-color: var(--white); }

.opt-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 8px;
  transition: transform .5s var(--ease-spring), border-color .35s;
}
.opt-icon svg { width: 24px; height: 24px; color: var(--white); }

.option-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.option-card p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.62);
  flex: 1;
}
.opt-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.opt-range {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
}
.opt-conseil {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════ PROCESS ═══════════════════ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-item {
  display: grid;
  grid-template-columns: clamp(80px, 14vw, 180px) 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease-out);
  position: relative;
}
.process-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width .8s var(--ease-out);
}
.process-item:hover::after { width: 100%; }
.process-item:hover { padding-left: 12px; }

.proc-step {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  opacity: 0.9;
}
.proc-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.proc-body p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.65);
  max-width: 60ch;
}

/* ═══════════════════ INVOICE / EXEMPLE ═══════════════════ */
.invoice-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.012) 12px, rgba(255,255,255,0.012) 13px);
  position: relative;
  overflow: hidden;
}
.invoice-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

.inv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 24px;
}
.inv-eyebrow {
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.inv-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.02em;
}
.inv-stamp {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
}

.inv-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.inv-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.inv-lbl {
  font-size: 15px;
  color: rgba(245, 241, 234, 0.85);
}
.inv-amt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.inv-amt i {
  font-style: normal;
  font-size: 0.6em;
  color: var(--muted);
  margin-left: 2px;
}

.inv-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  margin-bottom: 28px;
}
.inv-total-lbl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.inv-total-amt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.04em;
}
.inv-total-amt i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}

.inv-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.inv-foot p {
  max-width: 50ch;
  color: rgba(245, 241, 234, 0.65);
  font-size: 14px;
  line-height: 1.55;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-intro {
  font-size: 16px;
  color: rgba(245, 241, 234, 0.65);
  margin-top: -32px;
  margin-bottom: 36px;
  max-width: 38ch;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  transition: border-color .35s var(--ease-out), background .35s, transform .4s var(--ease-out);
}
.channel:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.05);
  transform: translateX(6px);
}
.channel--static:hover { transform: none; }
.ch-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.ch-ico svg { width: 18px; height: 18px; }
.ch-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ch-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ch-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-form {
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
}
.cf-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) { .cf-row { grid-template-columns: 1fr; } }

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cf-field span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color .25s var(--ease-out), background .25s;
  outline: none;
  width: 100%;
}
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.cf-field select option { background: var(--black-2); color: var(--white); }
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--muted-2); }

.cf-submit { width: 100%; margin-top: 8px; }

.cf-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.cf-status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
}
.cf-status.is-success { color: #d4ffd4; }
.cf-status.is-error { color: #ffd4d4; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  position: relative;
  z-index: 5;
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.footer-top {
  width: var(--container);
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 24px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.10));
}
.footer-tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.75);
  transition: color .2s var(--ease-out);
}
.footer-grid a:hover { color: var(--white); }

.footer-bot {
  width: var(--container);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer-meta {
  font-family: var(--font-body);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ═══════════════════ MAGNET BUTTON HELPERS ═══════════════════ */
.btn-magnet { will-change: transform; }

/* ═══════════════════════════════════════════════════════════
   ANTON TYPOGRAPHY NORMALIZATION
   Anton is single-weight 400. Force consistent treatment + uppercase
   on display headlines to match the bold-condensed reference style.
═══════════════════════════════════════════════════════════ */
.hero-title,
.section-title,
.promesse-title,
.pc-head h3,
.option-card h3,
.proc-body h3,
.promesse-card h3,
.inv-title,
.inv-total-lbl,
.cf-title,
.pc-amount,
.opt-range,
.inv-amt,
.inv-total-amt,
.stat-num,
.proc-step,
.section-num,
.footer-brand,
.nav-logo {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;
  text-transform: uppercase;
}

/* Tracking adjustments — Anton is condensed, so we tighten less */
.hero-title { letter-spacing: 0.005em !important; }
.section-title { letter-spacing: 0.005em !important; }
.promesse-title { letter-spacing: 0.005em !important; }
.pc-head h3 { letter-spacing: 0.02em !important; font-size: 28px !important; }
.option-card h3 { letter-spacing: 0.02em !important; font-size: 22px !important; }
.proc-body h3 { letter-spacing: 0.02em !important; font-size: clamp(22px, 2.6vw, 32px) !important; }
.promesse-card h3 { letter-spacing: 0.02em !important; font-size: 30px !important; }
.inv-title { letter-spacing: 0.01em !important; font-size: clamp(32px, 4vw, 46px) !important; }
.cf-title { letter-spacing: 0.02em !important; font-size: 26px !important; }
.pc-amount,
.opt-range,
.inv-amt,
.inv-total-amt,
.stat-num,
.proc-step { text-transform: none !important; }

/* Numeric € symbols stay un-uppercased */
.pc-amount i,
.opt-range i,
.inv-amt i,
.inv-total-amt i,
.stat-num i { text-transform: none !important; }

/* ═══════════════════════════════════════════════════════════
   AVANT / APRÈS — COMPARISON SLIDER
═══════════════════════════════════════════════════════════ */
.gallery-intro {
  max-width: 56ch;
  font-size: 16px;
  color: rgba(245, 241, 234, 0.65);
  margin: -36px 0 36px;
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compare-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0a0a0a;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}

.compare-after,
.compare-after-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.compare-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Cover left half (BEFORE) up to the handle position. */
  width: 50%;
  overflow: hidden;
}
/* The inner AFTER duplicates the after image at full frame width
   so when the BEFORE wrapper is clipped, the BEFORE side actually shows. */
/* Reverse: actually we put BEFORE image on .compare-before and AFTER on .compare-after.
   The BEFORE is clipped on the right, revealing AFTER beneath. */

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
  z-index: 4;
}
.compare-handle-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0.95) 70%, transparent);
}
.compare-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.10);
  pointer-events: none;
}
.compare-handle-knob svg { width: 22px; height: 22px; }
.compare-frame:hover .compare-handle-knob { animation: knobPulse 1.6s ease-in-out infinite; }
@keyframes knobPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.10); }
  50% { box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 10px rgba(255,255,255,0.04); }
}

.compare-tag {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  z-index: 3;
  pointer-events: none;
}
.compare-tag--before { left: 18px; }
.compare-tag--after  { right: 18px; }

/* Thumbnail gallery */
.compare-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.thumb {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 8px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color .25s var(--ease-out), background .25s, transform .35s var(--ease-out);
  text-align: left;
}
.thumb:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.thumb.is-active {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.thumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.thumb-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.78);
  padding: 0 4px;
}
.thumb.is-active .thumb-lbl { color: var(--white); }

.gallery-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.gallery-note code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   BOOKING — STEPPER & PANELS
═══════════════════════════════════════════════════════════ */
.booking-intro {
  max-width: 56ch;
  font-size: 16px;
  color: rgba(245, 241, 234, 0.65);
  margin: -36px 0 36px;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.stepper::-webkit-scrollbar { display: none; }

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: default;
  min-width: 90px;
}
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0;
  color: var(--muted);
  transition: all .35s var(--ease-out);
}
.step-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  transition: color .35s var(--ease-out);
}
.step.is-active .step-circle {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}
.step.is-active .step-lbl { color: var(--white); }
.step.is-done .step-circle {
  background: rgba(255,255,255,0.20);
  color: var(--white);
  border-color: var(--line-strong);
}
.step.is-done .step-circle::before {
  content: '✓';
  font-size: 16px;
  line-height: 1;
}
.step.is-done .step-circle > * { display: none; }

.step-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 24px;
  position: relative;
  top: -10px;
}

.booking-card {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}

.bk-panel {
  display: none;
  animation: bkFade .45s var(--ease-out);
}
.bk-panel.is-active { display: block; }
@keyframes bkFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bk-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bk-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ── Step 1 — Vehicle tiles ── */
.bk-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.bk-grid--vehicles {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.bk-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  transition: border-color .25s var(--ease-out), background .25s, transform .35s var(--ease-out);
}
.bk-tile input { position: absolute; opacity: 0; pointer-events: none; }
.bk-tile:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.bk-tile:has(input:checked) {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.20) inset;
}
.tile-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 36px;
  color: var(--white);
}
.tile-ico svg { width: 100%; height: 100%; }
.tile-lbl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tile-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ── Step 2 — Pack cards ── */
.bk-grid--packs {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.bk-pack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  transition: border-color .25s var(--ease-out), background .25s, transform .35s var(--ease-out);
}
.bk-pack input { position: absolute; opacity: 0; pointer-events: none; }
.bk-pack:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.bk-pack:has(input:checked) {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.20) inset;
}
.bk-pack--featured {
  border-color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.05);
}
.pack-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.pack-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.pack-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pack-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.pack-price i {
  font-style: normal;
  font-size: 0.55em;
  color: var(--muted);
  margin-left: 2px;
}
.pack-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pack-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(245,241,234,0.78);
  line-height: 1.5;
}
.pack-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px;
  height: 1px;
  background: var(--white);
}
.pack-list li strong { color: var(--white); font-weight: 600; }
.pack-range {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.pack-range--save { color: var(--white); font-weight: 600; }

/* ── Step 3 — Options ── */
.bk-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.bk-opt {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: border-color .25s var(--ease-out), background .25s;
}
.bk-opt input { position: absolute; opacity: 0; pointer-events: none; }
.bk-opt:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.06); }
.bk-opt:has(input:checked) {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.opt-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
  transition: all .2s;
  flex-shrink: 0;
}
.bk-opt:has(input:checked) .opt-check {
  background: var(--white);
  border-color: var(--white);
}
.bk-opt:has(input:checked) .opt-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.opt-name {
  font-size: 15px;
  font-weight: 500;
}
.opt-amt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.opt-amt i {
  font-style: normal;
  font-size: 0.55em;
  color: var(--muted);
  margin-left: 2px;
}

/* ── Step 4 — Lieu ── */
.bk-grid--places {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.bk-place {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  transition: border-color .25s var(--ease-out), background .25s, transform .35s var(--ease-out);
}
.bk-place input { position: absolute; opacity: 0; pointer-events: none; }
.bk-place:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.bk-place:has(input:checked) {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
}
.place-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.place-ico svg { width: 22px; height: 22px; }
.place-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.place-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.bk-field {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* ── Step 5 — Confirmation + Recap ── */
.bk-confirm-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
@media (max-width: 880px) {
  .bk-confirm-grid { grid-template-columns: 1fr; }
}

.bk-form .cf-field { margin-bottom: 14px; }

.bk-recap {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.recap-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.recap-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,241,234,0.85);
}
.recap-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.recap-list li.recap-sub {
  font-size: 12px;
  color: var(--muted);
  border-bottom: none;
  padding-bottom: 0;
}
.recap-list li:last-child { border-bottom: none; padding-bottom: 0; }
.recap-list .empty {
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding: 12px 0;
}
.recap-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1.5px solid var(--white);
}
.recap-total-lbl {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.recap-total-amt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.01em;
}
.recap-total-amt i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--muted);
  margin-left: 4px;
}
.recap-note {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

/* ── Common booking actions ── */
.bk-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.bk-actions .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile stepper compaction */
@media (max-width: 700px) {
  .step-lbl { display: none; }
  .step { min-width: 38px; }
  .stepper { gap: 0; justify-content: space-between; }
  .step-line { min-width: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   VEHICLE TILE — surcharge badge
═══════════════════════════════════════════════════════════ */
.tile-surcharge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
  pointer-events: none;
}
.bk-tile:has(input:checked) .tile-surcharge {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   PLACE — "Bientôt disponible" disabled state
═══════════════════════════════════════════════════════════ */
.bk-place--soon {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.4);
  position: relative;
}
.bk-place--soon:hover {
  border-color: var(--line);
  background: rgba(255,255,255,0.025);
  transform: none;
}
.bk-place--soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 8px,
    rgba(255, 255, 255, 0.025) 8px,
    rgba(255, 255, 255, 0.025) 9px
  );
  border-radius: inherit;
  pointer-events: none;
}
.place-soon {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.place-soon::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — nav logo
═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .nav-logo img { width: 44px; height: 44px; }
  .nav-logo { font-size: 16px; gap: 10px; }
  .nav.is-scrolled .nav-logo img { width: 38px; height: 38px; }
}

/* ═══════════════════════════════════════════════════════════
   RECAP — Supplement line styling
═══════════════════════════════════════════════════════════ */
.recap-sub small {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 1px 6px;
}
.recap-list .recap-surcharge {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.92);
  font-style: italic;
  padding-left: 8px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px;
}
.recap-list .recap-surcharge span:last-child {
  font-style: normal;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   OPTION CARDS — "À la carte" tag (replaces price block)
═══════════════════════════════════════════════════════════ */
.option-card .opt-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 12px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  position: relative;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  padding-right: 14px;
}
/* simpler tag spacing — override the dramatic */
.option-card .opt-tag {
  padding: 6px 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  background: transparent;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  color: var(--muted);
  letter-spacing: 0.20em;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.option-card .opt-tag::before {
  content: '·';
  margin-right: 8px;
  color: var(--white);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   HERO — Two-column layout with logo on the right
═══════════════════════════════════════════════════════════ */
.hero-inner--with-logo {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
}
.hero-inner--with-logo .hero-title {
  font-size: clamp(48px, 8vw, 112px);
}

.hero-text {
  min-width: 0;
}

.hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  pointer-events: none;
}

.hero-mark-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 38px rgba(255, 255, 255, 0.18))
          drop-shadow(0 0 80px rgba(255, 255, 255, 0.06));
  animation: heroLogoFloat 7s ease-in-out infinite;
  opacity: 0;
  transform: scale(0.92);
}
.hero-mark-img.is-loaded {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.4s var(--ease-out) 0.4s, transform 1.4s var(--ease-out) 0.4s;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}

.hero-mark-glow {
  position: absolute;
  inset: 10%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 35%,
    transparent 70%
  );
  filter: blur(40px);
  animation: heroGlowPulse 6s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

/* Decorative orbital ring around the logo */
.hero-mark-ring {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: heroRingRotate 30s linear infinite;
}
.hero-mark-ring::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.hero-mark-ring::after {
  content: '';
  position: absolute;
  top: 4%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}
@keyframes heroRingRotate {
  to { transform: rotate(360deg); }
}

/* Mobile: rearrange so logo sits next to the TITLE specifically */
@media (max-width: 900px) {
  .hero-inner--with-logo {
    display: grid;
    /* More room for the text on mobile so AUTOMOBILE fits */
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 14px 12px;
    align-items: start;
  }
  .hero-text {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-width: 0;
  }
  .hero-mark {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    max-width: 100%;
    margin: 0;
    aspect-ratio: 1;
    /* Vertically center logo with the H1 title (eyebrow takes ~50px above) */
    align-self: center;
    margin-top: 60px;
  }
  .hero-inner--with-logo .hero-title {
    font-size: clamp(32px, 7.5vw, 64px);
    line-height: 1.05;
  }
  .hero-eyebrow {
    margin-bottom: 8px;
  }
  /* Smaller, denser body copy on mobile */
  .hero-sub {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .hero-inner--with-logo {
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 10px;
  }
  .hero-inner--with-logo .hero-title {
    font-size: clamp(26px, 8vw, 44px);
  }
  .hero-mark {
    margin-top: 48px;
  }
  .hero-sub {
    font-size: 12.5px;
    margin-bottom: 28px;
  }
}

@media (max-width: 420px) {
  .hero-inner--with-logo {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  }
  .hero-inner--with-logo .hero-title {
    font-size: clamp(22px, 7.5vw, 32px);
  }
  .hero-mark {
    margin-top: 38px;
  }
  .hero-sub {
    font-size: 12px;
    margin-bottom: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════
   STEP 6 — Calendly inline widget container
═══════════════════════════════════════════════════════════ */
.calendly-inline-widget {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 700px) {
  .calendly-inline-widget {
    height: 900px !important;
  }
}

/* Recap — Calendly slot highlight */
.recap-list .recap-slot {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 10px;
  margin-top: 6px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
}
.recap-list .recap-slot span:last-child {
  font-weight: 600;
  color: var(--white);
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════
   STEP 6 — Confirmation screen + Calendly reveal
═══════════════════════════════════════════════════════════ */
.bk-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(20px, 4vw, 40px) 12px;
  max-width: 640px;
  margin: 0 auto;
  animation: bkFade .5s var(--ease-out);
}

.bk-confirm-icon,
.bk-final-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 28px;
  animation: iconPop .6s var(--ease-spring);
}
.bk-confirm-icon svg,
.bk-final-icon svg {
  width: 56px;
  height: 56px;
}
.bk-final-icon {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  animation: iconPop .6s var(--ease-spring), starGlow 3s ease-in-out infinite;
}
@keyframes iconPop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes starGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.20); }
  50%      { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}

.bk-confirm-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bk-confirm-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.78);
  max-width: 52ch;
  margin: 0 auto 28px;
}
.bk-confirm-sub strong {
  color: var(--white);
}

/* Brief recap on confirmation screen */
.bk-confirm-recap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  padding: 20px 22px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  text-align: left;
}
.bk-confirm-recap .cr-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.bk-confirm-recap .cr-row:last-child { border-bottom: none; padding-bottom: 0; }
.bk-confirm-recap .cr-row span { color: var(--muted); }
.bk-confirm-recap .cr-row strong { color: var(--white); font-weight: 500; }
.bk-confirm-recap .cr-total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1.5px solid var(--white);
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.bk-confirm-recap .cr-total strong {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* Big CTA button to reveal Calendly */
.bk-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px !important;
  font-size: 14px !important;
  letter-spacing: 0.10em;
  margin-bottom: 18px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.20);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.bk-cta svg {
  width: 22px;
  height: 22px;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25); }
  50%      { box-shadow: 0 0 0 14px rgba(255, 255, 255, 0); }
}

.bk-confirm-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.bk-confirm-note strong { color: var(--white); font-weight: 600; }

/* Calendly wrap (revealed on click) */
.bk-calendly-wrap {
  animation: bkFade .45s var(--ease-out);
  margin-top: 12px;
}
.bk-calendly-wrap[hidden] { display: none; }

/* Final state — after Calendly booking is done */
.bk-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(20px, 4vw, 40px) 12px;
  max-width: 640px;
  margin: 0 auto;
  animation: bkFade .55s var(--ease-out);
}
.bk-final[hidden] { display: none; }
.bk-final .bk-confirm-sub strong#bk-final-slot {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--white);
}

/* Note d'adresse sur la tuile En atelier */
.place-meta em {
  display: inline-block;
  margin-top: 6px;
  font-style: italic;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════════════════════════
   QUOTE NUMBER — Recap badge (top of recap card)
═══════════════════════════════════════════════════════════ */
.recap-ref {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  margin: 0 -10px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r-md);
  text-align: center;
}
.recap-ref-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.recap-ref-num {
  font-family: ui-monospace, 'SF Mono', 'Roboto Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   QUOTE NUMBER — Confirmation screen badge (step 6 success)
═══════════════════════════════════════════════════════════ */
.bk-quote-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 14px 28px;
  margin: 0 0 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 12px;
  animation: badgePop .55s var(--ease-spring);
}
.bk-quote-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-quote-num {
  font-family: ui-monospace, 'SF Mono', 'Roboto Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}
@keyframes badgePop {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   STEP 3 — Supplément éventuel (Véhicule non vidé)
═══════════════════════════════════════════════════════════ */
.bk-supplements {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: rgba(255, 200, 100, 0.04);
  border: 1px solid rgba(255, 200, 100, 0.20);
  border-radius: var(--r-md);
}
.bk-supplements-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 220, 160, 0.85);
  margin-bottom: 10px;
}
.bk-opt--supp {
  background: rgba(255, 255, 255, 0.02);
}
.bk-opt--supp .opt-name small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}
