/* =============================================================================
   TAXI WAHEED ZWICKAU — Verbesserungen
   Additive Overrides. Gleicher Look, gezielte Verbesserungen:
   Barrierefreiheit (Kontraste + Fokus), Lesbarkeit, echte Tarif-Beispielrechnung.
   Wird NACH design-system.css geladen.
   ============================================================================= */

/* === 1. BARRIEREFREIHEIT — deutliche Tastatur-Fokus-Markierung (BFSG) ====== */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--tw-yellow);
  outline-offset: 2px;
  border-radius: 6px;
}
/* Auf dunklen Flächen: heller Ring für genug Kontrast */
.hero-pro a:focus-visible,
.section-pro-dark a:focus-visible,
.stats-strip a:focus-visible,
.site-footer a:focus-visible {
  outline-color: #FFD54F;
}

/* === 2. LESBARKEIT — Sekundärtexte auf WCAG-AA-Niveau anheben =============== */
/* (vorher teils rgba(255,255,255,.45–.55) bzw. #B5B5BC ≈ unter 4.5:1) */
.hero-pro .hero-meta { color: rgba(255,255,255,.82); }
.hero-pro .sub { color: rgba(255,255,255,.92); }
.stats-strip .stat-label { color: #D2D2D8; }
.stats-strip .stat-num .unit { color: #D2D2D8; -webkit-text-fill-color: #D2D2D8; }
.section-pro-dark .muted,
.section-pro-dark .body-l { color: #CFCFD6; }
.site-footer { color: #C2C2C9; }

/* Mindestkontrast für sehr helle Hilfstexte auf Papier */
.caption, .body-sm.muted, .muted { color: var(--tw-gray-700); }

/* === 3. ECHTE TARIF-BEISPIELRECHNUNG (ersetzt den Code-Block) =============== */
.calc-breakdown {
  background: #0B0B0F;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--tw-radius-lg);
  padding: var(--tw-space-6) var(--tw-space-8);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.calc-breakdown .cb-head {
  font-family: var(--tw-font-mono);
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tw-yellow);
  margin-bottom: var(--tw-space-5);
}
.calc-breakdown .cb-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--tw-space-4);
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  font-family: var(--tw-font-mono);
}
.calc-breakdown .cb-row .desc { color: rgba(255,255,255,.66); font-size: .9375rem; }
.calc-breakdown .cb-row .amt { color: #fff; font-variant-numeric: tabular-nums; }
.calc-breakdown .cb-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--tw-space-4);
  margin-top: var(--tw-space-5);
  padding-top: var(--tw-space-4);
}
.calc-breakdown .cb-total .lbl { font-weight: 700; font-size: 1.125rem; color: #fff; }
.calc-breakdown .cb-total .sum {
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--tw-yellow);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* === 4. MIKRO-POLITUR ====================================================== */
/* Konsistentere, ruhigere Hover-Bewegung auf Kacheln */
.feature-tile { transition: transform .25s var(--tw-ease-out), box-shadow .25s var(--tw-ease-out), border-color .2s ease; }

/* Tabellen-Zebra für bessere Zeilenführung (gleiche Farbwelt) */
.table tbody tr:nth-child(even) { background: var(--tw-gray-50); }
.table tbody tr:hover { background: var(--tw-yellow-light); }

/* Sicherstellen, dass Sterne-Bewertungen nicht vorgelesen werden */
.float-card .stars, .big-quote ~ * .card > div:first-child { speak: none; }

/* Etwas mehr Luft zwischen Hero-Buttons auf kleinen Geräten */
@media (max-width: 520px) {
  .hero-pro .hero-actions { gap: 10px; }
  .hero-pro .hero-actions .btn { width: 100%; }
}

/* === 5. BEWEGUNG REDUZIEREN (prefers-reduced-motion) ======================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track,
  [class*="marquee"] { animation: none !important; }
  .tw-reveal { opacity: 1 !important; transform: none !important; }
  .badge-live, .badge-live::after { animation: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* === 6. ANKER-SCROLLEN unter dem fixen Header ============================== */
/* Direkte #anker-Links (z. B. aus anderen Seiten) nicht mehr vom Header verdeckt */
[id] { scroll-margin-top: 96px; }

/* === 7. STÄRKERER FORMULAR-FOKUS =========================================== */
.form-input:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--tw-yellow) !important;
  box-shadow: 0 0 0 3px rgba(255,193,7,.28);
}

