/*
 * site.css - zentrales Stylesheet der Website.
 *
 * Stand frueher als 48-KB-<style>-Block in header.php und ging damit bei jedem
 * einzelnen Seitenaufruf erneut ueber die Leitung. Als eigene Datei laedt der
 * Browser sie einmal und nimmt sie danach aus dem Cache (.htaccess: ein Jahr,
 * Cache-Busting ueber ?v=<Aenderungszeit>).
 *
 * Die @font-face-Regeln bleiben bewusst inline in header.php - sie muessen so
 * frueh wie moeglich gefunden werden.
 *
 * ACHTUNG: Nicht wieder nach header.php zurueckkopieren. Aenderungen hier.
 */

/* =============================================================
   CSS-Variablen & Reset
   ============================================================= */
:root {
  --ink: #0B1220;
  --ink-70: rgba(11,18,32,.7);
  --ink-60: rgba(11,18,32,.6);
  --ink-50: rgba(11,18,32,.5);
  --ink-10: rgba(11,18,32,.1);
  --ink-05: rgba(11,18,32,.05);
  --brand-50: #fff8e6;
  --brand-100: #ffeeb3;
  --brand-300: #ffd24d;
  --brand-400: #ffc51a;
  --brand-500: #f5b800;
  --brand-600: #c99700;
  --bg-base: #ffffff;
  --bg-soft: #F4F3EE;
  --white: #ffffff;
  --shadow-card: 0 6px 24px rgba(11,18,32,.06);
  --shadow-soft: 0 10px 30px rgba(11,18,32,.08);

  /* Aktionsgruen: die Farbe aus Logo und Design.
     Gilt fuer Knoepfe, gruene Texte und Balken gleichermassen.
     --action-600 ist nur der Mauszeiger-Zustand, --action-700 nur der
     Tastatur-Fokusrahmen - beide duerfen dunkler sein, weil sie den
     Zustand anzeigen und nicht die Marke. */
  --action: #65b42e;
  --action-600: #59a027;
  --action-700: #4e8c1f;
  --action-soft: #f2faec;

  /* Eckenrundungen: drei Werte statt bisher zwoelf */
  --r-btn: 10px;
  --r-pill: 999px;
  --r-card: 14px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg-base);
  line-height: 1.5;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

/* =============================================================
   Layout
   ============================================================= */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* =============================================================
   Header
   ============================================================= */
.site-header {
  position: relative;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ink-05);
}
.site-sticky-stack {
  position: relative;
  z-index: 40;
}
.site-sticky-stack .site-header {
  position: relative;
  top: auto;
  z-index: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  overflow: visible;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
}
.brand-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink);
  align-items: center; justify-content: center;
}
.brand-mark svg { width: 20px; height: 20px; fill: var(--brand-400); }
.brand-name-1 { color: var(--ink); }
.brand-name-2 { color: var(--brand-500); }
/* Logo: passt sauber in die 64px-Leiste */
.brand { overflow: visible; }
.brand-logo { display: block; height: 52px; width: auto; }
@media (max-width: 900px){ .brand-logo { height: 46px; } }
@media (max-width: 640px){ .brand-logo { height: 40px; } }

.main-nav {
  display: none;
  gap: 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-70);
}
/* Login-Avatar direkt neben der Flagge */
.nav-login-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink-70); transition: background .2s, color .2s; }
.nav-login-btn:hover { background: var(--ink-05); color: var(--ink); }
.nav-login-btn svg { display: block; }
/* Flagge fuellt den runden Kreis vollstaendig */
#currentFlag { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; overflow: hidden; font-size: 45px; line-height: 1; box-shadow: 0 0 0 1px rgba(11,18,32,.12); }
.main-nav a { transition: color .2s; }
.main-nav a:hover { color: var(--ink); }
@media (min-width: 768px) { .main-nav { display: flex; align-items: center; } }

.header-actions { display: flex; align-items: center; gap: 8px; }

/* Language selector */
.lang-wrap { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 18px;
  transition: background .2s;
}
.lang-btn:hover { background: var(--ink-05); }
.lang-btn svg { width: 12px; height: 12px; stroke: var(--ink-50); fill: none; stroke-width: 2; }
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 200px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ink-05);
  padding: 8px;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  z-index: 50;
}
.lang-dropdown.active { display: grid; }
.lang-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px;
  border-radius: 6px;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.lang-option:hover { background: var(--ink-05); }
