/* ==========================================================================
   Clean and More Reinigungsdienst — globales Stylesheet
   Dark-Authority-Layout, Farben aus dem Kunden-Logo (CMS-Grün + Anthrazit)
   ========================================================================== */

:root {
  /* Logo-Farben */
  --farbe-primaer: #9dc025;           /* Logo-Grün — CTAs, Akzente */
  --farbe-primaer-hell: #b6d84a;      /* Akzenttext auf dunklem Grund */
  --farbe-primaer-dunkel: #5c7a0e;    /* Links auf hellem Grund (WCAG AA) */
  --farbe-sekundaer: #43484a;         /* Anthrazit aus der Wortmarke */

  /* Dunkles Theme */
  --bg-dunkel: #101312;               /* Seiten-/Sektionshintergrund dunkel */
  --bg-dunkel-2: #171b19;             /* Karten auf dunklem Grund */
  --bg-dunkel-3: #1f2422;             /* Hover / erhöhte Flächen */
  --rand-dunkel: rgba(255, 255, 255, .09);
  --text-hell: #eef0ec;
  --text-hell-2: #aab3aa;

  /* Helle Sektionen */
  --bg-hell: #f5f6f2;
  --weiss: #ffffff;
  --ink: #171b19;
  --ink-hell: #59615c;
  --rand-hell: #e2e5df;

  --stern: #f5b301;
  --radius: 12px;
  --schatten: 0 6px 28px rgba(0, 0, 0, .28);
  --breite: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Basis ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-hell);
  background: var(--bg-dunkel);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--farbe-primaer-hell); }

.container { max-width: var(--breite); margin: 0 auto; padding: 0 22px; }
.nowrap { white-space: nowrap; }

h1, h2, h3 { line-height: 1.18; margin: 0 0 .5em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 800; }
h3 { font-size: 1.08rem; }