/* === 8. SAUBERE DRUCKANSICHT (Tarif-, Rechnungs-, Info-Seiten) ============= */
@media print {
  .site-header,
  .mobile-bar,
  .mobile-nav,
  .cookie-banner,
  .back-to-top,
  .marquee,
  .menu-toggle,
  .header-cta { display: none !important; }

  body { background: #fff !important; color: #000 !important; padding-bottom: 0 !important; }
  .hero-pro, .stats-strip, .section-pro-dark, .section-dark { background: #fff !important; color: #000 !important; }
  .hero-pro *, .stats-strip *, .section-pro-dark *, .section-dark * {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    text-shadow: none !important;
  }
  .hero-pro::before, .hero-pro::after,
  .section-pro-dark::before, .stats-strip::after { display: none !important; }

  .calc-breakdown { background: #fff !important; border: 1px solid #000 !important; box-shadow: none !important; }
  .calc-breakdown .cb-head, .calc-breakdown .cb-total .sum, .calc-breakdown .cb-row .amt { color: #000 !important; }
  .calc-breakdown .cb-row { border-bottom-color: #999 !important; }

  a { color: #000 !important; text-decoration: underline; }
  .card, .tariff-card-pro, .feature-tile, .table-wrap, .step, .faq-item { break-inside: avoid; }
  .section { padding: 16px 0 !important; }
  .table th, .table td { border-color: #ccc !important; }
}

/* === 9. MODERNISIERUNG — gleiche Marke, zeitgemäßer ======================== */
/* Buttons: feinere Elevation + klarer, ruhiger Hover-Lift */
.btn {
  border-radius: 14px;
  transition: transform .18s var(--tw-ease-out), box-shadow .22s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary { box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 6px 18px rgba(255,160,0,.26); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 12px 28px rgba(255,160,0,.36); }
.btn-call:hover, .btn-whatsapp:hover, .btn-ghost:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Karten: weichere, mehrlagige Schatten + ruhiger Lift (Tilt-JS bleibt unberührt) */
.card { border-radius: 16px; }
.card-hover { transition: transform .22s var(--tw-ease-out), box-shadow .22s ease, border-color .2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--tw-shadow-lg); }
.feature-tile { border-radius: 18px; }
.feature-tile:hover { box-shadow: var(--tw-shadow-lg); border-color: rgba(255,193,7,.5); }
.tariff-card-pro { border-radius: 18px; }
.table-wrap { border-radius: 16px; overflow: hidden; }

/* Navigation: moderne, weiche Pill-Hover */
.nav-link { border-radius: 10px; transition: background .18s ease, color .18s ease; }

/* Marquee: weiche Kanten statt hartem Schnitt */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* Header beim Scrollen: feinerer Blur */
.site-header.is-scrolled { backdrop-filter: blur(14px) saturate(1.08); -webkit-backdrop-filter: blur(14px) saturate(1.08); }

/* Back-to-top zeitgemäßer */
.back-to-top { border-radius: 14px; }

/* Mehr Luft auf großen Screens (moderne, ruhige Vertikalrhythmik) */
@media (min-width: 1100px) {
  .section { padding-block: 104px; }
}

/* =============================================================================
   === 10. PREMIUM 2026 — kohärente Veredelung (gleiche Marke, edler) =========
   Additive Overrides, wirken auf allen Seiten (verbesserungen.css ist überall
   eingebunden). Keine Struktur-Änderung, nur Finish: Typo, Tiefe, Bewegung.
   ============================================================================= */

/* --- 10.0 Tokens & Basis ---------------------------------------------------- */
:root {
  --tw-ease-spring: cubic-bezier(.34, 1.4, .5, 1);
  --tw-shadow-soft: 0 2px 6px rgba(17,24,39,.04), 0 10px 24px rgba(17,24,39,.06), 0 30px 60px rgba(17,24,39,.07);
  --tw-shadow-pop:  0 4px 10px rgba(17,24,39,.05), 0 18px 40px rgba(17,24,39,.10), 0 40px 80px rgba(17,24,39,.12);
}

::selection { background: var(--tw-yellow); color: #1A1A1A; }
.hero-pro ::selection, .section-pro-dark ::selection, .stats-strip ::selection, .site-footer ::selection { background: var(--tw-yellow); color: #0A0A0C; }

/* Dezent edlere Scrollbar */
@media (pointer: fine) {
  html { scrollbar-color: var(--tw-gray-400) transparent; scrollbar-width: thin; }
  *::-webkit-scrollbar { width: 11px; height: 11px; }
  *::-webkit-scrollbar-thumb { background: var(--tw-gray-300); border: 3px solid #fff; border-radius: 999px; }
  *::-webkit-scrollbar-thumb:hover { background: var(--tw-gray-400); }
}

/* --- 10.1 Typografie: ruhiger, präziser, „balanced" ------------------------- */
.display { font-weight: 700; letter-spacing: -0.05em; text-wrap: balance; }
.h1, .h2, .h3, .display-2 { text-wrap: balance; }
.section-header h2, .section-header .h2 { text-wrap: balance; }
.sub, .body-l, .big-quote { text-wrap: pretty; }
.hero-pro .sub { letter-spacing: -0.004em; }

/* Akzent-Verlauf der Display-Marke etwas wärmer & tiefer */
.display .accent { background: linear-gradient(180deg, #FFE9A6 0%, #FFC107 58%, #FF9800 100%); -webkit-background-clip: text; background-clip: text; }

/* --- 10.2 Hero: mehr Tiefe, weicher Übergang nach unten --------------------- */
.hero-pro {
  background:
    radial-gradient(120% 90% at 82% -12%, #18181F 0%, rgba(10,10,12,0) 55%),
    radial-gradient(90% 70% at 8% 8%, #14141A 0%, rgba(10,10,12,0) 50%),
    #0A0A0C;
}
/* sanfter Glow hinter dem Inhalt + weiche untere Abblendung zum nächsten Block */
.hero-pro::after { opacity: .9; }
.hero-pro > .container::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 140px;
  background: linear-gradient(180deg, rgba(8,8,10,0), #08080A 92%);
  pointer-events: none; z-index: 0;
}
.hero-pro .hero-grid-pro { position: relative; z-index: 1; }
.hero-pro .eyebrow { color: rgba(255,255,255,.66); letter-spacing: .14em; }
/* feiner Hairline-Akzent vor dem Hero-Eyebrow */
.hero-pro .eyebrow-dot::before { box-shadow: 0 0 0 4px rgba(255,193,7,.16), 0 0 18px 2px rgba(255,193,7,.5); }

/* --- 10.3 Eyebrows mit Leitstrich (außer Punkt-Variante) -------------------- */
.section-header .eyebrow:not(.eyebrow-dot) { display: inline-flex; align-items: center; gap: 10px; }
.section-header .eyebrow:not(.eyebrow-dot)::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--tw-yellow), rgba(255,193,7,.2));
}
.section-pro-dark .section-header .eyebrow:not(.eyebrow-dot)::before,
.hero-pro .section-header .eyebrow:not(.eyebrow-dot)::before { background: linear-gradient(90deg, #FFC107, rgba(255,193,7,.25)); }

/* --- 10.4 Buttons: edlere Elevation + dezenter Sheen-Sweep ------------------ */
.btn-primary, .btn-call-xl { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after, .btn-call-xl::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .6s var(--tw-ease-out);
}
.btn-call-xl::after { background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%); }
@media (prefers-reduced-motion: no-preference) and (pointer: fine) {
  .btn-primary:hover::after, .btn-call-xl:hover::after { transform: translateX(130%); }
}
.btn-lg { border-radius: 16px; }
.btn-call-xl { box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 30px rgba(220,38,38,.30); }
.btn-call-xl:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 40px rgba(220,38,38,.42); }

/* --- 10.5 Karten & Kacheln: Hairline-Highlight, ruhigerer Lift ------------- */
.card, .feature-tile, .tariff-card-pro, .table-wrap { box-shadow: var(--tw-shadow-soft); }
.card-hover:hover, .feature-tile:hover { box-shadow: var(--tw-shadow-pop); transform: translateY(-4px); }
.feature-tile { transition: transform .3s var(--tw-ease-out), box-shadow .3s var(--tw-ease-out), border-color .25s ease; }
/* Pfeil wandert beim Hover */
.feature-tile .feature-arrow { transition: transform .28s var(--tw-ease-spring), gap .2s ease; }
.feature-tile:hover .feature-arrow { transform: translateX(5px); }
.card-hover .h4 { transition: color .2s ease; }
.card-hover:hover .h4 { color: var(--tw-yellow-active); }

/* --- 10.6 Navigation: animierter Unterstrich-Indikator ---------------------- */
.nav-link { position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  border-radius: 2px; background: var(--tw-yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--tw-ease-out);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"], .nav-link:hover { background: transparent; }

/* --- 10.7 Footer: feiner Marken-Akzent oben -------------------------------- */
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,.7) 30%, rgba(255,193,7,.7) 70%, transparent);
}

/* --- 10.8 Sektions-Rhythmus & Detail --------------------------------------- */
.stat-num { letter-spacing: -0.03em; }
.tariff-card-pro.featured { box-shadow: 0 0 0 1px rgba(255,193,7,.5), 0 24px 60px rgba(0,0,0,.45); }
.answer-box { box-shadow: var(--tw-shadow-soft); }
.marquee-item { transition: color .2s ease; }

/* --- 10.9 Globale Bewegungs-Politur (reduced-motion respektiert) ------------ */
@media (prefers-reduced-motion: no-preference) {
  a, .btn, .pill, .badge, .chip { transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s var(--tw-ease-out), box-shadow .22s ease; }
}

/* =============================================================================
   === 11. STRUKTURELLE MODERNISIERUNG 2026 — sichtbar, mutig, gleiche Marke ==
   Größerer cinematischer Hero, Bento-Service-Grid, Pill-CTAs, größere Typo &
   Kennzahlen, Grain-Tiefe auf dunklen Flächen. Wirkt auf allen ~50 Seiten.
   ============================================================================= */

/* --- 11.1 Hero: cinematische Tiefe, aber ausgewogenes Maß (Korrektur) ------
   Hinweis: frühere Version blies Hero auf 7,25rem / 94vh auf — die Headline
   wirkte überdimensioniert und „brauchen." rutschte unter den Fold. Zurück
   auf das ruhige, ausgewogene Maß der Ursprungs-Startseite. */
.hero-pro {
  padding: clamp(88px, 12vh, 144px) 0 clamp(74px, 10vw, 124px);
}
.hero-pro > .container { width: 100%; }
/* stärkeres, lebendigeres Aurora-Leuchten */
.hero-pro::before { inset: -25%; filter: blur(72px); opacity: 1; }
/* feine Film-Körnung für Premium-Tiefe (dunkle Flächen) */
.hero-pro, .section-pro-dark, .stats-strip, .site-footer { position: relative; }
.hero-pro .container::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Hero-Display: präsent, aber ausgewogen (ganze Headline über dem Fold) */
.hero-pro h1.display, .hero-pro .display { font-size: clamp(2.75rem, 7.2vw, 6rem); line-height: 1.0; letter-spacing: -0.045em; }
.hero-pro .sub { font-size: clamp(1.125rem, 1.7vw, 1.4375rem); max-width: 46ch; }
.hero-pro .hero-meta { margin-top: 48px; }

/* --- 11.2 Typo-Skala (ausgewogen) ----------------------------------------- */
.display { font-size: clamp(2.6rem, 6.8vw, 5.6rem); }
.section-header h2, .section-header .h2 { font-size: clamp(1.9rem, 3.7vw, 2.9rem); letter-spacing: -0.03em; }
.section-header { margin-bottom: clamp(48px, 6vw, 72px); }
.big-quote { font-size: clamp(1.5rem, 2.8vw, 2.25rem); line-height: 1.25; letter-spacing: -0.02em; }

/* --- 11.3 Pill-CTAs: klares, modernes Signal ------------------------------- */
.btn { border-radius: 999px; }
.btn-lg { padding: 15px 28px; font-size: 1.0625rem; }
.btn-call-xl { border-radius: 22px; padding: 16px 26px; }
.btn-block { border-radius: 999px; }
.header-pill { border-radius: 999px; }

/* --- 11.4 Bento-Service-Grid: größere Radien, Verlaufsflächen, Akzent-Glow -- */
.feature-grid { gap: clamp(16px, 1.6vw, 22px); }
.feature-tile {
  border-radius: 26px;
  padding: clamp(22px, 2.4vw, 30px);
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFC 100%);
  border: 1px solid var(--tw-border-light);
}
.feature-tile::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  opacity: 0; transition: opacity .3s ease;
}
.feature-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255,193,7,.55);
  box-shadow: 0 0 0 1px rgba(255,193,7,.25), var(--tw-shadow-pop);
}
.feature-big { border-radius: 28px; }
.feature-big::before { width: 240px; height: 240px; opacity: .9; }
.feature-icon { border-radius: 14px !important; }

/* --- 11.5 Kennzahlen: groß & selbstbewusst --------------------------------- */
.stats-strip { padding-block: clamp(40px, 5vw, 64px); }
.stat-num { font-size: clamp(2.6rem, 5.2vw, 4rem); line-height: 1; }
.stat-num .unit { font-size: .42em; color: var(--tw-yellow) !important; -webkit-text-fill-color: var(--tw-yellow) !important; margin-left: 4px; }
.stat-label { margin-top: 10px; letter-spacing: .02em; }

/* --- 11.6 Flächen & Karten: größere Radien, ruhige Verläufe ---------------- */
.card { border-radius: 22px; }
.answer-box { border-radius: 24px; }
.table-wrap, .tariff-card-pro, .calc-breakdown { border-radius: 22px; }
.kk-wall .pill, .pill { border-radius: 999px; }

/* dunkle Sektionen: feine Körnung für Tiefe */
.section-pro-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.section-pro-dark > .container { position: relative; z-index: 1; }

/* --- 11.7 Marquee etwas präsenter ------------------------------------------ */
.marquee-item { font-size: 1rem; }

/* --- 11.8 Reduced-motion: Aurora & Grain ruhig stellen --------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-pro::before { animation: none !important; }
}

/* =============================================================================
   === 12. UNTERSEITEN-MODERNISIERUNG 2026 — greift auf allen 55 Subpages =====
   Die Unterseiten nutzen ein anderes Markup als die Startseite:
   Hero = section.section[style*="padding-top: 0"] > .container > .grid-2
          (.eyebrow + .h1 + .body-l + .hero-actions + Bild-Panel),
   CTA  = .section-dark,  Schritte = .usp-item .num.
   Diese Section bringt denselben Premium-Look genau auf diese Strukturen.
   ============================================================================= */

/* --- 12.1 Hero-Band: markanter, warmer Marken-Glow, große Typo ------------- */
/* :has(.grid-2)/:has(.hero-actions) trifft NUR echte Service-/Info-Heroes,
   nicht die langen Rechtstexte (impressum/agb/datenschutz nutzen article.section
   ohne grid-2). So bleiben Rechtsseiten unangetastet. */
section.section[style*="padding-top: 0"]:has(.grid-2),
section.section[style*="padding-top: 0"]:has(.hero-actions),
article.section[style*="padding-top: 0"]:has(.hero-actions) {
  position: relative;
  isolation: isolate;
  padding-top: clamp(40px, 6vh, 76px) !important;
  padding-bottom: clamp(52px, 7vw, 104px);
  background:
    radial-gradient(58% 78% at 90% -8%, rgba(255,193,7,.20), transparent 60%),
    radial-gradient(46% 64% at 2% 4%, rgba(255,152,0,.10), transparent 58%),
    linear-gradient(180deg, #FFFCF4 0%, #FFFFFF 72%);
  border-bottom: 1px solid var(--tw-border-light);
  overflow: clip;
}
/* feiner Marken-Hairline oben am Hero */
section.section[style*="padding-top: 0"]:has(.grid-2)::before,
section.section[style*="padding-top: 0"]:has(.hero-actions)::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--tw-yellow) 0%, rgba(255,193,7,.25) 42%, transparent 70%);
}

/* Hero-Titel deutlich größer & präziser */
section.section[style*="padding-top: 0"]:has(.grid-2) .h1,
section.section[style*="padding-top: 0"]:has(.hero-actions) .h1,
article.section[style*="padding-top: 0"]:has(.hero-actions) .h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
section.section[style*="padding-top: 0"]:has(.grid-2) .body-l,
section.section[style*="padding-top: 0"]:has(.hero-actions) .body-l {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  max-width: 52ch; text-wrap: pretty;
}

/* Bild-Panel im Hero: edler Rahmen, weiche Elevation, Glanzkante */
section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"] {
  border-radius: 28px !important;
  box-shadow: var(--tw-shadow-pop), inset 0 1px 0 rgba(255,255,255,.6) !important;
  border: 1px solid rgba(255,193,7,.28) !important;
  position: relative; overflow: hidden;
  transition: transform .4s var(--tw-ease-out), box-shadow .4s ease;
}
@media (pointer: fine) {
  section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"]:hover {
    transform: translateY(-4px);
  }
}

/* --- 12.2 Schrittzahlen (.usp-item): große, selbstbewusste Gradient-Ziffern */
.usp-item { position: relative; }
.usp-item .num {
  font-family: var(--tw-font-tight, var(--tw-font-sans)) !important;
  font-size: clamp(2.4rem, 4vw, 3.1rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(165deg, #FFD24D 0%, #FFB300 45%, #FF8F00 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: var(--tw-space-3) !important;
}

/* --- 12.3 Dark-CTA (.section-dark): cinematische Tiefe wie auf der Startseite */
.section-dark {
  position: relative; isolation: isolate; overflow: clip;
  background:
    radial-gradient(70% 120% at 82% 0%, #1b1b23 0%, rgba(10,10,12,0) 56%),
    radial-gradient(60% 100% at 0% 100%, #17171d 0%, rgba(10,10,12,0) 52%),
    #0A0A0C !important;
}
.section-dark::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,.75) 30%, rgba(255,193,7,.75) 70%, transparent);
}
.section-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n3'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n3)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.section-dark > .container,
.section-dark > .container-narrow { position: relative; z-index: 1; }
/* Akzent im dunklen CTA-Titel */
.section-dark .h2 .accent,
.section-dark .h2 strong { color: var(--tw-yellow); }

/* --- 12.4 USP-/Antwort-Boxen & Sekundär-Sektionen: ruhige Tiefe ------------ */
.section-secondary { position: relative; }
.quick-answer {
  border-radius: 20px;
  box-shadow: var(--tw-shadow-soft);
}
.usp-item:hover .num { filter: saturate(1.15); }

/* --- 12.5 Tabellen-Header etwas präsenter ---------------------------------- */
.table thead th { letter-spacing: .01em; }

/* --- 12.6 Breadcrumb dezent moderner --------------------------------------- */
.crumbs { font-family: var(--tw-font-mono); font-size: .76rem; letter-spacing: .02em; opacity: .9; }

/* --- 12.6b Header-Anruf-Pill nie umbrechen lassen -------------------------- */
.header-pill { white-space: nowrap; }

/* --- 12.7 reduced-motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"] { transition: none; }
}

/* =============================================================================
   === 13. FEINSCHLIFF 2026.2 — Affordanz, Orientierung, Detailtiefe ==========
   Letzter Politur-Durchgang. Rein additiv, keine Strukturänderung. Schwerpunkt:
   die wenigen echten Lücken eines bereits reifen Designs schließen —
   verlinkte Orte/Begriffe im Fließtext sichtbar klickbar machen, dezente
   Orientierung (Scroll-Fortschritt), sauberer Tastatur-Fokus auf Karten,
   ruhige Bild- und Tabellen-Details. Greift auf allen öffentlichen Seiten.
   ============================================================================= */

/* --- 13.1 Fließtext-Links als klickbar erkennbar machen --------------------
   Das Design-System rendert alle Links farb- & unterstrichlos (a{color:inherit}).
   In echten Textblöcken (Antwortbox, Karten-Text, FAQ-Antworten, Ortelisten,
   Tabellen) waren verlinkte Orte dadurch optisch nicht von normalem Text zu
   unterscheiden. Hier bekommen NUR Prosa-Links eine dezente, animierte
   Marken-Unterstreichung. Buttons, Navigation, ganze Karten-Links, Breadcrumbs
   und Footer behalten ihr eigenes Styling (bewusst ausgenommen). */
.answer-box p a,
.quick-answer a,
.card p a:not(.btn),
.card .body-sm a:not(.btn),
.card .body a:not(.btn),
.faq-item .answer a:not(.btn),
.section-secondary .body-l a:not(.btn),
.table td a:not(.btn) {
  color: var(--tw-gray-900);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--tw-yellow-active), var(--tw-yellow-active));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1.5px;
  border-radius: 3px;
  transition: background-size .25s var(--tw-ease-out), color .2s ease, background-color .2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .answer-box p a:hover, .answer-box p a:focus-visible,
  .quick-answer a:hover, .quick-answer a:focus-visible,
  .card p a:not(.btn):hover, .card p a:not(.btn):focus-visible,
  .card .body-sm a:not(.btn):hover, .card .body-sm a:not(.btn):focus-visible,
  .card .body a:not(.btn):hover, .card .body a:not(.btn):focus-visible,
  .faq-item .answer a:not(.btn):hover, .faq-item .answer a:not(.btn):focus-visible,
  .section-secondary .body-l a:not(.btn):hover,
  .table td a:not(.btn):hover, .table td a:not(.btn):focus-visible {
    background-size: 100% calc(100% + 2px);
    background-position: 0 100%;
    color: #1A1A1A;
    background-color: var(--tw-yellow-light);
  }
}