.lang-option.active { background: var(--brand-50, #eef4ff); outline: 1px solid var(--brand-400, #2563eb); }
/* Flaggen als Inline-SVG. Die hoehere Spezifitaet ist noetig, weil
   ".lang-btn svg" alle Symbole im Knopf auf 12 px zwingt und fill:none
   setzt - das gilt fuer das Pfeilsymbol daneben, nicht fuer die Flagge. */
.lang-btn .lang-flag,
.lang-option .lang-flag {
  width: 21px;
  height: 15px;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
  fill: initial;
  stroke: none;
  stroke-width: 0;
  box-shadow: 0 0 0 1px rgba(11, 18, 32, .12);
}
.lang-btn #currentFlag { display: flex; align-items: center; }
.lang-option .flag { display: flex; align-items: center; }
.lang-option .name { font-size: 11px; color: var(--ink-70); }

/* Mobile burger */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  transition: background .2s;
}
.burger:hover { background: var(--ink-05); }
.burger svg { width: 24px; height: 24px; fill: var(--ink); }
@media (min-width: 768px) { .burger { display: none; } }
@media (max-width: 767px) {
  .header-inner { gap: 12px; }
  .header-inner .brand { margin-right: auto; }
  .burger { width: 48px; height: 48px; }
  .burger svg { width: 30px; height: 30px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; bottom: 0; left: 0;
  width: min(320px, 85vw);
  background: var(--white);
  color: var(--ink);
  z-index: 60;
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-logo { display: inline-flex; }
.mobile-nav-logo img { display: block; height: 38px; width: auto; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--ink-10);
  font-weight: 800;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-05);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}
.mobile-nav-close:hover { background: var(--ink-10); }
.mobile-nav-links { padding: 20px; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-support { margin-top: auto; padding: 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--ink-10); }
.mns-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 10px; background: var(--action); color: #ffffff; font-weight: 600; font-size: 15px; text-decoration: none; }
.mns-item:hover { background: var(--action-600); }
.mns-item svg { width: 22px; height: 22px; stroke: #ffffff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.mobile-nav-links a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: background .2s;
}
.mobile-nav-links a:hover { background: var(--ink-05); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 55;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.nav-overlay.active { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

/* =============================================================
   Hero
   ============================================================= */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(245,184,0,.25), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(11,18,32,.06), transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-soft) 100%);
  padding: 56px 0 80px;
}
@media (max-width: 520px) {
  .hero { padding: 20px 0 40px; }
  .hero h1 { margin-top: 8px; }
}
.hero-content { max-width: 720px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--ink-05);
  font-size: 12px;
  font-weight: 600;
}
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); }
.hero h1 {
  margin-top: 20px;
  font-size: clamp(28px, 5.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  text-wrap: pretty;
}
.hero h1 .highlight {
  text-decoration: underline;
  text-decoration-color: var(--action);
  text-decoration-thickness: clamp(4px, 0.7vw, 8px);
  text-underline-offset: 0.08em;
}
.hero h1 .highlight {
  white-space: nowrap;
}
.pb-price-from {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: 0.2em;
  margin-right: 2px;
  text-transform: lowercase;
}
.hero p.lead {
  margin-top: 20px;
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-70);
  max-width: 560px;
}
.hero-features {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-70);
}
.hero-features > div { display: flex; align-items: center; gap: 8px; }
.hero-features svg { width: 20px; height: 20px; fill: var(--brand-500); }

/* Booking widget slot */
.booking-slot {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
}

/* Mobile: keine Box, volle Breite */
@media (max-width: 520px) {
  .booking-slot {
    border-radius: 0;
    overflow: visible;
    margin: 24px -16px 0;
    background: transparent !important;
  }
}

