/* ==========================================================================
   AutoDrop — Vente privée de véhicules importés (Douala & Yaoundé)
   Feuille de style principale. Conversion du prototype .dc.html en site statique.
   ========================================================================== */

:root {
  --panel-bg: #fff;
  --accent: #1D3FD1;
  --accent-on-dark: #8396E6;
  --gate-blur: 14px;

  --bg: #F5F5F2;
  --ink: #101317;
  --muted: #565B62;
  --faint: #8A8F96;
  --line: #E4E4DF;
  --card-line: #E7E7E2;
  --panel-soft: #FAFAF8;

  --dark: #101317;
  --dark-panel: #191D24;
  --dark-line: #262B33;

  --ok-bg: #E7F6EF;
  --ok-line: #C4E8D8;
  --ok-ink: #0A5C41;
  --ok-solid: #0A7A55;

  --card-bg: rgba(255, 255, 255, 0.6);
  --header-bg: rgba(255, 255, 255, 0.75);
  --orb-color: rgba(29, 63, 209, 0.06);
  --hero-grad: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(245,245,242,0.4) 100%);
  --btn-ghost-bg: #fff;
  --btn-ghost-border: #DFDFD9;
}

[data-theme="dark"] {
  --panel-bg: var(--dark-panel);
  --bg: #0A0D14;
  --ink: #F3F4F6;
  --muted: #9CA3AF;
  --faint: #6B7280;
  --line: #1F2937;
  --card-line: #374151;
  --panel-soft: #1F2937;
  --dark: #1F2937;
  --dark-panel: #111827;
  --dark-line: #374151;
  --ok-bg: #064E3B;
  --ok-line: #065F46;
  --ok-ink: #A7F3D0;
  --ok-solid: #10B981;

  --card-bg: rgba(31, 41, 55, 0.5);
  --header-bg: rgba(10, 13, 20, 0.75);
  --orb-color: rgba(131, 150, 230, 0.08);
  --hero-grad: linear-gradient(180deg, rgba(10,13,20,0) 0%, rgba(10,13,20,0.8) 100%);
  --btn-ghost-bg: transparent;
  --btn-ghost-border: #374151;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: color-mix(in oklab, var(--accent) 78%, #000); }
button, input { font-family: inherit; }
input { transition: border-color 0.3s ease, box-shadow 0.3s ease; }
input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent); }
button:focus-visible { outline: none; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 30%, transparent); }
::selection { background: color-mix(in oklab, var(--accent) 22%, transparent); }
img { display: block; max-width: 100%; }

/* Utilitaires ------------------------------------------------------------- */
.wrap { max-width: 1280px; margin: 0 auto; }
.mono { font-family: 'JetBrains Mono', monospace; }
.archivo { font-family: 'Archivo', sans-serif; }
.hidden { display: none !important; }