/* --- 13.2 Scroll-Fortschritt: feiner Marken-Balken oben (CSS-only) ---------
   Nutzt eine scroll-getriebene Animation — ohne JS, ohne Layout-Eingriff.
   Browser ohne scroll-timeline ignorieren den Block komplett. */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    body::after {
      content: "";
      position: fixed; top: 0; left: 0; height: 3px; width: 100%;
      transform: scaleX(0); transform-origin: 0 50%;
      z-index: 1500; pointer-events: none;
      background: linear-gradient(90deg, var(--tw-yellow) 0%, var(--tw-yellow-active) 100%);
      box-shadow: 0 1px 8px rgba(255,160,0,.5);
      animation: tw-scroll-progress linear both;
      animation-timeline: scroll(root);
    }
    @keyframes tw-scroll-progress { to { transform: scaleX(1); } }
    /* Auf der dunklen Verwaltung/Vergleichsseite nicht benötigt — dort wird
       verbesserungen.css ohnehin nicht eingebunden. */
  }
}

/* --- 13.3 Tastatur-Fokus auf ganzen Karten-Links sichtbar machen -----------
   Viele Kacheln sind komplett verlinkt (<a class="feature-tile">). Bei Tastatur-
   Navigation hob sich bislang nur der Outline-Ring ab. Jetzt hebt sich die ganze
   Karte wie beim Hover — klarere Orientierung für Screenreader-/Tastaturnutzer. */