/* Trust row */
.trust-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-60);
}
.trust-stars { display: flex; align-items: center; gap: 8px; }
.stars { display: flex; }
.stars svg { width: 16px; height: 16px; fill: var(--brand-500); }
.trust-payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-payment .ph-small {
  width: 32px; height: 20px;
  border-radius: 3px;
  background: repeating-linear-gradient(45deg, #EDEBE4 0 10px, var(--bg-soft) 10px 20px);
}
.payment-mini {
  width: 36px; height: 24px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  padding: 2px;
}
.payment-mini img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Mobile: Trust-Row zentriert stapeln */
@media (max-width: 640px) {
  .trust-row {
    justify-content: center;
    text-align: center;
  }
  .trust-stars,
  .trust-payment {
    justify-content: center;
    width: 100%;
  }
}

/* =============================================================
   Sections
   ============================================================= */
.section { padding: 80px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-soft { background: var(--bg-soft); }
.section-white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-header p { margin-top: 12px; color: var(--ink-70); }
.section-dark .section-header p { color: rgba(255,255,255,.7); }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.section-header-row h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-link { font-size: 14px; font-weight: 600; }
.section-link:hover { text-decoration: underline; }

/* Hero-Info (Text + Image) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-grid h2 {
  margin-top: 16px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.info-grid h2 .accent { color: var(--brand-500); }
.info-grid p { margin-top: 16px; color: var(--ink-70); }
.info-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; }
.info-list svg { width: 24px; height: 24px; stroke: var(--brand-500); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.info-image {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: repeating-linear-gradient(45deg, #EDEBE4 0 10px, var(--bg-soft) 10px 20px);
  overflow: hidden;
}
.info-image img { width: 100%; height: 100%; object-fit: cover; }

/* Steps (So einfach) */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 24px;
}
.step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255,255,255,.1);
  line-height: 1;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--brand-400);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 28px; height: 28px; }
.step-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.step-card p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  position: relative;
}
.step-card strong { color: var(--white); }

/* Vorteile (Feature-Rows) */
.feature-rows { display: flex; flex-direction: column; gap: 64px; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) { .feature-row { grid-template-columns: 1fr 1fr; } }
.feature-row h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.feature-row p {
  margin-top: 12px;
  color: var(--ink-70);
  line-height: 1.65;
}
.feature-image {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: repeating-linear-gradient(45deg, #EDEBE4 0 10px, var(--bg-soft) 10px 20px);
  overflow: hidden;
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .feature-row.reverse .feature-image { order: 2; }
  .feature-row.reverse .feature-text { order: 1; }
}

/* Reviews widget wrapper */
.reviews-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--ink-05);
}
@media (min-width: 640px) { .reviews-wrap { padding: 24px; } }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-05);
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
/* Die ganze Karte ist ein echter Link (vorher onclick, damit nicht crawlbar). */
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-card-link:focus-visible { outline: 3px solid var(--brand-600); outline-offset: 2px; }
.blog-card-link .blog-body { flex: 1 1 auto; }
.blog-image {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(45deg, #EDEBE4 0 10px, var(--bg-soft) 10px 20px);
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-600);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.blog-title {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  transition: color .2s;
}
.blog-card:hover .blog-title { color: var(--brand-600); }
.blog-excerpt { margin-top: 8px; font-size: 14px; color: var(--ink-60); }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--ink-05);
  padding: 20px;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
.faq-toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.65;
}

/* Info articles */
.info-article {
  padding: 32px 0;
  border-top: 1px solid var(--ink-10);
}
.info-article h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.info-article p {
  color: rgba(11,18,32,.8);
  line-height: 1.65;
  margin-bottom: 16px;
}
.highlight-box {
  background: var(--brand-50);
  border-left: 4px solid var(--brand-400);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.highlight-box p.title { font-weight: 700; margin-bottom: 8px; }
.highlight-box .item { font-size: 14px; margin-bottom: 4px; }
.features-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}
@media (min-width: 640px) { .features-two-col { grid-template-columns: 1fr 1fr; } }
.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}
.feature-check .check { color: var(--brand-500); font-weight: 700; }

/* CTA */
.cta-box {
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 640px) { .cta-box { padding: 56px; } }
@media (min-width: 768px) { .cta-box { grid-template-columns: 1fr 1fr; } }
.cta-box::before {
  content: "";
  position: absolute;
  right: -64px; top: -64px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,197,26,.2);
  filter: blur(60px);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.cta-box p {
  margin-top: 12px;
  color: rgba(255,255,255,.7);
}
.cta-action { display: flex; }
@media (min-width: 768px) { .cta-action { justify-content: flex-end; } }

