html, body { overflow-x: hidden; }

/* Shared light/dark theme variables */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-input: #f1f5f9;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-sheet: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --border-input: #cbd5e1;
  --btn-primary-bg: #f97316;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #f1f5f9;
  --btn-secondary-text: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --accent: #f97316;
  --accent-light: rgba(249,115,22,0.1);
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #eab308;
  --nav-bg: #ffffff;
  --nav-text: #64748b;
  --nav-active: #f97316;
}

[data-theme="dark"] {
  --bg-primary: #0b0f1a;
  --bg-secondary: #111827;
  --bg-card: #1e293b;
  --bg-input: #1e293b;
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --bg-sheet: #111827;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #334155;
  --border-input: #475569;
  --btn-primary-bg: #f97316;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #1e293b;
  --btn-secondary-text: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
  --accent: #f97316;
  --accent-light: rgba(249,115,22,0.15);
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #eab308;
  --nav-bg: #0b0f1a;
  --nav-text: #64748b;
  --nav-active: #f97316;
}
* { transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }

/* Site vitrine Truck – indépendant de l'application client */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-input: #f1f5f9;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --bg-sheet: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --border-input: #cbd5e1;
  --btn-primary-bg: #f97316;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #f1f5f9;
  --btn-secondary-text: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --accent: #f97316;
  --accent-light: rgba(249,115,22,0.1);
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #eab308;
  --nav-bg: #ffffff;
  --nav-text: #64748b;
  --nav-active: #f97316;
  --bg: #020617;
  --bg-elevated: #020617;
  --bg-card: #020617;
  --bg-soft: #020617;
  --border-subtle: rgba(148, 163, 184, 0.3);
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.12);
  --accent-strong: #0ea5e9;
  --danger: #ef4444;
  --radius: 14px;
}

[data-theme="dark"] {
  --bg-primary: #0b0f1a;
  --bg-secondary: #111827;
  --bg-card: #1e293b;
  --bg-input: #1e293b;
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --bg-sheet: #111827;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #334155;
  --border-input: #475569;
  --btn-primary-bg: #f97316;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #1e293b;
  --btn-secondary-text: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
  --accent: #f97316;
  --accent-light: rgba(249,115,22,0.15);
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #eab308;
  --nav-bg: #0b0f1a;
  --nav-text: #64748b;
  --nav-active: #f97316;
}

* { transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--truck-font, 'Plus Jakarta Sans',
    system-ui, sans-serif);
  background: var(--bg-primary);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 90px;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* LOGO HEADER */
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* grand écran */
@media (min-width: 1200px) {
  .brand-logo {
    height: 56px;
  }
}

/* mobile */
@media (max-width: 420px) {
  .brand-logo {
    height: 40px;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), transparent 55%);
  color: #f9fafb;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.85);
  color: var(--text);
}

.nav-link-active,
.nav a.active {
  background: rgba(15, 23, 42, 0.95);
  color: var(--accent-strong);
  border: 1px solid rgba(56, 189, 248, 0.5);
}

/* Hero */

.hero {
  padding: 3.5rem 0 3rem;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hero__content h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.9rem;
}
.eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--muted);
  opacity:0.85;
  margin-bottom:0.4rem;
}
.hero__content > p {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  color: var(--text-muted);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.hero__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.hero__media {
  max-width: 520px;
  margin: 0 auto;
}
.hero__media img {
  width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 769px) {
  .hero__media { margin: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__wrapper { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3.1vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.9rem;
}
.hero-text p {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.hero-sub {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 80ms ease-out, box-shadow 120ms ease-out, background 120ms ease-out, border-color 120ms ease-out;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--accent-strong), var(--accent));
  color: #0b1220;
  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(56, 189, 248, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-full {
  width: 100%;
}

/* Boutons qui ouvrent le popup "Application bientôt disponible" – couleur unifiée */
.btn-app-popup {
  background: radial-gradient(circle at top left, var(--accent-strong), var(--accent));
  color: #0b1220;
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(56, 189, 248, 0.45);
}
.btn-app-popup:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(56, 189, 248, 0.55);
  background: radial-gradient(circle at top left, var(--accent-strong), var(--accent));
  border-color: transparent;
}

.btn-link {
  border: none;
  background: transparent;
  color: var(--accent-strong);
  padding: 0;
  font-size: 0.9rem;
}

.btn-link:hover {
  text-decoration: underline;
  background: transparent;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.6);
}
.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-media img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.section-subtitle {
  margin: -0.5rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cards-3 .card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 60%);
}
.cards-3 .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.cards-3 .card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.cards-2 .card {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 60%);
}
.cards-2 .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.cards-2 .card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.media-wide {
  margin: 1rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  max-width: 900px;
}
.media-wide img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.section-highlight {
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.06), transparent 50%);
}