.feature-tile:focus-within,
a.feature-tile:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255,193,7,.55);
  box-shadow: 0 0 0 1px rgba(255,193,7,.25), var(--tw-shadow-pop);
}
.card-hover:focus-within,
a.card-hover:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--tw-shadow-pop);
  border-color: rgba(255,193,7,.45);
}

/* --- 13.4 Bild-Kacheln: ruhiger Zoom beim Hover/Fokus ----------------------
   Die Service-Bilder sitzen auf Verlaufsflächen im Bento-Grid. Ein dezenter
   Maßstabswechsel bringt Leben, ohne die Komposition zu stören. */
.feature-tile div:has(> img) { overflow: clip; }
.feature-tile img { transition: transform .45s var(--tw-ease-out); }
@media (prefers-reduced-motion: no-preference) and (pointer: fine) {
  .feature-tile:hover img,
  .feature-tile:focus-within img { transform: scale(1.045); }
}

/* --- 13.5 Tabellen-Kopf: feiner Marken-Abschluss --------------------------- */
.table thead th { border-bottom: 2px solid rgba(255,193,7,.5); }
.table caption { font-family: var(--tw-font-mono); letter-spacing: .01em; }

/* --- 13.6 Großzitat: editoriales führendes Anführungszeichen ---------------
   Rein dekorativ, ohne Textverschiebung (absolut positioniert, aria-neutral). */
