/* =================================================================
   LuxNavette.lu — Feuille de style unique
   Page : "Taxi à Pétange"
   Codes graphiques inspirés de onde.app :
   fond blanc, encre noire, accent vert vif, typographie géométrique.
   Pur CSS, mobile-first, contraste AA, sans framework.
   ================================================================= */

/* ----- Police géométrique (équivalent libre de CodePro) ----- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* =========================  TOKENS  ========================= */
:root {
  /* Accent — vert "ride-hailing" d'Onde */
  --green-600: #00b354;   /* mots accentués / texte vert */
  --green-500: #00d262;   /* boutons, actions */
  --green-400: #1ee27c;
  --green-tint: #e7faf0;

  /* Encre & neutres */
  --ink: #0a0a0a;
  --ink-800: #1c1c1c;
  --slate-700: #3d3d3d;
  --slate-500: #6b7280;
  --slate-300: #c9ced6;
  --line: #ececf0;
  --paper: #ffffff;
  --paper-2: #f6f7f9;
  --white: #ffffff;

  /* Accent secondaire ponctuel (repris du "3 min" violet d'Onde) */
  --violet-500: #7b3ff2;

  /* Sémantique */
  --bg: var(--paper);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--slate-500);
  --brand: var(--ink);
  --accent: var(--green-500);

  /* Rayons sobres (Onde ≈ 8px) */
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(10, 10, 10, .05), 0 2px 8px rgba(10, 10, 10, .04);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, .07), 0 2px 6px rgba(10, 10, 10, .04);
  --shadow-lg: 0 26px 60px rgba(10, 10, 10, .12);

  --wrap: 1140px;
  --gap: clamp(1rem, 2.5vw, 1.75rem);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* =========================  RESET  ========================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--paper); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.02em; }
b { font-weight: 700; }

/* =========================  WRAP  ========================= */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

/* =========================  NAVIGATION  =========================
   Barre blanche, encre noire, CTA vert plein — façon Onde.
   Menu mobile en accordéon piloté par une case à cocher (pur CSS).
*/
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--green-500);
  color: #fff;
  font-weight: 700;
  padding: .6rem 1rem;
}
.skip-link:focus { left: .75rem; top: .75rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  position: relative;
}

/* Marque */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--green-500);
  color: #fff;
  border-radius: var(--radius-sm);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-dot { color: var(--green-600); }

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-menu > a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-800);
  padding: .55rem .8rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color .16s ease, background .16s ease;
}
.nav-menu > a:hover { color: var(--green-600); background: var(--green-tint); }
/* Soulignement d'accent (en bas, jamais latéral) */
.nav-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: .8rem; right: .8rem; bottom: .28rem;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-menu > a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-left: .4rem;
  background: var(--green-500);
  color: #fff !important;
  font-weight: 600;
  padding: .6rem 1.1rem !important;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--green-600); }
.nav-cta::after { display: none !important; }
.nav-cta svg { width: 17px; height: 17px; }

/* Burger + bascule (cachés sur desktop) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 9px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger span + span { margin-top: 5px; }

@media (max-width: 820px) {
  .nav-burger { display: block; }
  .nav-menu {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .4rem clamp(1.1rem, 4vw, 2rem) 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .2s ease, padding .3s ease;
  }
  .nav-menu > a { padding: .9rem .2rem; border-bottom: 1px solid var(--line); }
  .nav-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: center; margin: .9rem 0 0; padding: .85rem 1rem !important; }
  .nav-toggle:checked ~ .nav-menu {
    max-height: 440px;
    opacity: 1;
    padding-top: .6rem;
  }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================  HERO  =========================
   Fond blanc, immense titre noir avec mots verts (signature Onde).
   Trame de carte très discrète + ligne de route verte pointillée.
*/
.hero {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  text-align: center;
  padding: clamp(2.8rem, 8vw, 6rem) 0 clamp(3rem, 9vw, 6.5rem);
  background: var(--paper);
  overflow: hidden;
}
/* Trame "carte / quadrillage" très légère */
.hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  background-image:
    linear-gradient(rgba(10, 10, 10, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 45%, transparent 100%);
}
/* Ligne de route verte pointillée */
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: clamp(1.2rem, 5vw, 3rem);
  height: 4px;
  z-index: -1;
  background: repeating-linear-gradient(90deg,
      var(--green-500) 0 22px, transparent 22px 44px);
  transform: rotate(-2deg);
  opacity: .5;
  border-radius: 4px;
}
.hero .wrap { position: relative; z-index: 1; }

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-tint);
  border: 1px solid rgba(0, 179, 84, .2);
  padding: .42rem .9rem;
  border-radius: 999px;
}
.hero .eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(0, 210, 98, .25);
}