.media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  max-width: 420px;
}
.media img {
  width: 100%;
  height: auto;
  max-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.cta-box {
  text-align: center;
  padding: 2rem 1.5rem;
}
.cta-box h2 {
  margin: 0 0 0.5rem;
}
.cta-box p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}
.cta-box .btn {
  margin-bottom: 0.75rem;
}
.fineprint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.coverage--compact .idf-map {
  margin-bottom: 1rem;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-benefits li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 60%);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.95),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.card-mock {
  width: 100%;
  max-width: 360px;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background:
    radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(79, 70, 229, 0.12), transparent 55%),
    rgba(15, 23, 42, 0.98);
  box-shadow:
    0 36px 80px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
}

.card-mock h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.card-mock p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card-list li + li {
  margin-top: 0.35rem;
}

/* Sections */

.section {
  padding: 90px 24px;
}
.section h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.section__head {
  margin-bottom: 2rem;
}
.section__head p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Sécurité & responsabilités – bloc texte */
.legal-block {
  max-width: 720px;
  margin: 0 auto;
}
.legal-block p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.legal-block p:last-of-type { margin-bottom: 0; }
.security-why {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: rgba(56, 189, 248, 0.06);
}
.security-why h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.security-why p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
.security-why p:last-child { margin-bottom: 0; }
.security-conclusion {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text);
}
.section--highlight {
  background: radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.08), transparent 50%);
  padding: 2.5rem 0;
}

/* Steps vitrine (Comment ça marche) */
.steps--vitrine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.steps--vitrine .step {
  text-align: center;
}
.steps--vitrine .step img {
  width: 100%;
  max-width: 260px;
  height: 200px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: center;
}
.steps--vitrine .step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.steps--vitrine .step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .steps--vitrine { grid-template-columns: 1fr; }
}

/* Cards véhicules (avec image) */
.cards--vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cards--vehicles .card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.06), transparent 60%);
  text-align: center;
  color: var(--text, #e5e7eb);
}
.cards--vehicles .card img {
  width: 100%;
  max-width: 220px;
  height: 140px;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
  object-position: center;
}
.cards--vehicles .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.cards--vehicles .card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted, #cbd5e1);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .cards--vehicles { grid-template-columns: 1fr; }
}

/* Pourquoi Truck – features */
.features--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.features--grid .feature {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.5);
}
.features--grid .feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.features--grid .feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .features--grid { grid-template-columns: 1fr; }
}

/* App uniquement – split */
.app-only {
  background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08), transparent 55%);
}
.split--vitrine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split__content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
}
.split__content > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.split__content .hero__cta {
  margin: 1.25rem 0 0.75rem;
}
.split__media {
  max-width: 340px;
  margin: 0 auto;
}
.split__media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 769px) {
  .split__media { margin: 0; max-width: 380px; }
}
@media (max-width: 768px) {
  .split--vitrine { grid-template-columns: 1fr; }
  .split__media { order: -1; }
}

/* CTA final vitrine */
.cta__content {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.cta__content h2 {
  margin: 0 0 0.5rem;
}
.cta__content p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}
.cta__content .btn {
  margin-bottom: 0.75rem;
}
.cta__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: left;
  margin-bottom: 48px;
}