.big-quote { position: relative; }
.big-quote::before {
  content: "\201C";
  position: absolute; left: -.5em; top: -.34em;
  font-size: 2.4em; line-height: 1; color: var(--tw-yellow);
  opacity: .55; pointer-events: none; z-index: -1;
  font-family: Georgia, 'Times New Roman', serif;
}
@media (max-width: 700px) { .big-quote::before { left: -.12em; opacity: .4; } }

/* --- 13.7 Marken-Pills (Krankenkassen): lebendigerer Hover ------------------ */
@media (pointer: fine) {
  .kk-wall .pill { transition: transform .2s var(--tw-ease-out), border-color .2s ease, background .2s ease, color .2s ease; }
  .kk-wall .pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255,193,7,.6);
    background: var(--tw-yellow-light);
    color: var(--tw-gray-900);
  }
}

/* --- 13.8 reduced-motion: Zoom & Lift ruhig stellen ------------------------ */
@media (prefers-reduced-motion: reduce) {
  .feature-tile img { transition: none; }
  .feature-tile:focus-within, .card-hover:focus-within { transform: none; }
}

/* =============================================================================
   === 14. SUBSEITEN-MODULE SICHTBAR AUFGEWERTET (~45 Seiten) =================
   Die Orts-/Service-/Ratgeber-Seiten teilen sich zwei Module, die optisch noch
   deutlich braver waren als der Rest der Marke: die „Schnellantwort"-Box und die
   dunkle CTA-Leiste am Seitenende. Beide werden hier — rein per CSS, also auf
   allen Seiten gleichzeitig — auf Startseiten-Niveau gehoben. Sprachneutral,
   damit auch die englische Seite stimmig bleibt.
   ============================================================================= */