/* Button */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--action);
  color: var(--white);
  border: 1px solid var(--action);
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 16px;
  transition: background .2s;
}
.btn-accent:hover { background: var(--action-600); border-color: var(--action-600); }
.btn-accent svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Bezirke */
.service-directory {
  padding: 38px 0;
  border-top: 1px solid var(--ink-05);
}
.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.service-directory .region-block {
  min-width: 0;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--ink-05);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 32, 80, .045);
}
.service-directory .region-block h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: left;
}
.service-directory .region-subtitle {
  min-height: 38px;
  margin: 0 0 14px;
  color: var(--ink-60);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}
.service-directory .districts-wrap {
  justify-content: flex-start;
  gap: 6px;
}
.service-directory .district-link,
.service-directory .district-current {
  padding: 5px 9px;
  font-size: 11px;
}
.service-directory .districts-rest { margin-top: 8px; }
.service-directory .districts-toggle {
  margin: 12px 0 0;
  padding: 6px 11px;
  font-size: 11px;
}
@media (max-width: 1050px) {
  .service-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .service-directory { padding: 26px 0; }
  .service-directory-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-directory .region-block { padding: 17px; }
  .service-directory .region-subtitle { min-height: 0; }
}
.districts-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.district-link {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-70);
  transition: background .2s, color .2s;
}
.district-link:hover { background: var(--brand-100); color: var(--ink); }
.district-current {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--ink);
  font-weight: 600;
}
/* Einklappbare Stadtteil-/Link-Listen (Links bleiben im DOM = crawlbar) */
.districts-rest { margin-top: 18px; }
.districts-rest[hidden] { display: none; }
.districts-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 18px auto 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-70);
  background: var(--bg-soft);
  border: 1px solid var(--ink-05);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: inherit;
}
.districts-toggle:hover { background: var(--brand-100); color: var(--ink); }
.districts-toggle::after { content: "▾"; font-size: 12px; transition: transform .2s; }
.districts-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.districts-toggle .dt-less { display: none; }
.districts-toggle[aria-expanded="true"] .dt-more { display: none; }
.districts-toggle[aria-expanded="true"] .dt-less { display: inline; }

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  background: var(--white);
  color: var(--ink-70);
  border-top: 1px solid var(--ink-10);
}
.footer-top {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .footer-top { grid-template-columns: 1.35fr repeat(3, minmax(0, .8fr)); } }
.footer-section h4 {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-section ul { display: flex; flex-direction: column; gap: 8px; }
.footer-section a { color: var(--ink-70); font-size: 14px; transition: color .2s; }
.footer-section a:hover { color: var(--action); }
.footer-logo-link { display: inline-block; line-height: 0; }
.footer-logo {
  display: block;
  width: min(270px, 100%);
  height: auto;
}
.footer-brand-text {
  margin-top: 16px;
  font-size: 14px;
  max-width: 360px;
}
.payment-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.payment-item {
  width: 48px; height: 32px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
}
.payment-item img { max-width: 100%; max-height: 100%; }
.payment-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink-60);
}
.partner-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-row img { height: 40px; width: auto; opacity: .8; transition: opacity .2s; }
.partner-row a:hover img { opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--ink-10);
  color: var(--ink-60);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
}

/* =============================================================
   Page Hero (kleiner als Haupt-Hero, für Unterseiten)
   ============================================================= */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(245,184,0,.2), transparent 60%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-soft) 100%);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--ink-05);
}
.page-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 16px auto 0;
  max-width: 720px;
  text-wrap: balance;
}
.page-hero p {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--ink-70);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
}

/* =============================================================
   Numbered Step (Feature-Row mit großer Nummer)
   ============================================================= */
.numbered-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) { .numbered-step { grid-template-columns: 1fr 1fr; } }
.numbered-step .step-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: repeating-linear-gradient(45deg, #EDEBE4 0 10px, var(--bg-soft) 10px 20px);
  overflow: hidden;
}
.numbered-step .step-visual img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .numbered-step.reverse .step-visual { order: 2; }
  .numbered-step.reverse .step-body { order: 1; }
}
.numbered-step .step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.numbered-step .step-badge {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--action);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
}
.numbered-step .step-body h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
}
.numbered-step .step-body p {
  color: var(--ink-70);
  line-height: 1.7;
  font-size: 15px;
}