.steps {
  padding: 2.75rem 0 3rem;
}

.steps__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.step {
  text-align: center;
}

.step img {
  width: 100%;
  max-width: 190px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.feature {
  padding: 1.4rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.96));
}

.feature h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.examples img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.media-frame {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  display: block;
}

/* ===== POPUP APP ===== */
.app-popup{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.app-popup-box{
  background: #0f172a;
  color: white;
  padding: 28px;
  border-radius: 18px;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.app-popup-box h3{
  margin-bottom: 10px;
}

.app-popup-box button{
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: #22c55e;
  color: white;
  cursor: pointer;
}

/* Split layout (texte + image) */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.split-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Safety : éléments dédiés */

.safety-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.safety-item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: transparent;
}

.safety-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.safety-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.safety-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

  .split-media img {
    height: 260px;
  }

  .safety-features {
    grid-template-columns: 1fr;
  }
}

.vehicles__inner {
  text-align: center;
}

.vehicles__inner h2 {
  margin: 0 0 0.75rem;
}

.vehicles__inner img {
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  display: block;
}

.vehicle-card,
.vehicle-item,
.vehicle-box {
  overflow: hidden;
}

.vehicle-media {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  margin: 14px 0 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 420px) {
  .vehicle-media {
    height: 180px;
  }
}


/* Pages génériques */

.page-main {
  padding-bottom: 3rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
}

.page-subtitle {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  padding: 1.35rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.96));
}

.faq-item h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Legal */

.legal-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text, #e5e7eb);
}

.legal-warning strong { color: #fcd34d; }

.legal h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.legal h2:first-of-type { margin-top: 0; }

.legal h3 {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.legal p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal ul {
  margin: 0 0 0.75rem;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.legal li { margin-bottom: 0.25rem; }

.legal a {
  color: var(--accent, #38bdf8);
  text-decoration: none;
}

.legal a:hover { text-decoration: underline; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0.75rem 0 1rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.3));
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.legal-table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: var(--text, #e5e7eb);
}

.legal-update,
.legal-updated {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.25));
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.contact-card,
.contact-aside {
  padding: 1.5rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.96));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.field span,
.field label {
  color: var(--text);
}

.field input,
.field textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.6rem 0.75rem;
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent-strong);
  outline-offset: 1px;
  border-color: transparent;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-help {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-feedback {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.contact-feedback--ok {
  color: #4ade80;
}

.contact-feedback--error {
  color: var(--danger);
}

/* Docs */

.docs-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 2rem;
}

.docs-sidebar {
  border-radius: 1.25rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.96));
  padding: 1.2rem 1.25rem;
  min-height: 260px;
}

.docs-sidebar-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
}

.docs-list-group-title {
  margin-top: 0.75rem;
  margin-bottom: 0.15rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.docs-list-group-title:first-child {
  margin-top: 0;
}

.docs-list button {
  all: unset;
  display: block;
  width: 100%;
  padding: 0.45rem 0.4rem;
  border-radius: 0.6rem;
  cursor: pointer;
  color: var(--text-muted);
}

.docs-list button:hover {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
}

.docs-list button.docs-list-item--active {
  background: rgba(15, 23, 42, 0.98);
  color: var(--accent-strong);
  border: 1px solid rgba(56, 189, 248, 0.45);
}

.docs-list-file {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.docs-content {
  border-radius: 1.25rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.96));
  padding: 1.4rem 1.5rem;
  min-height: 260px;
}