/* --- 14.1 Schnellantwort → Premium-„Direktantwort"-Karte ------------------- */
.quick-answer {
  background: linear-gradient(180deg, var(--tw-yellow-bg) 0%, #fff 100%);
  border: 1px solid rgba(255,193,7,.32);
  /* den 4-px-Links-Balken des Design-Systems bewusst ersetzen */
  border-left: 1px solid rgba(255,193,7,.32);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 38px) clamp(24px, 3.2vw, 40px);
  font-size: 1.0625rem;
  line-height: 1.72;
  position: relative;
  overflow: hidden;
  box-shadow: var(--tw-shadow-soft);
  isolation: isolate;
}
/* feiner Marken-Abschluss oben */
.quick-answer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, var(--tw-yellow) 0%, var(--tw-yellow-active) 38%, transparent 78%);
}
/* weicher Eck-Glow für Tiefe */
.quick-answer::after {
  content: "";
  position: absolute; top: -50px; right: -50px;
  width: 210px; height: 210px; z-index: -1;
  background: radial-gradient(circle, rgba(255,193,7,.20), transparent 62%);
  filter: blur(38px); pointer-events: none;
}
.quick-answer strong { color: var(--tw-black); }
.quick-answer a:not(.btn) {
  color: var(--tw-gray-900); font-weight: 600; text-decoration: none;
  background-image: linear-gradient(var(--tw-yellow-active), var(--tw-yellow-active));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 100% 1.5px;
  border-radius: 3px; transition: background-size .25s var(--tw-ease-out), background-color .2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .quick-answer a:not(.btn):hover { background-size: 100% calc(100% + 2px); background-color: var(--tw-yellow-light); }
}

/* --- 14.2 Dunkle CTA-Leiste → fokussiertes, zentriertes Schluss-Band -------
   .section-dark wird auf den Unterseiten ausschließlich als End-CTA verwendet
   (die Startseite nutzt .section-pro-dark). Daher hier eine ruhige, zentrierte
   Komposition mit großzügiger Höhe und größerer Headline. */
.section-dark {
  text-align: center;
  padding-block: clamp(68px, 9vw, 124px);
}
.section-dark > .container,
.section-dark > .container-narrow {
  max-width: 780px;
}
.section-dark .h2 {
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.section-dark .body-l,
.section-dark p {
  margin-left: auto; margin-right: auto;
  margin-top: var(--tw-space-4);
  text-wrap: pretty;
}
.section-dark .flex,
.section-dark .hero-actions,
.section-dark .flex-wrap {
  justify-content: center;
  margin-top: var(--tw-space-8) !important;
}
/* dezenter Verfügbarkeits-Hinweis-Abstand unter den Buttons bleibt unberührt */

/* =============================================================================
   === 15. UNTERSEITEN-HERO: BILDPANEL MIT TIEFE & MARKEN-CHIP ================
   Das Hero-Bildpanel rechts war auf ~30 Orts-/Service-Seiten das schwächste,
   am häufigsten wiederholte Element (gleiches Stockbild in schlichter Box).
   Hier bekommt es Tiefe (feines Punkt-Raster), ein echtes 24/7-Marken-Chip und
   eine ruhige Glanzkante — rein per CSS, also auf allen betroffenen Seiten.
   Der Selektor trifft NUR diese Hero-Panels (scoped auf den Unterseiten-Hero). */

/* Bild über die Dekor-Ebene heben */
section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"] > img {
  position: relative;
  z-index: 1;
}
/* feines Punkt-Raster hinter dem Bild für Tiefe */
section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"]::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,160,0,.20) 1.1px, transparent 1.3px);
  background-size: 17px 17px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 56% 42%, #000 28%, transparent 72%);
          mask-image: radial-gradient(ellipse 72% 62% at 56% 42%, #000 28%, transparent 72%);
  opacity: .6;
}
/* echtes Marken-Chip: 24/7 — sprachneutral, immer zutreffend */
section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"]::before {
  content: "24/7";
  position: absolute; z-index: 2;
  top: clamp(12px, 1.6vw, 18px); right: clamp(12px, 1.6vw, 18px);
  font-family: var(--tw-font-mono);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  color: #1A1A1A; background: var(--tw-yellow);
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255,160,0,.4), inset 0 1px 0 rgba(255,255,255,.45);
}
/* sanftes Schweben des Bildes (reduced-motion: aus) */
@media (prefers-reduced-motion: no-preference) {
  section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"] > img {
    animation: tw-hero-float 7s ease-in-out infinite;
  }
  @keyframes tw-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
  }
}

/* =============================================================================
   === 16. FAQ-AKKORDEONS & LINK-KARTEN VEREDELT (fast alle Seiten) ===========
   FAQ-Items und voll-verlinkte Karten (Nachbarorte, Ratgeber-Teaser) waren
   funktional, aber schlicht. Hier bekommen sie ruhige Tiefe, einen klaren
   Offen-/Hover-Zustand und eine bessere Klick-Affordanz. Rein per CSS.
   ============================================================================= */

/* --- 16.1 FAQ: weichere Items, klarer Offen-Zustand, runder Marker --------- */
.faq-item {
  border-radius: 16px;
  border-color: var(--tw-border-light);
  transition: border-color .2s ease, box-shadow .25s ease, background .25s ease;
}
.faq-item + .faq-item { margin-top: 2px; }
.faq-item:hover { border-color: rgba(255,193,7,.42); }
.faq-item[open] {
  border-color: rgba(255,193,7,.5);
  box-shadow: var(--tw-shadow-soft);
  background: linear-gradient(180deg, var(--tw-yellow-bg) 0%, #fff 60%);
}
.faq-item summary { border-radius: 16px; padding: 19px 20px; transition: color .2s ease; }
.faq-item summary::after {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--tw-yellow-light);
  color: var(--tw-yellow-active);
  display: grid; place-items: center;
  font-size: 20px; line-height: 1;
  transition: background .2s ease, color .2s ease, transform .25s var(--tw-ease-out);
}
.faq-item[open] summary::after {
  background: var(--tw-yellow);
  color: #1A1A1A;
  transform: rotate(180deg);
}
.faq-item .answer { line-height: 1.7; }

/* --- 16.2 Voll-verlinkte Karten: gleitender Marken-Akzent links ------------
   Nur echte Link-Karten (<a class="card card-hover">), nicht statische .card.
   Macht „Taxi Nachbarort →"/Ratgeber-Teaser klar als anklickbar erkennbar. */
a.card.card-hover { position: relative; overflow: hidden; }
a.card.card-hover::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--tw-yellow), var(--tw-yellow-active));
  transform: scaleY(0); transform-origin: top;
  transition: transform .28s var(--tw-ease-out);
}
a.card.card-hover:hover::before,
a.card.card-hover:focus-visible::before { transform: scaleY(1); }