.section { padding: 76px 0; }
.section-hell { background: var(--bg-hell); color: var(--ink); }
.section-hell h2, .section-hell h3 { color: var(--ink); }
.section-kopf { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.vorzeile {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--farbe-primaer-hell);
  margin-bottom: 10px;
}
.section-hell .vorzeile { color: var(--farbe-primaer-dunkel); }
.section-kopf p { color: var(--text-hell-2); margin: 0; }
.section-hell .section-kopf p { color: var(--ink-hell); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .98rem;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn-primaer { background: var(--farbe-primaer); color: #141b03; }
.btn-primaer:hover { background: #b0d33a; color: #141b03; }
.btn-dunkel { background: var(--bg-dunkel-3); color: var(--text-hell); border-color: var(--rand-dunkel); }
.btn-dunkel:hover { border-color: var(--farbe-primaer); color: var(--text-hell); }
.btn-hell { background: var(--weiss); color: var(--ink); border-color: var(--rand-hell); }
.btn-hell:hover { border-color: var(--farbe-primaer-dunkel); color: var(--ink); }
.btn-kontur-hell { background: transparent; color: var(--text-hell); border-color: rgba(255,255,255,.35); }
.btn-kontur-hell:hover { border-color: var(--weiss); color: var(--weiss); }

/* Top-Bar ------------------------------------------------------------------ */
.topbar {
  background: #0b0d0c;
  border-bottom: 1px solid var(--rand-dunkel);
  font-size: .85rem;
  color: var(--text-hell-2);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.topbar .sterne { color: var(--stern); letter-spacing: 1.5px; }
.topbar a { color: var(--text-hell); text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--farbe-primaer-hell); }
.topbar-rechts { display: flex; align-items: center; gap: 18px; }

/* Header / Navigation ------------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(16, 19, 18, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rand-dunkel);
}
.header-inner { display: flex; align-items: center; gap: 26px; min-height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.logo img { width: 48px; height: auto; border-radius: 6px; }
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-size: .95rem; letter-spacing: .07em; color: var(--text-hell); }
.logo-text span { font-size: .72rem; letter-spacing: .05em; color: var(--farbe-primaer-hell); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav-item > a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-hell);
  font-weight: 600;
  font-size: .93rem;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav > a:hover, .nav-item > a:hover, .nav a[aria-current="page"] { color: var(--farbe-primaer-hell); background: var(--bg-dunkel-3); }

/* Dropdown-Menüs (Desktop) */
.nav-item { position: relative; }
.nav-item > a .pfeil { font-size: .68em; opacity: .7; margin-left: 3px; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--weiss);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
  padding: 22px 26px;
  display: none;
  gap: 34px;
  z-index: 920;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: flex; }
/* unsichtbare Brücke, damit das Menü beim Überfahren nicht zuklappt */
.dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.dropdown-spalte { min-width: 170px; }
.dropdown-titel {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--farbe-primaer-dunkel);
  border-bottom: 2px solid var(--flaeche-gruen, #e7efcd);
  padding-bottom: 8px;
  margin: 0 0 10px;
}
.dropdown a {
  display: block;
  padding: 7px 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
}
.dropdown a:hover { color: var(--farbe-primaer-dunkel); }
.dropdown a.dropdown-alle { color: var(--farbe-primaer-dunkel); font-weight: 700; }
.dropdown-staedte { display: none; grid-template-columns: repeat(3, 1fr); column-gap: 30px; }
.nav-item:hover .dropdown-staedte,
.nav-item:focus-within .dropdown-staedte { display: grid; }

.header-telefon {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-hell) !important;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.header-telefon small { display: block; font-size: .66rem; font-weight: 600; color: var(--text-hell-2); letter-spacing: .04em; }
.header-cta { padding: 11px 20px; font-size: .92rem; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-hell);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, #141814 0%, #1c241a 55%, #0e120d 100%);
}
@media (min-width: 1200px) {
  .hero {
    background:
      linear-gradient(100deg, rgba(11, 13, 11, .88) 0%, rgba(11, 13, 11, .72) 55%, rgba(11, 13, 11, .62) 100%),
      url("/bilder/stock-hero-reinigungsteam.webp") center 30% / cover no-repeat;
  }
  /* Stadt-Seiten: eigenes Hero-Motiv (cleane Architektur) */
  .hero.hero-stadt {
    background:
      linear-gradient(100deg, rgba(11, 13, 11, .9) 0%, rgba(11, 13, 11, .74) 55%, rgba(11, 13, 11, .62) 100%),
      url("/bilder/stock-hero-interieur.webp") center 55% / cover no-repeat;
  }
}
/* Leistungs-/Textseiten: kein Hintergrundbild, nur dunkler Verlauf */
.hero.hero-schlicht {
  background: linear-gradient(165deg, #141814 0%, #1c241a 55%, #0e120d 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
  /* nur oben/unten — seitliches Padding kommt vom .container */
  padding-top: 64px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(157, 192, 37, .12);
  border: 1px solid rgba(157, 192, 37, .35);
  color: var(--farbe-primaer-hell);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--weiss);
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.hero h1 > span { display: block; }
.hero h1 .h1-akzent { color: var(--farbe-primaer); }
.hero-sub { font-size: 1.08rem; color: var(--text-hell-2); max-width: 33em; margin: 0 0 20px; }

.hero-checks { list-style: none; padding: 0; margin: 0 0 24px; }
.hero-checks li { padding-left: 30px; position: relative; margin-bottom: 9px; font-size: .98rem; }
.hero-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--farbe-primaer);
}

