/* ============================================================
   VECTORIUS Krankenfahrdienste GmbH
   Originalgetreuer Nachbau der Elementor-Seite als statisches HTML.
   CI aus uicore-global.css: Primaer #72251F, Poppins.
   ============================================================ */

/* Poppins lokal gehostet (kein Google-Fonts-Request, DSGVO-freundlich) */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../assets/fonts/poppins-300.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/poppins-700.woff2") format("woff2");
}

:root {
  /* Farben (Original-CI) */
  --primary: #72251F;
  --primary-dark: #571C18;
  --primary-deep: #40120F;
  --dark: #10100E;
  --body: #0E0E0E;
  --muted: #5f5f5c;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, 0.75);
  --line: rgba(14, 14, 14, 0.12);
  --line-light: rgba(255, 255, 255, 0.25);
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* Typografie (Original: Poppins, H1 300) */
  --font: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --fs-body: 1.0625rem;                 /* 17px */
  --fs-h1: clamp(2.4rem, 5.5vw, 4.4rem);
  --fs-h2: clamp(1.8rem, 3.4vw, 2.6rem);
  --fs-h3: 1.3rem;

  /* Raum */
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;
  --wrap: 75rem;

  /* Form */
  --r: 10px;
  --r-lg: 16px;
  --shadow-1: 0 2px 8px rgba(16, 16, 14, 0.07), 0 10px 30px rgba(16, 16, 14, 0.08);
  --shadow-2: 0 6px 16px rgba(16, 16, 14, 0.12), 0 20px 50px rgba(16, 16, 14, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.8s;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.8;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  line-height: 1.2;
  letter-spacing: -0.027em;
  margin: 0 0 var(--sp-3);
  color: var(--dark);
  font-weight: 300;
}
h1 { font-size: var(--fs-h1); line-height: 1.1; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }

p { margin: 0 0 var(--sp-2); }
a { color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip {
  position: absolute;
  left: -999px; top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 10000;
}
.skip:focus { left: 0; }

/* ---------- Reveals ---------- */

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: 0.1s; }
.rv[data-d="2"] { transition-delay: 0.2s; }
.rv[data-d="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-video { display: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.9rem 1.7rem;
  border-radius: var(--r);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; flex-shrink: 0; }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { background: var(--light); }

.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
.text-link span { transition: transform 0.3s var(--ease); }
.text-link:hover span { transform: translateX(5px); }

.kicker {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}
.kicker-hero { color: rgba(255, 255, 255, 0.85); }

/* ---------- Topbar ---------- */

.topbar {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}
.topbar-row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: 0.55rem;
}
.topbar p { margin: 0; }
.topbar strong { color: var(--white); font-weight: 600; }

@media (max-width: 760px) {
  .topbar-row p:last-child { display: none; }
  .topbar-row { justify-content: center; text-align: center; }
}

/* ---------- Header (immer weiss, wie Original) ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow 0.35s var(--ease);
}
.site-head.scrolled { box-shadow: var(--shadow-1); }

.head-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 0.9rem;
}

.brand { display: inline-block; line-height: 0; }
.brand img { width: clamp(150px, 16vw, 210px); height: auto; }

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.6vw, 2.4rem);
  margin-left: auto;
}
.main-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--body);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { transform: scaleX(1); }

.head-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.head-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: var(--body);
  transition: color 0.3s var(--ease);
}
.head-tel svg { width: 1em; height: 1em; fill: currentColor; }
.head-tel:hover { color: var(--primary); }

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .head-actions { margin-left: auto; }
}
@media (max-width: 640px) {
  .head-tel { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(86vh, 52rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 12, 11, 0.82) 0%, rgba(20, 12, 11, 0.6) 55%, rgba(64, 18, 15, 0.45) 100%);
}
.hero-inner {
  position: relative;
  padding-block: var(--sp-5) 11rem;
}
@media (max-width: 900px) {
  .hero-inner { padding-bottom: 7rem; }
}
.hero .kicker-hero {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.hero h1 {
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .hero h1 br { display: none; }
}

/* Mobile: kompaktere Schriften, Buttons untereinander in voller Breite */
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(1.85rem, 8.2vw, 2.3rem); }
  .hero .kicker-hero { font-size: 0.82rem; letter-spacing: 0.06em; }
  .hero-text { font-size: 1.05rem; line-height: 1.75; }
  .hero-divider { margin: 1.1rem 0; }
  .hero-inner { padding-top: var(--sp-4); }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn { width: 100%; justify-content: center; }
}
.hero-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  max-width: 44rem;
  margin: var(--sp-3) 0;
}
.hero-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  line-height: 1.9;
  max-width: 40rem;
  margin-bottom: var(--sp-4);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--light); color: var(--primary); }