.docs-content-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.docs-meta {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.docs-loader {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.docs-error {
  font-size: 0.9rem;
  color: var(--danger);
  margin-bottom: 0.75rem;
}

.docs-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.docs-body h1,
.docs-body h2,
.docs-body h3 {
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
}

.docs-body p {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.docs-body pre {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  overflow-x: auto;
  font-size: 0.8rem;
}

.docs-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85em;
}

/* Download page */

.download{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
}

.download__wrap{
  width:100%;
  max-width:520px;
  padding:20px;
}

.download__card{
  text-align:center;
  border:1px solid var(--stroke);
  border-radius:24px;
  padding:32px 24px;
  background:rgba(255,255,255,.04);
}

.download__logo{height:42px;margin-bottom:12px}

.stores{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.store{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid var(--stroke);
  text-decoration:none;
  color:var(--text);
  transition:.18s;
}

.store:hover{
  background:rgba(255,255,255,.06);
  transform:translateY(-1px);
}

.store--disabled{
  opacity:.55;
  cursor:not-allowed;
}

.store img{height:28px}

.qr{
  margin-top:26px;
}

.qr img{
  width:140px;
  border-radius:14px;
  border:1px solid var(--stroke);
}


/* Waitlist CTA */
.waitlist{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.waitlist input{
  height:48px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:0 14px;
  outline:none;
}
.waitlist input:focus{
  border-color:rgba(47,107,255,.75);
}

/* Footer */

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 1.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--accent-strong);
}

/* --- Nouvelle home "Uber-like" --- */

:root{
  --bg:#0b1424;
  --panel:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --text:#e9f0ff;
  --muted:rgba(233,240,255,.72);
  --blue:#2f6bff;
  --radius:18px;
}

.container{max-width:1100px;margin:0 auto;padding:0 18px;}
.section{padding:72px 0;}
.section__sub{color:var(--muted);margin-top:10px;max-width:58ch;}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(15,23,42,0.75);
  font-size:13px;
  color:var(--muted);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
@media (max-width: 900px){
  .grid-3{
    grid-template-columns:1fr;
  }
}

/* Cartes de la landing chauffeur (fond cohérent dark) */
.grid-3 .card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  color:var(--text);
}
.grid-3 .card:hover{
  background:rgba(255,255,255,.06);
}

/* Bloc chiffres (commission) */
.stat{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:0.6rem;
}
.stat__value{
  font-size:2.2rem;
  font-weight:800;
  letter-spacing:-0.04em;
}
.stat__label{
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--muted);
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:rgba(56,189,248,0.12);
  color:var(--blue);
}

/* FAQ courte */
.faq-list{
  max-width:720px;
}
.faq-item{
  background:rgba(15,23,42,0.85);
  border-radius:var(--radius);
  border:1px solid rgba(148,163,184,0.35);
  padding:0.85rem 1rem;
  margin-bottom:0.6rem;
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight:600;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item p{
  margin:0.5rem 0 0;
  color:var(--muted);
  font-size:0.95rem;
}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(11,20,36,.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--stroke);
  overflow:visible;
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;min-height:68px;gap:20px;overflow:visible;}
.topbar .container{overflow:visible;}
.nav{margin-left:2px;}
.topbar__actions{border-left:1px solid rgba(148,163,184,0.2);padding-left:20px;margin-left:4px;}
/* Bloc boutons header : 2 lignes, alignement propre */
.topbar__actions{
  display:flex;align-items:center;justify-content:flex-end;gap:8px;
  flex-wrap:wrap;flex-shrink:0;overflow:visible;
}
.topbar__actions > *{flex-shrink:0;}
.topbar__actions .btn,.topbar__actions .btn--ghost,.topbar__actions .btn--primary{
  min-height:40px;padding:10px 16px;border-radius:12px;font-size:0.9rem;font-weight:500;
  transition:background .2s ease,border-color .2s ease,transform .15s ease,box-shadow .2s ease;
}
.topbar__actions .btn--ghost{
  background:rgba(255,255,255,0.06);border:1px solid rgba(148,163,184,0.5);color:var(--text);
}
.topbar__actions .btn--ghost:hover{
  background:rgba(255,255,255,0.1);border-color:rgba(148,163,184,0.7);
}
.nav-actions{display:flex;align-items:center;gap:8px;overflow:visible;justify-content:flex-end;}
.nav-actions .btn{
  white-space:nowrap;text-decoration:none;position:relative;z-index:2;flex-shrink:0;
}
.nav-actions .btn-secondary{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(148,163,184,0.5);
  color:var(--text);
}
.nav-actions .btn-secondary:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(148,163,184,0.7);
}
.nav-actions .btn-primary{
  position:relative;z-index:1;
  box-shadow:0 4px 16px rgba(56,189,248,0.35);
}
.nav-actions .btn-primary:hover{
  box-shadow:0 6px 20px rgba(56,189,248,0.45);
}
.nav{display:flex;gap:8px;align-items:center;min-width:0;}
.nav__item--mobile{display:none;}
.nav a{
  color:var(--muted);text-decoration:none;
  white-space:nowrap;
  padding:0.4rem 0.6rem;
  border-radius:8px;
  transition:color .15s ease,background .15s ease;
}
.nav a:hover{color:var(--text);background:rgba(255,255,255,.06);}