.hero-inhaber {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-bottom: 26px;
}
.inhaber-chip { display: flex; align-items: center; gap: 11px; }
.inhaber-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--farbe-primaer);
  color: #141b03;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
}
.inhaber-chip strong { display: block; font-size: .92rem; line-height: 1.25; }
.inhaber-chip span { font-size: .8rem; color: var(--text-hell-2); }
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-dunkel-2);
  border: 1px solid var(--rand-dunkel);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .86rem;
  font-weight: 700;
}
.rating-chip .sterne { color: var(--stern); letter-spacing: 1.5px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Formular-Karte ------------------------------------------------------------ */
.form-karte {
  background: var(--weiss);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  overflow: hidden;
}
.form-karte-kopf {
  background: var(--farbe-primaer);
  color: #141b03;
  padding: 18px 26px;
}
.form-karte-kopf h2, .form-karte-kopf h3 { margin: 0; font-size: 1.18rem; color: #141b03; }
.form-karte-kopf p { margin: 2px 0 0; font-size: .86rem; color: #2a3609; }
.form-karte form { padding: 24px 26px 26px; }

.form-feld { margin-bottom: 14px; }
.form-zeile { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-feld label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 5px; color: var(--ink); }
.form-feld input,
.form-feld select,
.form-feld textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--rand-hell);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--weiss);
}
.form-feld input:focus, .form-feld select:focus, .form-feld textarea:focus {
  outline: none;
  border-color: var(--farbe-primaer-dunkel);
}
.form-feld textarea { resize: vertical; min-height: 84px; }
.form-datenschutz { display: flex; gap: 9px; align-items: flex-start; font-size: .8rem; color: var(--ink-hell); margin-bottom: 16px; }
.form-datenschutz input { margin-top: 3px; }
.form-datenschutz a { color: var(--farbe-primaer-dunkel); }
.form-karte .btn { width: 100%; }
.form-status { margin: 12px 0 0; font-size: .9rem; display: none; }
.form-status.erfolg { display: block; color: var(--farbe-primaer-dunkel); font-weight: 700; }
.form-status.fehler { display: block; color: #b3261e; font-weight: 600; }
.honigtopf { position: absolute; left: -5000px; opacity: 0; }

/* Trust-Zahlen-Leiste --------------------------------------------------------- */
.trust-leiste { background: #0b0d0c; border-top: 1px solid var(--rand-dunkel); border-bottom: 1px solid var(--rand-dunkel); padding: 30px 0; }
.trust-leiste .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.trust-zahl strong { display: block; font-size: 1.65rem; font-weight: 800; color: var(--farbe-primaer); }
.trust-zahl span { font-size: .86rem; color: var(--text-hell-2); }

/* Leistungs-Grid (hell) -------------------------------------------------------- */
.leistungs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.leistung-karte {
  background: var(--weiss);
  border: 1px solid var(--rand-hell);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.leistung-karte:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(23, 27, 25, .16); color: var(--ink); }
.leistung-karte img { width: 100%; height: 150px; object-fit: cover; }
.leistung-karte .karte-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.leistung-karte h3 { margin-bottom: 5px; font-size: 1rem; }
.leistung-karte p { font-size: .86rem; color: var(--ink-hell); margin: 0 0 12px; flex: 1; line-height: 1.5; }
.karte-link { font-weight: 700; font-size: .86rem; color: var(--farbe-primaer-dunkel); }

/* Betrieb / Über uns (dunkel) ---------------------------------------------------- */
.betrieb-grid { display: grid; grid-template-columns: 46fr 54fr; gap: 52px; align-items: center; }
.betrieb-bild { position: relative; }
.betrieb-bild img { border-radius: var(--radius); width: 100%; height: 460px; object-fit: cover; }
.betrieb-bild .inhaber-karte {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--bg-dunkel-2);
  border: 1px solid var(--rand-dunkel);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--schatten);
}
.betrieb-punkte { list-style: none; padding: 0; margin: 22px 0 28px; }
.betrieb-punkte li { padding-left: 32px; position: relative; margin-bottom: 13px; }
.betrieb-punkte li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(157, 192, 37, .15);
  color: var(--farbe-primaer-hell);
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.betrieb-punkte strong { color: var(--weiss); }
.betrieb-punkte span { color: var(--text-hell-2); }