/* Schwebende Kontakt-Leiste: erscheint erst beim Scrollen */
/* Buendig zum Barrierefreiheits-Button (.a11y-fab):
   gleiche Hoehe (3.5rem), gleiche Unterkante (bottom 1.3rem) */
.scroll-contact {
  position: fixed;
  left: 50%;
  bottom: 1.3rem;
  z-index: 95;
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
  height: 3.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem;
  box-shadow: 0 16px 50px -16px rgba(16, 16, 14, 0.45);
  transform: translate(-50%, 6rem);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.scroll-contact.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  border-radius: 999px;
  padding: 0 1.4rem;
  transition: background-color 0.25s var(--ease);
}
.sc-btn svg { width: 1.15rem; height: 1.15rem; fill: currentColor; flex-shrink: 0; }

.sc-tel { background: var(--primary); }
.sc-tel:hover { background: var(--primary-dark); }
.sc-wa { background: var(--whatsapp); }
.sc-wa:hover { background: var(--whatsapp-dark); }

@media (max-width: 640px) {
  .scroll-contact {
    left: calc(1.3rem + 3.5rem + 0.7rem);
    right: 1.3rem;
    transform: translate(0, 6rem);
  }
  .scroll-contact.visible { transform: translate(0, 0); }
  .sc-btn { flex: 1; justify-content: center; padding-inline: 0.6rem; }
}

/* ---------- Feature-Boxen (ragen in den Hero hinein, wie Original) ---------- */

.features { padding-block: 0 var(--sp-5); }

.features-grid {
  position: relative;
  z-index: 5;
  margin-top: -7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left-width: 0;
  padding: 2.2rem 2rem;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature-card:first-child {
  background: var(--primary);
  border-color: var(--primary);
  border-left-width: 1px;
}
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.feature-card p { color: var(--muted); font-size: 1rem; margin: 0; line-height: 1.7; }
.feature-card:first-child h3 { color: var(--white); }
.feature-card:first-child p { color: rgba(255, 255, 255, 0.85); }

.feature-icon { display: inline-block; margin-bottom: 1rem; }
.feature-icon svg { width: 2.1rem; height: 2.1rem; fill: var(--primary); }
.feature-card:first-child .feature-icon svg { fill: var(--white); }

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; margin-top: -3rem; }
  .feature-card { border-left-width: 1px; border-top-width: 0; }
  .feature-card:first-child { border-top-width: 1px; }
}

/* ---------- Split-Sections (Text + Bild) ---------- */

.split { padding-block: var(--sp-6); }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}

.split-copy h2 { max-width: 24ch; }
.split-copy p { color: var(--muted); max-width: 36rem; }
.split-copy .btn { margin-top: var(--sp-3); }

/* Bild fuellt die komplette Spaltenhoehe, wie im Original */
.split-media { min-height: 100%; }
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
}

@media (max-width: 900px) {
  .split-media img { min-height: 0; aspect-ratio: 4 / 3; height: auto; }
}

.split-reverse { background: var(--light); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-3);
}
.tag-row li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(114, 37, 31, 0.08);
  border: 1px solid rgba(114, 37, 31, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
}

