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;
  --section-padding: clamp(3rem, 5vw, 6rem);
  --card-shadow: 0 8px 24px rgba(105, 226, 255, 0.08);
  --card-shadow-hover: 0 16px 40px rgba(105, 226, 255, 0.15);
  --card-border: 1px solid rgba(105, 226, 255, 0.2);
  --card-border-hover: 1px solid rgba(105, 226, 255, 0.4);
  --card-radius: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-ease: all 0.3s ease;
  --cyan-glow: rgba(105, 226, 255, 0.15);
  --bg: var(--bg-primary);
  --bg-elevated: var(--bg-secondary);
  --bg-soft: var(--bg-secondary);
  --border-subtle: var(--border-color);
  --text: var(--text-primary);
  --text-muted: var(--text-secondary);
  --accent: #2196f3;
  --accent-soft: rgba(33, 150, 243, 0.15);
  --accent-strong: #1976d2;
  --accent-btn: #1565c0;
  --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;
  line-height: 1.7;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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(33, 150, 243, 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(33, 150, 243, 0.5);
  background: radial-gradient(circle at top left, rgba(33, 150, 243, 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 {
  background: rgba(15, 23, 42, 0.95);
  color: var(--accent-strong);
  border: 1px solid rgba(33, 150, 243, 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;
}
.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; }
}

.cards--pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card--pricing {
  text-align: center;
  padding: 2rem;
}
.price-base {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0 0.25rem;
}
.price-km {
  font-size: 1rem;
  color: var(--text-muted);
}
.section__note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  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;
  text-decoration: none;
}

/* Boutons primaires : bleu site #2196F3, texte blanc bien lisible */
.btn-primary,
a.btn-primary {
  background: #2196f3;
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.btn-primary:hover,
a.btn-primary:hover {
  transform: translateY(-1px);
  background: #1976d2;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.45);
  color: var(--text-primary);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(33, 150, 243, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(33, 150, 243, 0.8);
}

.btn-full {
  width: 100%;
}

/* ===== Formulaires : champs, labels, erreurs, boutons submit / primaires ===== */

.form-input,
input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"],
textarea,
.field input,
.field textarea,
.auth__form input,
.waitlist input,
.waitlist-input {
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  border: 2px solid rgba(105, 226, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder,
.field input::placeholder,
.field textarea::placeholder,
.auth__form input::placeholder,
.waitlist input::placeholder,
.waitlist-input::placeholder {
  color: var(--text-muted, #90caf9);
  opacity: 0.85;
}

.form-input:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus,
.field input:focus,
.field textarea:focus,
.auth__form input:focus,
.waitlist input:focus,
.waitlist-input:focus {
  outline: none;
  border-color: #69e2ff;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(105, 226, 255, 0.15);
}

/* Cases OTP : ne pas forcer la largeur plein écran */
input.form-input[data-otp-index] {
  width: 3rem;
  max-width: 100%;
  padding: 0;
  aspect-ratio: 1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 12px;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

label.field {
  margin-bottom: 0;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

label.field > span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-group {
  margin-bottom: 1.5rem;
}

.btn-primary,
a.btn-primary,
.btn.btn-primary,
button[type="submit"] {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.3px;
}

.btn-primary:hover,
a.btn-primary:hover,
.btn.btn-primary:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(105, 226, 255, 0.25);
}

.btn-primary:active,
a.btn-primary:active,
.btn.btn-primary:active,
button[type="submit"]:active {
  transform: translateY(0);
}

.form-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}

#link-forgot-pwd,
.auth__link,
.forgot-password {
  transition: all 0.2s ease;
}

#link-forgot-pwd:hover,
.auth__link:hover,
.forgot-password:hover {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

/* Boutons popup app – couleurs site */
.btn-app-popup {
  background: #2196f3;
  color: var(--text-primary);
  border: none;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-app-popup:hover {
  transform: translateY(-1px);
  background: #1976d2;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.45);
  color: var(--text-primary);
}

.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: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(33, 150, 243, 0.5);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(33, 150, 243, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(33, 150, 243, 0.5);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(33, 150, 243, 0.7);
}

.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(33, 150, 243, 0.4);
  background: rgba(33, 150, 243, 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(33, 150, 243, 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(33, 150, 243, 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(33, 150, 243, 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(33, 150, 243, 0.4);
  background: radial-gradient(circle at top left, rgba(33, 150, 243, 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(33, 150, 243, 0.45);
  background:
    radial-gradient(circle at top, rgba(33, 150, 243, 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 1.5rem;
}

.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(33, 150, 243, 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(33, 150, 243, 0.08), transparent 50%);
  padding: 2.5rem 0;
}

/* Steps vitrine (Comment ça marche) */
#how .steps--vitrine,
#how .steps--vitrine .step {
  opacity: 1 !important;
  visibility: visible !important;
}
#how .steps--vitrine .step > * {
  position: relative;
  z-index: 2;
}
.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,
#how .step img,
.how-step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.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(33, 150, 243, 0.06), transparent 60%);
  text-align: center;
}
.cards--vehicles .card img,
.cards--vehicles article img,
#vehicles .card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}
.cards--vehicles .card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.cards--vehicles .card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
@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(33, 150, 243, 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;
}
.cta-app img,
#cta img,
.section--app img,
.split__media img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  display: block;
}
@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: #152238;
  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: 14px;
  border: none;
  background: #2196f3;
  color: var(--text-primary);
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.app-popup-box button:hover{
  background: #1976d2;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.45);
}

/* 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 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, #2196f3);
  text-decoration: none;
}

/* Boutons en .legal : garder le texte blanc lisible sur fond bleu */
.legal a.btn-primary,
.legal a.btn-primary:hover {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover { text-decoration: underline; }
.legal a.btn-primary: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(33, 150, 243, 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 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle, rgba(33, 150, 243, 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 {
  color: var(--text);
}

.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(33, 150, 243, 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 (champs : section « Formulaires ») */
.waitlist {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

/* Footer amélioré */

footer,
.site-footer {
  margin-top: auto;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(105, 226, 255, 0.15);
}

.site-footer {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
}

footer a,
.site-footer a {
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

footer a:hover,
.site-footer a:hover {
  color: #69e2ff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  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: #69e2ff;
}

/* Bouton retour en haut */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(105, 226, 255, 0.9);
  color: #0f172a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(105, 226, 255, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(105, 226, 255, 0.4);
}

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

:root{
  --bg:#0d1520;
  --panel:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --text:#e9f0ff;
  --muted:rgba(233,240,255,.72);
  --blue:#2196f3;
  --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;}

section,
.section,
[id="how"],
[id="vehicles"],
[id="why"],
[id="cta"],
[id="chauffeur"] {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

/* ========== HEADER SITE CLIENT (style premium aligné chauffeur) ========== */
.client-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #0d1520, #152238);
  backdrop-filter: blur(8px);
  padding: 0 28px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.client-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.client-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.client-header__left a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.client-header__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}
.client-header__title {
  display: none;
}
.client-header__center {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.client-header__center a {
  color: #2196f3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}
.client-header__center a:hover {
  color: #42a5f5;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-header__center a.active {
  color: #e3f2fd;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.client-header__btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
  white-space: nowrap;
}
.client-header__btn--secondary {
  color: var(--text-primary);
  background: #2196f3;
  border: none;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-header__btn--secondary:hover {
  background: #1976d2;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
  color: var(--text-primary);
}
.client-header__btn--primary {
  background: #2196f3;
  color: var(--text-primary);
  border: none;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.client-header__btn--primary:hover {
  background: #1976d2;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
  color: var(--text-primary);
}
.client-header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.client-header__burger span {
  width: 22px;
  height: 2px;
  background: white;
  transition: 0.3s ease;
}
@media (max-width: 1000px) {
  .client-header__center {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #152238;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .client-header__center.open {
    display: flex;
  }
  .client-header__burger {
    display: flex;
  }
}

.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(33,150,243,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:44px;padding:10px 18px;border-radius:14px;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(33,150,243,0.5);color:var(--text);
}
.topbar__actions .btn--ghost:hover{
  background:rgba(255,255,255,0.1);border-color:rgba(33,150,243,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(33,150,243,0.5);
  color:var(--text);
}
.nav-actions .btn-secondary:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(33,150,243,0.7);
}
.nav-actions .btn-primary{
  position:relative;z-index:1;
  background: #2196f3;
  color: var(--text-primary);
  border: none;
  box-shadow:0 4px 16px rgba(33,150,243,0.4);
}
.nav-actions .btn-primary:hover{
  background: #1976d2;
  color: var(--text-primary);
  box-shadow:0 6px 20px rgba(33,150,243,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: #2196f3;
  color: var(--text-primary);
  border: none;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn--primary:hover{ background: #1976d2; color: var(--text-primary); box-shadow: 0 6px 20px rgba(33, 150, 243, 0.45); }
.btn--ghost{background:rgba(255,255,255,.06); border: 1px solid rgba(33,150,243,.5); color: var(--text);}
.btn--ghost:hover{ background: rgba(255,255,255,.1); border-color: rgba(33,150,243,.7); }
.btn--lg{padding:13px 20px;border-radius:14px;font-size:1rem;}

.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:14px;margin-top:22px;}
.cards2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:22px;}
.card{
  border:1px solid var(--stroke);background:rgba(255,255,255,.04);
  border-radius:var(--radius);padding:18px;
  transition:transform .18s ease, background .18s ease;
}
.card:hover{transform:translateY(-2px);background:rgba(255,255,255,.06);}
.card-item:nth-child(1) { transition-delay: 0s; }
.card-item:nth-child(2) { transition-delay: 0.1s; }
.card-item:nth-child(3) { transition-delay: 0.2s; }
.card-item:nth-child(4) { transition-delay: 0.3s; }
.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(33,150,243,.14),transparent 50%),
             radial-gradient(circle at 70% 70%,rgba(33,150,243,.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(33,150,243,.4);
}

.idf-map__pin{
  position:absolute;
  top:42%;
  left:48%;
  width:26px;
  height:26px;
  border-radius:999px;
  background: var(--accent);
  box-shadow:0 0 0 6px rgba(33,150,243,.25);
}

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

.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(33,150,243,.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{background:radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);}
.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:#69e2ff;}

.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, #0d1520, #121d2e);
  border-top: 1px solid rgba(33, 150, 243, 0.15);
  border-bottom: 1px solid rgba(33, 150, 243, 0.15);
}

.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: #90caf9;
  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: #90caf9;
  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: #64b5f6;
}

/* 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%;
  }
}

/* --------------------------------------------------------------------------
   Cartes — ombres, ligne décorative et hovers (vitrine + pages annexes + auth)
   Classes réelles : .card, .step, .driver-feature, .download-card,
   .contact-card, .contact-aside, article.faq-item, .acc, .auth__box
   -------------------------------------------------------------------------- */

.card,
.cards--vehicles .card,
.cards--pricing .card,
.step,
.steps--vitrine .step,
.driver-feature,
.download-card,
.contact-card,
.contact-aside,
article.faq-item,
.auth__box {
  position: relative;
  border-radius: var(--card-radius, 16px);
  border: var(--card-border, 1px solid rgba(105, 226, 255, 0.2));
  box-shadow: var(--card-shadow, 0 8px 24px rgba(105, 226, 255, 0.08));
  transition: var(--transition-smooth, all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1));
  overflow: hidden;
}

/* <details> : garder overflow visible pour l’ouverture du panneau */
.acc {
  position: relative;
  border-radius: var(--card-radius, 16px);
  border: var(--card-border, 1px solid rgba(105, 226, 255, 0.2));
  box-shadow: var(--card-shadow, 0 8px 24px rgba(105, 226, 255, 0.08));
  transition: var(--transition-smooth, all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1));
  overflow: visible;
}

.card:hover,
.cards--vehicles .card:hover,
.cards--pricing .card:hover,
.step:hover,
.steps--vitrine .step:hover,
.driver-feature:hover,
.download-card:hover,
.contact-card:hover,
.contact-aside:hover,
article.faq-item:hover,
.acc:hover,
.auth__box:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover, 0 16px 40px rgba(105, 226, 255, 0.15));
  border-color: rgba(105, 226, 255, 0.4);
}

.card img,
article.card img,
.step img,
.cards--vehicles .card img,
.steps--vitrine .step img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.card:hover img,
article.card:hover img,
.step:hover img,
.cards--vehicles .card:hover img,
.steps--vitrine .step:hover img {
  transform: scale(1.03);
}

.card::before,
article.card::before,
.step::before,
article.faq-item::before,
.driver-feature::before,
.download-card::before,
.contact-card::before,
.contact-aside::before,
.acc::before,
.auth__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #69e2ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover::before,
article.card:hover::before,
.step:hover::before,
article.faq-item:hover::before,
.driver-feature:hover::before,
.download-card:hover::before,
.contact-card:hover::before,
.contact-aside:hover::before,
.acc:hover::before,
.auth__box:hover::before {
  opacity: 1;
}

/* 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;
  }
}