/* Schritte (hell) ------------------------------------------------------------------ */
.schritte-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.schritt {
  background: var(--weiss);
  border: 1px solid var(--rand-hell);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
}
.schritt-nr {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--farbe-primaer);
  color: #141b03;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.schritt p { font-size: .88rem; color: var(--ink-hell); margin: 0; line-height: 1.55; }

/* Bewertungen (hell) ------------------------------------------------------------------ */
.bewertung-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--weiss);
  border: 1px solid var(--rand-hell);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 18px rgba(23,27,25,.08);
}
.bewertung-badge .sterne { color: var(--stern); letter-spacing: 2px; }
.bewertung-badge small { font-weight: 600; color: var(--ink-hell); }

/* Platzhalter für consent-pflichtige Embeds -------------------------------------------- */
.embed-platzhalter {
  border: 2px dashed var(--rand-hell);
  border-radius: var(--radius);
  background: var(--weiss);
  padding: 30px 22px;
  text-align: center;
  color: var(--ink-hell);
  font-size: .93rem;
}
.embed-platzhalter strong { display: block; color: var(--ink); margin-bottom: 6px; }
.embed-platzhalter .btn { margin-top: 14px; padding: 10px 18px; font-size: .88rem; width: auto; }
.embed-dunkel .embed-platzhalter {
  background: var(--bg-dunkel-2);
  border-color: var(--rand-dunkel);
  color: var(--text-hell-2);
}
.embed-dunkel .embed-platzhalter strong { color: var(--text-hell); }

/* Galerie / Arbeiten (hell, Masonry) ---------------------------------------------------- */
.arbeiten-masonry { columns: 4 240px; column-gap: 16px; }
.arbeiten-masonry figure { margin: 0 0 16px; break-inside: avoid; }
.arbeiten-masonry img { width: 100%; border-radius: 10px; }
.arbeiten-cta { text-align: center; margin-top: 34px; }

/* Einsatzgebiete (dunkel) ----------------------------------------------------------------- */
.gebiete-grid { display: grid; grid-template-columns: 42fr 58fr; gap: 44px; align-items: start; }
.gebiete-info {
  background: var(--bg-dunkel-2);
  border: 1px solid var(--rand-dunkel);
  border-radius: var(--radius);
  padding: 28px;
}
.gebiete-info h3 { color: var(--weiss); }
.gebiete-info p { color: var(--text-hell-2); font-size: .93rem; }
.stadt-titel { font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--farbe-primaer-hell); margin: 0 0 14px; }
.stadt-liste { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.stadt-liste li a, .stadt-liste li span {
  display: inline-block;
  background: var(--bg-dunkel-2);
  border: 1px solid var(--rand-dunkel);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-hell);
}
.stadt-liste li a:hover { border-color: var(--farbe-primaer); color: var(--farbe-primaer-hell); }
.stadt-liste li.stadt-haupt span, .stadt-liste li.stadt-haupt a {
  background: rgba(157, 192, 37, .14);
  border-color: rgba(157, 192, 37, .4);
  color: var(--farbe-primaer-hell);
}