.hero h1 {
  margin: 1.2rem auto 0;
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 700;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--green-600); }

.hero p.sub {
  margin: 1.2rem auto 0;
  max-width: 52ch;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  color: var(--slate-500);
  text-wrap: pretty;
}

/* CTA d'appel — vert plein, très visible */
.hero .cta-row {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .95rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn-call {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 210, 98, .35);
}
.btn-call:hover { background: var(--green-600); transform: translateY(-2px); }
.btn-ghost {
  background: var(--white);
  border-color: var(--slate-300);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* Faits / chiffres clés */
.facts {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.fact b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: -.02em;
}
.fact small {
  display: block;
  margin-top: .2rem;
  font-size: .82rem;
  color: var(--slate-500);
}

/* =========================  SECTIONS  ========================= */
section { padding: clamp(2.8rem, 7vw, 5rem) 0; }
section.band { background: var(--paper-2); border-block: 1px solid var(--line); }

h2.sec {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
h2.sec .hl { color: var(--green-600); }
h2.sec + .lead {
  margin-top: .7rem;
  color: var(--text-soft);
  max-width: 60ch;
  font-size: 1.05rem;
}
.sec-head { margin-bottom: clamp(1.5rem, 4vw, 2.4rem); }

/* =========================  CARTES EXPLOITANTS  ========================= */
.ops {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
.op {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
/* liseré supérieur révélé au survol */
.op::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.op:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-400);
}
.op:hover::before { transform: scaleX(1); }

.op .av {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .02em;
  background: var(--ink);
}
/* variation d'accent pour quelques avatars (rythme visuel) */
.op:nth-child(3n) .av { background: var(--green-500); }
.op:nth-child(3n+2) .av { background: var(--violet-500); }

.op h3 {
  margin-top: 1rem;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--green-600);
  background: var(--green-tint);
  border: 1px solid rgba(0, 179, 84, .25);
  padding: .26rem .55rem;
  border-radius: 999px;
}
.badge::before {
  content: "";
  width: 13px; height: 13px;
  background: var(--green-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.op p {
  margin-top: .55rem;
  color: var(--text-soft);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.op p::before {
  content: "";
  width: 15px; height: 15px; flex: none;
  background: var(--slate-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Lien click-to-call dans la carte */
.op .tel {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  background: var(--ink);
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  transition: background .18s ease, transform .18s ease;
}
.op .tel svg { width: 18px; height: 18px; }
.op .tel:hover { background: var(--green-500); transform: translateY(-1px); }
.op .tel:active { transform: translateY(0); }

/* =========================  ENCADRÉS ALTERNATIFS  ========================= */
.alt-box {
  margin-top: var(--gap);
  background: var(--green-tint);
  border: 1px solid rgba(0, 179, 84, .2);
  border-top: 4px solid var(--green-500);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.alt-box h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.alt-box h3::before {
  content: "";
  width: 20px; height: 20px; flex: none;
  background: var(--green-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 7h2v2h-2zm0 4h2v6h-2zm1-9a10 10 0 1 0 0 20 10 10 0 0 0 0-20z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 7h2v2h-2zm0 4h2v6h-2zm1-9a10 10 0 1 0 0 20 10 10 0 0 0 0-20z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.alt-box p { margin-top: .5rem; color: var(--slate-700); }

/* =========================  CARTE DEVIS (variante)  ========================= */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
/* Scène SVG animée — fond clair */
.stage {
  position: relative;
  background:
    radial-gradient(700px 240px at 75% -40%, rgba(0, 210, 98, .14), transparent 60%),
    linear-gradient(165deg, var(--paper), var(--paper-2));
  border-bottom: 1px solid var(--line);
  padding: clamp(1.4rem, 4vw, 2rem);
  color: var(--ink);
}
.stage svg { width: 100%; height: auto; }
.stage .road-dash { stroke-dasharray: 14 16; animation: roadmove 1.1s linear infinite; }
@keyframes roadmove { to { stroke-dashoffset: -60; } }
.stage .vehicle { animation: bob 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.stage .wheel { transform-box: fill-box; transform-origin: center; animation: spin 1.1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.stage .pin { animation: drop 2.6s ease-in-out infinite; transform-origin: center bottom; }
@keyframes drop { 0%,100% { transform: translateY(0); } 12% { transform: translateY(-6px); } 24% { transform: translateY(0); } }

.card .form { padding: clamp(1.3rem, 4vw, 1.9rem); }
.steps {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.3rem;
}
.steps .step {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  position: relative;
}
.steps .step.done { background: var(--green-500); }
.steps .step.active::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--green-400);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

.form label.q {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .7rem;
  font-size: 1.05rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--slate-700);
  font-weight: 500;
  font-size: .92rem;
  cursor: pointer;
  user-select: none;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .12s ease;
}
.chip:hover { border-color: var(--green-400); transform: translateY(-1px); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:has(input:checked) {
  background: var(--green-tint);
  border-color: var(--green-500);
  color: var(--green-600);
}
.chip:has(input:checked)::before {
  content: "✓";
  font-weight: 800;
  color: var(--green-500);
}

/* Table de prix */
.prix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
  margin-top: .4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.prix-table caption {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  padding-bottom: .6rem;
}
.prix-table th, .prix-table td { padding: .8rem 1rem; text-align: left; }
.prix-table thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.prix-table tbody tr:nth-child(even) { background: var(--paper-2); }
.prix-table tbody tr:hover { background: var(--green-tint); }
.prix-table td:last-child { font-weight: 700; color: var(--green-600); white-space: nowrap; }

/* =========================  FAQ  ========================= */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--green-400); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 22px; height: 22px; flex: none;
  border-radius: 50%;
  background: var(--green-tint);
  transition: transform .25s ease, background .2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%2300b354' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
.faq details[open] summary::after {
  transform: rotate(135deg);
  background-color: var(--green-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23fff' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq details > p {
  padding: 0 1.3rem 1.2rem;
  color: var(--slate-700);
  animation: reveal .3s ease;
}
@keyframes reveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* =========================  PILLS / LIENS  ========================= */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.4rem;
}
.links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .55rem 1rem;
  border-radius: 999px;
  transition: all .18s ease;
}
.links a:hover {
  color: #fff;
  background: var(--green-500);
  border-color: var(--green-500);
  transform: translateY(-2px);
}

/* =========================  PIED  ========================= */
.foot {
  background: var(--ink);
  color: #b9bdc4;
  padding: 2.5rem 0;
  font-size: .9rem;
}
.foot a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot a:hover { color: var(--green-400); }

/* =========================  BARRE D'APPEL MOBILE STICKY  ========================= */
.mobile-call {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  padding: .7rem clamp(1rem, 4vw, 1.5rem) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(10, 10, 10, .06);
  display: flex;
  gap: .7rem;
}
.mobile-call a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
}
.mobile-call .c-primary { background: var(--green-500); color: #fff; box-shadow: 0 6px 18px rgba(0, 210, 98, .35); }
.mobile-call .c-second { background: var(--white); color: var(--ink); border: 1px solid var(--slate-300); }
.mobile-call svg { width: 19px; height: 19px; }

/* =========================  RESPONSIVE  ========================= */
@media (min-width: 600px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 760px) {
  .ops { grid-template-columns: repeat(2, 1fr); }
  .mobile-call { display: none; }      /* la barre sticky ne sert qu'au mobile */
  .alt-box { display: flex; gap: 1.2rem; align-items: flex-start; }
}
@media (min-width: 1000px) {
  .ops { grid-template-columns: repeat(3, 1fr); }
  .card.split { display: grid; grid-template-columns: 1.1fr 1fr; }
  .card.split .stage { display: flex; align-items: center; }
}

/* =========================  ACCESSIBILITÉ  ========================= */
:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto; transition: none !important; }
}

/* =================================================================
   SUPPLÉMENT — pages de réservation (aéroport / gare)
   Composants spécifiques aux landing pages, alignés sur les tokens
   verts/blancs ci-dessus. N'altère aucune règle existante.
   ================================================================= */

/* Fil d'Ariane + bascule de hub (dans le hero) */
.breadcrumb { font-size: .8rem; color: var(--slate-500); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--slate-700); }
.breadcrumb a:hover { color: var(--green-600); }

.hub-switcher {
  display: inline-flex;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.hub-btn {
  padding: .6rem 1.25rem;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--slate-500);
}
.hub-btn.active { background: var(--green-500); color: #fff; }

/* Cartes "points de dépose / trains" dans le hero (sur fond clair) */
.stops { display: grid; gap: .65rem; margin-top: 1.6rem; text-align: left; }
.stop {
  display: flex;
  gap: .85rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  box-shadow: var(--shadow-sm);
}
.stop-ico { font-size: 1.4rem; flex: none; }
.stop b { display: block; font-size: .92rem; color: var(--ink); }
.stop span { font-size: .8rem; color: var(--slate-500); }

/* Champs de formulaire dans la carte devis */
.form .field { margin-bottom: 1rem; }
.form .field:last-of-type { margin-bottom: 0; }
.form label.lbl {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: .35rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .7rem .85rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(0, 210, 98, .15);
}
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.form .note { font-size: .76rem; color: var(--slate-500); margin-top: .35rem; }
.form .free-tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  color: var(--green-600);
  background: var(--green-tint);
  padding: .15rem .6rem;
  border-radius: 999px;
  margin: -.4rem 0 1.1rem;
}

/* Badges de confiance sous le hero (sur fond clair) */
.trust-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; justify-content: center; }
.hero .trust-badges { justify-content: center; }
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .35rem .8rem;
  border-radius: 999px;
}
.tbadge.ok { color: var(--green-600); background: var(--green-tint); border-color: rgba(0,179,84,.25); }

/* Sélecteur de véhicule (réutilise le style .chips/.chip déjà défini) */
.vpill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--slate-700);
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  user-select: none;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .12s ease;
}
.vpill:hover { border-color: var(--green-400); transform: translateY(-1px); }
.vpill.sel { background: var(--green-tint); border-color: var(--green-500); color: var(--green-600); }
.vpills { display: flex; flex-wrap: wrap; gap: .55rem; }

.price-hint {
  margin-top: .9rem;
  padding: .7rem 1rem;
  font-size: .85rem;
  color: var(--slate-700);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: none;
}
.price-hint.show { display: block; }
.price-hint b { color: var(--green-600); }

.trust-row { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: .9rem; font-size: .78rem; color: var(--slate-500); }
.trust-row span::before { content: "✓ "; color: var(--green-500); font-weight: 800; }

.btn-submit {
  width: 100%;
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: #fff;
  background: var(--green-500);
  border: none;
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 210, 98, .3);
  transition: background .18s ease, transform .18s ease;
}
.btn-submit:hover { background: var(--green-600); transform: translateY(-2px); }