.check-list { display: grid; gap: 0.7rem; margin-block: var(--sp-3); }
.check-list li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  transform: translateY(0.15rem);
}

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: -1; }
}

/* ---------- Kooperationspartner ---------- */

.partner {
  position: relative;
  background: linear-gradient(rgba(87, 22, 17, 0.93), rgba(64, 14, 11, 0.95)), url("../assets/Spezialtransporte.webp") center/cover;
  color: var(--white);
  padding-block: var(--sp-6);
}
.partner-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto var(--sp-5);
}
.partner-head h2 { color: var(--white); }
.partner-head p { color: rgba(255, 255, 255, 0.8); }

.partner-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.partner-col {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem;
}
.partner-col h3 {
  color: var(--white);
  font-size: 1.15rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-light);
}
.partner-col ul { display: grid; gap: 0.65rem; }
.partner-col li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
}
.partner-col li::before {
  content: "✓";
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transform: translateY(0.12rem);
}

@media (max-width: 900px) {
  .partner-cols { grid-template-columns: 1fr; }
}

/* ---------- Ablauf ---------- */

.ablauf { padding-block: var(--sp-6); }

.center-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto var(--sp-5);
}
.center-head p:not(.kicker) { color: var(--muted); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  align-items: stretch;
}
.step {
  position: relative;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), opacity var(--dur) var(--ease);
}
.step:hover { box-shadow: var(--shadow-1); transform: translateY(-4px); }
.step-no {
  display: block;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.95rem; margin-bottom: 2.6rem; }
.step-icon {
  position: absolute;
  left: 1.4rem;
  bottom: 1.3rem;
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(114, 37, 31, 0.08);
}
.step-icon svg { width: 1.15rem; height: 1.15rem; fill: var(--primary); }

.step-highlight {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.step-highlight h3 { color: var(--white); margin-top: 0.4rem; }
.step-highlight p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.4rem; }
.step-highlight:hover { box-shadow: var(--shadow-2); }

@media (max-width: 1020px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Leistungs-Karten ---------- */

.services { background: var(--light); padding-block: var(--sp-6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), opacity var(--dur) var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-2); transform: translateY(-5px); }
.service-card figure { overflow: hidden; aspect-ratio: 3 / 1.8; }
.service-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover figure img { transform: scale(1.05); }
.service-body { padding: 1.8rem; }
.service-body p { color: var(--muted); font-size: 0.98rem; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA-Baender ---------- */

.band {
  position: relative;
  color: var(--white);
  padding-block: var(--sp-6);
  background-size: cover;
  background-position: center;
}
.band-overlay { position: absolute; inset: 0; }
.band-inner {
  position: relative;
  text-align: center;
  max-width: 52rem;
}
.band h2 { color: var(--white); }
.band p { color: rgba(255, 255, 255, 0.82); margin-bottom: var(--sp-3); }

.band-beratung { background-image: url("../assets/Vectorious-Krankenfahrtdienste-8.webp"); }
.band-beratung .band-overlay { background: rgba(16, 16, 14, 0.75); }

.band-buchen { background-image: url("../assets/Website-III.png"); }
.band-buchen .band-overlay { background: rgba(87, 22, 17, 0.9); }

.band .btn-primary { border: 1.5px solid rgba(255, 255, 255, 0.5); }
.band .btn-primary:hover { background: var(--white); color: var(--primary); }

/* ---------- Kosten ---------- */

.split-kosten { background: var(--white); }

/* Bild buendig zur Textspalte: gleiche Hoehe wie Text inkl. Button */
.split-kosten .split-grid { align-items: stretch; }
.split-kosten .split-media { height: 100%; }
.split-kosten .split-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
@media (max-width: 900px) {
  .split-kosten .split-media img { height: auto; aspect-ratio: 4 / 3; }
}

/* ---------- FAQ ---------- */

.faq { background: var(--light); padding-block: var(--sp-6); }

.faq-list {
  max-width: 50rem;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}
.faq-list details {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-1);
  padding: 0 1.5rem;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding-block: 1.25rem;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--primary); }