/* --- 16.3 reduced-motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] summary::after { transform: none; }
  a.card.card-hover::before { transition: none; }
}

/* =============================================================================
   === 17. PROZESS-SCHRITTE & BROTKRUMEN VEREDELT ============================
   Die „So funktioniert's"-Schritte (.step) waren Karten mit winziger Mono-
   Nummer. Hier bekommen sie die große Gradient-Ziffer der Marke (wie die
   USP-Schritte) plus ruhigen Hover-Lift. Dazu klarere Brotkrumen.
   Sichtbar auf Krankenfahrt-, Dialyse-, Ratgeber- und Startseite.
   ============================================================================= */

/* --- 17.1 Schritt-Karten: große Marken-Ziffer + Hover-Lift ----------------- */
.step {
  border-radius: 18px;
  transition: transform .25s var(--tw-ease-out), box-shadow .25s ease, border-color .2s ease;
}
.step::before {
  font-family: var(--tw-font-tight, var(--tw-font-sans));
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(165deg, #FFD24D 0%, #FFB300 45%, #FF8F00 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: var(--tw-space-4);
}
@media (pointer: fine) {
  .step:hover {
    transform: translateY(-4px);
    border-color: rgba(255,193,7,.5);
    box-shadow: var(--tw-shadow-pop);
  }
}

/* --- 17.2 Brotkrumen: aktuelle Seite klar, Hover auf Marke ----------------- */
.crumbs a { transition: color .2s ease; }
.crumbs a:hover { color: var(--tw-yellow-active); }
.crumbs span[aria-current] { color: var(--tw-gray-900); font-weight: 600; }

/* --- 17.3 reduced-motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .step { transition: none; }
}

/* =============================================================================
   === 18. FOOTER-FEINSCHLIFF (auf JEDER Seite sichtbar) =====================
   Der dunkle Footer ist auf allen ~57 Seiten, war aber das am wenigsten
   gepflegte Element. Hier: lebendige Link-Hover mit Marken-Punkt, korrektes
   Aufhellen der Orts-/NAP-Links (die per Inline-Farbe gesetzt sind und sich
   bislang NICHT aufhellten — echter Bugfix), ruhigerer Rhythmus.
   ============================================================================= */

/* --- 18.1 Listen-Links: Marken-Punkt + sanftes Einrücken beim Hover -------- */
.site-footer .footer-section ul a {
  position: relative;
  display: inline-block;
  transition: color .2s ease, transform .2s var(--tw-ease-out);
}
.site-footer .footer-section ul a::before {
  content: "";
  position: absolute; left: -13px; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--tw-yellow);
  transform: translateY(-50%) scale(0);
  transition: transform .22s var(--tw-ease-out);
}
.site-footer .footer-section ul a:hover {
  color: #fff;
  transform: translateX(5px);
}
.site-footer .footer-section ul a:hover::before { transform: translateY(-50%) scale(1); }

/* --- 18.2 Bugfix: Orts-/NAP-Links mit Inline-Farbe hellen jetzt auf -------
   Diese Links tragen ein Inline-style="color:#B9B9C2" — dadurch konnte die
   normale Hover-Regel sie nie aufhellen. Mit !important greift der Hover. */
.site-footer .footer-section div a:hover,
.site-footer .footer-nap a:hover {
  color: #fff !important;
}
.site-footer .footer-section div a {
  border-radius: 7px;
  transition: color .2s ease, background .2s ease;
}
.site-footer .footer-section div a:not(.btn):hover {
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
}

/* --- 18.3 Trust-Badges & Marken: feiner Hover ------------------------------ */
.site-footer .footer-brand .logo-mark { box-shadow: 0 4px 14px rgba(255,160,0,.35); }
.site-footer .badge { transition: border-color .2s ease, color .2s ease; }
.site-footer .badge:hover { border-color: rgba(255,193,7,.5); color: #fff; }

/* --- 18.4 Untere Leiste: Rechts-Links mit Marken-Hover --------------------- */
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--tw-yellow) !important; }

/* --- 18.5 reduced-motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-section ul a,
  .site-footer .footer-section ul a::before { transition: none; }
  .site-footer .footer-section ul a:hover { transform: none; }
}

/* =============================================================================
   === 19. MOBILE-FEINSCHLIFF (Hauptgerät der Fahrgäste) =====================
   Taxi-Kunden buchen fast immer vom Handy. Hier: sichere Typo-Skalierung gegen
   Überlauf, ruhigerer Vertikalrhythmus, mehr Touch-Komfort, Sticky-Bar mit
   iOS-Safe-Area. Greift auf allen Seiten.
   ============================================================================= */

/* --- 19.1 Display-/Headline-Typo auf kleinen Phones sicher skalieren ------- */
@media (max-width: 560px) {
  .hero-pro h1.display, .hero-pro .display { font-size: clamp(2.4rem, 12.5vw, 3.5rem); line-height: 1.02; }
  .display { font-size: clamp(2.3rem, 11vw, 3.2rem); }
  .section-header h2, .section-header .h2 { font-size: clamp(1.7rem, 7.6vw, 2.2rem); }
  section.section[style*="padding-top: 0"] .h1,
  section.section[style*="padding-top: 0"]:has(.hero-actions) .h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
}

/* --- 19.2 Ruhigerer Vertikalrhythmus + komfortable Buttons auf Mobile ------ */
@media (max-width: 560px) {
  .section { padding-block: clamp(48px, 11vw, 76px); }
  .btn-lg { min-height: 54px; }
  .hero-pro { min-height: auto; padding-block: clamp(84px, 18vh, 120px) clamp(56px, 12vw, 84px); }
}

/* --- 19.3 Mobile-Navigation: mehr Luft, größere Touch-Ziele ---------------- */
.mobile-nav { padding-top: var(--tw-space-5); }
.mobile-nav a {
  padding: 16px 10px;
  font-size: 1.15rem;
  border-radius: 12px;
  transition: background .15s ease, padding-left .15s ease;
}
.mobile-nav a:active { background: var(--tw-yellow-light); padding-left: 18px; }