/* Vorteile (dunkel) ------------------------------------------------------------------------- */
.vorteile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vorteil {
  background: var(--bg-dunkel-2);
  border: 1px solid var(--rand-dunkel);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.vorteil .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(157, 192, 37, .14);
  color: var(--farbe-primaer-hell);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.vorteil h3 { color: var(--weiss); }
.vorteil p { font-size: .89rem; color: var(--text-hell-2); margin: 0; }

/* Abschluss-CTA (dunkel, Formular rechts) ------------------------------------------------------ */
.abschluss { background: linear-gradient(150deg, #131712, #0c0f0b); }
.abschluss-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.abschluss h2 { color: var(--weiss); }
.abschluss .lead { color: var(--text-hell-2); margin: 0 0 22px; }
.abschluss-checks { list-style: none; padding: 0; margin: 0 0 28px; }
.abschluss-checks li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.abschluss-checks li::before { content: "\2713"; position: absolute; left: 0; font-weight: 800; color: var(--farbe-primaer); }

/* Footer ------------------------------------------------------------------------------------------ */
.footer { background: #0b0d0c; border-top: 1px solid var(--rand-dunkel); color: var(--text-hell-2); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; padding-top: 58px; padding-bottom: 42px; }
.footer h4 { color: var(--weiss); font-size: .92rem; margin: 0 0 15px; letter-spacing: .04em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--text-hell-2); text-decoration: none; }
.footer a:hover { color: var(--farbe-primaer-hell); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 42px; border-radius: 6px; }
.footer address { font-style: normal; line-height: 1.75; }
.footer-bottom { border-top: 1px solid var(--rand-dunkel); padding: 18px 0; font-size: .82rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; }
.footer-bottom ul { list-style: none; display: flex; gap: 20px; padding: 0; margin: 0; }
.cookie-trigger { background: none; border: 0; padding: 0; color: var(--text-hell-2); font: inherit; cursor: pointer; }
.cookie-trigger:hover { color: var(--farbe-primaer-hell); }

/* Sticky-Mobile-Action-Bar (mobil OBEN — unten bleibt Platz fürs Chat-Widget) ------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: #0b0d0c;
  border-bottom: 1px solid var(--rand-dunkel);
  padding: 10px 12px;
  gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 11px 10px; font-size: .93rem; line-height: 1.3; }

/* Cookie-Consent --------------------------------------------------------------------------------------- */
.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  z-index: 1000;
  background: var(--weiss);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .5);
  padding: 24px;
  display: none;
}
.consent-banner.offen { display: block; }
.consent-banner h3 { font-size: 1.02rem; color: var(--ink); }
.consent-banner p { font-size: .86rem; color: var(--ink-hell); margin: 0 0 16px; }
.consent-banner a { color: var(--farbe-primaer-dunkel); }
.consent-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-buttons .btn { flex: 1 1 140px; padding: 11px 14px; font-size: .88rem; }
.consent-kategorien { margin: 0 0 16px; display: none; }
.consent-banner.einstellungen .consent-kategorien { display: block; }
.consent-kategorie { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-top: 1px solid var(--rand-hell); font-size: .88rem; }
.consent-kategorie input { margin-top: 4px; }
.consent-kategorie strong { display: block; color: var(--ink); }
.consent-kategorie span { color: var(--ink-hell); font-size: .82rem; }

/* Breadcrumb ----------------------------------------------------------------------------------------------- */
.breadcrumb { font-size: .82rem; color: var(--text-hell-2); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-hell-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--farbe-primaer-hell); }
.breadcrumb span[aria-current] { color: var(--text-hell); font-weight: 600; }

/* FAQ (hell) -------------------------------------------------------------------------------------------------- */
.faq-liste { max-width: 820px; margin: 0 auto; }
.faq-liste details {
  background: var(--weiss);
  border: 1px solid var(--rand-hell);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-liste summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 22px;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
}
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--farbe-primaer-dunkel);
}
.faq-liste details[open] summary::after { content: "–"; }
.faq-liste .faq-antwort { padding: 0 22px 20px; font-size: .93rem; color: var(--ink-hell); }
.faq-liste .faq-antwort p { margin: 0 0 10px; }
.faq-liste .faq-antwort p:last-child { margin-bottom: 0; }

/* Lange Text-Abschnitte (SEO-Content) ------------------------------------------------------------------------------ */
.prose { max-width: 840px; margin: 0 auto; }
.prose p { margin: 0 0 1.1em; }
.section-hell .prose p { color: var(--ink-hell); }
.prose h3 { margin: 1.7em 0 .45em; font-size: 1.05rem; }
.prose ul { margin: 0 0 1.2em; padding-left: 0; list-style: none; }
.prose ul li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: "\2713"; position: absolute; left: 0; font-weight: 800; color: var(--farbe-primaer-dunkel); }