.faq-icon { position: relative; width: 1rem; height: 1rem; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--primary);
  transition: transform 0.35s var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
details[open] .faq-icon::after { transform: rotate(0); }

.faq-list details p {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-block: 1.1rem 1.3rem;
  margin: 0;
}

/* ---------- Standort / Anfahrt ---------- */

.anfahrt { padding-block: var(--sp-6); }
.anfahrt .center-head { margin-bottom: var(--sp-4); }
.anfahrt .center-head p:not(.kicker) { color: var(--muted); }
.anfahrt-karte { min-height: 24rem; }
.anfahrt-karte .cc-gate { min-height: 24rem; justify-content: center; }

/* ---------- WhatsApp-Band ---------- */

.band-whatsapp {
  background-image: url("../assets/Whatsapp-Website.jpg");
  padding-block: var(--sp-5);
}
.band-whatsapp .band-overlay { background: rgba(87, 22, 17, 0.88); }

.wa-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.wa-copy { display: flex; align-items: center; gap: 1.2rem; }
.wa-icon { width: 3.6rem; height: 3.6rem; }
.wa-copy h2 { font-size: 1.7rem; margin-bottom: 0.2rem; }
.wa-copy p { margin: 0; color: rgba(255, 255, 255, 0.82); }

/* ---------- Footer ---------- */

.site-foot {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
  font-size: 0.98rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.6fr));
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
}
.foot-brand img { width: 200px; height: auto; margin-bottom: 1rem; }
.foot-brand p { color: var(--muted); max-width: 20rem; }

.foot-col h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.foot-col ul { display: grid; gap: 0.55rem; }
.foot-col li { color: var(--muted); }
.foot-col a {
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.foot-col a:hover { color: var(--primary); }

.foot-line {
  border-top: 1px solid var(--line);
  padding-block: var(--sp-3);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.foot-line p { margin: 0; }

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp-Float ---------- */

.wa-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: var(--shadow-2);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); background: var(--whatsapp-dark); }
.wa-float svg { width: 1.8rem; height: 1.8rem; fill: var(--white); }

/* ---------- Popup: Fahrt anfragen ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 14, 0.65);
  backdrop-filter: blur(3px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 30rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: 2.4rem 2.2rem 2.2rem;
  animation: modal-in 0.35s var(--ease);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .modal-card { animation: none; }
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 50%;
  background: var(--light);
  color: var(--body);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.modal-close:hover { background: var(--primary); color: var(--white); }

.modal-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.modal-card h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.modal-intro { color: var(--muted); font-size: 0.98rem; margin-bottom: var(--sp-3); }

.form-field { margin-bottom: 1.1rem; position: relative; }
.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.form-field input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--body);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 0.8rem 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 37, 31, 0.15);
}
.form-field input.invalid { border-color: #b3261e; }

/* Autocomplete-Vorschlaege */
.ac-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10;
  margin-top: 0.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  max-height: 14rem;
  overflow-y: auto;
}
.ac-list li {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.ac-list li:last-child { border-bottom: 0; }
.ac-list li:hover, .ac-list li[aria-selected="true"] {
  background: rgba(114, 37, 31, 0.08);
  color: var(--primary);
}
.ac-list li.ac-empty {
  cursor: default;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.ac-list li.ac-empty:hover { background: none; color: var(--muted); }
.ac-list li.ac-empty a { color: var(--primary); font-weight: 600; }

/* Zweispaltige Reihe: Wunschdatum + Uhrzeit */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.label-hint {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--muted);
}

/* DSGVO-Einwilligung */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
  border: 1.5px solid transparent;
  border-radius: var(--r);
  padding: 0.5rem 0.6rem;
  margin: 0.2rem 0 1rem;
  cursor: pointer;
}
.form-consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-consent a { color: var(--primary); font-weight: 600; }
.form-consent.invalid { border-color: #b3261e; background: rgba(179, 38, 30, 0.05); }

/* Dringlichkeits-Skala */
.form-field-urgency { margin-bottom: 0.4rem; }
.form-field-urgency input[type="range"] {
  --urgency-color: #2e7d32;
  width: 100%;
  height: 0.6rem;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #2e7d32 0%, #f9a825 40%, #ef6c00 70%, #c62828 100%);
  outline: none;
  cursor: pointer;
  margin-top: 0.3rem;
}
.form-field-urgency input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--urgency-color);
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s var(--ease);
}
.form-field-urgency input[type="range"]::-moz-range-thumb {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--urgency-color);
  box-shadow: var(--shadow-1);
}
.form-field-urgency input[type="range"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(114, 37, 31, 0.2);
}