/* Grille de destinations (POI) */
.poi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.6rem; }
.poi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.poi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-400); }
.poi-ico { font-size: 1.6rem; margin-bottom: .5rem; }
.poi-card h3 { font-size: 1.02rem; font-weight: 600; color: var(--ink); margin-bottom: .25rem; }
.poi-card p { font-size: .85rem; color: var(--slate-500); margin-bottom: .7rem; }
.poi-meta { display: flex; gap: .9rem; font-size: .8rem; }
.poi-meta .time { color: var(--slate-500); }
.poi-meta .price { color: var(--green-600); font-weight: 700; }
.poi-cta { display: inline-block; margin-top: .6rem; font-size: .82rem; font-weight: 600; color: var(--green-600); }

/* Étapes "comment ça marche" */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 1.6rem; }
.how-step { text-align: center; padding: 1rem .8rem; }
.how-step .num {
  width: 46px; height: 46px;
  margin: 0 auto .8rem;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.05rem;
  color: #fff; background: var(--green-500);
  border-radius: 50%;
}
.how-step h3 { font-size: .98rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.how-step p { font-size: .85rem; color: var(--slate-500); }

@media (max-width: 820px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .form .row2 { grid-template-columns: 1fr; }
}

/* =================================================================
   LuxNavette — Améliorations d'espacement (Lot 2) — v2
   À AJOUTER À LA FIN de style-trajet.css.
   Cible le wrapper .lxn-hub du shortcode (structure garantie) + les
   blocs .links injectés par le maillage. Ajouts uniquement.
   ================================================================= */

/* ---- 1) Conteneur du hub : largeur lisible + padding (le contenu de
   page n'est pas toujours dans un .wrap). ---- */
.lxn-hub {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

/* ---- 2) Titres de pôle : sobres et bien espacés (au lieu des titres
   géants collés aux listes). ---- */
.lxn-hub .lxn-pole {
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  margin-top: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}
.lxn-hub .lxn-pole:first-child { margin-top: .5rem; }

/* ---- 3) Blocs de liens : marge basse (manquaient) + confort ---- */
.links { margin-bottom: clamp(1.4rem, 3.5vw, 2.2rem); }
.links a { padding: .6rem 1.05rem; line-height: 1.3; }

/* ---- 4) Sections de maillage injectées (pages trajet/commune/service) :
   séparation discrète entre deux <section> consécutives. ---- */
section + section { border-top: 1px solid var(--line); }

/* ---- 5) Chiffres clés (.facts) : éviter l'effet "collé". ---- */
.fact { padding-block: 1.15rem; }
.fact b { margin-bottom: .15rem; }
.fact small { line-height: 1.3; }

/* ---- 6) Tableau de prix : remettre l'en-tête en bandeau encre/blanc.
   Le template single-trajet.php n'a pas de <thead> : on cible la 1re ligne
   du tableau (les <th>) pour appliquer le style "bandeau" du design-v3. ---- */
.prix-table tr:first-child th,
.prix-table thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}