/* =============================================================
   Long Distance Hub — Premium Design v3
   ============================================================= */

/* ── HERO ─────────────────────────────────────────────────── */
.ld-hero, section.ld-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 60%, #0f172a 100%);
  color: #f8fafc;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ld-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,.18) 0%, transparent 70%);
  pointer-events: none;
}
.ld-hero .container { position: relative; z-index: 1; }
.ld-hero .page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}
.ld-hero .page-hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.88;
  margin: 0 0 1.5rem;
  color: #cbd5e1;
}
.ld-hero-tel {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.ld-hero-tel a {
  color: #fbbf24;
  text-decoration: none;
}
.ld-hero-tel a:hover { color: #fde68a; }
.ld-hero-note {
  font-size: 0.88rem;
  opacity: 0.75;
  margin: 0 0 1.5rem;
  color: #94a3b8;
}

/* ── HERO CTA ROW ──────────────────────────────────────────── */
.ld-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.25rem 0 0;
}
.ld-hero-cta-row .btn {
  min-width: 10rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* Only primary btn gets full colour in dark hero */
.ld-hero .ld-hero-cta-row .btn-secondary {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #f8fafc;
}
.ld-hero .ld-hero-cta-row .btn-secondary:hover {
  background: rgba(255,255,255,.2);
}

/* ── QUOTE FORM ────────────────────────────────────────────── */
.ld-quote-form {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 2rem auto 0;
  max-width: 860px;
  padding: 1.5rem;
  text-align: left;
}
.ld-quote-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 600;
  gap: 0.3rem;
  color: #cbd5e1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.ld-quote-form input,
.ld-quote-form select {
  background: rgba(255,255,255,.95);
  border: none;
  border-radius: 8px;
  color: #1e293b;
  font-size: 0.95rem;
  padding: 0.55rem 0.75rem;
  width: 100%;
}
.ld-quote-form input:focus,
.ld-quote-form select:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}
.ld-quote-form .ld-quote-submit {
  align-self: end;
  grid-column: 1 / -1;
}
.ld-quote-form .btn { width: 100%; font-size: 1rem; padding: .75rem 1rem; }

/* ── TRUST STRIP ───────────────────────────────────────────── */
.ld-trust-strip, .LongDistanceTrust {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ld-trust-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  align-items: start;
}
.ld-trust-item {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.45;
  padding: .5rem .25rem;
}
.ld-trust-item strong {
  color: #fbbf24;
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: .2rem;
  text-transform: uppercase;
}
.ld-trust-legal {
  font-size: 0.78rem;
  margin-top: 1.25rem;
  opacity: 0.65;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── DESTINATION CARDS ─────────────────────────────────────── */
.ld-hub-destinations .services-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  margin-top: 1.5rem;
}
.ld-hub-destinations .services-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  font-weight: 600;
  padding: .85rem 1rem;
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  position: relative;
}
.ld-hub-destinations .services-card::before {
  content: "→";
  color: #6366f1;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ld-hub-destinations .services-card:hover {
  border-color: #6366f1;
  box-shadow: 0 4px 18px rgba(99,102,241,.14);
  transform: translateY(-2px);
  color: #4338ca;
}

/* ── CATEGORY CARDS ────────────────────────────────────────── */
.ld-hub-categories .services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: 1.5rem;
}
.ld-hub-categories .services-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #1e293b;
  display: block;
  font-size: .95rem;
  font-weight: 600;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .18s;
}
.ld-hub-categories .services-card:hover {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  box-shadow: 0 4px 18px rgba(99,102,241,.12);
  transform: translateY(-2px);
  color: #4338ca;
}

/* ── VEHICLE CARDS ─────────────────────────────────────────── */
.ld-vehicles-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}
.ld-vehicle-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.ld-vehicle-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,.1);
  transform: translateY(-3px);
}
.ld-vehicle-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 .4rem;
  color: #1e293b;
}
.ld-vehicle-card p {
  font-size: .9rem;
  color: #64748b;
  margin: 0;
}
.ld-vehicle-card .ld-vehicle-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  display: block;
}