.urgency-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
}
.urgency-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0.5rem 0 0;
}
.urgency-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #2e7d32;
  flex-shrink: 0;
}

.form-error {
  color: #b3261e;
  font-size: 0.9rem;
  font-weight: 500;
  margin: -0.2rem 0 0.8rem;
}

.btn-block { width: 100%; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0.9rem 0 0;
  text-align: center;
}
.form-note strong { color: var(--primary); }

/* Schritt 2: Bestaetigung */
.modal-step[data-step="done"] { text-align: center; }
.done-icon {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 1rem;
}
.done-icon svg { width: 1.8rem; height: 1.8rem; fill: var(--white); }
.done-text { color: var(--muted); margin-bottom: 1rem; }
.done-notice {
  background: rgba(114, 37, 31, 0.08);
  border: 1px solid rgba(114, 37, 31, 0.25);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 1rem;
}
.done-notice strong { color: var(--primary); }
.done-alt { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; }
.done-alt a { color: var(--primary); font-weight: 600; }

.done-wunsch { font-size: 0.95rem; color: var(--muted); margin: -0.4rem 0 1rem; }
.done-wunsch strong { color: var(--body); }

/* Hinweis bei sehr dringenden Anfragen */
.done-urgent {
  background: rgba(198, 40, 40, 0.08);
  border: 1.5px solid #c62828;
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 1rem;
}
.done-urgent strong { color: #c62828; }
.done-urgent-tel {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #c62828;
  text-decoration: none;
}
.done-urgent-tel:hover { text-decoration: underline; }

body.modal-open { overflow: hidden; }

/* Hinweis-Popup: WhatsApp demnaechst verfuegbar */
.wa-soon-card { max-width: 22rem; text-align: center; }
.wa-soon-icon { background: var(--whatsapp); }
.wa-soon-tel {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 1.2rem;
}
.wa-soon-tel:hover { text-decoration: underline; }

/* ================================================================== */
/*  Barrierefreiheit (opt-in)                                          */
/*  Die folgenden Effekte greifen NUR, wenn die jeweilige Klasse am    */
/*  <html> gesetzt ist (durch das A11y-Panel). Ohne aktive Option      */
/*  bleibt die Seite fuer normale Nutzer optisch exakt unveraendert.   */
/* ================================================================== */

/* Fokus-Fallback: 0 Spezifitaet via :where() -> vorhandene Styles
   gewinnen immer; ergaenzt nur fehlende Fokus-Ringe. */
:where(a[href], button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Schriftgroesse (skaliert rem/em-basierte Inhalte) */
html.a11y-font-120 { font-size: 120%; }
html.a11y-font-140 { font-size: 140%; }
html.a11y-font-160 { font-size: 160%; }

/* Hochkontrast */
html.a11y-high-contrast body { background: #000 !important; }
html.a11y-high-contrast body *:not(.skip) {
  background-color: #000 !important;
  background-image: none !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
html.a11y-high-contrast body a:not(.skip) {
  color: #ffeb3b !important;
  text-decoration: underline !important;
}
html.a11y-high-contrast body :is(button, input, select, textarea) {
  border: 1px solid #fff !important;
}
html.a11y-high-contrast .hero-video { display: none !important; }

/* Text-Abstaende (orientiert an WCAG 1.4.12) */
html.a11y-spacing body *:not(.skip) {
  line-height: 1.7 !important;
  letter-spacing: 0.06em !important;
  word-spacing: 0.14em !important;
}

/* Bewegung reduzieren (ueberschreibt unabhaengig vom OS-Setting) */
html.a11y-no-motion *,
html.a11y-no-motion *::before,
html.a11y-no-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}
html.a11y-no-motion .rv { opacity: 1; transform: none; }
html.a11y-no-motion .hero-video { display: none !important; }

/* Gut lesbare Schrift (systemnah, kein externer Font) */
html.a11y-readable-font body *:not(.skip) {
  font-family: Verdana, Tahoma, "Segoe UI", Arial, sans-serif !important;
}

/* Links hervorheben */
html.a11y-highlight-links body a:not(.skip) {
  text-decoration: underline !important;
  text-underline-offset: 2px;
  outline: 1px dashed currentColor;
  outline-offset: 2px;
  font-weight: 600 !important;
}

/* Verstaerkter Fokus-Rahmen */
html.a11y-strong-focus *:focus,
html.a11y-strong-focus *:focus-visible {
  outline: 3px solid #ff6b00 !important;
  outline-offset: 3px !important;
}

/* Grosser Mauszeiger */
html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M6 2l30 18-13 3 8 16-6 3-8-16-11 9z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 4 2, auto !important;
}

/* Reduced Motion (OS-Setting, unabhaengig vom Panel) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- A11y-Panel UI (FAB unten links + Dialog) ---------- */

.a11y-fab {
  position: fixed;
  bottom: 1.3rem;
  left: 1.3rem;
  z-index: 1100;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 30px -8px rgba(64, 18, 15, 0.7);
  transition: transform 0.2s var(--ease);
}
.a11y-fab:hover { transform: translateY(-2px); }
.a11y-fab:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(114, 37, 31, 0.4); }
.a11y-fab svg { width: 1.7rem; height: 1.7rem; fill: currentColor; }

.a11y-panel {
  position: fixed;
  bottom: 5.6rem;
  left: 1.3rem;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  width: min(22rem, calc(100vw - 2.5rem));
  max-height: calc(100vh - 7rem);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 70px -24px rgba(0, 0, 0, 0.45);
  padding: 1.3rem;
}
.a11y-panel[hidden] { display: none; }

.a11y-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.3rem;
}
.a11y-head h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.a11y-head h2 .a11y-badge {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--r);
  background: rgba(114, 37, 31, 0.1);
  color: var(--primary);
}
.a11y-head h2 svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
.a11y-close {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--light);
  color: var(--body);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s var(--ease);
}
.a11y-close:hover { background: var(--paper-deep, #eee); }

.a11y-note {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 0.9rem;
}

.a11y-group {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--light);
  padding: 0.75rem;
  margin-bottom: 0.7rem;
}
.a11y-group-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.a11y-font-row { display: flex; gap: 0.35rem; }
.a11y-font-row button {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.a11y-font-row button:hover { background: var(--light); }
.a11y-font-row button[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.a11y-toggles { display: flex; flex-direction: column; gap: 0.45rem; }
.a11y-toggle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--light);
  color: var(--body);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.a11y-toggle:hover { background: var(--paper-deep, #eee); }
.a11y-toggle svg { width: 1.2rem; height: 1.2rem; fill: var(--muted); flex-shrink: 0; }
.a11y-toggle .a11y-state { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: #9a9a97; }
.a11y-toggle[aria-pressed="true"] {
  border-color: var(--primary);
  background: rgba(114, 37, 31, 0.08);
}
.a11y-toggle[aria-pressed="true"] svg,
.a11y-toggle[aria-pressed="true"] .a11y-state { color: var(--primary); fill: var(--primary); }

.a11y-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.a11y-reset:hover { background: var(--light); }
.a11y-reset svg { width: 1rem; height: 1rem; fill: currentColor; }

/* ---------- Cookie-Banner + Soft-Wall (DSGVO-Opt-in) ---------- */

.cc-banner {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 1200;
  width: min(26rem, calc(100vw - 2.5rem));
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 70px -24px rgba(0, 0, 0, 0.45);
  padding: 1.3rem;
  animation: modal-in 0.3s var(--ease);
}
.cc-banner[hidden] { display: none; }

.cc-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.cc-head h2 { font-size: 1.05rem; font-weight: 600; margin: 0; }
.cc-badge {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--r);
  background: rgba(114, 37, 31, 0.1);
  color: var(--primary);
}
.cc-badge svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }

.cc-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.7rem;
}
.cc-text a { color: var(--primary); font-weight: 600; }

.cc-expand {
  border: 0;
  background: none;
  padding: 0;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--body);
  cursor: pointer;
  margin-bottom: 0.7rem;
}
.cc-expand:hover { color: var(--primary); }

.cc-cats { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.8rem; }
.cc-cats[hidden] { display: none; }
.cc-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--light);
  font-family: var(--font);
  text-align: left;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