/* =============================================================
   Info-Card-Grid (für z.B. Terminal-Informationen)
   ============================================================= */
.info-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 640px) { .info-card-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); } }
.info-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  padding: 24px;
}
.info-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card h4 .badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--brand-100);
  color: var(--brand-700);
  padding: 2px 8px;
  border-radius: 4px;
}
.info-card p {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.6;
  margin: 4px 0;
}
.info-card p strong { color: var(--ink); }

/* =============================================================
   Search Box
   ============================================================= */
.search-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--ink-10);
  padding: 6px 8px 6px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box svg {
  width: 20px; height: 20px;
  color: var(--ink-50);
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.search-box input::placeholder { color: var(--ink-50); }
.search-box .search-count {
  font-size: 12px;
  color: var(--ink-60);
  padding: 0 16px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* =============================================================
   Category Pills (für FAQ-Nav, Blog-Kategorien)
   ============================================================= */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 0;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  color: var(--ink-70);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.category-pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.category-pill.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.category-pill-count {
  font-size: 11px;
  opacity: .7;
}

/* =============================================================
   Stadtteil-Karten (für Geschäftsgebiete)
   ============================================================= */
.stadtteil-group { margin-bottom: 56px; scroll-margin-top: 80px; }
.stadtteil-group-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink-05);
}
.stadtteil-group-head h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.stadtteil-group-head .count {
  font-size: 13px;
  color: var(--ink-60);
  font-weight: 500;
}
.stadtteil-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .stadtteil-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stadtteil-cards { grid-template-columns: repeat(3, 1fr); } }
.stadtteil-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 12px;
  padding: 18px;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stadtteil-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.stadtteil-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.stadtteil-card-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.stadtteil-card-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-60);
  background: var(--bg-soft);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.stadtteil-card-desc { font-size: 13px; color: var(--ink-60); line-height: 1.4; }
.stadtteil-card-save {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  margin-top: auto;
  padding-top: 4px;
}

/* =============================================================
   Breadcrumb
   ============================================================= */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--ink-70); }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb .sep { color: var(--ink-50); }

/* =============================================================
   Blog Single Post
   ============================================================= */
.post-single { max-width: 760px; margin: 0 auto; }
.post-head { margin-bottom: 32px; text-align: center; }
.post-category-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brand-700);
  background: var(--brand-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.post-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  text-wrap: balance;
}
.post-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-60);
}
.post-meta > span { display: inline-flex; align-items: center; gap: 4px; }
.post-featured-image {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
  background: repeating-linear-gradient(45deg, #EDEBE4 0 10px, var(--bg-soft) 10px 20px);
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }
.post-content { font-size: 16px; line-height: 1.75; color: rgba(11,18,32,.82); }
.post-content > * + * { margin-top: 1em; }
.post-content h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-top: 2em;
  margin-bottom: .5em;
}
.post-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: .3em;
}
.post-content p { color: rgba(11,18,32,.82); }
.post-content a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--brand-700); }
.post-content ul, .post-content ol { padding-left: 24px; }
.post-content li { margin: 6px 0; }
.post-content img { border-radius: 12px; margin: 24px 0; }
.post-content blockquote {
  border-left: 4px solid var(--brand-400);
  padding: 4px 0 4px 20px;
  font-style: italic;
  color: var(--ink-70);
  margin: 24px 0;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-70);
}
.back-to-blog:hover { color: var(--ink); text-decoration: underline; }

.blog-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-50);
}
.blog-views-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(11,18,32,.75);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.blog-card { position: relative; }

/* =============================================================
   Pagination
   ============================================================= */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 48px;
}
.pagination-btn {
  min-width: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--ink-10);
  color: var(--ink-70);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all .2s;
}
.pagination-btn:hover { border-color: var(--ink); color: var(--ink); }
.pagination-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.pagination-dots {
  padding: 8px 6px;
  color: var(--ink-50);
}