.btn{display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:14px;border:1px solid var(--stroke);
  color:var(--text);text-decoration:none;gap:8px;
}
.btn--primary{background:var(--blue);border-color:transparent;}
.btn--ghost{background:transparent;}
.btn--lg{padding:13px 18px;border-radius:16px;}

.hero{padding:70px 0 40px;}
.hero__grid{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;align-items:center;}
.lead{color:var(--muted);max-width:60ch;margin-top:10px;}
.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;}

.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;}
.badge{font-size:13px;color:var(--muted);border:1px solid var(--stroke);
  padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.04);
}

.mockup{background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--stroke);border-radius:24px;padding:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.mockup img{width:100%;height:auto;display:block;border-radius:18px;}

.proof{padding:18px 0 42px;}
.proof__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.stat{border:1px solid var(--stroke);background:rgba(255,255,255,.04);
  border-radius:16px;padding:14px;
}
.stat__n{font-weight:800;font-size:18px;display:block;}
.stat__t{color:var(--muted);font-size:13px;}

.cards3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:22px;}
.cards2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:22px;
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
}
.card{
  border:1px solid var(--stroke);
  background:rgba(15,23,42,0.9);
  border-radius:var(--radius);
  padding:18px 20px;
  box-shadow:0 14px 40px rgba(15,23,42,0.55);
  transition:transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform:translateY(-3px);
  background:rgba(15,23,42,1);
  border-color:rgba(148,163,184,0.8);
  box-shadow:0 18px 50px rgba(15,23,42,0.75);
}
.icon{font-size:22px;margin-bottom:10px;}
.list{margin:12px 0 0 18px;color:var(--muted);}
.muted{color:var(--muted);}

.card--vehicle{display:grid;grid-template-columns:140px 1fr;gap:14px;align-items:center;}
.vehicle__img{width:140px;height:auto;display:block;filter:drop-shadow(0 18px 28px rgba(0,0,0,.35));}
.vehicle__body h3{margin:0 0 8px;}

.coverage{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:22px;}
.coverage__map{
  min-height:260px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:radial-gradient(circle at 20% 20%,rgba(56,189,248,.14),transparent 50%),
             radial-gradient(circle at 70% 70%,rgba(148,163,184,.18),transparent 55%),
             rgba(15,23,42,1);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
}

.idf-map{
  position:relative;
  width:100%;
  max-width:420px;
  aspect-ratio:4/3;
}

.idf-map__region{
  position:absolute;
  inset:18% 18% 22% 24%;
  border-radius:55% 45% 52% 48%;
  background:linear-gradient(135deg,rgba(15,23,42,1),rgba(15,23,42,.2));
  box-shadow:0 18px 40px rgba(0,0,0,.6);
  border:1px solid rgba(148,163,184,.4);
}

.idf-map__pin{
  position:absolute;
  top:42%;
  left:48%;
  width:26px;
  height:26px;
  border-radius:999px;
  background:#0ea5e9;
  box-shadow:0 0 0 6px rgba(56,189,248,.25);
}

.idf-map__pin::after{
  content:'';
  position:absolute;
  inset:7px;
  border-radius:999px;
  background:#0b1120;
}