/* ── CHECKLIST ─────────────────────────────────────────────── */
.ld-checklist {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.ld-checklist li {
  align-items: flex-start;
  display: flex;
  font-size: .95rem;
  gap: .5rem;
  line-height: 1.4;
}
.ld-checklist li::before {
  color: #16a34a;
  content: "✔";
  flex-shrink: 0;
  font-weight: 700;
  margin-top: .05em;
}

/* ── PRICE NOTICE ──────────────────────────────────────────── */
.ld-price-notice, .LongDistancePriceNotice {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
}
.ld-price-notice p { margin: 0 0 .5rem; font-size: .94rem; }
.ld-price-notice p:last-child { margin-bottom: 0; }

/* ── COMPARISON TABLE ──────────────────────────────────────── */
.ld-comparison-wrap { overflow-x: auto; margin: 1.25rem 0; border-radius: 12px; }
.ld-comparison {
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 640px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.ld-comparison th,
.ld-comparison td {
  border: 1px solid #e2e8f0;
  padding: .65rem .8rem;
  text-align: left;
  vertical-align: middle;
}
.ld-comparison th {
  background: #f1f5f9;
  font-weight: 700;
  color: #1e293b;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.ld-comparison tr:nth-child(even) td { background: #f8fafc; }
.ld-comparison .ld-yes { color: #16a34a; font-weight: 700; }
.ld-comparison .ld-no { color: #94a3b8; }

/* ── HOW IT WORKS STEPS ────────────────────────────────────── */
.premium-how-section .premium-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.5rem;
}
.premium-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  position: relative;
  text-align: center;
  transition: box-shadow .2s;
}
.premium-step:hover { box-shadow: 0 8px 28px rgba(15,23,42,.09); }
.premium-step-num {
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 800;
  height: 2.5rem;
  justify-content: center;
  margin-bottom: .75rem;
  width: 2.5rem;
}
.premium-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .4rem;
  color: #1e293b;
}
.premium-step p { font-size: .9rem; color: #475569; margin: 0; }

/* ── SECTION CTA BAND ──────────────────────────────────────── */
/* Boîte claire uniquement hors hero / bandeau final */
.section .section-cta-repeat:not(.ld-cta-band *) {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin: 1.5rem 0;
  padding: 1.5rem;
  text-align: center;
}
.ld-cta-band {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
.ld-cta-band h2 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: .5rem;
}
.ld-cta-band p { margin-bottom: 1rem; opacity: .88; color: #cbd5e1; }
.ld-cta-band .ld-hero-tel { font-size: 1.8rem; margin-bottom: 1rem; }
.ld-cta-band .ld-hero-tel a { color: #f0c040; text-decoration: none; }
.ld-cta-band .ld-hero-tel a:hover { color: #fde68a; }

/* Actions bandeau final — pas de boîte claire, boutons lisibles */
.ld-cta-band .ld-hero-cta-row,
.ld-cta-band .ld-cta-band__actions,
.ld-cta-band .section-cta-repeat {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0.75rem 0 0 !important;
  padding: 0 !important;
  text-align: center;
}
.ld-cta-band .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.ld-cta-band .btn-primary {
  background: #f0c040 !important;
  color: #1a1a2e !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(240, 192, 64, 0.35) !important;
}
.ld-cta-band .btn-primary:hover {
  background: #fde68a !important;
  transform: translateY(-1px);
}
.ld-cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: none !important;
}
.ld-cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
@media (max-width: 640px) {
  .ld-cta-band .ld-hero-cta-row .btn,
  .ld-cta-band .ld-cta-band__actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
    font-size: 0.85rem;
    padding: 0.6rem 0.75rem;
    white-space: normal;
  }
  .ld-cta-band .btn-primary { flex: 1 1 100%; }
}

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb-nav {
  font-size: .85rem;
  color: #64748b;
  padding: .75rem 0;
}
.breadcrumb-nav a { color: #6366f1; text-decoration: none; }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* ── INTERNAL LINKS ────────────────────────────────────────── */
.ld-internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.ld-internal-links a {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #334155;
  font-size: .84rem;
  font-weight: 500;
  padding: .35rem .9rem;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.ld-internal-links a:hover {
  background: #e0e7ff;
  border-color: #6366f1;
  color: #4338ca;
}

/* ── INFO CARDS ────────────────────────────────────────────── */
.ld-info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1rem;
}
.ld-info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.ld-info-card h3 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin: 0 0 .35rem;
  text-transform: uppercase;
  color: #6366f1;
}
.ld-info-card p { font-size: .95rem; margin: 0; color: #334155; }

/* ── SPEC TEXT ─────────────────────────────────────────────── */
.ld-spec-text p { margin: 0 0 .85rem; }

/* ── SITUATION / MISC CARDS ────────────────────────────────── */
.ld-situations-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}
.ld-situation-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.ld-situation-card h3 { font-size: 1rem; margin: 0 0 .4rem; }
.ld-situation-card p { font-size: .92rem; margin: 0; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .ld-hero { padding: 2.5rem 0 2rem; }
  .ld-hero-cta-row .btn { flex: 1 1 calc(50% - .4rem); min-width: 0; font-size: .88rem; }
  .ld-trust-grid { grid-template-columns: 1fr 1fr; }
  .ld-hub-destinations .services-grid { grid-template-columns: 1fr 1fr; }
  .ld-quote-form { grid-template-columns: 1fr 1fr; padding: 1rem; }
  .premium-step { padding: 1.1rem 1rem; }
}

/* =============================================================
   HUB PAGE — Premium dark theme (ld-hub-page)
   ============================================================= */
body.ld-hub-page {
  --ld-gold: #f0c040;
  --ld-gold-dim: rgba(240, 192, 64, 0.15);
  --ld-surface: rgba(255, 255, 255, 0.04);
  --ld-border: rgba(255, 255, 255, 0.1);
}

body.ld-hub-page main.app-main {
  background: #0a0b0f;
}

body.ld-hub-page .breadcrumb-nav {
  background: #0a0b0f;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.65rem 0 0;
}
body.ld-hub-page .breadcrumb-nav a { color: var(--ld-gold); }

/* ── HERO SPLIT ── */
.ld-hub-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}
.ld-hub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ld-hub-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.ld-hub-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 18, 0.94) 0%, rgba(8, 10, 18, 0.78) 45%, rgba(8, 10, 18, 0.55) 100%),
    linear-gradient(to top, #0a0b0f 0%, transparent 35%);
}
.ld-hub-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr min(400px, 100%);
  align-items: center;
}
.ld-hub-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.85rem;
}
.ld-hub-hero__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: ld-pulse 2s ease infinite;
}
@keyframes ld-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.ld-hub-hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.ld-hub-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.25rem;
  max-width: 42ch;
}
.ld-hub-hero__tel {
  display: inline-block;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--ld-gold);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  transition: color 0.15s;
}
.ld-hub-hero__tel:hover { color: #fde68a; }
.ld-hub-hero__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.25rem;
}
.ld-hub-cta-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.ld-hub-cta-primary .btn-primary {
  background: var(--ld-gold);
  color: #1a1a2e;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.35);
}
.ld-hub-cta-primary .btn-primary:hover {
  background: #fde68a;
  box-shadow: 0 6px 28px rgba(240, 192, 64, 0.45);
}
.ld-hub-cta-primary .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.ld-hub-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Quote card in hero aside */
.ld-hub-quote-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ld-hub-quote-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem;
}
.ld-hub-quote-card__sub {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0 0 1rem;
}
.ld-hub-quote-card .ld-quote-form {
  background: transparent;
  border: none;
  backdrop-filter: none;
  margin: 0;
  padding: 0;
  max-width: none;
}
.ld-hub-quote-card .ld-quote-form label {
  color: #475569;
  font-size: 0.72rem;
}
.ld-hub-quote-card .ld-quote-form input,
.ld-hub-quote-card .ld-quote-form select {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.ld-hub-quote-card .ld-quote-form .btn-primary {
  background: #1e293b;
  color: #fff;
}

/* ── SECTIONS ── */
body.ld-hub-page .ld-hub-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.ld-hub-page .ld-hub-section__label {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.5rem;
}
body.ld-hub-page .section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
}
body.ld-hub-page .section-title::after {
  background: linear-gradient(90deg, var(--ld-gold), transparent);
}
body.ld-hub-page .ld-hub-section__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-size: 0.95rem;
}
body.ld-hub-page .ld-hub-section__link {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}
body.ld-hub-page .ld-hub-section__link a {
  color: var(--ld-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Feature grid */
.ld-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 0.5rem;
}
.ld-feature-card {
  background: var(--ld-surface);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.ld-feature-card:hover {
  border-color: rgba(240, 192, 64, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.ld-feature-card__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.65rem;
}
.ld-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}
.ld-feature-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

/* Destination cards */
.ld-dest-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.ld-dest-card {
  background: var(--ld-surface);
  border: 1px solid var(--ld-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.ld-dest-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ld-gold), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.ld-dest-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 192, 64, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.ld-dest-card:hover::before { opacity: 1; }
.ld-dest-card__flag { font-size: 1.1rem; line-height: 1; }
.ld-dest-card__city {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.ld-dest-card__meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.ld-dest-card__cta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ld-gold);
  margin-top: 0.35rem;
}

/* Region cards */
.ld-region-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.ld-region-card {
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid var(--ld-border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  transition: border-color 0.18s, transform 0.18s;
}
.ld-region-card:hover {
  border-color: rgba(240, 192, 64, 0.3);
  transform: translateY(-2px);
}
.ld-region-card__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.ld-region-card__hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* CTA strip */
.ld-hub-cta-strip {
  background: linear-gradient(90deg, rgba(240, 192, 64, 0.12) 0%, rgba(240, 192, 64, 0.04) 100%);
  border-top: 1px solid rgba(240, 192, 64, 0.15);
  border-bottom: 1px solid rgba(240, 192, 64, 0.15);
  padding: 1.25rem 0;
  text-align: center;
}
.ld-hub-cta-strip__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.35rem;
}
.ld-hub-cta-strip__tel {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ld-gold);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.ld-hub-cta-strip__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Vehicles on hub — dark */
body.ld-hub-page .ld-vehicles-grid--hub .ld-vehicle-card {
  background: var(--ld-surface);
  border-color: var(--ld-border);
}
body.ld-hub-page .ld-vehicles-grid--hub .ld-vehicle-card h3 { color: #fff; }
body.ld-hub-page .ld-vehicles-grid--hub .ld-vehicle-card p { color: rgba(255,255,255,.55); }

/* Price notice on dark */
body.ld-hub-page .ld-price-notice {
  background: rgba(240, 192, 64, 0.08);
  border-color: rgba(240, 192, 64, 0.25);
  border-left-color: var(--ld-gold);
}
body.ld-hub-page .ld-price-notice p {
  color: rgba(255, 255, 255, 0.75);
}

/* Comparison on dark */
body.ld-hub-page .ld-comparison th {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-color: var(--ld-border);
}
body.ld-hub-page .ld-comparison td {
  border-color: var(--ld-border);
  color: rgba(255, 255, 255, 0.7);
}
body.ld-hub-page .ld-comparison tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
body.ld-hub-page .ld-comparison-wrap {
  border: 1px solid var(--ld-border);
  border-radius: 14px;
}

/* How it works — reuse homepage dark steps */
body.ld-hub-page .ld-hub-how {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.ld-hub-page .ld-hub-how .premium-step {
  background: var(--ld-surface) !important;
  border-color: var(--ld-border) !important;
}
body.ld-hub-page .ld-hub-how .premium-step h3 { color: #fff !important; }
body.ld-hub-page .ld-hub-how .premium-step p { color: rgba(255,255,255,.6) !important; }
body.ld-hub-page .ld-hub-how .premium-step a { color: var(--ld-gold) !important; }

/* FAQ on hub */
body.ld-hub-page .ld-hub-faq .faq-item {
  background: var(--ld-surface);
  border: 1px solid var(--ld-border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
}
body.ld-hub-page .ld-hub-faq .faq-question {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
body.ld-hub-page .ld-hub-faq .faq-answer {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

/* Internal links on hub */
body.ld-hub-page .ld-internal-links a {
  background: var(--ld-surface);
  border-color: var(--ld-border);
  color: rgba(255, 255, 255, 0.7);
}
body.ld-hub-page .ld-internal-links a:hover {
  background: var(--ld-gold-dim);
  border-color: rgba(240, 192, 64, 0.35);
  color: var(--ld-gold);
}

/* Final CTA band */
body.ld-hub-page .ld-cta-band {
  background: linear-gradient(135deg, #12141a 0%, #1a1a2e 100%);
  border-top: 1px solid var(--ld-border);
}

body.ld-hub-page .LongDistanceInternalLinks {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body.ld-hub-page .LongDistanceInternalLinks .section-title {
  color: #fff;
}

/* bandeau final : styles globaux .ld-cta-band ci-dessus (plus de display:none) */

@media (max-width: 900px) {
  .ld-hub-hero__grid {
    grid-template-columns: 1fr;
  }
  .ld-hub-hero {
    min-height: auto;
    padding-bottom: 2rem;
  }
  .ld-hub-hero__title { max-width: none; }
  .ld-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ld-dest-grid { grid-template-columns: 1fr; }
  .ld-feature-grid { grid-template-columns: 1fr; }
  .ld-hub-quote-card .ld-quote-form { grid-template-columns: 1fr; }
}