/* =============================================================
   Empty state
   ============================================================= */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  background: var(--bg-soft);
  border-radius: 16px;
}
.empty-state h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.empty-state p { color: var(--ink-60); }

/* =============================================================
   Vergleichs-Block (3 Spalten: Transfer/Taxi/S-Bahn)
   ============================================================= */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) { .compare-grid { grid-template-columns: repeat(3, 1fr); } }

.compare-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.compare-card.highlight {
  border-color: var(--brand-400);
  border-width: 2px;
  padding: 27px 23px;
  box-shadow: 0 8px 30px rgba(245,184,0,.12);
}
.compare-card.highlight::before {
  content: "Empfehlung";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--brand-400);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 999px;
}
.compare-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}
.compare-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.compare-meta {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--ink-05);
  border-bottom: 1px solid var(--ink-05);
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--ink-70);
}
.compare-meta strong { color: var(--ink); display: block; font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.compare-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-70);
  padding: 4px 0;
  line-height: 1.45;
}
.compare-list li svg { flex-shrink: 0; width: 14px; height: 14px; margin-top: 4px; }
.compare-list li.pro svg { color: #16a34a; }
.compare-list li.con svg { color: #9ca3af; }

/* =============================================================
   Fahrzeugklassen-Grid
   ============================================================= */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vehicle-grid { grid-template-columns: repeat(3, 1fr); } }

.vehicle-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: 14px;
  padding: 20px;
  transition: border-color .2s, transform .15s;
}
.vehicle-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.vehicle-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.vehicle-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.vehicle-icon svg { width: 22px; height: 22px; }
.vehicle-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.vehicle-cap {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-700);
  background: var(--brand-100);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
}
.vehicle-desc {
  font-size: 13px;
  color: var(--ink-70);
  line-height: 1.5;
  margin: 8px 0;
}
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ink-05);
  font-size: 12px;
  color: var(--ink-60);
}
.vehicle-specs span { display: inline-flex; align-items: center; gap: 4px; }
.vehicle-specs svg { width: 12px; height: 12px; }

/* =============================================================
   Step-Image-Card (Bild mit dunklem Overlay-Text unten)
   ============================================================= */
.step-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) { .step-image-grid { grid-template-columns: repeat(3, 1fr); } }

.step-image-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px),
    linear-gradient(135deg, #1a2435 0%, #0B1220 100%);
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.step-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.step-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11, 18, 32, 0.92) 0%,
    rgba(11, 18, 32, 0.70) 35%,
    rgba(11, 18, 32, 0.15) 65%,
    rgba(11, 18, 32, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.step-image-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  color: #fff;
  z-index: 3;
}
.step-image-badge {
  display: inline-block;
  background: var(--brand-400);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.step-image-body h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}
.step-image-body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  margin: 0;
}
.step-image-body p strong { color: #fff; font-weight: 700; }

/* Aspect-Ratio auf Mobile flacher, damit die Cards nicht zu hoch werden */
@media (max-width: 767px) {
  .step-image-card { aspect-ratio: 16/10; }
}

/* =============================================================
   Legal-Seiten (Impressum, AGB, Datenschutz)
   ============================================================= */
.legal-page {
  padding: 48px 0 80px;
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal-wrap h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.legal-wrap .legal-subtitle {
  font-size: 17px;
  color: var(--ink-70);
  margin-bottom: 40px;
}
.legal-wrap h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-400);
  display: inline-block;
}
.legal-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-wrap p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 14px;
}
.legal-wrap ul, .legal-wrap ol {
  margin: 12px 0 16px 20px;
  padding-left: 12px;
}
.legal-wrap li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-70);
  margin-bottom: 6px;
}
.legal-wrap strong { color: var(--ink); font-weight: 700; }
.legal-wrap a {
  color: var(--brand-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-wrap a:hover { color: var(--brand-400); }

/* Content-Boxen auf Legal-Seiten */
.legal-box {
  background: #fff;
  border: 1px solid var(--ink-05);
  border-left: 4px solid var(--brand-400);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}
.legal-box-warning {
  background: #fff9e6;
  border: 1px solid #f5b800;
  border-left: 4px solid #f5b800;
}
.legal-box-info {
  background: #f7f8fa;
  border-left: 4px solid var(--ink);
}
.legal-box h3 { margin-top: 0; }
.legal-box p:last-child { margin-bottom: 0; }

/* Inhaltsverzeichnis */
.legal-toc {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px 0;
}
.legal-toc h3 {
  margin-top: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-70);
  font-weight: 700;
}
.legal-toc ul { list-style: none; margin: 0; padding: 0; }
.legal-toc li { margin: 6px 0; }
.legal-toc a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.legal-toc a:hover { color: var(--brand-600); text-decoration: underline; }

/* Stand-Hinweis am Ende */
.legal-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-05);
  color: var(--ink-70);
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-page { padding: 24px 0 60px; }
  .legal-wrap h2 { font-size: 20px; margin-top: 32px; }
  .legal-wrap h3 { font-size: 16px; }
  .legal-box { padding: 16px 18px; }
  .legal-toc { padding: 16px 18px; }
}