/* Animations -------------------------------------------------------------- */
@keyframes dcRise { from { opacity: 0; transform: translateY(24px) scale(0.97); filter: blur(4px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }
@keyframes dcPulse { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }
@keyframes dcMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes dcSpin { to { transform: rotate(360deg); } }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-50px, 50px) scale(1.1); } }
.rise { animation: dcRise .6s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Barre de simulation ----------------------------------------------------- */
.simbar { position: sticky; top: 0; z-index: 60; background: var(--dark); color: #fff; }
.simbar .inner { padding: 9px clamp(14px, 4vw, 24px); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.simbar .tag { font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: .2em; color: #7E858F; }
.simbar .lbl { font-size: 12.5px; color: #C8CBD0; }
.simbar .seg { display: flex; gap: 4px; padding: 4px; background: #1B1F26; border-radius: 10px; }
.simbar .seg button { padding: 7px 13px; border-radius: 9px; border: none; cursor: pointer; font-size: 12.5px; font-weight: 600; background: transparent; color: #9BA1A9; transition: background .18s, color .18s; }
.simbar .seg button.on { background: var(--panel-bg); color: var(--ink); }
.simbar .hint { margin-left: auto; font-family: 'JetBrains Mono'; font-size: 11px; color: #7E858F; }

/* En-tête ----------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--header-bg) 75%, transparent); backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent); box-shadow: 0 8px 32px -8px color-mix(in srgb, var(--ink) 8%, transparent); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.site-header .inner { padding: 12px clamp(14px, 4vw, 24px); display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand .mark { width: 36px; height: 36px; border-radius: 10px; background: var(--dark); display: grid; place-items: center; color: var(--accent-on-dark); }
.brand .name { font-family: 'Archivo'; font-weight: 700; font-size: 20px; letter-spacing: -.03em; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 14.5px; }
.main-nav a { color: var(--muted); }
.main-nav a:hover { color: var(--ink); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.pill-ok { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: var(--ok-bg); color: var(--ok-solid); font-size: 12.5px; font-weight: 600; }
.pill-plain { padding: 8px 13px; border-radius: 999px; background: var(--panel-bg); border: 1px solid var(--line); font-size: 12.5px; font-weight: 600; }
.btn-ghost { padding: 10px 16px; border-radius: 10px; background: var(--btn-ghost-bg); border: 1px solid var(--btn-ghost-border); font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .16s; }
.btn-ghost:hover { border-color: var(--ink); }
.avatar { width: 38px; height: 38px; border-radius: 999px; background: #E9E9E4; display: grid; place-items: center; color: var(--muted); }

/* Boutons génériques ------------------------------------------------------ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 17px 27px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: linear-gradient(135deg, var(--accent) 0%, #3a5ce5 100%); color: #fff;
  font-size: 16.5px; font-weight: 600; cursor: pointer;
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--accent) 60%, transparent), inset 0 1px 1px rgba(255,255,255,0.2);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease, filter .3s ease;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: all 0.6s ease;
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 32px -8px color-mix(in srgb, var(--accent) 75%, transparent), 0 4px 8px -2px color-mix(in srgb, var(--accent) 40%, transparent); color: #fff; filter: brightness(1.05); }
.btn-primary:active { transform: translateY(1px) scale(0.98); box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 9px; padding: 17px 24px; border-radius: 12px;
  background: color-mix(in srgb, var(--panel-bg) 60%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--line); color: var(--ink); font-size: 16px; font-weight: 600; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--ink) 15%, transparent); }
.btn-outline:active { transform: translateY(1px) scale(0.98); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--hero-grad); }
.hero::before { content: ''; position: absolute; width: 80vw; height: 80vw; max-width: 800px; max-height: 800px; background: radial-gradient(circle, var(--orb-color) 0%, transparent 60%); top: -20%; right: -10%; border-radius: 50%; z-index: 0; pointer-events: none; animation: floatOrb 12s ease-in-out infinite alternate; }
.hero .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(#E7E7E1 1px, transparent 1px), linear-gradient(90deg, #E7E7E1 1px, transparent 1px); background-size: 80px 80px; opacity: .6; mask-image: linear-gradient(#000, transparent 78%); pointer-events: none; }
/* En thème sombre, le quadrillage clair devient dur et peu convivial : on le retire. */
[data-theme="dark"] .hero .grid-bg { display: none; }
.hero .inner { position: relative; padding: clamp(38px, 7vw, 76px) clamp(16px, 4vw, 24px) clamp(52px, 8vw, 92px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr)); gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; animation: dcRise .7s ease both; }
.badge-live { display: inline-flex; align-items: center; gap: 11px; padding: 8px 8px 8px 14px; border-radius: 999px; background: var(--panel-bg); border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(16,19,23,.05); }
.badge-live .dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.badge-live .dot span { position: absolute; inset: 0; border-radius: 999px; background: #FF5B29; }
.badge-live .dot .ping { animation: dcPulse 2s ease-in-out infinite; }
.badge-live .txt { font-size: 13px; font-weight: 600; }
.badge-live .count { font-family: 'JetBrains Mono'; font-size: 11px; padding: 5px 9px; border-radius: 999px; background: #F2F2EE; color: var(--muted); }
.hero h1 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: clamp(40px, 5vw, 66px); line-height: .98; letter-spacing: -.026em; text-wrap: balance; }
.hero .lead { margin: 0; max-width: 52ch; font-size: 17.5px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.hero-block { display: flex; flex-direction: column; gap: 20px; }

.countdown-label { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.countdown { display: flex; gap: 10px; flex-wrap: wrap; }
.cd-cell { flex: 1 1 64px; min-width: 64px; padding: 12px 10px; border-radius: 12px; background: var(--panel-bg); border: 1px solid var(--line); text-align: center; box-shadow: 0 1px 2px rgba(16,19,23,.05); }
.cd-cell .num { font-family: 'JetBrains Mono'; font-weight: 700; font-size: 30px; letter-spacing: -.05em; }
.cd-cell .num.sec { color: var(--accent); }
.cd-cell .unit { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; padding-top: 6px; }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }

.hero-media { position: relative; animation: dcRise .9s ease both; }
.hero-card { position: relative; border-radius: 16px; overflow: hidden; background: color-mix(in srgb, #E9E9E4 80%, transparent); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.4); box-shadow: 0 8px 32px rgba(16,19,23,.08), 0 24px 64px -20px rgba(16,19,23,.2); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease; }
.hero-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 48px rgba(16,19,23,.12), 0 32px 80px -20px rgba(16,19,23,.25); }
/* Cadre au format A4 portrait : conçu pour une affiche / note de service.
   object-fit: contain → l'affiche entière reste visible (jamais rognée). */
.hero-card .frame { position: relative; aspect-ratio: 210 / 297; background: #EDEDE8; }
.hero-card .frame img { width: 100%; height: 100%; object-fit: contain; background: #EDEDE8; }
[data-theme="dark"] .hero-card .frame, [data-theme="dark"] .hero-card .frame img { background: #1A1F27; }
.hero-card .bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; background: var(--dark); color: #fff; }
.hero-card .bar .k { font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: .16em; color: #7E858F; }
.hero-card .bar .v { font-size: 14.5px; font-weight: 600; }
.hero-card .bar .off { font-family: 'Archivo'; font-weight: 700; font-size: 26px; letter-spacing: -.03em; color: var(--accent-on-dark); }
.hero-float { position: absolute; left: 12px; bottom: 82px; padding: 14px 18px; border-radius: 14px; background: color-mix(in srgb, var(--panel-bg) 85%, transparent); backdrop-filter: blur(16px); border: 1px solid color-mix(in srgb, var(--line) 60%, transparent); box-shadow: 0 16px 32px -16px rgba(16,19,23,.3); transition: transform 0.4s ease; }
.hero-card:hover .hero-float { transform: translateY(-4px); }
.hero-float .big { font-family: 'Archivo'; font-weight: 700; font-size: 22px; letter-spacing: -.03em; }
.hero-float .sub { font-size: 11.5px; color: var(--faint); }

/* Ticker ------------------------------------------------------------------ */
.ticker { background: var(--dark); color: #fff; overflow: hidden; border-top: 1px solid #22262D; border-bottom: 1px solid #22262D; }
.ticker .track { display: flex; width: max-content; animation: dcMarquee 34s linear infinite; }
.ticker .grp { display: flex; align-items: center; gap: 34px; padding: 14px 17px; font-family: 'JetBrains Mono'; font-size: 11.5px; letter-spacing: .1em; color: #9BA1A9; white-space: nowrap; }
.ticker b { color: var(--accent-on-dark); font-weight: 400; }
.ticker .sep { color: #3A3F47; }

/* Section titre ----------------------------------------------------------- */
.eyebrow { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); }

/* Catalogue --------------------------------------------------------------- */
.catalogue { padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 24px) 24px; }
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 26px; }
.cat-head h2 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.03em; line-height: 1.02; }
.lock-pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 999px; background: var(--dark); color: #fff; font-size: 13px; font-weight: 600; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 10px 15px; border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 600; background: var(--btn-ghost-bg); color: var(--muted); border: 1px solid var(--line); transition: background .16s, color .16s, border-color .16s; }
.chip:hover { border-color: var(--faint); }
.chip.on { background: var(--dark); color: var(--bg); border-color: var(--dark); }

.unlock-banner { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 14px; background: var(--ok-bg); border: 1px solid var(--ok-line); margin-bottom: 24px; animation: dcRise .5s ease both; }
.unlock-banner .ic { width: 34px; height: 34px; border-radius: 999px; background: var(--ok-solid); color: #fff; display: grid; place-items: center; flex: none; }
.unlock-banner .t { font-size: 14.5px; font-weight: 600; color: var(--ok-ink); }
.unlock-banner .s { font-size: 13px; color: #3F7A63; }

.cat-stage { position: relative; }
.veil { transition: filter .6s ease; }
.veil.locked { filter: blur(var(--gate-blur)) saturate(.72); pointer-events: none; user-select: none; max-height: 860px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, #000 52%, transparent 100%); mask-image: linear-gradient(to bottom, #000 52%, transparent 100%); }

.car-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr)); gap: 22px; }
.car { background: color-mix(in srgb, var(--card-bg) 60%, transparent); backdrop-filter: blur(16px) saturate(140%); border: 1px solid color-mix(in srgb, var(--card-line) 60%, transparent); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(16,19,23,.04), inset 0 1px 0 rgba(255,255,255,0.2); transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .4s ease, border-color .4s ease; }
.car:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 24px 48px -12px color-mix(in srgb, var(--accent) 15%, transparent), 0 8px 24px -8px color-mix(in srgb, var(--ink) 10%, transparent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); z-index: 2; }
.car-photo { position: relative; aspect-ratio: 4/3; background: #EDEDE8; overflow: hidden; cursor: pointer; }
.car-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.car:hover .car-photo img { transform: scale(1.04); }
.car-photo .badge-off { position: absolute; top: 12px; left: 12px; padding: 7px 11px; border-radius: 999px; background: var(--dark); color: #fff; font-family: 'Archivo'; font-weight: 600; font-size: 12.5px; letter-spacing: -.01em; pointer-events: none; box-shadow: 0 4px 12px -6px rgba(16,19,23,.3); }
.car-photo .badge-left { position: absolute; top: 12px; right: 12px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.93); backdrop-filter: blur(6px); color: var(--ink); font-size: 11.5px; font-weight: 600; pointer-events: none; }
.car-photo .shots { position: absolute; bottom: 12px; left: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: rgba(16,19,23,.72); color: #fff; font-size: 11.5px; font-weight: 600; backdrop-filter: blur(4px); pointer-events: none; }
.car-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 15px; flex: 1; }
.car-brand { font-family: 'JetBrains Mono'; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.car h3 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: 18px; letter-spacing: -.02em; line-height: 1.2; }
.spec-row { display: flex; flex-wrap: wrap; gap: 6px; }
.spec { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 8px; background: var(--bg); font-size: 12px; color: var(--muted); }
.price-row { display: flex; align-items: flex-end; gap: 11px; margin-top: auto; flex-wrap: wrap; }
.price-now { font-family: 'Archivo'; font-weight: 700; font-size: 26px; letter-spacing: -.026em; line-height: 1; }
.price-was { display: inline-flex; flex-direction: column; align-items: flex-start; padding-bottom: 2px; line-height: 1.05; }
.was-tag { font-size: 9px; letter-spacing: .09em; text-transform: uppercase; color: #B4B8BE; font-weight: 700; }
.was-num { font-size: 14px; color: #9BA0A6; text-decoration: line-through; }
.price-monthly { font-size: 12px; color: var(--faint); margin-top: -8px; }
.car-actions { display: flex; gap: 9px; }
.btn-sec { flex: 1; padding: 13px 12px; border-radius: 11px; background: var(--panel-bg); border: 1px solid var(--line); color: var(--ink); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: border-color .16s, background .16s; }
.btn-sec:hover { border-color: var(--ink); background: var(--panel-soft); }
.btn-buy { flex: 1; padding: 13px 12px; border-radius: 11px; background: linear-gradient(135deg, var(--accent) 0%, #3a5ce5 100%); border: none; color: #fff; font-size: 13.5px; font-weight: 600; cursor: pointer; box-shadow: 0 6px 16px -10px color-mix(in oklab, var(--accent) 55%, transparent); transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s ease; position: relative; overflow: hidden; }
.btn-buy::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); transition: all 0.6s ease; }
.btn-buy:hover::after { left: 150%; }
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -8px color-mix(in oklab, var(--accent) 70%, transparent); }
.btn-buy:hover { background: color-mix(in oklab, var(--accent) 86%, #000); }
.tag-pre { flex: 1; display: inline-flex; align-items: center; gap: 8px; padding: 13px 12px; border-radius: 11px; background: #F1F3FF; border: 1px solid #D8DEFF; color: #2338A8; font-size: 13px; font-weight: 600; }
.tag-bought { display: inline-flex; align-items: center; gap: 9px; padding: 13px 14px; border-radius: 11px; background: var(--ok-bg); border: 1px solid var(--ok-line); color: var(--ok-ink); font-size: 13px; font-weight: 600; }

/* Portail (gate) ---------------------------------------------------------- */
.gate { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gate-card { max-width: 560px; width: 100%; background: color-mix(in srgb, var(--panel-bg) 80%, transparent); backdrop-filter: blur(24px) saturate(150%); border: 1px solid color-mix(in srgb, var(--line) 50%, transparent); border-radius: 20px; padding: clamp(24px, 6vw, 38px) clamp(20px, 5vw, 34px); text-align: center; box-shadow: 0 16px 40px rgba(16,19,23,.08), 0 32px 80px -20px rgba(16,19,23,.4); animation: dcRise .7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.gate-card .lock { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: var(--dark); color: var(--accent); margin-bottom: 20px; }
.gate-card h3 { margin: 0 0 12px; font-family: 'Archivo'; font-weight: 700; font-size: clamp(23px, 2.4vw, 30px); letter-spacing: -.03em; line-height: 1.12; text-wrap: balance; }
.gate-card p { margin: 0 0 22px; font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.gate-steps { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.gate-steps span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: var(--bg); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.gate-steps b { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--accent); font-weight: 400; }
.gate-social { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #EEEEE9; font-size: 12.5px; color: var(--muted); }
.gate-social .stack { display: flex; }
.gate-social .stack span { width: 26px; height: 26px; border-radius: 999px; border: 2px solid var(--panel-bg); }
.gate-social .stack span:not(:first-child) { margin-left: -9px; }

/* Section sombre "Pourquoi si bas" --------------------------------------- */
.section-dark { background: var(--dark); color: #fff; margin-top: 78px; }
.section-dark .inner { padding: clamp(48px, 8vw, 78px) clamp(16px, 4vw, 24px) clamp(52px, 8vw, 84px); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); gap: 44px; align-items: start; }
.why-copy { display: flex; flex-direction: column; gap: 20px; }
.why-copy .eyebrow { color: #7E858F; }
.why-copy h2 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -.03em; line-height: 1.03; text-wrap: balance; }
.why-copy .lead { margin: 0; max-width: 44ch; font-size: 16.5px; line-height: 1.6; color: #B9BDC4; text-wrap: pretty; }
.margin-box { margin-top: 8px; padding: 24px; border-radius: 14px; background: var(--dark-panel); border: 1px solid var(--dark-line); }
.margin-box .k { font-family: 'JetBrains Mono'; font-size: 11px; letter-spacing: .16em; color: #7E858F; margin-bottom: 12px; }
.margin-box .amt { font-family: 'Archivo'; font-weight: 700; font-size: 40px; letter-spacing: -.03em; color: var(--accent-on-dark); }
.margin-box .amt-sub { font-size: 14px; color: #B9BDC4; }
.margin-box p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: #8F959D; }
.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 16px; }
.why-card { padding: 24px; border-radius: 14px; background: var(--dark-panel); border: 1px solid var(--dark-line); }
.why-card .n { font-family: 'JetBrains Mono'; font-size: 12px; color: var(--accent-on-dark); }
.why-card h3 { margin: 12px 0 8px; font-family: 'Archivo'; font-weight: 700; font-size: 17.5px; letter-spacing: -.02em; }
.why-card p { margin: 0; font-size: 14px; line-height: 1.6; color: #9BA1A9; text-wrap: pretty; }

/* Étapes ------------------------------------------------------------------ */
.steps { padding: clamp(48px, 8vw, 84px) clamp(16px, 4vw, 24px) 20px; }
.steps .head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.steps h2 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.03em; line-height: 1.03; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 20px; }
.step { display: flex; flex-direction: column; gap: 14px; padding: 26px; border-radius: 16px; background: color-mix(in srgb, var(--panel-bg) 70%, transparent); backdrop-filter: blur(12px); border: 1px solid color-mix(in srgb, var(--card-line) 60%, transparent); box-shadow: 0 4px 16px rgba(16,19,23,.03); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(16,19,23,.06); }
.step .num { width: 40px; height: 40px; border-radius: 11px; background: color-mix(in oklab, var(--accent) 15%, transparent); color: var(--accent); display: grid; place-items: center; font-family: 'Archivo'; font-weight: 700; font-size: 16px; }
.step.last .num { background: var(--dark); color: #fff; }
.step h3 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: 17.5px; letter-spacing: -.02em; }
.step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

/* Agenda ------------------------------------------------------------------ */
.agenda { padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 24px) clamp(56px, 8vw, 90px); }
.agenda .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.agenda h2 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.03em; }
.agenda .sub { font-size: 14px; color: var(--faint); }
.agenda-list { display: flex; flex-direction: column; gap: 12px; }
.agenda-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 22px 24px; border-radius: 16px; background: color-mix(in srgb, var(--panel-bg) 75%, transparent); backdrop-filter: blur(12px); border: 1px solid color-mix(in srgb, var(--card-line) 60%, transparent); transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease; }
.agenda-row:hover { transform: translateX(6px) scale(1.01); box-shadow: 0 12px 24px -8px color-mix(in srgb, var(--ink) 12%, transparent); border-color: color-mix(in srgb, var(--line) 80%, transparent); }
.agenda-row.soon { background: var(--panel-soft); border: 1px dashed #DFDFD9; }
.agenda-row .no { font-family: 'JetBrains Mono'; font-size: 12.5px; color: var(--accent); min-width: 78px; }
.agenda-row.soon .no { color: #A9AEB4; }
.agenda-row .mid { display: flex; flex-direction: column; gap: 3px; min-width: 220px; flex: 1; }
.agenda-row .mid .t { font-family: 'Archivo'; font-weight: 700; font-size: 17px; letter-spacing: -.02em; }
.agenda-row.soon .mid .t { color: var(--muted); }
.agenda-row .mid .d { font-size: 13.5px; color: var(--faint); }
.agenda-row .cta { padding: 12px 20px; border-radius: 11px; background: var(--panel-bg); border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .16s; }
.agenda-row .cta:hover { border-color: var(--ink); }
.agenda-row .cta.wait { background: #F2F2EE; border-color: var(--line); color: var(--faint); }

/* Pied de page ------------------------------------------------------------ */
.site-footer { background: var(--dark); color: #B9BDC4; }
.site-footer .cols { padding: clamp(40px, 7vw, 60px) clamp(16px, 4vw, 24px) 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 36px; }
.site-footer .fbrand { display: flex; flex-direction: column; gap: 14px; }
.site-footer .fbrand .row { display: flex; align-items: center; gap: 11px; color: #fff; }
.site-footer .fbrand .mark { width: 34px; height: 34px; border-radius: 9px; background: var(--dark-panel); display: grid; place-items: center; color: var(--accent-on-dark); }
.site-footer .fbrand .name { font-family: 'Archivo'; font-weight: 700; font-size: 18px; letter-spacing: -.03em; }
.site-footer .fbrand p { margin: 0; font-size: 13.5px; line-height: 1.6; max-width: 34ch; }
.fcol { display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; }
.fcol .h { font-family: 'JetBrains Mono'; font-size: 10.5px; letter-spacing: .16em; color: #7E858F; }
.fcol a { color: #B9BDC4; }
.fcol a:hover { color: #fff; }
.site-footer .legal { padding: 20px clamp(16px, 4vw, 24px) 40px; border-top: 1px solid #22262D; display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; font-family: 'JetBrains Mono'; font-size: 11px; color: #7E858F; }

/* Modales ----------------------------------------------------------------- */
.overlay { position: fixed; inset: 0; z-index: 90; background: rgba(16,19,23,.4); backdrop-filter: blur(12px) saturate(120%); display: flex; align-items: flex-start; justify-content: center; padding: clamp(12px, 4vw, 20px); overflow: auto; transition: all 0.4s ease; }
.overlay.checkout { z-index: 80; background: rgba(16,19,23,.5); }
.overlay.login { z-index: 95; }
.overlay.gallery { z-index: 100; background: rgba(9,11,14,.82); backdrop-filter: blur(16px); }
.modal { width: 100%; max-width: 520px; margin: auto 0; background: color-mix(in srgb, var(--panel-bg) 85%, transparent); backdrop-filter: blur(24px) saturate(150%); border: 1px solid color-mix(in srgb, var(--line) 60%, transparent); border-radius: 20px; padding: clamp(20px, 5vw, 30px); box-shadow: 0 32px 72px -20px rgba(0,0,0,.4), inset 0 1px 1px rgba(255,255,255,0.2); animation: dcRise .5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.modal.narrow { max-width: 440px; }
.modal.co { max-width: 460px; }
.modal.reg { max-width: 452px; padding: clamp(18px, 4vw, 24px); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-head .k { font-family: 'JetBrains Mono'; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.modal-head .s { font-size: 13px; color: var(--muted); }
.modal-head h3 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: 23px; letter-spacing: -.03em; line-height: 1.15; }
.x-btn { width: 34px; height: 34px; flex: none; border-radius: 9px; background: #F2F2EE; border: none; color: var(--muted); font-size: 17px; cursor: pointer; transition: background .16s; }
.x-btn:hover { background: var(--card-line); }
.progress { display: flex; gap: 6px; margin: 18px 0 24px; }
.progress span { flex: 1; height: 4px; border-radius: 999px; background: var(--card-line); transition: background .3s; }
.progress span.on { background: var(--accent); }

.field { display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.field input { padding: 13px 14px; border-radius: 11px; border: 1px solid var(--line); font-size: 14.5px; color: var(--ink); background: var(--panel-soft); }
.field input.invalid { border-color: #E5484D; background: #FDF0EC; }
.field input.invalid:focus { outline-color: #E5484D; }
.field-hint { font-size: 12px; font-weight: 500; color: #C4381B; margin-top: 1px; }
.dz-invalid .dropzone { border-color: #E5484D; background: #FDF0EC; }
.field-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 12px; }

.dropzone { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 26px 20px; border-radius: 14px; border: 1.5px dashed #CFCFC8; background: var(--panel-soft); cursor: pointer; text-align: center; transition: border-color .16s, background .16s; width: 100%; }
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 15%, transparent); }
.dropzone .ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: var(--dark); color: #fff; }
.dropzone .t { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.dropzone .s { font-size: 12.5px; color: var(--faint); }
.file-ok { display: flex; align-items: center; gap: 13px; padding: 16px 18px; border-radius: 14px; background: var(--ok-bg); border: 1px solid var(--ok-line); }
.file-ok .ic { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--ok-solid); color: #fff; display: grid; place-items: center; }
.file-ok .n { font-size: 14px; font-weight: 600; color: var(--ok-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-ok .s { font-size: 12.5px; color: #3F7A63; }
.file-ok button { padding: 9px 13px; border-radius: 9px; background: var(--panel-bg); border: 1px solid var(--ok-line); font-size: 12.5px; font-weight: 600; color: var(--ok-ink); cursor: pointer; }

.pay-total { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; border-radius: 14px; background: var(--dark); color: #fff; }
.pay-total .amt { font-family: 'Archivo'; font-weight: 700; font-size: 26px; letter-spacing: -.03em; color: var(--accent-on-dark); }
.pay-methods { display: flex; flex-direction: column; gap: 9px; }
.pay-method { display: flex; align-items: center; gap: 13px; padding: 15px 16px; border-radius: 15px; cursor: pointer; text-align: left; width: 100%; background: var(--panel-bg); border: 1.5px solid var(--line); transition: border-color .16s, background .16s; }
.pay-method.on { background: color-mix(in oklab, var(--accent) 15%, transparent); border-color: var(--accent); }
.pay-method .dot { width: 18px; height: 18px; flex: none; border-radius: 999px; border: 5px solid var(--line); background: var(--panel-bg); transition: border-color .16s; }
.pay-method.on .dot { border-color: var(--accent); }
.pay-method .lbl { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pay-method .hint { font-size: 12.5px; color: var(--faint); }

.spinner { width: 46px; height: 46px; border-radius: 999px; border: 3px solid var(--card-line); border-top-color: var(--accent); animation: dcSpin .9s linear infinite; }
.center-col { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 34px 10px 26px; text-align: center; }

.done-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--ok-solid); color: #fff; display: grid; place-items: center; }
.recap { display: flex; flex-direction: column; gap: 11px; padding: 20px; border-radius: 14px; background: var(--panel-soft); border: 1px solid #EEEEE9; }
.recap span { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--ink); }
.ref-box { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 14px; background: var(--dark); color: #fff; }
.ref-box .k { font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: .18em; color: #7E858F; }
.ref-box .v { font-family: 'JetBrains Mono'; font-weight: 700; font-size: 20px; letter-spacing: .02em; color: var(--accent-on-dark); }
.ref-box .note { max-width: 15ch; font-size: 11.5px; line-height: 1.45; color: #9BA1A9; }

.login-tabs { display: flex; gap: 4px; padding: 4px; background: #F2F2EE; border-radius: 11px; margin: 20px 0; }
.login-tabs button { flex: 1; padding: 10px 12px; border-radius: 8px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; background: transparent; color: var(--faint); transition: background .18s, color .18s; }
.login-tabs button.on { background: var(--panel-bg); color: var(--ink); box-shadow: 0 1px 2px rgba(16,19,23,.08); }
.login-err { display: flex; align-items: center; gap: 9px; margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: #FDF0EC; border: 1px solid #F6D5CA; font-size: 13px; color: #A33A16; }
.login-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 18px; padding-top: 18px; border-top: 1px solid #EEEEE9; font-size: 13px; color: var(--faint); }
.login-foot button { padding: 9px 13px; border-radius: 9px; background: var(--panel-bg); border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; }

.co-badges { display: flex; flex-direction: column; gap: 11px; margin: 24px 0 26px; padding: 20px; border-radius: 14px; background: var(--panel-soft); border: 1px solid #EEEEE9; }
.co-badges span { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink); }
.co-price { display: flex; align-items: baseline; gap: 11px; margin: 22px 0 6px; flex-wrap: wrap; }
.co-price .now { font-family: 'Archivo'; font-weight: 700; font-size: 32px; letter-spacing: -.03em; }
.co-price .was { font-size: 15px; color: #9BA0A6; text-decoration: line-through; }

.link-btn { width: 100%; margin-top: 10px; padding: 14px; border-radius: 12px; background: transparent; border: none; color: var(--faint); font-size: 14px; font-weight: 600; cursor: pointer; transition: color .16s; }
.link-btn:hover { color: var(--ink); }
.modal .full { width: 100%; margin-top: 20px; }

/* Galerie véhicule -------------------------------------------------------- */
.gallery { width: 100%; max-width: 1200px; margin: auto 0; background: var(--panel-bg); border-radius: 16px; overflow: hidden; box-shadow: 0 28px 58px -30px rgba(0,0,0,.5); animation: dcRise .35s ease both; display: flex; flex-direction: column; }
.gallery-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px clamp(18px, 4vw, 26px) 0; }
.gallery-top h3 { margin: 0; font-family: 'Archivo'; font-weight: 700; font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -.03em; }
.gallery-stage { position: relative; margin: 16px clamp(18px, 4vw, 26px) 0; border-radius: 14px; overflow: hidden; background: #0A0D14; aspect-ratio: 16/9; }
.gallery-stage img { width: 100%; height: 100%; object-fit: cover; animation: galZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes galZoom { from { opacity: 0; filter: blur(10px); transform: scale(1.05); } to { opacity: 1; filter: blur(0); transform: scale(1); } }
.gallery-cap { position: absolute; left: 16px; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: rgba(10,13,20,.7); color: #fff; font-size: 13px; font-weight: 600; backdrop-filter: blur(8px); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 999px; border: none; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.3); transition: all .2s cubic-bezier(0.34, 1.56, 0.64, 1); }
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }
.gallery-thumbs { display: flex; gap: 12px; padding: 20px clamp(18px, 4vw, 26px); overflow-x: auto; }
.gallery-thumbs button { flex: 0 0 auto; width: 120px; height: 80px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; background: #EDEDE8; cursor: pointer; padding: 0; transition: transform 0.2s; }
.gallery-thumbs button.on { border-color: var(--accent); box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 40%, transparent); transform: scale(1.05); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 0 clamp(18px, 4vw, 26px) 24px; }
.gallery-foot .price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.gallery-foot .price .now { font-family: 'Archivo'; font-weight: 700; font-size: 26px; letter-spacing: -.03em; }
.gallery-foot .price .was { font-size: 14px; color: #9BA0A6; text-decoration: line-through; }
.gallery-foot .acts { display: flex; gap: 10px; flex-wrap: wrap; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 760px) {
  .main-nav { display: none; }
  .btn-ghost, .avatar { display: none; }
  .veil.locked { max-height: 430px; }
  .gate { position: relative; margin-top: -150px; padding: 0 2px; }
  .gallery-stage { aspect-ratio: 4/3; }
}


/* Global Placeholder styling */
::placeholder { color: var(--faint) !important; opacity: 1 !important; }
::-webkit-input-placeholder { color: var(--faint) !important; opacity: 1 !important; }
:-ms-input-placeholder { color: var(--faint) !important; opacity: 1 !important; }

/* Ticket VIP -------------------------------------------------------------- */
.vip-ticket {
  display: flex; flex-direction: column; background: var(--panel-bg);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  position: relative; box-shadow: 0 12px 32px rgba(0,0,0,0.1); margin: 20px 0;
}
.vip-ticket::before, .vip-ticket::after {
  content: ''; position: absolute; top: 90px; width: 24px; height: 24px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 50%;
}
.vip-ticket::before { left: -13px; border-right-color: transparent; transform: rotate(45deg); }
.vip-ticket::after { right: -13px; border-left-color: transparent; transform: rotate(-45deg); }
.vip-top {
  background: linear-gradient(135deg, var(--accent) 0%, #3a5ce5 100%);
  color: #fff; padding: 24px; text-align: center; border-bottom: 2px dashed rgba(255,255,255,0.3);
}
.vip-top h4 { margin: 0 0 4px; font-family: 'Archivo'; font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.vip-top p { margin: 0; font-size: 13px; opacity: 0.9; }
.vip-body {
  padding: 30px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.vip-info { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.vip-info .kv { display: flex; flex-direction: column; gap: 4px; }
.vip-info .k { font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: .1em; color: var(--faint); text-transform: uppercase; }
.vip-info .v { font-family: 'Archivo'; font-size: 16px; font-weight: 700; color: var(--ink); }
.vip-qr { width: 100px; height: 100px; padding: 6px; background: #fff; border-radius: 8px; border: 1px solid var(--line); flex-shrink: 0; }
.vip-qr img { width: 100%; height: 100%; }

@media print {
  body * { visibility: hidden; }
  .modal, .overlay { background: transparent !important; box-shadow: none !important; border: none !important; }
  .vip-ticket, .vip-ticket * { visibility: visible; }
  .vip-ticket { position: absolute; left: 0; top: 0; width: 100%; max-width: 400px; box-shadow: none; border-color: #000; }
}

/* Floating WhatsApp Button */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 12px 20px;
  border-radius: 999px; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  font-weight: 600; font-size: 14.5px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(37,211,102,0.5); }
.float-wa svg { fill: currentColor; }
@media (max-width: 768px) {
  .float-wa { bottom: 16px; right: 16px; padding: 10px; }
  .float-wa span { display: none; }
}
