/* ============================================================================
   TachoDash – Landing-spezifische Klassen (Präfix: ld-)
   Baut ausschließlich auf den Tokens aus style.css auf (--ink, --accent,
   --ok/--warn/--crit, --hero-1/2, Inter, .btn/.btn-success ...).
   Leitmotiv: Tachoscheibe / Diagrammstreifen (Lenken/Arbeit/Ruhe) als
   wiederkehrendes Grafikelement – rein CSS/SVG, kein JS.
   ========================================================================== */

/* --- Tachostreifen-Motiv (Aktivitätsstreifen) -----------------------------
   Streifen aus Drive(blau)/Work(amber)/Rest(slate)/Available(grün) wie auf
   einem Tacho-Diagramm. Als dünnes Band oben/unten von Sektionen oder Karten. */
.ld-stripe {
  height: 6px; width: 100%; border-radius: 999px; flex: none;
  background: repeating-linear-gradient(90deg,
    var(--drive) 0 22px, var(--work) 22px 30px, var(--rest) 30px 52px,
    var(--avail) 52px 60px, var(--drive) 60px 88px, var(--rest) 88px 96px);
  background-size: 96px 100%;
}
.ld-stripe--thin { height: 4px; }

/* dezentes, sich wiederholendes Diagramm-Linienraster (Hintergrund-Textur) */
.ld-grid-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 100% 34px, 56px 100%;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
}

/* ============================================================================
   1. STICKY HINWEIS-BANNER
   ========================================================================== */
.ld-alertbar {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink); color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: 13.5px; line-height: 1.45;
  transition: max-height .45s ease, opacity .35s ease;
}
/* Die Einblendung ist eine Nachricht, kein Möbelstück: Nach 30 s faltet das Skript
   den Streifen weg (Höhe wird dort gemessen und gesetzt) und entfernt ihn aus dem
   DOM. Auf dem Handy fraß er sonst dauerhaft ein Zehntel des Bildschirms. */
.ld-alertbar--weg {
  max-height: 0 !important; opacity: 0; overflow: hidden;
  border-bottom-color: transparent;
}
.ld-alertbar-in {
  max-width: 1180px; margin: 0 auto; padding: 9px 18px;
  display: flex; align-items: center; gap: 12px; justify-content: center;
  text-align: center; flex-wrap: wrap;
}
.ld-alertbar .ld-ab-tag {
  flex: none; background: var(--warn); color: #3a2400; font-weight: 800;
  font-size: 11px; letter-spacing: .03em; padding: 3px 9px; border-radius: 999px;
  text-transform: uppercase;
}
.ld-alertbar a { color: #fff; text-decoration: underline; text-underline-offset: 2px;
  font-weight: 600; white-space: nowrap; }