/* Leistungs-Detail-Karten (hell) ------------------------------------------------------------------------------------- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.detail-karte {
  background: var(--weiss);
  border: 1px solid var(--rand-hell);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.detail-karte .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(157, 192, 37, .16);
  color: var(--farbe-primaer-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.detail-karte .icon svg { width: 26px; height: 26px; }
.detail-karte h3 { margin: 0 0 8px; }
.detail-karte p { margin: 0; font-size: .92rem; color: var(--ink-hell); line-height: 1.6; }
@media (max-width: 780px) {
  .detail-grid { grid-template-columns: 1fr; }
}

/* Vorher/Nachher-Vergleich (Galerie) ---------------------------------------------------------------------------------- */
.vergleich-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.vergleich-grid figure { margin: 0; }
.vergleich-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: 10px; }
.vergleich-grid figcaption {
  margin-top: 9px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-hell);
}
.vergleich-grid figcaption.nachher { color: var(--farbe-primaer-dunkel); }
@media (max-width: 640px) {
  .vergleich-grid img { height: 220px; }
}

/* Google-Maps-Embed ------------------------------------------------------------------------------------------------- */
.karte-embed { margin-top: 34px; }
.karte-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* Zwei Info-Karten (dunkel) -------------------------------------------------------------------------------------- */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.duo-karte {
  background: var(--bg-dunkel-2);
  border: 1px solid var(--rand-dunkel);
  border-radius: var(--radius);
  padding: 24px;
}
.duo-karte h3 { color: var(--weiss); }
.duo-karte p { font-size: .9rem; color: var(--text-hell-2); margin: 0; }

/* Responsive --------------------------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-top: 52px; padding-bottom: 64px; }
  .leistungs-grid { grid-template-columns: repeat(2, 1fr); }
  .leistung-karte img { height: 180px; }
  .schritte-grid, .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
  .betrieb-grid, .gebiete-grid, .abschluss-grid { grid-template-columns: 1fr; gap: 40px; }
  .betrieb-bild img { height: 380px; }
}
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-dunkel);
    border-bottom: 1px solid var(--rand-dunkel);
    padding: 8px 20px 16px;
  }
  .nav.offen { display: flex; }
  .nav > a, .nav-item > a { display: block; padding: 13px 6px; border-bottom: 1px solid var(--rand-dunkel); border-radius: 0; }
  /* Mobil: Dropdowns eingeklappt lassen, Hauptlink führt zur Übersicht */
  .nav-item .dropdown { display: none !important; }
  .nav-item > a .pfeil { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .topbar-rechts .topbar-cta { display: none; }
  .trust-leiste .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .logo-text { display: none; }
  .topbar { font-size: .78rem; }
  .topbar-rezensionen { display: none; }
  .leistungs-grid, .schritte-grid, .vorteile-grid { grid-template-columns: 1fr; }
  .leistung-karte img { height: 170px; }
  .form-zeile { grid-template-columns: 1fr; gap: 0; }
  .duo-grid { grid-template-columns: 1fr; }
  .betrieb-bild img { height: 300px; }
  .arbeiten-masonry { columns: 2 140px; column-gap: 10px; }
  .arbeiten-masonry figure { margin-bottom: 10px; }
  .mobile-bar { display: flex; }
  .topbar { display: none; }        /* mobil ersetzt die Action-Bar die Topbar */
  body { padding-top: 66px; }       /* Platz für die fixe Action-Bar oben (Bar = 66px hoch) */
  .header { top: 66px; }            /* Sticky-Header rutscht unter die Action-Bar */
  .consent-banner { bottom: 16px; } /* unten bleibt frei fürs Chat-Widget */
  .footer-grid { grid-template-columns: 1fr 1fr; padding-top: 44px; padding-bottom: 30px; }
}