/* --- 19.4 Sticky Mobile-Bar: Safe-Area + taktiles Feedback ----------------- */
.mobile-bar { padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
.mobile-bar a { transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease; }
.mobile-bar a:active { transform: scale(.95); background: rgba(255,255,255,.1); }

/* --- 19.5 Hero-Bildpanel auf Mobile kompakter ----------------------------- */
@media (max-width: 700px) {
  section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"] { padding: var(--tw-space-5); }
  section.section[style*="padding-top: 0"] .grid-2 > div[style*="radial-gradient"]::before { font-size: .68rem; padding: 5px 10px; }
}

/* --- 19.6 reduced-motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .mobile-bar a:active { transform: none; }
}

/* =============================================================================
   === 20. HERO-PUNCHLINE-LESBARKEIT (Startseite) ============================
   Echter Bugfix: Der warme Aurora-Klecks (oben links) lag genau über dem
   Akzentwort „brauchen." der H1 und wusch es aus — wirkte wie ein Render-
   Fehler. Lösung: die warmen Glühflächen dorthin verlegen, wo sie hingehören
   (rechts, hinter dem Buchungs-Ticket), die Textspalte links nur dezent
   anwärmen und mit einem weichen dunklen Schleier die H1-Lesbarkeit
   garantieren. Akzentwort bekommt zusätzlich einen feinen Glow, damit es auf
   jeder Breite sauber „pop"t. Rein additiv, nur .hero-pro (Startseite).
   ============================================================================= */

/* 20.1 Aurora neu komponiert: warm nach rechts, links nur Hauch ------------- */
.hero-pro::before {
  background:
    radial-gradient(33% 42% at 84% 28%, rgba(255, 193, 7, .34), transparent 70%),
    radial-gradient(28% 36% at 97% 12%, rgba(255, 143, 0, .26), transparent 70%),
    radial-gradient(44% 54% at 72% 98%, rgba(217, 47, 47, .16), transparent 72%),
    radial-gradient(34% 44% at 30% 92%, rgba(25, 118, 210, .12), transparent 70%),
    radial-gradient(26% 34% at 6% 6%, rgba(255, 193, 7, .10), transparent 72%);
  opacity: .9;
}

/* 20.2 Weicher dunkler Schleier hinter der Textspalte (nur Desktop, wo
   die H1 vor der Aurora steht). Sichert WCAG-Kontrast der Headline. */
@media (min-width: 900px) {
  .hero-pro .hero-grid-pro > div:first-child {
    position: relative;
  }
  .hero-pro .hero-grid-pro > div:first-child::before {
    content: "";
    position: absolute;
    inset: -8% -14% -8% -22%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(78% 86% at 34% 46%, rgba(8, 8, 11, .72) 0%, rgba(8, 8, 11, .38) 46%, transparent 74%);
  }
}

/* 20.3 Akzentwort bleibt auf jeder Breite knackig ablesbar ------------------ */
.hero-pro .display .accent {
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 5px rgba(255, 160, 0, .22));
}
.hero-pro h1.display,
.hero-pro .display { text-shadow: 0 2px 22px rgba(0, 0, 0, .55); }

/* =============================================================================
   === 21. ORTS-HERO „FAHRPREIS-TICKET" VEREDELT (26 Orts-/Strecken-Seiten) ===
   Die .local-fare-Karte ist auf allen Orts- und Streckenseiten der optische
   Mittelpunkt des Heros — die wichtigste Fläche, die ein Besucher dieser
   Seiten zuerst betrachtet. Sie war sauber, aber etwas brav. Hier bekommt sie
   die Signatur-Tiefe des Startseiten-Tickets: Marken-Abschlusslinie oben,
   den Preis in Markenfarbe und etwas präsenter, dezenten Zeilen-Hover und eine
   feine innere Glanzkante. Rein additiv, wirkt auf allen 26 betroffenen Seiten.
   ============================================================================= */
.local-fare {
  border-radius: 20px;
  border-color: rgba(17, 24, 39, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    0 2px 8px rgba(17, 24, 39, .05),
    0 26px 60px rgba(17, 24, 39, .13);
  position: relative;
}
/* Marken-Abschlusslinie am oberen Kartenrand */
.local-fare::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--tw-yellow) 0%, var(--tw-yellow-active) 55%, transparent 92%);
}
.local-fare .lf-head { padding: 18px 22px; }
.local-fare .lf-town { font-size: 1.125rem; }
.local-fare .lf-rows li {
  padding: 15px 22px;
  transition: background .18s ease;
}
@media (pointer: fine) {
  .local-fare .lf-rows li:hover { background: var(--tw-yellow-bg); }
}
/* Preis als Held der Zeile: Markenfarbe, etwas größer, klare Ziffern */
.local-fare .lf-eur {
  color: var(--tw-yellow-active);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.local-fare .lf-foot {
  background: var(--tw-gray-50);
  border-top: 1px solid var(--tw-border-light);
}

/* =============================================================================
   === 22. BROTKRUMEN VEREDELT (JEDE Unterseite: Orte, Services, Ratgeber) ====
   Die Brotkrumen sind das allererste Element auf jeder Unterseite — auf ~55
   Seiten identisch. Bisher: schlichter Mono-Text mit „/"-Trennern. Jetzt:
   moderne Chevron-Trenner, die aktuelle Seite als ruhiger Marken-Chip und ein
   klar erkennbarer, anklickbarer „Startseite"-Link. Sprachneutral, rein per
   CSS — greift also überall gleichzeitig, ohne ein einziges HTML zu ändern.
   ============================================================================= */
/* modernere Chevron-Trenner statt Schrägstrich */
.crumbs > * + *::before {
  content: "\203A";
  margin-right: 8px;
  opacity: .5;
  font-weight: 600;
}
/* „Startseite"-Link klar als klickbar, mit weichem Hover-Feld */
.crumbs a {
  border-radius: 7px;
  padding: 2px 7px;
  margin-left: -7px;
  transition: color .18s ease, background .18s ease;
}
@media (pointer: fine) {
  .crumbs a:hover { background: var(--tw-yellow-light); color: var(--tw-yellow-active); }
}
/* aktuelle Seite als ruhiger Marken-Chip */
.crumbs span[aria-current] {
  background: var(--tw-yellow-bg);
  border: 1px solid rgba(255, 193, 7, .32);
  padding: 3px 11px;
  border-radius: 999px;
  color: var(--tw-gray-900);
  font-weight: 600;
}

/* --- Dezenter Einleitungstext (ersetzt die gelbe „Direktantwort"-Box) ------ */
.lead-answer {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.75;
  color: var(--tw-text-secondary);
  max-width: 70ch;
  text-wrap: pretty;
  margin: 0;
}
.lead-answer strong { color: var(--tw-gray-900); font-weight: 600; }
.lead-answer a { color: inherit; font-weight: 600; }