.ld-alertbar strong { color: #fff; font-weight: 700; }
@media (max-width: 560px) { .ld-alertbar { font-size: 12.5px; } }

/* ============================================================================
   2. HERO (Split, Navy-Gradient, Mockup rechts)
   ========================================================================== */
.ld-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 520px at 84% -12%, rgba(31,111,235,.32) 0%, rgba(31,111,235,0) 60%),
    linear-gradient(158deg, var(--hero-1) 0%, var(--hero-2) 60%, #0a1730 100%);
}
/* subtiler Tachostreifen im Hintergrund: schräge, sehr dezente Aktivitätsbänder */
.ld-hero::after {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 140%;
  z-index: 0; pointer-events: none; opacity: .14; transform: rotate(-7deg);
  background: repeating-linear-gradient(90deg,
    rgba(31,111,235,.55) 0 90px, rgba(245,158,11,.45) 90px 120px,
    rgba(148,163,184,.40) 120px 230px, rgba(0,179,126,.45) 230px 268px);
  background-size: 268px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 70%, transparent);
}
.ld-hero-in {
  position: relative; z-index: 2; max-width: 1180px; margin: 0 auto;
  padding: 64px 18px 76px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center;
}
.ld-hero-copy { max-width: 560px; }
.ld-hero .ld-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(31,111,235,.18); border: 1px solid rgba(120,170,255,.35);
  color: #BFD4FF; font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 20px;
}
.ld-hero h1 {
  font-size: 50px; line-height: 1.06; font-weight: 800; letter-spacing: -.025em;
  margin: 0 0 18px; color: #fff;
}
.ld-hero h1 .ld-accentword { color: #6FA8FF; }
.ld-hero .ld-sub {
  font-size: 18.5px; line-height: 1.58; color: #C4D2EE; margin: 0 0 28px; max-width: 520px;
}
.ld-hero .ld-cta-row { display: flex; gap: 13px; flex-wrap: wrap; }
.ld-btn-xl { padding: 15px 28px; font-size: 16px; border-radius: 12px; font-weight: 700; }
.ld-btn-ghost-w {
  background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.28);
}
.ld-btn-ghost-w:hover { background: rgba(255,255,255,.14); color: #fff; text-decoration: none; }
.ld-microtrust {
  margin: 22px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap;
  gap: 8px 16px; font-size: 13px; color: #9DB2D8;
}
.ld-microtrust li { display: inline-flex; align-items: center; gap: 7px; }
.ld-microtrust li::before {
  content: ""; width: 14px; height: 14px; flex: none; border-radius: 50%;
  background: rgba(0,179,126,.22);
  /* kleines Häkchen via Hintergrund */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ED9AC' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* --- Hero-Mockup: gerahmtes Browser-Fenster, leicht gekippt --------------- */
.ld-mock-wrap { position: relative; perspective: 1600px; }
.ld-browser {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(5,12,30,.55), 0 6px 16px rgba(5,12,30,.35);
  transform: rotateY(-9deg) rotateX(3deg) rotate(.4deg); transform-origin: center;
  border: 1px solid rgba(255,255,255,.10);
}
.ld-browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 9px 13px;
  background: #EEF2F8; border-bottom: 1px solid var(--line-soft);
}
.ld-browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #cfd8e6; display: block; }
.ld-browser-bar i:nth-child(1) { background: #ff5f57; }
.ld-browser-bar i:nth-child(2) { background: #febc2e; }
.ld-browser-bar i:nth-child(3) { background: #28c840; }
.ld-browser-url {
  margin-left: 8px; flex: 1; background: #fff; border: 1px solid var(--line-soft);
  border-radius: 7px; font-size: 11.5px; color: var(--muted); padding: 4px 10px;
  display: flex; align-items: center; gap: 6px; max-width: 280px;
}
.ld-browser-url svg { width: 11px; height: 11px; color: var(--ok); flex: none; }
.ld-browser-body { padding: 16px; background: var(--bg); }

/* Dashboard-Demodaten im Mockup */
.ld-mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ld-mock-title { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.ld-mock-sub { font-size: 12px; color: var(--muted); }
.ld-mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 12px; }
.ld-kpi {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 10px; padding: 10px 11px;
  box-shadow: var(--shadow);
}
.ld-kpi .k-lbl { font-size: 11px; color: var(--muted); display: block; margin-bottom: 3px; line-height: 1.2; }
.ld-kpi .k-val { font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.ld-kpi .k-val small { font-size: 11px; font-weight: 600; color: var(--muted); }
.ld-kpi.k-ok { border-color: rgba(0,179,126,.35); background: linear-gradient(180deg,#fff,#f1fcf8); }
.ld-kpi.k-ok .k-val { color: #00875f; }
.ld-kpi.k-crit { border-color: rgba(229,72,77,.45); background: linear-gradient(180deg,#fff,#fef3f3);
  box-shadow: 0 4px 14px rgba(229,72,77,.16); position: relative; }
.ld-kpi.k-crit .k-val { color: var(--crit); }
.ld-pulse { position: absolute; top: 8px; right: 9px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--crit); box-shadow: 0 0 0 0 rgba(229,72,77,.5); animation: ld-pulse 1.8s infinite; }
@keyframes ld-pulse { 0%{box-shadow:0 0 0 0 rgba(229,72,77,.45);} 70%{box-shadow:0 0 0 7px rgba(229,72,77,0);} 100%{box-shadow:0 0 0 0 rgba(229,72,77,0);} }

/* Mini-Tabelle Fahrer im Mockup */
.ld-mock-card { position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 11px 12px; box-shadow: var(--shadow); }
.ld-mock-card .mc-h { display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); margin-bottom: 9px; font-weight: 600; }
.ld-drv-row { display: flex; align-items: center; gap: 9px; padding: 6px 0; }
.ld-drv-row + .ld-drv-row { border-top: 1px solid var(--line-soft); }
.ld-avatar { width: 22px; height: 22px; border-radius: 50%; flex: none; font-size: 9px;
  font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.ld-drv-name { font-size: 11.5px; font-weight: 600; color: var(--ink); flex: 1; }
.ld-drv-bar { width: 64px; height: 7px; border-radius: 4px; overflow: hidden; flex: none;
  display: flex; border: 1px solid var(--line-soft); }
.ld-drv-bar span { height: 100%; }
.ld-pill { font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 999px; flex: none; }
.ld-pill.ok { background: #d6f5ec; color: #06694a; }
.ld-pill.crit { background: #fcdcdd; color: #9b1c1f; }

/* Donut (rein CSS, conic-gradient) */
.ld-donut-row { display: flex; align-items: center; gap: 14px; margin-top: 12px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px;
  box-shadow: var(--shadow); }
.ld-donut { width: 58px; height: 58px; border-radius: 50%; flex: none; position: relative;
  background: conic-gradient(var(--ok) 0 78%, var(--warn) 78% 92%, var(--crit) 92% 100%); }
.ld-donut::after { content: "94%"; position: absolute; inset: 9px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--ink); }
.ld-donut-leg { font-size: 12px; color: var(--muted); line-height: 1.6; }
.ld-donut-leg b { color: var(--ink); }
.ld-donut-leg i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 5px; }

/* überlappendes Handy mit Fahrer-App */
.ld-phone {
  position: absolute; left: -34px; bottom: -28px; width: 152px; z-index: 3;
  background: #0c1326; border-radius: 22px; padding: 7px;
  box-shadow: 0 22px 50px rgba(5,12,30,.55); border: 1px solid rgba(255,255,255,.08);
}
.ld-phone-screen { background: linear-gradient(165deg,#13346b,#0e1e3d); border-radius: 16px;
  padding: 13px 12px 14px; overflow: hidden; }
.ld-phone-greet { color: #cfe0ff; font-size: 10.5px; font-weight: 600; }
.ld-phone-name { color: #fff; font-size: 13px; font-weight: 800; margin: 1px 0 11px; }
.ld-phone-tile { background: rgba(0,179,126,.16); border: 1px solid rgba(0,179,126,.4); border-radius: 11px;
  padding: 9px 10px; }
.ld-phone-tile .pt-l { color: #8ef0cf; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.ld-phone-tile .pt-v { color: #fff; font-size: 20px; font-weight: 800; line-height: 1.1; }
.ld-phone-tile .pt-s { color: #b9f3e0; font-size: 9px; }
.ld-phone-langs { display: flex; gap: 4px; margin-top: 10px; }
.ld-phone-langs span { font-size: 8.5px; font-weight: 700; color: #9db2d8; background: rgba(255,255,255,.08);
  border-radius: 5px; padding: 3px 6px; }
.ld-phone-langs span.on { background: #fff; color: var(--ink); }

@media (max-width: 940px) {
  .ld-hero-in { grid-template-columns: 1fr; gap: 56px; padding: 44px 18px 64px; }
  .ld-hero h1 { font-size: 38px; }
  .ld-hero .ld-sub { font-size: 17px; }
  .ld-mock-wrap { max-width: 460px; margin: 0 auto; }
  .ld-browser { transform: none; }
}
@media (max-width: 430px) {
  .ld-hero h1 { font-size: 30px; }
  .ld-hero-in { padding: 32px 14px 56px; }
  .ld-mock-wrap { max-width: 100%; }
  /* Handy mobil kompakt + an den linken Rand, damit weniger von der
     Fahrertabelle verdeckt wird; Überlappung bleibt erhalten. */
  .ld-phone { width: 112px; left: -8px; bottom: -22px; }
  .ld-phone-name { font-size: 12px; }
  .ld-phone-tile .pt-v { font-size: 18px; }
  .ld-browser-url { max-width: 150px; }
  /* Statt Namen/Avatare mitten im Zeichen hart unter dem Handy abzuschneiden:
     die überlappte Ecke der Fahrertabelle sanft auf Kartenweiß ausblenden,
     damit es wie ein bewusster Übergang statt einem Rendering-Fehler wirkt. */
  .ld-mock-card::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 108px; height: 68px;
    background: linear-gradient(115deg, rgba(255,255,255,0) 38%, rgba(255,255,255,.82) 60%, #fff 76%);
    pointer-events: none; z-index: 2;
  }
}

/* ============================================================================
   3. TRUST-/SUBSTANZ-LEISTE
   ========================================================================== */
.ld-trustbar { background: #fff; border-bottom: 1px solid var(--line-soft); }
.ld-trustbar-in { max-width: 1180px; margin: 0 auto; padding: 20px 18px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px; }
.ld-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--ink); background: var(--bg); border: 1px solid var(--line-soft);
  padding: 8px 14px; border-radius: 999px;
}
.ld-chip svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.ld-chip.ld-chip-de svg { color: var(--ok); }

/* Produkt-Demo-Video – Breite 800px (Design-Panel-Konsens: Zielkorridor 720–860,
   IST-480 wirkte als verlorene Insel schmaler als die Überschrift, ab 1000 zu
   dominant). 800px trägt genug Gewicht, dass die App-Screencast-Details lesbar
   sind, behält aber sichtbare Weißraum-Ränder. Eyebrow+Titel darüber binden den
   Kasten in die Hierarchie ein. */
.ld-video-h2 { margin-bottom: 30px; }
.ld-video-wrap { position: relative; max-width: 800px; margin: 0 auto; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(14,30,61,.35), 0 8px 24px -12px rgba(14,30,61,.14);
  border: 1px solid var(--line-soft); background: #000; }
.ld-video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }

/* Klick-zum-Abspielen-Overlay: Das Video hat eine Musik-Tonspur, Browser
   blockieren aber Autoplay MIT Ton. Statt stumm abzuspielen, startet der Nutzer
   es bewusst per Klick – dann läuft es von Anfang an mit Ton. Der Overlay-Button
   deckt die gesamte Videofläche ab (ein Klick irgendwo startet, für Laien
   intuitiv). Nach dem Start (Klasse .is-playing) verschwindet er, die nativen
   Steuerelemente bleiben nutzbar. */
.ld-video-play { position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; cursor: pointer; color: #fff; background: rgba(14,30,61,.34);
  transition: background .18s ease; }
.ld-video-play:hover { background: rgba(14,30,61,.46); }
.ld-video-play:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }
.ld-video-play-ico { width: clamp(62px, 13vw, 84px); height: clamp(62px, 13vw, 84px);
  border-radius: 999px; background: var(--accent); display: flex; align-items: center;
  justify-content: center; flex: none; box-shadow: 0 14px 32px -8px rgba(14,30,61,.55);
  transition: transform .18s ease; }
.ld-video-play:hover .ld-video-play-ico { transform: scale(1.07); }
.ld-video-play-ico svg { width: clamp(28px, 6vw, 38px); height: clamp(28px, 6vw, 38px);
  margin-left: 5px; color: #fff; }
.ld-video-play-label { font-size: clamp(15px, 3.4vw, 18px); font-weight: 700;
  letter-spacing: -.01em; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.ld-video-wrap.is-playing .ld-video-play { display: none; }

/* ============================================================================
   Generische Sektion + Tachostreifen-Trenner
   ========================================================================== */
.ld-sec { max-width: 1100px; margin: 0 auto; padding: 78px 18px; }
.ld-sec-tight { padding-top: 56px; padding-bottom: 56px; }
.ld-band { background: #fff; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.ld-eyebrow-c { display: block; text-align: center; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; color: var(--accent); margin-bottom: 12px; }
.ld-h2 { text-align: center; font-size: 34px; line-height: 1.14; font-weight: 800;
  letter-spacing: -.02em; color: var(--ink); margin: 0 auto 14px; max-width: 760px; }
.ld-lead { text-align: center; color: var(--muted); max-width: 660px; margin: 0 auto 48px;
  font-size: 17.5px; line-height: 1.6; }

/* Tachostreifen-Section-Trenner (volle Breite, dünn) */
.ld-divider { position: relative; height: 5px; width: 100%;
  background: repeating-linear-gradient(90deg,
    var(--drive) 0 40px, var(--work) 40px 54px, var(--rest) 54px 96px,
    var(--avail) 96px 110px, var(--drive) 110px 160px, var(--rest) 160px 174px);
  background-size: 174px 100%; opacity: .9; }

/* ============================================================================
   4. „KENNEN SIE DAS?" – Schmerz-Spiegelung
   ========================================================================== */
.ld-pain { background:
    radial-gradient(700px 360px at 50% -20%, rgba(229,72,77,.06), transparent 70%), var(--bg); }
.ld-pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ld-pain-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 22px 20px; box-shadow: var(--shadow); position: relative; }
.ld-pain-card .pc-ico { width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 14px;
  background: #fef0f0; color: var(--crit); }
.ld-pain-card .pc-ico svg { width: 22px; height: 22px; }
.ld-pain-card h3 { font-size: 16px; margin: 0 0 7px; color: var(--ink); font-weight: 700; }
.ld-pain-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted); }
@media (max-width: 860px) { .ld-pain-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 460px) { .ld-pain-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   5. FUNKTIONEN – alternierende Story-Blöcke
   ========================================================================== */
.ld-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 56px 0; }
.ld-feature + .ld-feature { border-top: 1px solid var(--line-soft); }
.ld-feature.rev .ld-feat-copy { order: 2; }
.ld-feature.rev .ld-feat-visual { order: 1; }
.ld-feat-copy { max-width: 480px; }
.ld-feat-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: #1551b5;
  background: var(--accent-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.ld-feat-copy h3 { font-size: 27px; line-height: 1.2; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); margin: 0 0 12px; }
.ld-feat-copy p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.ld-feat-list { list-style: none; padding: 0; margin: 0; }
.ld-feat-list li { position: relative; padding: 5px 0 5px 28px; font-size: 14.5px; color: var(--ink); }
.ld-feat-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  background: var(--accent-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F6FEB' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px; }

/* Dezenter rechtlicher Hinweis am Seitenende */
.ld-disclaimer { max-width: 860px; margin: 0 auto; font-size: 12.5px; line-height: 1.7;
  color: var(--muted); text-align: center; }

/* Nachweis-Kachelgrid (Belehrung, Unterweisung, Führerschein, Abfahrt, Live, DSGVO) */
.ld-nachweis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ld-nw-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  padding: 22px 20px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.ld-nw-card .nw-ico { font-size: 26px; line-height: 1; margin-bottom: 12px; }
.ld-nw-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; margin: 0 0 8px; color: var(--ink); }
.ld-nw-card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0 0 14px; flex: 1; }
.ld-nw-card .nw-law { font-size: 11.5px; font-weight: 700; color: var(--accent);
  background: var(--accent-soft); border-radius: 6px; padding: 5px 9px; align-self: flex-start; }
@media (max-width: 860px) { .ld-nachweis-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ld-nachweis-grid { grid-template-columns: 1fr; } }

/* Fuhrpark-Mix-Rechner. Zwei Auswahlfelder, drei Pflicht-Kacheln, ein Begründungstext.
   Die Kachelfarben folgen der Produktsemantik: Grün = Pflicht greift (--ok), Grau =
   nicht erfasst, Gelb = zu klären (--warn). Bewusst KEIN Rot: „Pflicht ja" ist kein
   Alarm, sondern eine Auskunft. */
.ld-rechner { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px;
  box-shadow: var(--shadow-soft); padding: 22px; margin-top: 8px; }
.ld-rechner-wahl { display: flex; gap: 16px; flex-wrap: wrap; }
.ld-rechner-wahl label { display: flex; flex-direction: column; gap: 6px; flex: 1 1 240px;
  font-size: 13px; font-weight: 700; color: var(--ink); }
.ld-rechner-wahl select { font-size: 15px; padding: 11px 12px; border-radius: 10px;
  border: 1px solid var(--line-soft); background: #fff; color: var(--ink); width: 100%; }
.ld-pflicht-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 20px; }
.ld-pf { display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  border-radius: 14px; padding: 16px; border: 1.5px solid var(--line-soft);
  background: var(--surface-2, #f6f8fc); transition: border-color .2s, background .2s; }
.ld-pf .pf-ico { font-size: 22px; line-height: 1; }
.ld-pf .pf-lbl { font-size: 13px; font-weight: 700; color: var(--muted); }
.ld-pf .pf-wert { font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.ld-pf.pf-ja { border-color: var(--ok); background: color-mix(in srgb, var(--ok) 10%, #fff); }
.ld-pf.pf-ja .pf-wert { color: var(--ok-ink, #05603a); }
.ld-pf.pf-nein { border-color: var(--line-soft); }
.ld-pf.pf-nein .pf-wert { color: var(--muted); }
.ld-pf.pf-unklar { border-color: var(--warn); background: color-mix(in srgb, var(--warn) 12%, #fff); }
.ld-pf.pf-unklar .pf-wert { color: var(--warn-ink, #92400e); }
.ld-rechner-grund { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 16px 0 0; }
.ld-rechner-grund strong { color: var(--ink); }
.ld-rechner-fuss { font-size: 12px; color: var(--muted); margin: 12px 0 0; }
.ld-h3 { font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); margin: 0 0 16px; }
@media (max-width: 560px) { .ld-pflicht-karten { grid-template-columns: 1fr; } }

/* Visual-Karte je Feature */
.ld-feat-visual { display: flex; align-items: center; justify-content: center; }
.ld-vcard { width: 100%; background: #fff; border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 22px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.ld-vcard.ld-vcard-dark { background: linear-gradient(160deg, var(--hero-1), var(--hero-2)); border: none; color: #fff; }

/* Visual A: EU-561-Auswertung – Tachostreifen + Status */
.ld-tacho-strip { height: 30px; border-radius: 7px; overflow: hidden; display: flex; border: 1px solid var(--line-soft); margin: 12px 0; }
.ld-tacho-strip span { height: 100%; }
.ld-ts-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 11px; color: var(--muted); }
.ld-ts-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; vertical-align: middle; }
.ld-eval-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 13.5px; }
.ld-eval-row + .ld-eval-row { border-top: 1px solid var(--line-soft); }
.ld-eval-row .lbl { color: var(--muted); }
.ld-eval-row .val { font-weight: 700; color: var(--ink); }

/* Visual B: Verstoß mit Schweregrad */
.ld-viol { border-left: 4px solid var(--crit); background: #fef2f2; border-radius: 0 10px 10px 0;
  padding: 12px 14px; margin-bottom: 10px; }
.ld-viol.serious { border-left-color: #c2410c; background: #fff7ed; }
.ld-viol.minor { border-left-color: var(--warn); background: #fffbeb; }
.ld-viol .v-h { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.ld-viol .v-t { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.ld-viol .v-d { font-size: 12px; color: var(--muted); }
.ld-sev { font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; }
.ld-sev.vs { background: #fcdcdd; color: #9b1c1f; }
.ld-sev.s { background: #ffe0cc; color: #9a3412; }
.ld-sev.m { background: #fdebcd; color: #8a4b00; }

/* Visual C: Fristen-Ampel */
.ld-deadline { display: flex; align-items: center; gap: 12px; padding: 11px 0; }
.ld-deadline + .ld-deadline { border-top: 1px solid var(--line-soft); }
.ld-dl-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.ld-dl-name { font-size: 13.5px; font-weight: 600; color: var(--ink); flex: 1; }
.ld-dl-days { font-size: 13px; font-weight: 700; }
.ld-dl-meter { height: 7px; border-radius: 4px; background: #eef2f7; overflow: hidden; margin-top: 3px; }
.ld-dl-meter span { display: block; height: 100%; }

/* Visual D: GPS-Route (CSS-Karte) */
.ld-map { position: relative; height: 200px; border-radius: 12px; overflow: hidden;
  background:
    linear-gradient(rgba(203,213,225,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203,213,225,.5) 1px, transparent 1px),
    linear-gradient(160deg, #eaf1fb, #dde8f7);
  background-size: 26px 26px, 26px 26px, 100% 100%; border: 1px solid var(--line-soft); }
/* Die Grundform von .pr-gratis steht in style.css — die Tarifseite lädt dieses
   Landing-CSS nicht. Hier nur die Variante für die dunkle "pop"-Karte: Das Statusgrün
   auf Navy braucht mehr Deckung und einen helleren Ton, sonst verschwindet der
   stärkste Kaufanreiz ausgerechnet im hervorgehobenen Tarif. */
.ld-price.pop .pr-gratis { background: rgba(78, 217, 172, .18); color: #4ED9AC; }

.ld-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Echtes Kartenbild (OpenStreetMap, gerendert von scripts/demo_karte.py) — kein
   eingebetteter Kartendienst: Es lädt beim Besucher nichts von Dritten. */
.ld-map img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; }
/* Attribution als HTML, NICHT nur im Bild: `object-fit: cover` beschneidet den unteren
   Bildrand — die eingebrannte Namensnennung wäre unsichtbar. Bei OSM-Material (ODbL)
   ist sie Pflicht, also muss sie beschnittfest im Vordergrund liegen. */
.ld-map-attr { position: absolute; right: 6px; bottom: 5px; z-index: 2;
  background: rgba(255, 255, 255, .92); border-radius: 5px; padding: 2px 6px;
  font-size: 9.5px; line-height: 1.4; color: var(--muted); }
.ld-map-attr a { color: inherit; text-decoration: underline; }
.ld-map .ld-pin { position: absolute; width: 14px; height: 14px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,.25); }
.ld-map-chip { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.95);
  border-radius: 8px; padding: 5px 9px; font-size: 11px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow); display: flex; gap: 6px; align-items: center; }
.ld-map-chip svg { position: static; width: 12px; height: 12px; color: var(--accent); }

@media (max-width: 860px) {
  .ld-feature { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .ld-feature.rev .ld-feat-copy { order: 1; }
  .ld-feature.rev .ld-feat-visual { order: 2; }
  .ld-feat-copy h3 { font-size: 23px; }
}

/* ============================================================================
   6. SUBSTANZ-BEWEIS „Wir rechnen nach dem Gesetz" (Navy-Karte)
   ========================================================================== */
.ld-proof { position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, var(--hero-1), var(--hero-2)); border-radius: 24px;
  padding: 52px 48px; }
.ld-proof::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  border-radius: 50%; background: radial-gradient(circle, rgba(31,111,235,.30), transparent 70%); }
.ld-proof-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ld-proof h2 { font-size: 30px; line-height: 1.18; font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; color: #fff; }
.ld-proof .pf-eyebrow { color: #6FA8FF; font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; display: block; margin-bottom: 12px; }
.ld-proof p { color: #C4D2EE; font-size: 16px; line-height: 1.62; margin: 0 0 16px; }
.ld-proof .pf-regs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.ld-proof .pf-regs span { font-size: 12px; font-weight: 700; color: #BFD4FF;
  background: rgba(31,111,235,.18); border: 1px solid rgba(120,170,255,.35);
  padding: 5px 12px; border-radius: 999px; }
.ld-edgecase { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ld-edgecase li { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 14px 16px; display: flex; gap: 12px; align-items: flex-start; }
.ld-edgecase .ec-ico { width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: rgba(0,179,126,.18); color: #4ED9AC; display: flex; align-items: center; justify-content: center; }
.ld-edgecase .ec-ico svg { width: 17px; height: 17px; }
.ld-edgecase .ec-t { color: #fff; font-weight: 700; font-size: 14.5px; display: block; margin-bottom: 2px; }
.ld-edgecase .ec-d { color: #A9BBDD; font-size: 12.5px; line-height: 1.5; }
@media (max-width: 860px) {
  .ld-proof { padding: 34px 22px; border-radius: 18px; }
  .ld-proof-in { grid-template-columns: 1fr; gap: 28px; }
  .ld-proof h2 { font-size: 25px; }
}

/* ============================================================================
   7. 3 SCHRITTE
   ========================================================================== */
.ld-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.ld-step { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 28px 24px;
  box-shadow: var(--shadow); position: relative; }
.ld-step .st-n { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); color: #fff;
  font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ld-step h3 { font-size: 18px; margin: 0 0 8px; color: var(--ink); font-weight: 700; }
.ld-step p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.ld-step .st-strip { position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 3px 3px;
  background: repeating-linear-gradient(90deg, var(--drive) 0 14px, var(--work) 14px 20px, var(--rest) 20px 34px, var(--avail) 34px 40px); background-size: 40px 100%; }
@media (max-width: 760px) { .ld-steps { grid-template-columns: 1fr; gap: 14px; } }

/* ============================================================================
   8. FAHRER-APP (eigenes Produkt)
   ========================================================================== */
.ld-driverapp { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.ld-da-phone-wrap { display: flex; justify-content: center; position: relative; }
.ld-da-phone { width: 248px; background: #0c1326; border-radius: 32px; padding: 10px;
  box-shadow: 0 26px 60px rgba(5,12,30,.30); border: 1px solid rgba(14,30,61,.12); }
.ld-da-screen { background: linear-gradient(170deg, #f6f8fb, #eaf1fb); border-radius: 24px; padding: 18px 16px 20px;
  overflow: hidden; }
.ld-da-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ld-da-greet { font-size: 12px; color: var(--muted); }
.ld-da-greet b { display: block; font-size: 16px; color: var(--ink); }
/* Sprachwahl — im Mockup UND als Chips daneben. Beide schalten dasselbe um; welchen
   der Besucher trifft, ist ihm überlassen (der Mockup-Knopf ist der, den er sieht,
   der Chip der, den der Daumen trifft). Buttons erben Schrift nicht — font: inherit. */
.ld-da-langs { display: flex; gap: 3px; }
.ld-da-langs button { font: inherit; font-size: 9px; font-weight: 800; color: var(--muted);
  background: #fff; border: 1px solid var(--line-soft); border-radius: 6px; padding: 3px 6px;
  cursor: pointer; line-height: 1.35; transition: background .12s, color .12s, border-color .12s; }
.ld-da-langs button:hover { border-color: var(--accent); color: var(--accent); }
/* Optisch 26×20 px (es ist ein Handy im Maßstab, die Knöpfe darin gehören klein) —
   für den Daumen zu wenig. Das Ziel wächst deshalb nach oben und unten, wo kein
   Nachbar steht; seitlich ginge es nicht, dort läge man auf der Nachbarsprache. */
.ld-da-langs button { position: relative; }
.ld-da-langs button::after { content: ''; position: absolute; inset: -9px 0; }
.ld-da-langs button.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.ld-da-langs button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.ld-da-tile { border-radius: 16px; padding: 15px 16px; color: #fff; margin-bottom: 11px;
  background: linear-gradient(135deg, #16a34a, #15803d); box-shadow: 0 8px 20px rgba(22,163,74,.22); }
.ld-da-tile .t-l { font-size: 11px; opacity: .92; }
.ld-da-tile .t-v { font-size: 30px; font-weight: 800; line-height: 1.1; margin: 4px 0; }
/* Zwei Zeilen sind reserviert, auch wenn die Sprache nur eine braucht: „next break due
   in 2:10 h" ist einzeilig, „următoarea pauză cel târziu în 2:10 h" nicht. Ohne die
   Reserve wächst das Handy beim Sprachwechsel um 14 px und die Seite ruckt unter dem
   Finger, der gerade getippt hat. */
.ld-da-tile .t-s { font-size: 11px; opacity: .9; min-height: 2.55em; }
.ld-da-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ld-da-mini .m { background: #fff; border: 1px solid var(--line-soft); border-radius: 13px; padding: 11px 12px; }
/* Ebenso: „Săptămâna aceasta" bricht um, „Diese Woche" nicht. */
.ld-da-mini .m .ml { font-size: 10px; color: var(--muted); min-height: 2.4em; }
.ld-da-mini .m .mv { font-size: 17px; font-weight: 800; color: var(--ink); }
/* Die Woche scrollt im Handy — vier Zeilen sichtbar, die fünfte angeschnitten.
   `overscroll-behavior: contain` ist hier bewusst NICHT gesetzt: Wer auf dem Handy
   über der Liste wischt, will meistens die Seite weiterlesen, nicht den Verlauf. Mit
   Chaining rollt die Seite weiter, sobald die Liste zu Ende ist — ohne bliebe der
   Daumen in einem 130-px-Kasten hängen. */
.ld-da-list { margin-top: 11px; background: #fff; border: 1px solid var(--line-soft); border-radius: 13px; padding: 4px 12px;
  max-height: 148px; overflow-y: auto; scrollbar-width: thin;
  scrollbar-color: var(--line) transparent; }
.ld-da-list::-webkit-scrollbar { width: 4px; }
.ld-da-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.ld-da-list::-webkit-scrollbar-track { background: transparent; }
.ld-da-list:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.ld-da-list .li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 11.5px; }
.ld-da-list .li + .li { border-top: 1px solid var(--line-soft); }
.ld-da-copy h2 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin: 0 0 14px; line-height: 1.18; }
.ld-da-copy p { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.ld-langchips { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 20px; }
.ld-langchips button { font: inherit; font-size: 13px; font-weight: 700; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 7px 14px; display: inline-flex; gap: 7px;
  align-items: center; min-height: 40px; cursor: pointer;
  transition: border-color .12s, background .12s; }
.ld-langchips button b { color: var(--accent); }
.ld-langchips button:hover { border-color: var(--accent); }
.ld-langchips button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
/* Der aktive Chip wechselt NICHT die Schriftstärke — er ist schon 700. Ein Wechsel
   auf 800 verbreiterte den Chip, und die ganze Zeile ruckte beim Umschalten. */
.ld-langchips button.on { border-color: var(--accent); background: var(--accent-soft); }
@media (max-width: 860px) {
  .ld-driverapp { grid-template-columns: 1fr; gap: 32px; }
  .ld-da-copy { order: 2; }
  .ld-da-phone-wrap { order: 1; }
  .ld-da-copy h2 { font-size: 25px; }
}

/* ============================================================================
   9. SOCIAL PROOF / PILOT-FRAMING
   ========================================================================== */
.ld-pilot { background: linear-gradient(180deg, #fff, var(--accent-soft)); border: 1px solid var(--line-soft);
  border-radius: 22px; padding: 40px 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.ld-pilot .pi-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--accent);
  color: var(--accent-dk); font-size: 12px; font-weight: 800; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .03em; }
.ld-pilot h2 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin: 0 0 12px; line-height: 1.2; }
.ld-pilot p { font-size: 15.5px; color: var(--muted); line-height: 1.6; margin: 0 0 8px; }
.ld-founder { display: flex; align-items: center; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.ld-founder .fo-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #15803d);
  color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; flex: none; }
.ld-founder .fo-n { font-weight: 700; color: var(--ink); font-size: 15px; }
.ld-founder .fo-r { font-size: 13px; color: var(--muted); }
.ld-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ld-facts li { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 13px 15px; }
.ld-facts .fa-ico { width: 30px; height: 30px; border-radius: 8px; flex: none; background: var(--accent-soft);
  color: var(--accent); display: flex; align-items: center; justify-content: center; }
.ld-facts .fa-ico svg { width: 16px; height: 16px; }
.ld-facts .fa-t { font-weight: 700; color: var(--ink); font-size: 14px; }
.ld-facts .fa-d { font-size: 12.5px; color: var(--muted); }
@media (max-width: 860px) { .ld-pilot { grid-template-columns: 1fr; gap: 26px; padding: 30px 22px; }
  .ld-pilot h2 { font-size: 23px; } }

/* ============================================================================
   10. PREISE
   ========================================================================== */
.ld-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.ld-price { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px;
  display: flex; flex-direction: column; box-shadow: var(--shadow); }
.ld-price h3 { font-size: 19px; margin: 0 0 4px; color: var(--ink); font-weight: 700; }
.ld-price .pr-limit { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.ld-price .pr-amount { font-size: 40px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.ld-price .pr-amount small { font-size: 15px; font-weight: 600; color: var(--muted); }
.ld-price .pr-year { color: var(--muted); font-size: 13px; margin-top: 6px; }
.ld-price ul { list-style: none; padding: 0; margin: 20px 0 22px; flex: 1; }
.ld-price li { position: relative; padding: 7px 0 7px 26px; font-size: 14px; color: var(--ink); }
.ld-price li::before { content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px;
  background: var(--accent-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F6FEB' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px; }
/* Professional = dominante inverse Navy-Karte */
.ld-price.pop { background: linear-gradient(165deg, var(--hero-1), var(--hero-2)); border: none; color: #fff;
  box-shadow: 0 24px 54px rgba(14,30,61,.32); transform: translateY(-10px); position: relative; z-index: 2; }
.ld-price.pop h3 { color: #fff; }
.ld-price.pop .pr-limit { color: #9DB2D8; }
.ld-price.pop .pr-amount { color: #fff; }
.ld-price.pop .pr-amount small { color: #9DB2D8; }
.ld-price.pop .pr-year { color: #9DB2D8; }
.ld-price.pop li { color: #DCE6F8; }
.ld-price.pop li::before { background: rgba(0,179,126,.22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ED9AC' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px; }
.ld-price.pop .pr-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #00875f; color: #fff; font-size: 11.5px; font-weight: 800; padding: 5px 16px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; box-shadow: 0 6px 16px rgba(0,135,95,.3); }
.ld-price .pr-cta { margin-top: auto; text-align: center; }
.ld-pricing-foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 26px; }
@media (max-width: 900px) {
  .ld-pricing { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin: 0 auto; }
  .ld-price.pop { transform: none; order: -1; }
}

/* ============================================================================
   11. FAQ (reines <details>-Akkordeon)
   ========================================================================== */
.ld-faq { max-width: 760px; margin: 0 auto; }
.ld-faq details { background: #fff; border: 1px solid var(--line-soft); border-radius: 14px;
  margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
.ld-faq details[open] { border-color: #cfe0fb; }
.ld-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-size: 16px; font-weight: 700;
  color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ld-faq summary::-webkit-details-marker { display: none; }
.ld-faq summary::after { content: ""; flex: none; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F6FEB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; transition: transform .2s ease; }
.ld-faq details[open] summary::after { transform: rotate(180deg); }
.ld-faq .faq-a { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.62; color: var(--muted); margin: 0; }
.ld-faq .faq-a strong { color: var(--ink); }

/* ============================================================================
   12. ABSCHLUSS-CTA (Navy)
   ========================================================================== */
.ld-finalcta { position: relative; overflow: hidden; color: #fff; text-align: center;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(31,111,235,.30), transparent 65%),
    linear-gradient(160deg, var(--hero-1), var(--hero-2)); }
.ld-finalcta::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: repeating-linear-gradient(90deg, var(--drive) 0 40px, var(--work) 40px 54px, var(--rest) 54px 96px, var(--avail) 96px 110px); background-size: 110px 100%; opacity: .8; }
.ld-finalcta-in { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 76px 18px 84px; }
.ld-finalcta h2 { font-size: 36px; font-weight: 800; letter-spacing: -.02em; color: #fff; margin: 0 0 14px; line-height: 1.16; }
.ld-finalcta p { font-size: 17.5px; color: #C4D2EE; margin: 0 0 28px; line-height: 1.55; }
.ld-finalcta .ld-cta-row { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.ld-finalcta .ld-microtrust { justify-content: center; margin-top: 24px; }
@media (max-width: 560px) { .ld-finalcta h2 { font-size: 28px; } .ld-finalcta-in { padding: 56px 16px 64px; } }

/* gemeinsame Mobile-Feinheiten */
@media (max-width: 720px) {
  .ld-sec { padding: 56px 16px; }
  .ld-h2 { font-size: 27px; }
  .ld-lead { font-size: 16px; margin-bottom: 34px; }
}

/* --- Fahrer-App: drei echte Screens im Handy-Rahmen -----------------------
   Echte Screenshots, keine Illustration und kein Stock-Foto. Der mittlere steht
   leicht erhöht — das Auge braucht einen Anker, sonst zerfällt die Reihe in drei
   gleichgültige Bilder. */
.ld-app-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: start; margin-top: 34px; }
.ld-phone-shot { margin: 0; text-align: center; }
/* Der Rahmen sitzt am Container, nicht mehr am Bild: Das Bild ist die GANZE Seite
   (bis 5400 px lang) und rollt darin wie auf einem echten Handy. Läge der Rahmen am
   Bild, rollte der Rahmen mit. `aspect-ratio` hält das Handy-Format unabhängig davon,
   wie lang die fotografierte Seite gerade ist. */
.ld-phone-frame { width: 100%; max-width: 260px; margin: 0 auto; aspect-ratio: 390 / 844;
  border-radius: 26px; border: 8px solid #0f172a; background: #0f172a;
  box-shadow: 0 22px 50px rgba(15, 23, 42, .28); overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.35) transparent; }
.ld-phone-frame::-webkit-scrollbar { width: 4px; }
.ld-phone-frame::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 4px; }
.ld-phone-frame::-webkit-scrollbar-track { background: transparent; }
.ld-phone-frame:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.ld-phone-shot img { width: 100%; height: auto; display: block; }
.ld-phone-mid .ld-phone-frame { max-width: 280px; }
.ld-phone-mid { transform: translateY(-16px); }
.ld-phone-shot figcaption { margin-top: 18px; font-size: 14px; line-height: 1.6;
  color: var(--ld-muted, #475569); max-width: 30ch; margin-inline: auto; }
.ld-phone-shot figcaption strong { display: block; font-size: 16px; color: #0f172a;
  margin-bottom: 5px; }
.ld-shot-law { display: block; margin-top: 7px; font-size: 12px; color: #64748b; }
/* Der Hinweis muss auffallen, sonst probiert es niemand — als grauer 13-px-Satz ging er
   zwischen Fließtext unter. Er wird deshalb zum Chip: größer, fett, Signal-Blau, mit
   Fläche und Pfeil. NICHT rot: Rot heißt in diesem Produkt „Verstoß" (Grün konform, Gelb
   Frist naht), und direkt daneben stehen Screenshots voller Ampelfarben — ein roter
   Bedienhinweis läse sich eine Sekunde lang als Problem. Auffälligkeit kommt hier aus
   Größe, Gewicht und Fläche, nicht aus einer belegten Farbe. */
.ld-shots-hint { margin: 22px auto 0; width: fit-content; max-width: 100%;
  display: flex; align-items: center; gap: 10px; text-align: left;
  font-size: 16px; line-height: 1.45; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); border: 1px solid rgba(31, 111, 235, .32);
  border-radius: 14px; padding: 11px 18px; }
.ld-shots-hint strong { font-weight: 800; }
.ld-hint-icon { flex: none; font-size: 19px; line-height: 1; font-weight: 700; }
@media (max-width: 560px) { .ld-shots-hint { font-size: 15px; padding: 10px 14px; } }
.ld-app-note { margin-top: 34px; text-align: center; font-size: 14px; color: #475569; }

@media (max-width: 900px) {
  .ld-app-shots { grid-template-columns: 1fr; gap: 44px; }
  .ld-phone-mid { transform: none; }
  .ld-phone-frame, .ld-phone-mid .ld-phone-frame { max-width: 300px; }
}

/* Der Preis und seine Einheit gehoeren zusammen — ohne nowrap rutscht „/ Monat" auf
   eine eigene Zeile, sobald der Streichpreis daneben Platz frisst. */
.pr-now { white-space: nowrap; }
.ld-price .pr-year strong { color: var(--ink); font-weight: 700; }
/* Die hervorgehobene Karte ist dunkel — dort erbt <strong> sonst die dunkle Textfarbe
   und der Jahrespreis verschwindet auf dem Hintergrund. */
.ld-price.pop .pr-year strong { color: #fff; }
.ld-price.pop .price-alt { color: #7f93b8; }

/* === Zubehör / Kartenleser-Empfehlung (Abschnitt 11b) =====================
   Baut auf denselben Tokens auf wie die Nachweis-Karten; eigenes Präfix, weil die
   Karte einen externen Link + Preisklasse trägt statt einer Rechtsgrundlage. */
.ld-rd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
  gap: 18px; justify-content: center; }
.ld-rd-card { background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 24px 22px; display: flex;
  flex-direction: column; box-shadow: var(--shadow); }
.ld-rd-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ld-rd-ico svg { width: 26px; height: 26px; color: var(--accent); }
.ld-rd-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .02em; color: var(--accent);
  background: var(--accent-soft); border-radius: 999px; padding: 4px 11px;
  align-self: flex-start; margin-bottom: 12px; }
.ld-rd-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -.01em;
  margin: 0 0 9px; color: var(--ink); }
.ld-rd-card p { font-size: 14px; line-height: 1.58; color: var(--muted); margin: 0 0 14px; flex: 1; }
.ld-rd-price { font-size: 12.5px; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
.ld-rd-price span { color: var(--muted); font-weight: 600; }
.ld-rd-btn { display: inline-flex; align-items: center; gap: 7px; justify-content: center;
  background: transparent; color: var(--accent); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 16px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: .15s; }
.ld-rd-btn:hover { background: var(--accent-soft); border-color: var(--accent); }
.ld-rd-btn svg { width: 15px; height: 15px; }
.ld-rd-foot { max-width: 820px; margin: 30px auto 0; text-align: center;
  font-size: 12.5px; line-height: 1.6; color: var(--muted); }
.ld-rd-foot strong { color: var(--ink); }

@media (max-width: 760px) {
  .ld-rd-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
   Beispiel-Report (Schnellcheck): Vorschauseiten des Muster-PDFs.
   Bewusst über die Tokens (--line-soft, --ink) statt neuer Hex-Literale.
   Die Bilder erzeugt scripts/demo_report.py aus schnellcheck/demo.py — erfundene Daten.
--------------------------------------------------------------------------- */
.ld-demo { display: flex; gap: 22px; justify-content: center; align-items: flex-start;
  flex-wrap: wrap; margin: 24px 0 20px; }
.ld-demo-doc { display: block; width: 300px; max-width: 100%; background: #fff;
  border: 1px solid var(--line-soft); border-radius: 10px; overflow: hidden;
  box-shadow: 0 14px 40px rgba(14, 30, 61, .14);
  transition: transform .18s ease, box-shadow .18s ease; }
.ld-demo-doc:hover, .ld-demo-doc:focus-visible {
  transform: translateY(-4px); box-shadow: 0 20px 52px rgba(14, 30, 61, .22); }
.ld-demo-doc img { display: block; width: 100%; height: auto; }
.ld-demo-cap { text-align: center; color: var(--muted); font-size: 13px; margin: 0 0 6px; }