.idf-map__label{
  position:absolute;
  bottom:14%;
  left:50%;
  transform:translateX(-50%);
  padding:4px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,184,.5);
  font-size:.85rem;
  color:var(--text);
}

.accordion{margin-top:18px;display:grid;gap:10px;}
.acc{border:1px solid var(--stroke);border-radius:16px;background:rgba(255,255,255,.04);padding:12px 14px;}
.acc summary{cursor:pointer;color:var(--text);font-weight:650;}
.acc__body{margin-top:8px;color:var(--muted);}

.cta{padding:54px 0;}
.cta__inner{
  border:1px solid var(--stroke);background:rgba(47,107,255,.12);
  border-radius:22px;padding:22px;display:flex;justify-content:space-between;gap:14px;align-items:center;
}
.cta__actions{display:flex;gap:10px;flex-wrap:wrap;}

.footer{padding:34px 0;border-top:1px solid var(--stroke);}
.footer__grid{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;}
.footer__links{display:flex;gap:14px;flex-wrap:wrap;}
.footer__links a{color:var(--muted);text-decoration:none;}
.footer__links a:hover{color:var(--text);}

.burger{display:none;flex-direction:column;gap:5px;background:transparent;border:0;cursor:pointer}
.burger span{width:22px;height:2px;background:rgba(233,240,255,.85);display:block;border-radius:99px}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr;gap:18px;}
  .proof__grid{grid-template-columns:repeat(2,1fr);}
  .cards3{grid-template-columns:1fr;}
  .cards2{grid-template-columns:1fr;}
  .coverage{grid-template-columns:1fr;}
  .card--vehicle{grid-template-columns:1fr;}
  .vehicle__img{width:180px;margin:0 auto;}

  .burger{display:flex}
  .nav-actions{display:none}
  .nav{display:none}
  .nav.nav--open{
    display:flex;flex-direction:column;position:absolute;top:68px;left:0;right:0;
    padding:14px 18px;background:rgba(11,20,36,.92);
    border-bottom:1px solid var(--stroke);
  }
  .nav.nav--open .nav__item--mobile{display:block;}
}

/* SECTION DEVENEZ CHAUFFEUR */