/* =============================================================
   Utility helpers
   ============================================================= */
.text-center { text-align: center; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }

/* ========== Top-Promo-Bar (Gutscheincode oben durchgehend) ========== */
.top-promo-bar {
  background: var(--action);
  color: #ffffff;
  padding: 11px 0;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  position: relative;
}
.tpb-info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; margin-left: 8px; padding: 0; border: 0; border-radius: 50%;
  background: #0B1220; color: #fff; font-size: 12px; font-weight: 700; line-height: 1; cursor: pointer;
  vertical-align: middle;
}
.tpb-info:hover { background: #1d2738; }
.tpb-popup {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%);
  margin-top: 6px; width: max-content; max-width: min(92vw, 440px); z-index: 120;
  background: #fff; color: #0B1220; font-size: 13px; line-height: 1.45; font-weight: 400;
  padding: 12px 16px; border-radius: 10px; box-shadow: 0 8px 24px rgba(11,18,32,.22); text-align: center;
}
.tpb-popup[hidden] { display: none; }
.top-promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tpb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0B1220;
  color: #ffffff;
  flex-shrink: 0;
}
.tpb-icon svg { width: 14px; height: 14px; }
.tpb-text { font-weight: 500; }
.tpb-text strong { font-weight: 800; }
.tpb-note { font-weight: 400; opacity: .7; font-size: .8em; flex-basis: 100%; text-align: center; margin: 1px 0 0; }
.tpb-valid { font-weight: 500; opacity: .8; font-size: .82em; white-space: nowrap; margin-left: 8px; }
.tpb-code {
  display: inline-block;
  font-family: 'Menlo', 'Consolas', monospace;
  font-weight: 700;
  font-size: 14px;
  background: #0B1220;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  margin-left: 4px;
  user-select: all;
}
.trust-voucher-promo {
  position: relative;
  display: flex;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 88px;
  margin: 0 0 24px;
  padding: 18px 22px;
  border: 0;
  border-radius: 16px;
  background: var(--action);
  color: #ffffff;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 19px;
  line-height: 1.35;
}
.trust-voucher-promo::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid var(--action);
}
.trust-voucher-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  color: #fff;
}
.trust-voucher-icon svg { width: 22px; height: 22px; }
.trust-voucher-text { font-weight: 600; white-space: nowrap; }
.trust-voucher-text strong { font-weight: 800; }
.trust-voucher-code {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  background: #0B1220;
  color: #fff;
  font: 800 17px/1.3 'Menlo', 'Consolas', monospace;
  letter-spacing: .5px;
  user-select: all;
}
.trust-voucher-valid { font-size: 13px; font-weight: 500; opacity: .9; white-space: nowrap; }
@media (max-width: 860px) {
  .trust-voucher-promo {
    flex-wrap: nowrap !important;
    gap: 5px;
    min-height: 90px;
    padding: 12px 7px;
    font-size: clamp(13px, 4.3vw, 18px);
    text-align: center;
  }
  .trust-voucher-icon { width: 34px; height: 34px; flex: 0 0 34px; }
  .trust-voucher-icon svg { width: 20px; height: 20px; }
  .trust-voucher-code { flex: 0 0 auto; padding: 5px 9px; font-size: clamp(13px, 3.8vw, 16px); }
  .trust-voucher-valid { flex: 0 0 auto; font-size: clamp(9px, 2.7vw, 12px); text-align: left; }
  .trust-voucher-promo--de { gap: 5px; }
  .trust-voucher-promo--de .trust-voucher-text { font-size: clamp(13px, 4.3vw, 18px); }
  .trust-voucher-promo--de .trust-voucher-valid { font-size: clamp(9px, 2.7vw, 12px); }
}
@media (max-width: 520px) {
  .top-promo-bar { font-size: 14.5px; padding: 9px 0; }
  .top-promo-bar .container { gap: 8px; padding: 0 12px; }
  .tpb-icon { width: 20px; height: 20px; }
  .tpb-icon svg { width: 12px; height: 12px; }
  .tpb-code { font-size: 13px; padding: 2px 8px; }
  .trust-voucher-promo { flex-wrap: nowrap !important; gap: 5px; min-height: 90px; padding: 12px 7px; font-size: clamp(13px, 4.3vw, 18px); text-align: center; }
  .trust-voucher-icon { width: 34px; height: 34px; flex: 0 0 34px; }
  .trust-voucher-icon svg { width: 20px; height: 20px; }
  .trust-voucher-text { white-space: nowrap; }
  .trust-voucher-code { padding: 5px 9px; font-size: clamp(13px, 3.8vw, 16px); }
  .trust-voucher-valid { flex-basis: auto; text-align: left; font-size: clamp(9px, 2.7vw, 12px); }
}