button.cc-cat:hover { background: var(--paper-deep, #eee); }
.cc-cat-fix { opacity: 0.7; cursor: default; align-items: center; }
.cc-cat-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--body); }
.cc-cat-desc { display: block; font-size: 0.75rem; line-height: 1.5; color: var(--muted); }
.cc-state { font-size: 0.72rem; font-weight: 700; color: #9a9a97; white-space: nowrap; }
.cc-cat[aria-pressed="true"] {
  border-color: var(--primary);
  background: rgba(114, 37, 31, 0.08);
}
.cc-cat[aria-pressed="true"] .cc-state { color: var(--primary); }

/* Beide Buttons bewusst gleichwertig gestaltet (kein Dark Pattern) */
.cc-actions { display: flex; gap: 0.5rem; }
.cc-btn {
  flex: 1;
  border: 1px solid var(--primary);
  border-radius: var(--r);
  background: var(--white);
  color: var(--primary);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.cc-btn:hover { background: var(--primary); color: var(--white); }

/* Soft-Wall-Platzhalter */
.cc-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--light);
  padding: 2rem 1.5rem;
  text-align: center;
}
.cc-gate-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(114, 37, 31, 0.1);
  color: var(--primary);
}
.cc-gate-icon svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }
.cc-gate-title { font-weight: 600; margin: 0; }
.cc-gate-desc { font-size: 0.88rem; color: var(--muted); max-width: 26rem; margin: 0; }
.cc-gate-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding-top: 0.3rem; }
.cc-gate-actions .cc-btn { flex: initial; }