.driver-section {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.driver-container {
  max-width: 1000px;
  margin: 0 auto;
}

.driver-content {
  text-align: center;
  padding: 60px 20px;
}

.driver-sub {
  max-width: 650px;
  margin: 15px auto 40px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.driver-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.driver-feature {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 14px;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.driver-feature:hover {
  background: rgba(255, 255, 255, 0.06);
}

.driver-feature h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.driver-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.driver-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.driver-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* DRIVER SECTION IMAGE LAYOUT */

.driver-container{
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.driver-content{
  flex: 1 1 500px;
}

.driver-image{
  flex: 0 1 360px;
  max-width: 360px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.driver-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 900px){
  .driver-container{
    flex-direction: column;
  }

  .driver-image{
    order: -1; /* image au-dessus sur mobile */
    width: 100%;
  }
}

/* ===== BADGES KYC (fond léger + texte foncé) ===== */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge.draft {
  background: rgba(234, 179, 8, 0.2);
  color: #854d0e;
}
.badge.pending {
  background: rgba(59, 130, 246, 0.2);
  color: #1e40af;
}
.badge.rejected {
  background: rgba(239, 68, 68, 0.2);
  color: #991b1b;
}
.badge.approved {
  background: rgba(34, 197, 94, 0.2);
  color: #166534;
}
.badge.missing {
  background: rgba(234, 179, 8, 0.2);
  color: #854d0e;
}

/* ===== COMPOSANTS PREMIUM (SaaS) ===== */
.card {
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  color: var(--bg-secondary);
}
.card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 0.75rem;
}
.card__title-wrap {
  flex: 1;
}
.card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-secondary);
  margin: 0 0 0.2rem;
  letter-spacing: -0.01em;
}
.card__subtitle {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}
.card__icon {
  width: 2rem;
  height: 2rem;
  opacity: 0.5;
  flex-shrink: 0;
  color: #6b7280;
}
.card--dark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text, #e5e7eb);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.card--dark .card__title { color: var(--text, #e5e7eb); }
.card--dark .card__subtitle { color: var(--text-muted, #9ca3af); }
.card--dark .card__icon { color: var(--text-muted, #9ca3af); }
.card--partner {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-color: rgba(56, 189, 248, 0.3);
}
.card--partner .card__title { color: #0c4a6e; }
.muted {
  color: var(--text-muted, #9ca3af);
  font-size: 0.875rem;
}
.kpi {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text, #e5e7eb);
}
.kpi--accent {
  color: var(--accent, #38bdf8);
}
.kpi--success {
  color: #22c55e;
}
.progress {
  height: 6px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.75rem 0;
}
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent, #38bdf8), #0ea5e9);
  border-radius: 999px;
  transition: width 0.4s ease;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-muted, #9ca3af);
}
.chip.approved { background: rgba(34, 197, 94, 0.2); color: #166534; }
.chip.pending { background: rgba(59, 130, 246, 0.2); color: #1e40af; }
.chip.missing { background: rgba(234, 179, 8, 0.2); color: #854d0e; }
.chip.rejected { background: rgba(239, 68, 68, 0.2); color: #991b1b; }

/* Cartes claires : muted/kpi adaptés */
.card .muted { color: #6b7280; }
.card .kpi { color: var(--bg-secondary); }
.card .kpi--accent { color: #0284c7; }
.card .badge.draft, .card .badge.pending, .card .badge.rejected, .card .badge.approved { color: inherit; }

/* Badge Programme Partenaire */
.badge--new { background: rgba(34, 197, 94, 0.2); color: #166534; }
.badge--photo-required { background: rgba(239, 68, 68, 0.2); color: #991b1b; }
.badge--active { background: rgba(34, 197, 94, 0.2); color: #166534; }

/* Notice bimestrielle */
.dash-notice {
  font-size: 0.8rem;
  color: var(--text-muted, #9ca3af);
  margin: 0 0 1.5rem;
  padding: 0.5rem 0;
}

/* ===== KYC BANNER (Option A) ===== */
.kyc-banner {
  display: block;
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 1rem 1.5rem;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 12px;
  margin-bottom: 1rem;
}
.kyc-banner[hidden] {
  display: none;
}
.kyc-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}
.kyc-banner .badge {
  flex: 0 0 auto;
  margin-bottom: 0.25rem;
}
.kyc-banner__title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1 1 100%;
}
.kyc-banner__msg {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted, #9ca3af);
  flex: 1 1 100%;
  line-height: 1.45;
}
.kyc-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.kyc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.kyc-btn--primary {
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.4);
}
.kyc-btn--primary:hover {
  background: var(--bg-card);
  border-color: rgba(148, 163, 184, 0.6);
  transform: translateY(-1px);
}
.kyc-btn--secondary {
  background: transparent;
  color: var(--text, #e5e7eb);
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.kyc-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(148, 163, 184, 0.7);
}
@media (max-width: 600px) {
  .kyc-banner {
    padding: 0.9rem 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .kyc-banner__inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .kyc-banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .kyc-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile nav fallback */
@media (max-width: 768px) {
  .topbar .nav,
  .nav-links,
  nav ul {
    flex-direction: column;
    gap: 8px;
  }
  .hero h1,
  .hero__content h1,
  .hero-text h1 {
    font-size: 28px;
  }
  .hero p,
  .hero__content > p,
  .hero-text p {
    font-size: 16px;
  }
  section,
  .section {
    padding: 40px 16px;
  }
}
@media (max-width: 480px) {
  .hero h1,
  .hero__content h1,
  .hero-text h1 {
    font-size: 22px;
  }
  header,
  .site-header,
  .topbar,
  .client-header {
    padding: 12px 16px;
  }
}