/* =============================================================
   Einheitliche Schaltflaechen und Links
   -------------------------------------------------------------
   Drei Rollen, drei Farben. Abgeleitet aus den Mustern, die auf
   der Seite bereits funktionierten: der gruenen Schaltflaeche der
   Fahrzeugkarten, den Filter-Chips darueber und der Streckenliste
   auf der Startseite.

     Gruen                 fuehrt zur Buchung
     Gold                  Navigation innerhalb der Website
     Weiss mit Rahmen      zweitrangig oder externes Ziel

     .ftb-btn          Hauptaktion
     .ftb-btn--quiet   zweitrangige Aktion, auch externe Links
     .ftb-btn--wide    fuellt die Breite (Handy, Karten)
     .ftb-chip         Auswahl, Sprungmarke, Schlagwort
     .ftb-linklist     Navigationsliste mit Trennlinien
     .ftb-more         "mehr davon" am Ende einer Liste
   ============================================================= */
.ftb-btn,
.ftb-btn--quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--action);
  border-radius: var(--r-btn);
  background: var(--action);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.ftb-btn:hover { background: var(--action-600); border-color: var(--action-600); }

.ftb-btn--quiet {
  background: var(--white);
  border-color: var(--ink-10);
  color: var(--ink);
  font-weight: 600;
}
.ftb-btn--quiet:hover {
  border-color: var(--action);
  color: var(--action-700);
  box-shadow: 0 3px 10px rgba(0, 32, 80, .08);
}

.ftb-btn--wide { width: 100%; }

.ftb-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--ink-10);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.ftb-chip:hover { border-color: var(--action); color: var(--action-700); }
.ftb-chip.is-active,
.ftb-chip[aria-pressed="true"] {
  border-color: var(--action);
  background: var(--action-soft);
  color: var(--action-700);
}

/* Navigationsliste: Trennlinien statt Aufzaehlungspunkte */
.ftb-linklist { list-style: none; margin: 0; padding: 0; }
.ftb-linklist li { border-bottom: 1px solid var(--ink-05); list-style: none; }
.ftb-linklist li:last-child { border-bottom: none; }
.ftb-linklist a {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}
.ftb-linklist a:hover { color: var(--brand-600); }

.ftb-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-600);
  font-weight: 700;
  text-decoration: none;
}
.ftb-linklist a.ftb-more { padding-top: 12px; }
.ftb-more::after { content: "\2192"; transition: transform .15s; }
.ftb-more:hover::after { transform: translateX(3px); }

/* Tastaturbedienung sichtbar machen - fehlte bisher ueberall */
.ftb-btn:focus-visible,
.ftb-btn--quiet:focus-visible,
.ftb-chip:focus-visible,
.ftb-linklist a:focus-visible,
.ftb-more:focus-visible {
  outline: 2px solid var(--action-700);
  outline-offset: 2px;
}