/* ---------- Fahrzeugkontrolle (interner Bereich) ---------- */

.fzk-body { background: var(--light); }

.fzk-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.fzk-login-card {
  width: 100%;
  max-width: 24rem;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: 2.2rem 2rem;
  text-align: center;
}
.fzk-logo { width: 200px; height: auto; margin: 0 auto 1.2rem; }
.fzk-login-card h1 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.fzk-login-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }
.fzk-login-card .form-field { text-align: left; }

.fzk-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-1);
}
.fzk-head-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.7rem;
}
.fzk-logo-klein { width: 120px; height: auto; }
.fzk-head-titel { font-weight: 600; font-size: 1rem; }
.fzk-head-link {
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.fzk-head-link:hover { text-decoration: underline; }

.fzk-main { max-width: 44rem; padding-block: 1.5rem 4rem; }
.fzk-main h1 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; margin-bottom: 0.3rem; }
.fzk-intro { color: var(--muted); margin-bottom: 1.5rem; }

.fzk-block {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 1.4rem 1.3rem;
  margin-bottom: 1.1rem;
}
.fzk-block h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }

/* Pruefzeile mit grossen Auswahl-Buttons (mobile-first) */
.fzk-zeile { border: 0; padding: 0; margin: 0 0 1rem; }
.fzk-zeile:last-child { margin-bottom: 0; }
.fzk-zeile legend {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  padding: 0;
}
.fzk-optionen { display: flex; gap: 0.45rem; }
.fzk-optionen input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.fzk-opt {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 3rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  background: var(--light);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 0.3rem;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease), color 0.15s var(--ease);
}
.fzk-optionen input:focus-visible + .fzk-opt {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.fzk-optionen input:checked + .fzk-opt-gut { background: #e5f3e8; border-color: #2e7d32; color: #1d5a22; }
.fzk-optionen input:checked + .fzk-opt-mittel { background: #fdf3dc; border-color: #f9a825; color: #8a5a00; }
.fzk-optionen input:checked + .fzk-opt-schlecht { background: #fdeaea; border-color: #c62828; color: #8e1c1c; }

.fzk-bemerkung { margin: -0.4rem 0 1rem; }
.fzk-bemerkung textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 0.7rem 0.9rem;
  resize: vertical;
}
.fzk-bemerkung textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 37, 31, 0.15);
}

.fzk-submit { min-height: 3.4rem; font-size: 1.05rem; }

.fzk-erfolg {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.fzk-erfolg h1 { margin-top: 0.5rem; }
.fzk-erfolg p { color: var(--muted); }
.fzk-mail-status { font-size: 0.9rem; color: #8a5a00; }
.fzk-erfolg .btn { margin-top: 1rem; }

/* Uebersichtsliste */
.fzk-karte {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  border-left: 5px solid #2e7d32;
  padding: 1.1rem 1.2rem;
  margin-bottom: 0.9rem;
}
.fzk-karte-warnung { border-left-color: #c62828; }
.fzk-karte-kopf {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  font-size: 1.02rem;
}
.fzk-karte-kopf span { color: var(--muted); font-size: 0.92rem; }
.fzk-karte-meta { color: var(--muted); font-size: 0.92rem; margin: 0.25rem 0 0.4rem; }
.fzk-karte-probleme { font-size: 0.92rem; color: #8e1c1c; margin: 0; }
.fzk-karte-ok { font-size: 0.92rem; margin: 0; display: flex; align-items: center; gap: 0.5rem; color: var(--muted); }

.fzk-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}
.fzk-badge-gut { background: #e5f3e8; color: #1d5a22; }
.fzk-badge-mittel { background: #fdf3dc; color: #8a5a00; }
.fzk-badge-schlecht { background: #fdeaea; color: #8e1c1c; }

.fzk-qr-hinweis { font-size: 0.9rem; color: var(--muted); margin-top: 1.5rem; }
.fzk-qr-hinweis a { color: var(--primary); }

@media (max-width: 460px) {
  .fzk-optionen { flex-direction: row; }
  .fzk-opt { font-size: 0.84rem; }
  .fzk-head-titel { font-size: 0.9rem; }
}

/* ---------- Unterseiten (Impressum, Datenschutz) ---------- */

.legal { padding-block: var(--sp-5) var(--sp-6); }
.legal .wrap { max-width: 46rem; }
.legal h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.legal h2 { font-size: 1.4rem; margin-top: var(--sp-4); font-weight: 500; }
.legal p, .legal li { color: var(--muted); }
.legal ul { list-style: disc; padding-left: 1.4rem; display: grid; gap: 0.5rem; }
.legal a { color: var(--primary); }

/* Header-Variante fuer helle Unterseiten */
.site-head.head-solid { position: sticky; background: var(--white); box-shadow: var(--shadow-1); }
.site-head.head-solid .main-nav a,
.site-head.head-solid .head-tel { color: var(--body); }
.site-head.head-solid .brand { padding: 0; background: transparent; }
