/* ============================================================================
   Fischer Kanaltechnik – Stylesheet
   Aufbau:
     01  Design-Tokens (Farben, Abstände, Schatten)
     02  Reset & Grundlagen
     03  Layout-Helfer (wrap, section, grid)
     04  Buttons, Badges, Icons
     05  Header & Navigation
     06  Hero
     07  Leistungen
     08  Warum wir?
     09  Preise
     10  Einsatzgebiet
     11  FAQ
     12  Kontakt & Formular
     13  Footer
     14  Sticky Call-Bar (mobil)
     15  Animationen (Scroll-Reveal)
     16  Breakpoints: 640px / 860px / 1024px / 1280px
   Vorgehen: Mobile First – Basis gilt fürs Handy, Media-Queries skalieren hoch.
   ========================================================================== */


/* ============================================================
   01  DESIGN-TOKENS
   ============================================================ */
:root {
  /* Markenfarben nach Corporate Design */
  --navy-950: #06122B;   /* tiefster Ton, für Verlaufsenden */
  --navy-900: #0A1F44;   /* Hauptfarbe dunkel */
  --navy-850: #0B2650;
  --navy-800: #0C2E63;
  --navy-700: #0D47A1;   /* Hauptfarbe hell */
  --blue-600: #1976D2;   /* Akzent */
  --blue-500: #2196F3;   /* Akzent hell */
  --blue-400: #42A5F5;
  --blue-300: #7EC0FB;
  --blue-050: #E8F2FE;

  /* Neutrale Töne – leicht blaustichig statt neutralgrau, wirkt wertiger */
  --ink:       #0B1526;  /* Überschriften */
  --body:      #445468;  /* Fließtext */
  --muted:     #5A6B80;  /* dunkel genug für 4.5:1 Kontrast auf Weiß (WCAG AA) */
  --line:      #E4EBF4;
  --line-soft: #EFF4FA;
  --bg:        #FFFFFF;
  --bg-alt:    #F4F8FD;
  --white:     #FFFFFF;

  /* Radien – großzügiger, das wirkt ruhiger und teurer */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Schatten mehrschichtig: eine enge Kontaktkante plus ein weicher
     Streuschatten. Das ist der wichtigste Unterschied zwischen einem
     "billigen" und einem hochwertigen Kartenlook. */
  --sh-sm:   0 1px 2px rgba(10, 31, 68, .04), 0 2px 8px rgba(10, 31, 68, .05);
  --sh-md:   0 2px 4px rgba(10, 31, 68, .04), 0 12px 28px rgba(10, 31, 68, .08);
  --sh-lg:   0 4px 8px rgba(10, 31, 68, .06), 0 28px 64px rgba(10, 31, 68, .16);
  --sh-blue: 0 2px 6px rgba(25, 118, 210, .24), 0 14px 34px rgba(25, 118, 210, .3);

  /* Feine Rauschtextur für dunkle Flächen – verhindert Verlaufsstreifen
     (Banding) und gibt der Fläche Tiefe. Als data-URI, also keine
     externe Datei und kein zusätzlicher Request. */
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");

  /* Abstände */
  --gap: 18px;
  --pad-x: 18px;
  --sec-y: 64px;

  /* Höhen */
  --header-h: 66px;
  --callbar-h: 68px;

  /* Typografie: reine System-Fonts – kein Webfont-Download, kein FOUT/CLS */
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
          "Helvetica Neue", Arial, sans-serif;
}


/* ============================================================
   02  RESET & GRUNDLAGEN
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  /* verhindert seitliches Wischen auf Handys (v. a. iOS Safari) */
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(25, 118, 210, .15);
  /* Platz für die fixe Anruf-Leiste am unteren Rand (nur mobil sichtbar) */
  padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px));
}

main { overflow-x: clip; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--ink);
  line-height: 1.15;
  /* Je größer die Schrift, desto enger die Laufweite – so setzen
     Zeitschriften Überschriften, und genau das lässt Typografie
     hochwertig statt nach Standard-Template aussehen. */
  letter-spacing: -.03em;
  font-weight: 800;
  text-wrap: balance;
}
h3, h4 { letter-spacing: -.015em; line-height: 1.25; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--blue-600); text-decoration: none; }

img, svg { max-width: 100%; }
img { height: auto; display: block; }

table { border-collapse: collapse; width: 100%; }

address { font-style: normal; }

/* Ankersprünge dürfen nicht unter dem fixen Header landen */
[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

/* Sichtbarer Fokus für Tastaturnutzung */
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Nur für Screenreader */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 8px; top: -100px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  border-radius: var(--r-sm);
  box-shadow: var(--sh-md);
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.link { color: var(--blue-600); font-weight: 700; text-decoration: underline;
        text-underline-offset: 3px; }
.link:hover { color: var(--navy-700); }
/* Auf der hellblauen Alternativfläche fällt --blue-600 auf 4,32:1 und
   verfehlt damit knapp die WCAG-AA-Grenze von 4,5:1. Auf getönten
   Flächen deshalb einen Ton dunkler. */
.section--alt .link,
.kurzinfo .link { color: var(--navy-700); }
.link--light { color: #9CCBFF; }
.link--light:hover { color: var(--white); }


/* ============================================================
   03  LAYOUT-HELFER
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--sec-y); }
.section--alt { background: var(--bg-alt); }
/* Für Abschnitte, die direkt an den vorherigen anschließen sollen */
.section--kein-oben { padding-top: 0; }

.section__head { max-width: 730px; margin: 0 auto 38px; text-align: center; }

/* Kicker mit kurzem Strich davor – ein kleines Detail, das die
   Sektionsköpfe redaktioneller wirken lässt. */
.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.section__kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500));
}
.section__kicker--light { color: var(--blue-300); }

.section__title { font-size: clamp(1.7rem, 5.4vw, 2.6rem); }
.section__title--light { color: var(--white); }

.section__sub { font-size: 1.05rem; line-height: 1.7; color: var(--body); }

.section__note {
  margin-top: 26px;
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
}

.grid { display: grid; gap: var(--gap); }

/* Feine Trennlinie zwischen zwei Sektionen gleicher Farbe */
.trenner {
  height: 1px;
  max-width: 1180px;
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
}


/* ============================================================
   04  BUTTONS, BADGES, ICONS
   ============================================================ */

/* Alle Icons erben Farbe und Strichstärke vom Elternelement.

   WICHTIG: Diese Regel trifft per Voreinstellung JEDES SVG. Grafiken, die
   keine Icons sind (Illustrationen, Wellen, Hintergründe), würden dadurch
   auf 20 px geschrumpft und verlören ihre Farben – das ist hier schon
   zweimal passiert.

   Deshalb gibt es genau EINE Ausnahme-Klasse: `.grafik`. Jede neue
   SVG-Grafik, die kein Icon ist, bekommt diese Klasse – dann muss nie
   wieder jemand diesen Selektor anfassen. */
svg:not(.sprite):not(.grafik) {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.btn {
  /* Tap-Target mind. 48px hoch */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease,
              background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }

/* Der Primär-Button bekommt eine helle Innenkante oben. Dadurch wirkt er
   plastisch statt flach – derselbe Trick wie bei iOS-Buttons. */
.btn--primary {
  position: relative;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: var(--sh-blue), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #1B84E8, #38A7FA);
  box-shadow: 0 4px 10px rgba(25, 118, 210, .3), 0 18px 44px rgba(25, 118, 210, .4),
              inset 0 1px 0 rgba(255, 255, 255, .34);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-1px);
}

/* ---- WhatsApp ----
   Bewusst im WhatsApp-Grün statt im Markenblau: Die Farbe ist der
   eigentliche Wiedererkennungswert. Ein blauer Button mit
   WhatsApp-Icon wird deutlich seltener geklickt, weil er nicht sofort
   als der vertraute Kanal gelesen wird. */
.btn--wa {
  background: linear-gradient(135deg, #1EBE5B, #25D366);
  color: #07290F;
  box-shadow: 0 2px 6px rgba(30, 190, 91, .26), 0 12px 30px rgba(30, 190, 91, .3),
              inset 0 1px 0 rgba(255, 255, 255, .3);
  overflow: hidden;
}
.btn--wa:hover {
  background: linear-gradient(135deg, #23CB62, #2FE072);
  box-shadow: 0 4px 10px rgba(30, 190, 91, .3), 0 16px 40px rgba(30, 190, 91, .38),
              inset 0 1px 0 rgba(255, 255, 255, .36);
  transform: translateY(-1px);
}
/* Lichtreflex wie beim Primär-Button */
.btn--wa::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn--wa:hover::after { left: 120%; }

/* Heller Sekundär-Button für Abschnitte auf weißem Grund */
.btn--outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}
.btn--outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
  transform: translateY(-1px);
}

.btn--lg  { min-height: 56px; padding: 16px 26px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* Runde Icon-Badges – blauer Kreis, weißes Icon */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(25, 118, 210, .28);
}
.badge svg { width: 24px; height: 24px; }

.badge--lg { width: 64px; height: 64px; }
.badge--lg svg { width: 29px; height: 29px; }

/* Badge auf dunklem Grund: heller Rand statt Schatten */
.badge--light {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}


/* ============================================================
   05  HEADER & NAVIGATION
   ============================================================ */
/* PERFORMANCE: Hier stand `backdrop-filter: blur(12px)`. Bei einem fest
   stehenden Header über scrollendem Inhalt muss der Browser diesen Blur
   in JEDEM Bild neu über die volle Breite rechnen – eine der häufigsten
   Ursachen für ruckelndes Scrollen.

   Sichtbar war davon ohnehin fast nichts: Der Hintergrund ist zu 92 %
   deckend, da schimmert kaum etwas durch. Ohne den Blur ist der Header
   optisch praktisch unverändert und das Scrollen deutlich ruhiger. */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(9, 28, 62, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.header.is-scrolled {
  background: rgba(8, 24, 54, .99);
  box-shadow: 0 8px 28px rgba(4, 14, 33, .38);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

/* --- Logo (Platzhalter: Kreis + Schriftzug) --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;          /* Tap-Target */
  color: var(--white);
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-500), var(--navy-700));
  border: 2px solid rgba(255, 255, 255, .22);
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--white);
  flex: none;
}

.logo__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
/* nowrap überall: ein umgebrochener Schriftzug macht den Header höher
   und verschiebt damit alle Ankersprünge. */
.logo__name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--white);
  white-space: nowrap;
}
.logo__claim {
  font-size: .68rem;
  font-weight: 600;
  color: var(--blue-400);
  letter-spacing: .01em;
  white-space: nowrap;
}

/* --- Burger --- */
.burger {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
}
.burger__icon { width: 24px; height: 24px; grid-area: 1 / 1; }
.burger__icon--close { display: none; }
body.nav-open .burger__icon--open  { display: none; }
body.nav-open .burger__icon--close { display: block; }

/* --- Navigation: mobil als Panel unter dem Header --- */
.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  padding: 14px var(--pad-x) 22px;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 22px 44px rgba(4, 14, 33, .45);
  transform: translateY(-115%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s;
}
body.nav-open .nav { transform: translateY(0); visibility: visible; }

.nav__list { display: flex; flex-direction: column; }

.nav__link {
  display: block;
  padding: 13px 4px;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
  font-size: 1.02rem;
}
.nav__link:hover, .nav__link.is-active { color: var(--blue-400); }

.nav__call-mobile { margin-top: 16px; width: 100%; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(4, 14, 33, .55);
  opacity: 0;
  transition: opacity .28s ease;
}
body.nav-open .nav-overlay { opacity: 1; }

/* Anruf-Button im Header: mobil nur Icon */
.header__call { min-height: 44px; padding: 10px 14px; gap: 8px; }
.header__call-label, .header__call-nr { display: none; }

/* Body-Sperre nur im Mobil-Bereich – dreht der Nutzer ins Querformat
   (> 860px), bleibt die Seite auch bei hängender Klasse scrollbar. */
@media (max-width: 1023px) {
  body.nav-open { overflow: hidden; }
}

/* Sehr schmale Handys (iPhone SE & Co.): Logo, Burger und Anruf-Button
   passen nicht gleichzeitig in eine Zeile. Der Anruf-Button entfällt hier –
   die feste Anruf-Leiste am unteren Bildschirmrand ist ohnehin immer
   sichtbar, telefonieren bleibt also einen Fingertipp entfernt. */
@media (max-width: 399px) {
  .header__call { display: none; }
}


/* ============================================================
   05b  WASSER-HINTERGRUND

   Der Hero ist ein Blick unter die Wasseroberfläche: Lichtschächte von
   oben, ein Kaustik-Netz wie auf einem Beckenboden und aufsteigende
   Luftblasen. Thematisch genau das, was der Betrieb verkauft – freier
   Wasserlauf.

   Technisch bewusst nur mit CSS gebaut und ausschließlich `transform`
   und `opacity` animiert. Beides läuft auf der Grafikkarte, kostet
   also kaum Rechenzeit und erzeugt keine Layout-Neuberechnung. Keine
   Filter-Animationen (feTurbulence & Co.) – die fressen auf älteren
   Handys die Bildrate.
   ============================================================ */
.wasser {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Tiefenverlauf: oben heller (Oberfläche), unten fast schwarz (Tiefe) */
.wasser__tiefe {
  position: absolute;
  inset: 0;
  /* Bewusst dunkel gehalten: Lichtschächte und Kaustik sind additive
     Ebenen (screen). Wäre der Grund hell, hätten sie keinen Kontrast
     mehr und die ganze Fläche sähe wieder nach flachem Verlauf aus. */
  background:
    radial-gradient(120% 70% at 50% -20%, #17458C 0%, transparent 58%),
    linear-gradient(180deg, #0A2A5E 0%, #071B3D 42%, #040D22 100%);
}

/* Lichtschächte, die von der Oberfläche nach unten fallen.

   PERFORMANCE: Hier stand vorher `filter: blur(22px)` und
   `mix-blend-mode: screen`. Beides war teuer und beides ist überflüssig:

   - Ein Verlauf ist von sich aus weich. Der Blur hat nur Rechenzeit
     gekostet, ohne sichtbar etwas zu verbessern – die weichen Farbstopps
     unten erledigen dasselbe umsonst.
   - `screen` über einem dunklen Grund sieht praktisch genauso aus wie
     eine helle Farbe mit Transparenz. Blend-Modes verhindern aber, dass
     der Browser die Ebene als eigene GPU-Schicht behandelt: Bei jeder
     Bewegung muss stattdessen die ganze Fläche neu zusammengerechnet
     werden. Genau daher kam das Ruckeln. */
.wasser__strahl {
  --rot: 8deg;
  position: absolute;
  top: -35%;
  width: 34%;
  height: 170%;
  background: linear-gradient(180deg,
              rgba(150, 214, 255, .30) 0%,
              rgba(120, 205, 245, .17) 22%,
              rgba(79, 209, 232, .07) 48%,
              transparent 76%);
  /* eigene GPU-Schicht: Verschieben kostet dann fast nichts mehr */
  will-change: transform;
  animation: strahl 15s ease-in-out infinite alternate;
}
.wasser__strahl--1 { --rot:  9deg; left:  -4%; animation-delay:  0s; }
.wasser__strahl--2 { --rot: -7deg; left:  30%; animation-delay: -5s; }
.wasser__strahl--3 { --rot: 13deg; left:  66%; animation-delay: -9s; }

@keyframes strahl {
  from { transform: rotate(var(--rot)) translate3d(-26px, 0, 0) scaleY(.92); opacity: .32; }
  to   { transform: rotate(var(--rot)) translate3d( 26px, 0, 0) scaleY(1);   opacity: .8;  }
}

/* Kaustik-Netz – die welligen Lichtbänder unter Wasser.

   PERFORMANCE: Vorher lief hier ein Live-Filter
   (`filter: url(#wasserverzerrung)`) über eine bildschirmgroße Ebene.
   feTurbulence und feDisplacementMap gehören zu den teuersten
   Filter-Bausteinen überhaupt, und zusammen mit `mix-blend-mode` konnte
   der Browser das Ergebnis nicht zwischenspeichern – die Verzerrung
   wurde bei jedem Bild neu gerechnet.

   Jetzt steckt dieselbe Verzerrung fest eingebacken in einem
   SVG-Bild als data-URI. Als Bild rasterisiert der Browser es EINMAL
   beim Laden; danach ist das Verschieben reines Verschieben einer
   fertigen Textur. Optisch identisch, aber ohne Dauerlast.

   Wer das Muster ändern will: baseFrequency steuert die Wellenlänge,
   scale die Stärke der Verzerrung, die rect-Breite die Linienstärke. */
.wasser__kaustik {
  position: absolute;
  inset: -25%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900'%3E%3Cdefs%3E%3Cfilter id='v' x='-20%25' y='-20%25' width='140%25' height='140%25' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.008 0.014' numOctaves='2' seed='11' result='n'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='n' scale='110' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3Cpattern id='p' width='58' height='58' patternUnits='userSpaceOnUse' patternTransform='rotate(64)'%3E%3Crect width='3' height='58' fill='%2378e2ff' fill-opacity='0.62'/%3E%3Crect x='3' width='5' height='58' fill='%2378e2ff' fill-opacity='0.14'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='1200' height='900' fill='url(%23p)' filter='url(%23v)'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: .32;
  /* Nach unten auslaufen lassen: Licht dringt von der Oberfläche ein und
     verliert sich in der Tiefe. Gleichzeitig bleibt der untere Bereich
     ruhig, wo Fließtext und Buttons stehen. */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.55) 42%, transparent 82%);
          mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.55) 42%, transparent 82%);
  will-change: transform;
  /* alternate statt linear: so gibt es keinen sichtbaren Sprung am
     Schleifenende, den man bei versetzten Rastern sonst immer sieht */
  animation: kaustik 30s ease-in-out infinite alternate;
}
/* Zweite Ebene: anderer Winkel, weiterer Abstand, anderer Zufalls-Seed.
   Sie bringt Unregelmäßigkeit hinein, ohne das Muster zu verdoppeln. */
.wasser__kaustik--2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900'%3E%3Cdefs%3E%3Cfilter id='v' x='-20%25' y='-20%25' width='140%25' height='140%25' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.006 0.011' numOctaves='2' seed='29' result='n'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='n' scale='150' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3Cpattern id='p' width='84' height='84' patternUnits='userSpaceOnUse' patternTransform='rotate(-38)'%3E%3Crect width='2' height='84' fill='%23aadcff' fill-opacity='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='1200' height='900' fill='url(%23p)' filter='url(%23v)'/%3E%3C/svg%3E");
  animation-duration: 44s;
  animation-direction: alternate-reverse;
  opacity: .24;
}

@keyframes kaustik {
  from { transform: translate3d(-3%, -2%, 0) scale(1);    }
  to   { transform: translate3d( 3%,  2%, 0) scale(1.06); }
}

/* Aufsteigende Luftblasen */
.wasser__blase {
  position: absolute;
  bottom: -60px;
  left: var(--x, 50%);
  width: calc(var(--s, 1) * 13px);
  height: calc(var(--s, 1) * 13px);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%,
              rgba(255, 255, 255, .92) 0%,
              rgba(160, 220, 255, .3) 42%,
              rgba(126, 192, 251, .06) 72%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  opacity: 0;
  will-change: transform, opacity;
  animation: blase var(--t, 16s) linear var(--d, 0s) infinite;
}

@keyframes blase {
  0%   { transform: translate3d(0, 0, 0) scale(.6);        opacity: 0;   }
  10%  {                                                    opacity: .75; }
  35%  { transform: translate3d( 16px, -32vh, 0) scale(.9);              }
  65%  { transform: translate3d(-12px, -62vh, 0) scale(1);               }
  90%  {                                                    opacity: .35; }
  100% { transform: translate3d(  8px, -102vh, 0) scale(1.2); opacity: 0; }
}

/* ---- Animierter Wellenübergang zum hellen Bereich ----
   Zwei Wellen mit unterschiedlichem Tempo. Jede SVG ist doppelt so breit
   wie der Container und enthält das Wellenmuster zweimal – dadurch ist
   translateX(-50%) ein nahtloser Schleifenpunkt. */
.wellen {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  /* Höhe und der negative Abstand der Fakten-Karte (#fakten) hängen
     zusammen: Die Karte schiebt sich über die Hero-Unterkante und würde
     eine flachere Welle komplett verdecken. */
  height: 84px;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.wellen svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  /* Ohne dieses max-width kappt die Reset-Regel `img, svg { max-width:100% }`
     die doppelte Breite auf einfache – dann fehlt die zweite Wellenhälfte
     und die Schleife springt am Ende sichtbar zurück. */
  max-width: none;
  height: 100%;
  display: block;
  will-change: transform;
}
/* Bläulich statt neutralweiß: Ein weißer Schleier über dem Navy wirkt
   grau wie Nebel, ein blauer Ton liest sich als Wasser. */
.wellen__hinten {
  color: rgba(126, 197, 255, .42);
  animation: wellenlauf 21s linear infinite;
}
.wellen__vorne {
  color: var(--bg);
  animation: wellenlauf 13s linear infinite reverse;
}
@keyframes wellenlauf {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---- Sparfassung für kleine Geräte ----
   Weniger bewegte Ebenen = weniger Compositing-Arbeit. Auf der kleinen
   Fläche fällt der Unterschied optisch kaum auf. */
@media (max-width: 700px) {
  .wasser__blase:nth-of-type(2n) { display: none; }
  .wasser__strahl--3 { display: none; }
  .wasser__kaustik--2 { display: none; }
}


/* ============================================================
   06  HERO
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 96px;
  background:
    radial-gradient(120% 90% at 80% 0%, #123A7E 0%, transparent 55%),
    linear-gradient(165deg, var(--navy-850) 0%, var(--navy-900) 55%, #071633 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }

/* Rauschtextur über den Verlauf legen: verhindert sichtbare Streifen im
   Farbverlauf und gibt der Fläche eine leicht samtige Anmutung.

   PERFORMANCE: Der Hero steht hier bewusst NICHT mehr in der Liste.
   `mix-blend-mode` zwingt den Browser, Ebene und Untergrund gemeinsam
   neu zu berechnen – über einem bewegten Wasserbild also bei jedem
   Bild. Die übrigen Flächen sind statisch, dort kostet der Blend-Modus
   einmalig nichts. Struktur hat der Hero durch das Wasser ohnehin. */
.kontakt::after,
.fehlerseite::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--noise);
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
}
.hero__glow--a {
  width: 320px; height: 320px;
  top: -80px; right: -90px;
  background: radial-gradient(circle, rgba(33, 150, 243, .55), transparent 70%);
}
.hero__glow--b {
  width: 380px; height: 380px;
  bottom: -140px; left: -140px;
  background: radial-gradient(circle, rgba(13, 71, 161, .6), transparent 70%);
}

/* Wasser-/Splash-Ringe als dezente Linien */
.hero__splash {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .9;
}

.hero__inner { position: relative; text-align: center; }

/* Ruhezone hinter dem Text: ein weicher dunkler Schleier sorgt dafür,
   dass die Headline unabhängig davon lesbar bleibt, wo die Lichtbänder
   gerade stehen. Ohne das schwankt der Kontrast mit der Animation. */
.hero__inner::before {
  content: "";
  position: absolute;
  inset: -8% -12%;
  z-index: -1;
  background: radial-gradient(58% 52% at 50% 46%,
              rgba(4, 13, 34, .72) 0%,
              rgba(4, 13, 34, .42) 55%,
              transparent 100%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 16px;
  border: 1px solid rgba(66, 165, 245, .4);
  border-radius: var(--r-pill);
  background: rgba(33, 150, 243, .12);
  font-size: .82rem;
  font-weight: 700;
  color: #BBDEFB;
}

/* Pulsierender Punkt = "wir sind erreichbar" */
.hero__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: puls 2.2s infinite;
}
@keyframes puls {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .65); }
  70%  { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 7.4vw, 3.4rem);
  color: var(--white);
  letter-spacing: -.03em;
}
/* Volltonfarbe statt Farbverlauf. Zwei Gründe: über dem animierten
   Wasser schwankt der Kontrast eines Verlaufs sichtbar, und beim
   wortweisen Auftritt würde der Verlauf in jedem Wort neu beginnen. */
.hero__title-accent {
  display: block;
  color: #8FD4FF;
}

.hero__sub {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 3.6vw, 1.18rem);
  color: rgba(226, 240, 255, .84);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 42px;
}

/* Vier runde Trust-Badges */
.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 12px;
  padding-top: 30px;
  /* Verlaufende Trennlinie statt harter Kante */
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(255,255,255,.22) 20%,
                rgba(255,255,255,.22) 80%, transparent) 1;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.trust__label {
  font-size: .86rem;
  font-weight: 700;
  color: rgba(226, 240, 255, .9);
  line-height: 1.35;
}

/* Wellen-Übergang: Farbe steuert der Abschnitt darunter */
.wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 46px;
  color: var(--bg);
  display: block;
}


/* ============================================================
   07  LEISTUNGEN
   ============================================================ */
.card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .28s cubic-bezier(.2, .7, .3, 1),
              box-shadow .28s ease, border-color .28s ease;
}
/* Feiner Lichtstrich an der Oberkante, der beim Hover aufleuchtet */
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  opacity: 0;
  transition: opacity .28s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(25, 118, 210, .22);
}
.card:hover::before { opacity: 1; }

.card .badge { margin-bottom: 18px; }
.card__title { font-size: 1.18rem; margin-bottom: .45em; }
.card__text { font-size: .97rem; line-height: 1.65; margin: 0; }

/* Weiterführender Link auf der Leistungskarte. Die Karte hat
   display:flex/column, damit der Link immer unten sitzt – sonst
   stünde er bei unterschiedlich langen Texten auf unterschiedlicher Höhe. */
.card { display: flex; flex-direction: column; }
.card__text { flex: 1 1 auto; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 44px;
  margin-top: 14px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--blue-600);
}
.card__link svg { width: 18px; height: 18px; transition: transform .22s ease; }
.card__link:hover { color: var(--navy-700); }
.card__link:hover svg { transform: translateX(4px); }


/* ============================================================
   07b  FAKTEN-BAND (direkt unter dem Hero)
   Nur belegbare Angaben – keine erfundenen Auftragszahlen o. Ä.
   ============================================================ */
/* Die Karte schiebt sich über die Unterkante des Hero. Dieser Überlapp ist
   der Grund, warum das Band nicht mehr "einfach so" in einer weißen Fläche
   steht – es verzahnt Hero und Inhalt und wirkt dadurch wie ein bewusst
   gesetztes Element statt wie eine übrig gebliebene Zahlenreihe. */
#fakten {
  position: relative;
  z-index: 2;
  /* Weniger Überlappung als früher: So bleibt oberhalb der Karte ein
     Streifen der animierten Welle sichtbar. Wird die Wellenhöhe
     geändert, muss dieser Wert mit. */
  margin-top: -34px;
  padding-top: 0;
  padding-bottom: calc(var(--sec-y) * .7);
}

/* Fünf Kacheln.
   Handy   2 + 2 + 1 (die letzte Kachel spannt über beide Spalten)
   Tablet  3 + 2     (Sechs-Spalten-Raster, Kacheln 1–3 je 2, 4–5 je 3)
   Desktop 5 nebeneinander
   Die Zahl der Kacheln in index.html und diese Regeln hängen zusammen. */
.fakten {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  background: var(--line-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.fakten__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 14px;
  background: var(--white);
  text-align: center;
}
/* Zweispaltig und ungerade Kachelzahl: die letzte Kachel füllt die Zeile
   aus, sonst bliebe rechts ein leeres graues Feld stehen.
   Bewusst auf den Zweispalter begrenzt – ohne die Media-Query würde diese
   Regel wegen ihrer höheren Spezifität auch die Spannregeln der größeren
   Breakpoints überstimmen. */
@media (max-width: 639px) {
  .fakten__item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* Runder Icon-Badge wie im Rest der Seite – vorher fehlte hier jede
   visuelle Verbindung zum übrigen Design. */
.fakten__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-600);
}
.fakten__icon svg { width: 21px; height: 21px; }

.fakten__wert {
  display: block;
  font-size: clamp(1.45rem, 5.6vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--navy-900);
}
/* Einheit ("h", "€", "+ Jahre") kleiner als die Zahl.
   Die Zahl selbst muss ausdrücklich zurückgesetzt werden: .zaehler ist
   ebenfalls ein span in .fakten__wert und wurde vorher mitverkleinert –
   dadurch stand "kostenlos" (ohne inneres span) deutlich größer da als
   alle Zahlen daneben. */
.fakten__wert span { font-size: .56em; font-weight: 800; color: var(--blue-600); }
.fakten__wert .zaehler {
  font-size: 1em;
  font-weight: 900;
  color: var(--navy-900);
}
.fakten__label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted);
}


/* ============================================================
   07b2  KURZINFO – "Das Wichtigste in Kürze"

   Ein einzelner, in sich geschlossener Antwortabsatz. Optisch bewusst
   ruhig gehalten (kein Farbverlauf, kein Schatten-Feuerwerk): Der Block
   soll wie ein zitierfähiger Faktenkasten wirken, nicht wie Werbung.
   ============================================================ */
.kurzinfo {
  display: flex;
  gap: 18px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--r-md);
  background: var(--bg-alt);
}
.kurzinfo__badge { flex: 0 0 auto; }
.kurzinfo__titel {
  margin: 2px 0 8px;
  font-size: 1.05rem;
  letter-spacing: -.015em;
  color: var(--ink);
}
.kurzinfo__text {
  margin: 0;
  font-size: .97rem;
  line-height: 1.7;
  color: var(--body);
}
.kurzinfo__text strong { color: var(--ink); }

/* Auf kleinen Displays steht das Symbol über dem Text – nebeneinander
   bliebe für den Absatz zu wenig Breite. */
@media (max-width: 519px) {
  .kurzinfo { flex-direction: column; gap: 14px; padding: 22px 18px; }
}


/* ============================================================
   07b3  BETRIEB – Person und Erfahrung

   Dunkle Karte in Markennavy. Sie steht zwischen zwei hellen
   Abschnitten und übernimmt damit die Rolle, die sonst ein
   Hintergrundwechsel hätte.
   ============================================================ */
.betrieb {
  padding: 30px 26px;
  border-radius: var(--r-xl);
  background:
    var(--noise),
    radial-gradient(120% 140% at 12% 0%, var(--navy-800) 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  background-blend-mode: soft-light, normal;
  box-shadow: var(--sh-lg);
  color: rgba(226, 240, 255, .88);
}
.betrieb__kopf {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
/* Initialen-Medaillon als Platzhalter, bis ein echtes Foto vorliegt.
   Es ist bewusst kein leerer grauer Kasten – der würde wie ein
   fehlgeschlagener Bildaufruf aussehen. */
.betrieb__medaillon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 62px; height: 62px;
  border: 1px solid rgba(126, 192, 251, .45);
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-600), var(--navy-700));
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--white);
}
.betrieb__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
}
.betrieb__rolle {
  margin: 2px 0 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue-300);
}
.betrieb__text {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.75;
}
.betrieb__fakten {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.betrieb__fakten li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  line-height: 1.55;
}
.betrieb__fakten strong { color: var(--white); }
.betrieb__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(66, 165, 245, .18);
  color: var(--blue-300);
}
.betrieb__icon svg { width: 16px; height: 16px; }


/* ============================================================
   07b4  GLOSSAR – Fachbegriffe

   Definitionsliste (dl/dt/dd) statt Karten mit Überschriften: Der
   Auszeichnungstyp sagt Suchmaschinen bereits, dass hier Begriff und
   Erklärung zusammengehören.
   ============================================================ */
.glossar {
  display: grid;
  gap: var(--gap);
  margin: 0;
}
.glossar__item {
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s;
}
.glossar__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.glossar__begriff {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink);
}
/* Kurzer Akzentstrich vor dem Begriff – dieselbe Sprache wie der
   Section-Kicker, damit das Glossar nicht wie ein Fremdkörper wirkt. */
.glossar__begriff::before {
  content: "";
  display: inline-block;
  width: 14px; height: 2px;
  margin-right: 9px;
  vertical-align: middle;
  border-radius: 2px;
  background: var(--blue-500);
}
.glossar__text {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--body);
}


/* ============================================================
   07c  VORHER / NACHHER
   ============================================================ */
.ba-grid { display: grid; gap: 26px; }

.ba-karte {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
}

/* Der eigentliche Vergleich. --pos steuert, wie viel vom Vorher-Bild
   zu sehen ist (0–100). Wird per JS und per Schieberegler gesetzt. */
.ba {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-900);
  touch-action: pan-y;          /* senkrechtes Scrollen bleibt möglich */
  user-select: none;
}
.ba__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Die Vorher-Ebene liegt in voller Größe darüber und wird per clip-path
   von rechts beschnitten. Bewusst NICHT über die Breite geclippt: dann
   müsste die Pixelbreite der Karte per JS ans Innenbild weitergereicht
   werden, und bei jeder Größenänderung würden die beiden Hälften
   auseinanderlaufen. Mit clip-path behält das Bild immer die volle
   Breite – ganz ohne JavaScript-Synchronisierung. */
.ba__ebene {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* Beschriftungen */
.ba__tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba__tag--vorher {
  left: 14px;
  background: rgba(11, 21, 38, .72);
  color: #FFD9D6;
  border: 1px solid rgba(255, 138, 128, .45);
}
.ba__tag--nachher {
  right: 14px;
  background: rgba(11, 21, 38, .72);
  color: #C7F5DA;
  border: 1px solid rgba(110, 231, 168, .45);
}

/* Griff in der Mitte */
.ba__griff {
  position: absolute;
  top: 50%;
  left: var(--pos);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(6, 18, 43, .3), 0 10px 26px rgba(6, 18, 43, .35);
  color: var(--navy-700);
  pointer-events: none;
  transition: transform .18s ease;
}
.ba__griff svg { width: 24px; height: 24px; stroke-width: 2.2; }
.ba:hover .ba__griff { transform: scale(1.07); }

/* Senkrechte Trennkante – wächst aus dem Griff heraus und wird vom
   overflow:hidden der Karte sauber abgeschnitten. */
.ba__griff::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 2px;
  height: 200vh;
  margin: -100vh 0 0 -1px;
  background: var(--white);
  box-shadow: 0 0 12px rgba(6, 18, 43, .45);
}

/* Bedienung: unsichtbarer Schieberegler über der ganzen Fläche.
   Dadurch funktioniert Maus, Finger UND Tastatur ohne Extra-Code. */
.ba__regler {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.ba__regler::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 54px; height: 100%;
  cursor: ew-resize;
}
.ba__regler::-moz-range-thumb {
  width: 54px; height: 100%;
  border: 0; background: transparent; cursor: ew-resize;
}
.ba__regler:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }

.ba-karte__text { padding: 20px 22px 24px; }
.ba-karte__titel { font-size: 1.1rem; margin-bottom: .35em; }
.ba-karte__sub { font-size: .94rem; margin: 0; }

.ba-hinweis {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 780px;
  margin: 28px auto 0;
  padding: 15px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  background: var(--bg-alt);
  font-size: .89rem;
  color: var(--muted);
}
.ba-hinweis svg { width: 20px; height: 20px; color: var(--blue-600); margin-top: 2px; }


/* ============================================================
   07d  ABLAUF (So arbeiten wir)
   ============================================================ */
/* Geometrie der Schrittmarke – von der Verbindungslinie mitbenutzt,
   damit Linie und Kreise immer exakt zusammenpassen. */
.ablauf {
  --marke: 54px;          /* Durchmesser der Nummer */
  --marke-links: 24px;    /* Abstand vom linken Kartenrand */
  --marke-oben: 24px;     /* Abstand von der Kartenoberkante */
  display: grid;
  gap: 20px;
  padding: 0;
  list-style: none;       /* eigene Nummern statt Browser-Zähler */
}

.ablauf__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: var(--marke-oben) 22px 24px var(--marke-links);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ablauf__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: rgba(25, 118, 210, .22);
}

/* Verbindungslinie zwischen den Schritten: läuft senkrecht durch die
   Mitte der Nummernkreise und überbrückt den Abstand zur nächsten Karte.
   Ohne sie wirkten die vier Karten wie eine beliebige Liste statt wie
   ein Ablauf. */
.ablauf__item::after {
  content: "";
  position: absolute;
  left: calc(var(--marke-links) + var(--marke) / 2 - 1px);
  top: calc(var(--marke-oben) + var(--marke));
  bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), rgba(25, 118, 210, .18));
}
.ablauf__item:last-child::after { display: none; }

/* Schrittnummer als runder Kreis mit Ring – greift die Icon-Badges
   des übrigen Designs auf. */
.ablauf__nr {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: none;
  width: var(--marke); height: var(--marke);
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-600), var(--navy-700));
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px rgba(25, 118, 210, .25), 0 8px 20px rgba(25, 118, 210, .28);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.ablauf__kopf { display: flex; align-items: center; gap: 9px; margin-bottom: .35em; }
.ablauf__kopf svg { width: 19px; height: 19px; color: var(--blue-600); flex: none; }
.ablauf__titel { font-size: 1.08rem; margin: 0; }
.ablauf__text { font-size: .95rem; margin: 0; }


/* ============================================================
   07e  UNSER VERSPRECHEN (Vertrauensband)
   ============================================================ */
.versprechen {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 32px 22px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(90% 120% at 100% 0%, #14418C 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900) 60%, var(--navy-950));
  color: var(--white);
  box-shadow: var(--sh-lg);
}
.versprechen::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: .14;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.versprechen__kopf { position: relative; text-align: center; margin-bottom: 26px; }
.versprechen__titel { color: var(--white); font-size: 1.3rem; margin-bottom: .3em; }
.versprechen__sub { color: rgba(226, 240, 255, .74); font-size: .95rem; margin: 0; }

.versprechen__liste {
  position: relative;
  display: grid;
  gap: 14px;
}
.versprechen__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
}
.versprechen__item svg {
  width: 22px; height: 22px;
  flex: none;
  margin-top: 2px;
  color: var(--blue-300);
}
.versprechen__name {
  display: block;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.versprechen__text {
  display: block;
  font-size: .91rem;
  line-height: 1.55;
  color: rgba(226, 240, 255, .76);
}


/* ============================================================
   08  WARUM WIR?
   ============================================================ */
.warum__grid { display: grid; gap: 28px; }

.warum__lead { font-size: 1.02rem; margin-bottom: 22px; }

.checklist { display: grid; gap: 14px; margin-bottom: 28px; }

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  font-size: .97rem;
}
.checklist__item strong { color: var(--ink); }

.checklist__icon {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
  color: var(--white);
}
.checklist__icon svg { width: 16px; height: 16px; stroke-width: 2.6; }

/* Notfall-Karte (dunkelblau) */
.notfall {
  padding: 30px 24px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(110% 80% at 90% 0%, #14418C 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  box-shadow: var(--sh-lg);
  text-align: center;
}
.notfall .badge { margin-bottom: 16px; }
.notfall__title { color: var(--white); font-size: 1.35rem; }
.notfall__text { color: rgba(226, 240, 255, .82); font-size: .97rem; margin-bottom: 22px; }

.notfall__nr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: var(--sh-blue);
}
.notfall__nr svg { width: 22px; height: 22px; }

.notfall__hint {
  margin: 12px 0 0;
  font-size: .84rem;
  color: rgba(226, 240, 255, .6);
}


/* ============================================================
   09  PREISE
   ============================================================ */
.preis__grid { display: grid; gap: var(--gap); }

/* Stundensatz-Kachel */
.preis-hero {
  /* Zentriert, weil die Kachel im Raster auf die Höhe der Geräte-Karte
     daneben gestreckt wird – linksbündig oben stünde die Zahl sonst über
     einer großen leeren Farbfläche. */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 24px;
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, var(--blue-600), var(--navy-700));
  color: var(--white);
  box-shadow: var(--sh-blue);
  text-align: center;
}
.preis-hero__label {
  margin: 0 0 6px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}
.preis-hero__wert {
  margin: 0;
  font-size: clamp(2.6rem, 12vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}
.preis-hero__wert span { font-size: .55em; font-weight: 800; }
.preis-hero__unit { margin: 6px 0 0; font-weight: 700; color: rgba(255, 255, 255, .9); }
.preis-hero__note { margin: 12px 0 0; font-size: .85rem; color: rgba(255, 255, 255, .7); }

/* Der Zusatz "zzgl. Geräteeinsatz" darf nicht als Kleingedrucktes untergehen –
   er ist der Grund, warum die Zahl darüber nicht der Endpreis ist. Deshalb
   abgesetzter Kasten statt grauer Fußnote. */
.preis-hero__note--warn {
  margin-top: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .12);
  font-weight: 700;
  color: var(--white);
}

/* Helle Info-Cards */
.preis-card {
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.preis-card .badge { margin-bottom: 16px; }
.preis-card__title { font-size: 1.12rem; margin-bottom: .35em; }
.preis-card__big {
  margin: 0 0 .5em;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-600);
}
.preis-card__text { font-size: .93rem; margin: 0; }

.zuschlag { display: grid; gap: 2px; }
.zuschlag__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.zuschlag__item:last-child { border-bottom: 0; padding-bottom: 0; }
.zuschlag__name { font-weight: 700; color: var(--ink); font-size: .96rem; }
.zuschlag__zeit {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
}
.zuschlag__wert {
  flex: none;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--blue-050);
  color: var(--blue-600);
  font-weight: 900;
  font-size: .92rem;
}

/* ------------------------------------------------------------
   Geräteeinsatz

   Helle Karte wie die anderen Info-Cards, aber mit blauer Kante links:
   Die Karte gehört inhaltlich direkt zur Stundensatz-Kachel und soll
   nicht wie ein beliebiger vierter Posten wirken.
   ------------------------------------------------------------ */
.geraete {
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.geraete__kopf {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.geraete__kopf .badge { flex: 0 0 auto; margin: 0; }
.geraete__title { margin: 0; font-size: 1.12rem; }
.geraete__sub { margin: 2px 0 0; font-size: .84rem; color: var(--muted); }

.geraete__table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.geraete__table thead th {
  padding: 12px 0 8px;
  text-align: left;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.geraete__table thead th:last-child { text-align: right; }
.geraete__table tbody th {
  padding: 11px 0;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.geraete__table tbody td {
  padding: 11px 0;
  text-align: right;
  font-weight: 900;
  color: var(--blue-600);
  white-space: nowrap;
  border-bottom: 1px dashed var(--line);
}
.geraete__table tbody tr:last-child th,
.geraete__table tbody tr:last-child td { border-bottom: 0; }
/* Noch offener Satz: bewusst zurückhaltend, damit er nicht wie ein Preis
   gelesen wird. */
.geraete__offen { font-weight: 700 !important; color: var(--muted) !important; }

.geraete__hinweis {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .89rem;
  line-height: 1.6;
  color: var(--body);
}
.geraete__hinweis strong { color: var(--ink); }

/* Anfahrt-Tabelle im dunkelblauen Card-Stil */
.anfahrt {
  padding: 26px 20px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(100% 70% at 100% 0%, #143C82 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  box-shadow: var(--sh-lg);
}
.anfahrt__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.anfahrt__title { margin: 0; color: var(--white); font-size: 1.12rem; }
.anfahrt__sub { margin: 2px 0 0; font-size: .84rem; color: rgba(226, 240, 255, .6); }

.anfahrt__table { font-size: .97rem; }
.anfahrt__table thead th {
  padding: 12px 4px;
  text-align: left;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(226, 240, 255, .55);
}
.anfahrt__table thead th:last-child { text-align: right; }
.anfahrt__table tbody th {
  padding: 13px 4px;
  text-align: left;
  font-weight: 600;
  color: rgba(226, 240, 255, .92);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.anfahrt__table tbody td {
  padding: 13px 4px;
  text-align: right;
  font-weight: 900;
  color: var(--blue-400);
  border-top: 1px solid rgba(255, 255, 255, .1);
  white-space: nowrap;
}
.anfahrt .btn { margin-top: 20px; }

.preis__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 780px;
  margin: 26px auto 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-alt);
  font-size: .93rem;
}
.preis__disclaimer svg { width: 22px; height: 22px; color: var(--blue-600); margin-top: 2px; }
.preis__disclaimer strong { color: var(--ink); }


/* ============================================================
   10  EINSATZGEBIET
   ============================================================ */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: var(--sh-sm);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
}
.chip svg { width: 17px; height: 17px; color: var(--blue-600); }
.chip--muted { background: transparent; box-shadow: none; color: var(--muted); font-weight: 600; }

/* Ortsbezogene Textblöcke im Einsatzgebiet */
.orte { margin-bottom: 30px; }
.ort {
  padding: 22px 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.ort__name {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: .4em;
  font-size: 1.05rem;
}
.ort__name svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; }
.ort__text { margin: 0; font-size: .94rem; line-height: 1.6; }

/* Karten-Platzhalter */
.karte {
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(80% 100% at 85% 10%, #14418C 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--sh-lg);
  /* dezentes Raster als Karten-Andeutung */
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(80% 100% at 85% 10%, #14418C 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  background-size: 46px 46px, 46px 46px, 100% 100%, 100% 100%;
}
.karte__inner { padding: 36px 22px; text-align: center; color: var(--white); }
.karte .badge { margin-bottom: 16px; }
.karte__title { margin: 0 0 8px; font-size: 1.1rem; font-weight: 800; color: var(--white); }
.karte__text {
  max-width: 460px;
  margin: 0 auto 22px;
  font-size: .96rem;
  color: rgba(226, 240, 255, .8);
}
.karte .btn--ghost { background: rgba(255,255,255,.08); color: var(--white); }
.karte__hinweis { margin: 12px 0 0; font-size: .8rem; color: rgba(226, 240, 255, .55); }


/* ============================================================
   10b  KUNDENSTIMMEN
   Die Sektion ist im HTML noch auskommentiert – die Stile stehen hier
   schon bereit, damit sie nach dem Einfügen echter Zitate sofort passt.
   ============================================================ */
.stimme {
  position: relative;
  margin: 0;
  padding: 30px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.stimme__zeichen {
  position: absolute;
  top: 6px; left: 22px;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--blue-050);
  pointer-events: none;
}
.stimme__text {
  position: relative;
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
}
.stimme__quelle {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: .9rem;
}
.stimme__quelle strong { color: var(--ink); }
.stimme__quelle span { color: var(--muted); }


/* ============================================================
   11  FAQ
   ============================================================ */
.faq { display: grid; gap: 12px; }

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] { border-color: rgba(25, 118, 210, .35); box-shadow: var(--sh-md); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}
/* Standard-Dreieck ausblenden (auch Safari) */
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover { color: var(--blue-600); }

.faq__chevron {
  width: 20px; height: 20px;
  flex: none;
  color: var(--blue-600);
  transition: transform .25s ease;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }

.faq__a {
  padding: 0 18px 18px;
  font-size: .96rem;
  color: var(--body);
}


/* ============================================================
   12  KONTAKT & FORMULAR
   ============================================================ */
.kontakt {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--sec-y);
  background:
    radial-gradient(110% 80% at 10% 0%, #12376F 0%, transparent 55%),
    linear-gradient(165deg, var(--navy-850), var(--navy-900) 60%, #071633);
  color: var(--white);
}
.kontakt__bg { position: absolute; inset: 0; z-index: -1; }

.kontakt__grid { display: grid; gap: 34px; }

.kontakt__lead { color: rgba(226, 240, 255, .82); margin-bottom: 24px; }

.kontakt__nr {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  transition: background-color .2s ease, border-color .2s ease;
}
.kontakt__nr:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.35); }
.kontakt__nr-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-400);
}
.kontakt__nr-wert {
  display: block;
  font-size: clamp(1.4rem, 6.4vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.kontakt__notdienst {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 193, 7, .3);
  border-left: 4px solid #FFC107;
  border-radius: var(--r-md);
  background: rgba(255, 193, 7, .08);
  font-size: .93rem;
  color: rgba(255, 245, 220, .92);
}
.kontakt__notdienst svg { width: 22px; height: 22px; color: #FFC107; margin-top: 1px; }
.kontakt__notdienst strong { color: #FFE082; }

.kontakt__adresse { display: grid; gap: 14px; }
.kontakt__zeile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: .96rem;
  color: rgba(226, 240, 255, .82);
}
.kontakt__zeile svg { width: 20px; height: 20px; color: var(--blue-400); margin-top: 3px; }
.kontakt__zeile strong { color: var(--white); }

/* --- Formular-Karte --- */
.formular {
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, .05);
  box-shadow: var(--sh-lg);
}
.formular__title { color: var(--white); font-size: 1.3rem; margin-bottom: .25em; }
.formular__sub { color: rgba(226, 240, 255, .7); font-size: .93rem; margin-bottom: 20px; }

.form { display: grid; gap: 15px; }

.form__label {
  display: block;
  margin-bottom: 7px;
  font-size: .86rem;
  font-weight: 700;
  color: rgba(226, 240, 255, .92);
}
.req { color: #FF8A80; }

.form__field { position: relative; display: flex; align-items: center; }
.form__icon {
  position: absolute;
  left: 15px;
  width: 19px; height: 19px;
  color: var(--blue-400);
  pointer-events: none;
}
.form__field--area .form__icon { display: none; }

.form__input {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px 13px 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-md);
  background: rgba(6, 20, 45, .55);
  color: var(--white);
  font-family: inherit;
  /* 16px verhindert das automatische Zoomen auf iOS */
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.form__input::placeholder { color: rgba(226, 240, 255, .55); }
.form__input:focus {
  outline: none;
  border-color: var(--blue-500);
  background: rgba(6, 20, 45, .8);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, .25);
}
.form__input:user-invalid { border-color: #FF8A80; }

.form__textarea { padding-left: 15px; resize: vertical; min-height: 118px; }

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .84rem;
  color: rgba(226, 240, 255, .78);
  line-height: 1.55;
}
.form__consent input[type="checkbox"] {
  width: 24px; height: 24px;
  margin: 1px 0 0;
  flex: none;
  accent-color: var(--blue-500);
  cursor: pointer;
}
.form__consent label { cursor: pointer; }

.form__status {
  margin: 0;
  padding: 0;
  font-size: .9rem;
  font-weight: 700;
  min-height: 0;
}
.form__status.is-error { color: #FF8A80; }
.form__status.is-ok { color: #6EE7A8; }

.form__hinweis { margin: 0; font-size: .82rem; color: rgba(226, 240, 255, .6); }

/* Honeypot: für Menschen unsichtbar, für Bots ausfüllbar */
.honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}


/* ============================================================
   13  FOOTER
   ============================================================ */
.footer {
  padding-top: 44px;
  background: #071633;
  color: rgba(226, 240, 255, .72);
  font-size: .93rem;
}

.footer__grid { display: grid; gap: 30px; }

.logo--footer { margin-bottom: 14px; }

.footer__text { max-width: 380px; margin: 0; color: rgba(226, 240, 255, .62); font-size: .9rem; }

.footer__head {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--blue-400);
}

/* Die Footer-Spalten sind seit dem Ausbau echte Navigation (Leistungsseiten
   und Einsatzgebiet), deshalb bekommen die Links eine komfortable Klickhöhe
   statt reiner Textzeilen. */
.footer__list { display: grid; gap: 6px; }
.footer__list a { display: inline-flex; align-items: center; min-height: 26px; }
.footer__link { color: rgba(226, 240, 255, .78); }
.footer__link:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.footer__address { line-height: 1.75; }
/* Telefon, E-Mail und WhatsApp in der Kontaktspalte sind echte
   Klickziele – gleiche Mindesthöhe wie die Links der übrigen Spalten. */
.footer__address a { display: inline-flex; align-items: center; min-height: 26px; }
.footer__address a { font-weight: 800; color: var(--blue-400); }
.footer__zeiten { margin: 12px 0 0; font-size: .88rem; color: rgba(226, 240, 255, .55); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 34px;
  padding-block: 20px 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
}
.footer__copy { margin: 0; color: rgba(226, 240, 255, .5); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }


/* ============================================================
   14  STICKY CALL-BAR (nur mobil)
   ============================================================ */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: flex;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  /* Kein backdrop-filter: Die Leiste steht fest über scrollendem Inhalt,
     der Blur müsste bei jedem Bild neu gerechnet werden. Bei 97 %
     Deckkraft sieht man ihn ohnehin nicht. */
  background: rgba(9, 28, 62, .97);
  border-top: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 -8px 28px rgba(4, 14, 33, .35);
}

.callbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: .97rem;
  line-height: 1;
}
.callbar__btn svg { width: 19px; height: 19px; }

.callbar__btn--primary {
  flex: 1 1 auto;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(25, 118, 210, .4);
}
.callbar__btn--ghost {
  flex: 0 0 auto;
  padding-inline: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .07);
  color: var(--white);
}


/* ============================================================
   14a UNTERSEITEN (Leistungsseiten)
   ============================================================ */

/* Kompakter Hero – dunkel wie die Startseite, aber ohne Trust-Badges,
   damit der Nutzer schneller beim Inhalt ist. */
.uhero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 72px;
  background:
    radial-gradient(120% 90% at 80% 0%, #123A7E 0%, transparent 55%),
    linear-gradient(165deg, var(--navy-850) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  color: var(--white);
}
/* Kein Rausch-Overlay auf dem Unterseiten-Hero – aus demselben Grund wie
   auf der Startseite: `mix-blend-mode` über bewegtem Wasser zwingt den
   Browser, die Fläche bei jedem Bild neu zusammenzurechnen. Struktur
   liefert das Wasser selbst genug. */
.uhero__inner { position: relative; max-width: 780px; }

.uhero__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 5.6vw, 2.7rem);
  color: var(--white);
}
.uhero__sub {
  margin: 0 0 26px;
  font-size: clamp(1rem, 3.4vw, 1.14rem);
  line-height: 1.7;
  color: rgba(226, 240, 255, .84);
}
.uhero__actions { display: flex; flex-direction: column; gap: 12px; }

/* Brotkrumen-Navigation */
.brotkrumen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: .86rem;
  color: rgba(226, 240, 255, .6);
}
.brotkrumen a { color: var(--blue-300); font-weight: 600; }
.brotkrumen a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* Überschrift und Fließtext in schmalen Textabschnitten */
.uh2 {
  font-size: clamp(1.5rem, 4.6vw, 2.05rem);
  margin-bottom: .6em;
}
.fliesstext {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.1em;
}
.fliesstext strong { color: var(--ink); }

/* Kompakte Aufzählung in Hinweisboxen */
.minilist { display: grid; gap: 8px; margin: 0 0 4px; }
.minilist li {
  position: relative;
  padding-left: 20px;
  font-size: .95rem;
  line-height: 1.55;
}
.minilist li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}
/* Die Variante .hinweisbox--warn steht bewusst NICHT hier, sondern direkt
   hinter der Basisklasse .hinweisbox weiter unten. Beide haben dieselbe
   Spezifität – stünde der Modifier vorher, würde die Basisklasse ihn
   überschreiben und die Warnbox bliebe blau statt rot. */
.hinweisbox__fuss {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
}

/* Abschluss-Aufforderung am Seitenende */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--sec-y);
  background:
    radial-gradient(110% 80% at 10% 0%, #12376F 0%, transparent 55%),
    linear-gradient(165deg, var(--navy-850), var(--navy-900) 60%, var(--navy-950));
  color: var(--white);
  text-align: center;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--noise);
  opacity: .14;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__inner { position: relative; }
.cta__title { color: var(--white); font-size: clamp(1.45rem, 4.8vw, 2.1rem); margin-bottom: .4em; }
.cta__text {
  max-width: 560px;
  margin: 0 auto 26px;
  color: rgba(226, 240, 255, .82);
  line-height: 1.7;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.cta__weiter {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .94rem;
  color: rgba(226, 240, 255, .68);
}


/* ============================================================
   14b RECHTSSEITEN (impressum.html / datenschutz.html)
   ============================================================ */
.legal { padding-top: calc(var(--header-h) + 40px); padding-bottom: var(--sec-y); }

.legal__title { font-size: clamp(1.7rem, 6vw, 2.5rem); margin-bottom: .3em; }
.legal__intro { color: var(--muted); margin-bottom: 34px; }

.legal h2 {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 1.22rem;
}
.legal h3 { margin-top: 24px; font-size: 1.05rem; }
.legal p, .legal li { font-size: .98rem; }
.legal ul { margin: 0 0 1em; padding-left: 22px; list-style: disc; }
.legal li { margin-bottom: .4em; }
.legal address { line-height: 1.8; }

/* Gelb hinterlegte Kästen: hier fehlen noch echte Angaben */
.todo {
  padding: 16px 18px;
  margin: 0 0 22px;
  border: 1px solid #F2C94C;
  border-left: 4px solid #F2C94C;
  border-radius: var(--r-md);
  background: #FFF9E6;
  font-size: .93rem;
  color: #6B5300;
}
.todo strong { color: #4A3A00; }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 800;
  color: var(--blue-600);
}

/* --- Widerrufsbelehrung: Anschrift + Muster-Formular --- */
.widerruf__adresse {
  padding: 16px 18px;
  margin: 0 0 22px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--bg-alt);
  line-height: 1.8;
}
.widerruf__adresse strong { color: var(--ink); }

/* Muster-Widerrufsformular – zum Ausdrucken gedacht */
.muster {
  padding: 24px 20px;
  margin: 0 0 22px;
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
}
.muster__an { line-height: 1.7; margin-bottom: 20px; }
.muster__an strong { color: var(--ink); }
.muster__satz { margin-bottom: 22px; }

.muster__felder { margin: 0; }
.muster__felder dt {
  margin-bottom: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
}
.muster__felder dd { margin: 0 0 22px; }

/* Ausfüll-Linie */
.muster__linie {
  display: block;
  height: 1px;
  background: var(--ink);
  opacity: .35;
}

.muster__fuss {
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  color: var(--muted);
}

.muster__aktion { margin: 0 0 8px; }

/* Abgesetzter Hinweiskasten auf den Rechtsseiten – kein Bestandteil des
   jeweiligen Rechtstextes, deshalb optisch klar unterscheidbar. */
.hinweisbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 38px 0 26px;
  padding: 20px 22px;
  border: 1px solid rgba(25, 118, 210, .3);
  border-radius: var(--r-lg);
  background: var(--blue-050);
}
.hinweisbox .badge { width: 44px; height: 44px; }
.hinweisbox .badge svg { width: 21px; height: 21px; }
.hinweisbox__titel {
  margin: 0 0 6px;
  font-weight: 800;
  color: var(--ink);
}
.hinweisbox p { font-size: .95rem; }

/* Warnvariante – MUSS nach .hinweisbox stehen, sonst überschreibt die
   Basisklasse den Hintergrund (gleiche Spezifität, Reihenfolge entscheidet). */
.hinweisbox--warn {
  border-color: rgba(224, 72, 60, .35);
  background: #FFF4F2;
}
.hinweisbox--warn .badge { background: linear-gradient(140deg, #C9372C, #E0574B); }
.hinweisbox--warn .minilist li::before { background: #C9372C; }

@media (min-width: 640px) {
  .muster { padding: 32px 30px; }
  /* Zwei Ausfüll-Felder nebeneinander wirkt auf Papier aufgeräumter */
  .muster__felder {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   14c FEHLERSEITE (404.html)
   ============================================================ */
.fehlerseite {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background:
    radial-gradient(120% 90% at 80% 0%, #123A7E 0%, transparent 55%),
    linear-gradient(165deg, var(--navy-850) 0%, var(--navy-900) 55%, #071633 100%);
  color: var(--white);
}
.fehlerseite__bg { position: absolute; inset: 0; z-index: -1; }
.fehlerseite__inner { text-align: center; }
.fehlerseite .badge { margin-bottom: 20px; }

.fehlerseite__code {
  margin: 0;
  font-size: clamp(3.4rem, 16vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.05em;
  color: #8FD4FF;
}
.fehlerseite__titel {
  margin: 10px 0 14px;
  font-size: clamp(1.4rem, 5.4vw, 2rem);
  color: var(--white);
}
.fehlerseite__text {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(226, 240, 255, .82);
}
.fehlerseite__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.fehlerseite__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .95rem;
}
.fehlerseite__links a { min-height: 44px; display: inline-flex; align-items: center; }

@media (min-width: 480px) {
  .fehlerseite__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}


/* ============================================================
   14d  WHATSAPP – schwebende Schaltfläche

   Nur ab 1024 px sichtbar. Auf Handys übernimmt die feste
   Anruf-Leiste am unteren Rand diese Aufgabe – zwei schwebende
   Elemente gleichzeitig wären dort im Weg.
   ============================================================ */
.wa-widget {
  display: none;   /* wird erst ab 1024px eingeblendet */
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 96;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 14px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, #1EBE5B, #25D366);
  color: #07290F;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(6, 40, 18, .28), 0 18px 44px rgba(30, 190, 91, .38);
  transition: transform .28s cubic-bezier(.2, .8, .3, 1), box-shadow .28s ease;
}
.wa-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(6, 40, 18, .3), 0 24px 56px rgba(30, 190, 91, .46);
}
.wa-widget__icon {
  position: relative;      /* Bezugspunkt für den Puls-Ring */
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
}
.wa-widget__icon svg { width: 23px; height: 23px; }

/* Sanfter Puls, der einmalig auf die Schaltfläche aufmerksam macht */
.wa-widget__icon::after {
  content: "";
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .7);
  animation: waPuls 3.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPuls {
  0%   { transform: scale(1);   opacity: .75; }
  70%  { transform: scale(1.5); opacity: 0;   }
  100% { transform: scale(1.5); opacity: 0;   }
}

@media (min-width: 1024px) {
  .wa-widget { display: inline-flex; }
}

/* ---- WhatsApp-Block im Kontaktbereich ---- */
.kontakt__wa {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 211, 102, .34);
  border-radius: var(--r-lg);
  background: rgba(37, 211, 102, .1);
  color: var(--white);
  transition: background-color .2s ease, border-color .2s ease;
}
.kontakt__wa:hover {
  background: rgba(37, 211, 102, .18);
  border-color: rgba(37, 211, 102, .6);
}
.kontakt__wa .badge {
  background: linear-gradient(140deg, #1EBE5B, #25D366);
  box-shadow: 0 8px 20px rgba(30, 190, 91, .3);
  color: #07290F;
}
.kontakt__wa-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7FE9A6;
}
.kontakt__wa-wert {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.kontakt__wa-hinweis {
  display: block;
  margin-top: 2px;
  font-size: .84rem;
  font-weight: 500;
  color: rgba(226, 240, 255, .68);
}

/* WhatsApp-Knopf in der festen Leiste am unteren Rand */
.callbar__btn--wa {
  flex: 0 0 auto;
  padding-inline: 20px;
  background: linear-gradient(135deg, #1EBE5B, #25D366);
  color: #07290F;
  box-shadow: 0 8px 20px rgba(30, 190, 91, .34);
}


/* ============================================================
   15  SCROLL-REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1),
              transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Gestaffelter Auftritt ----
   Die Kinder eines [data-stagger]-Containers erscheinen nacheinander
   statt gleichzeitig. Den Zähler --i setzt das Script beim Laden. */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.2, .7, .3, 1),
              transform .65s cubic-bezier(.2, .7, .3, 1);
  transition-delay: calc(var(--i, 0) * 85ms);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }

/* ---- Wortweiser Auftritt der Hauptüberschrift ----
   Jedes Wort sitzt in einem Kästchen mit overflow:hidden und fährt von
   unten hinein. Der Textinhalt bleibt unverändert – für Suchmaschinen
   und Screenreader ändert sich nichts. */
.wort { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wort > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .8s cubic-bezier(.16, .84, .28, 1);
  transition-delay: calc(var(--i, 0) * 55ms);
}
.is-visible .wort > span,
.wort--an > span { transform: none; }

/* ---- Sanftes Hochzählen der Kennzahlen ---- */
.zaehler { font-variant-numeric: tabular-nums; }

/* ---- Parallax ----
   Bewusst über die eigenständige `translate`-Eigenschaft statt über
   `transform`: die Wasserebenen animieren bereits ihr transform, und
   beides zusammen würde sich gegenseitig überschreiben. `translate`
   wird davon unabhängig verrechnet. */
[data-parallax] { translate: 0 var(--py, 0px); }

/* ---- Fortschrittsbalken im Header ---- */
.fortschritt {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  transform: scaleX(var(--fortschritt, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400), #7EE3FF);
  pointer-events: none;
}

/* ---- Lichtreflex, der beim Hover über den Button wandert ---- */
.btn--primary { overflow: hidden; }
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn--primary:hover::after { left: 120%; }

/* ---- Icon-Badges reagieren beim Hover auf die Karte ---- */
.card .badge,
.preis-card .badge {
  transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s ease;
}
.card:hover .badge { transform: translateY(-3px) rotate(-7deg) scale(1.06); }

/* ---- Ortskarten heben sich leicht ---- */
.ort {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ort:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: rgba(25, 118, 210, .22);
}

/* ---- Verbindungslinie im Ablauf zeichnet sich ---- */
.ablauf__item::after {
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  transition-delay: calc(var(--i, 0) * 85ms + 260ms);
}
[data-stagger].is-visible .ablauf__item::after { transform: scaleY(1); }

/* ---- Pulsierender Ring am Notruf-Button ---- */
.notfall__nr { position: relative; }
.notfall__nr::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(66, 165, 245, .55);
  animation: notrufring 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes notrufring {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.09); opacity: 0;  }
  100% { transform: scale(1.09); opacity: 0;  }
}

/* Kein JS oder Nutzer möchte keine Animationen: alles sofort sichtbar */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__pulse { animation: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* ============================================================
   16  BREAKPOINTS
   ============================================================ */

/* ---------- bis 639px: Footer-Links als vollwertige Tap-Targets ---------- */
@media (max-width: 639px) {
  .footer__list { gap: 0; }
  .footer__list a,
  .footer__legal a,
  .footer__address a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer__legal { gap: 24px; }
}

/* ---------- ab 480px: Hero-Buttons nebeneinander ---------- */
@media (min-width: 480px) {
  .hero__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .hero__actions .btn { flex: 0 1 auto; }
  .uhero__actions { flex-direction: row; flex-wrap: wrap; }
  .cta__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ---------- ab 640px: zwei Spalten, mehr Luft ---------- */
@media (min-width: 640px) {
  :root { --pad-x: 26px; --sec-y: 72px; --gap: 22px; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .preis__grid { grid-template-columns: repeat(2, 1fr); }
  /* Fünf Karten in zwei Spalten: Stundensatz + Geräte, Zeiten + Zuschläge,
     und die Anfahrt-Tabelle über die volle Breite – sonst stünde sie als
     einzelne Karte in einer halben Zeile. Ab 1024 px übernimmt das
     Flächen-Raster weiter unten. */
  .anfahrt { grid-column: span 2; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .card, .preis-card { padding: 32px 28px; }
  .notfall, .anfahrt { padding: 34px 30px; }
  .formular { padding: 34px 30px; }
  .karte__inner { padding: 54px 34px; }
  .wave { height: 64px; }

  .glossar { grid-template-columns: repeat(2, 1fr); }
  .betrieb { padding: 38px 34px; }
  .kurzinfo { padding: 28px 28px; gap: 20px; }

  /* Fakten-Band: 3 + 2 auf einem Sechs-Spalten-Raster.
     Fünf gleich breite Kacheln wären hier nur rund 145 px breit – zu eng
     für Beschriftungen wie "fester Stundensatz pro Stunde". */
  .fakten { grid-template-columns: repeat(6, 1fr); }
  .fakten__item { grid-column: span 2; }
  .fakten__item:nth-child(4),
  .fakten__item:nth-child(5) { grid-column: span 3; }
  .fakten__item { padding: 26px 14px; }

  /* Ablauf: mehr Luft, Titel und Text bekommen mehr Breite */
  .ablauf { --marke-links: 28px; --marke-oben: 28px; }
  .ablauf__item { padding-right: 30px; padding-bottom: 28px; gap: 22px; }
  .ablauf__titel { font-size: 1.14rem; }
  .ablauf__text { font-size: 1rem; }

  .versprechen { padding: 40px 34px; }
  .versprechen__liste { grid-template-columns: repeat(2, 1fr); }
  .versprechen__item { padding: 18px 20px; }

  .ba-karte__text { padding: 24px 26px 28px; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- ab 860px: zweispaltige Bereiche (Navigation bleibt mobil) ---------- */
@media (min-width: 860px) {
  .warum__grid { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 44px; }
  .kontakt__grid { grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
  .hero { padding-top: calc(var(--header-h) + 56px); padding-bottom: 110px; }
  .checklist__item { font-size: 1rem; padding: 16px 18px; }
  .uhero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 88px; }
}

/* ---------- ab 1024px: Desktop-Navigation, Call-Bar aus ----------
   Bewusst erst hier und nicht schon bei 860px: Logo, sechs Menüpunkte und
   der Anruf-Button brauchen zusammen rund 1000px. Darunter würde der
   Header umbrechen und doppelt so hoch werden – Tablets bekommen deshalb
   weiterhin das Burger-Menü. */
@media (min-width: 1024px) {
  :root { --header-h: 76px; }

  body { padding-bottom: 0; }
  .callbar { display: none; }
  .burger { display: none; }

  /* Navigation zurück in die Kopfzeile */
  .nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: auto;
    background: none;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }
  .nav__list { flex-direction: row; align-items: center; gap: 2px; }
  .nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    min-height: 44px;
    border: 0;
    font-size: .9rem;
    white-space: nowrap;
  }
  /* Unterstrich beim Hover / aktivem Abschnitt */
  .nav__link::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px; bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
  }
  .nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
  .nav__call-mobile { display: none; }
  .nav-overlay { display: none; }

  /* Header-Anruf-Button mit Nummer */
  .header__call {
    margin-left: 14px;
    min-height: 48px;
    padding: 8px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.25;
  }
  .header__call svg { display: none; }
  .header__call-label {
    display: block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .85;
  }
  .header__call-nr { display: block; font-size: .95rem; font-weight: 900; white-space: nowrap; }

  /* Logo darf nie umbrechen – ein zweizeiliges Logo macht den ganzen
     Header doppelt so hoch und verschiebt alle Ankersprünge. */
  .logo { flex: none; }
  .logo__mark { width: 44px; height: 44px; font-size: .98rem; }
  .logo__name { font-size: 1rem; white-space: nowrap; }
  .logo__claim { font-size: .7rem; white-space: nowrap; }

  .hero { padding-top: calc(var(--header-h) + 64px); padding-bottom: 120px; }
}

/* ---------- ab 1024px: vier Spalten, größere Typo ---------- */
@media (min-width: 1024px) {
  :root { --sec-y: 92px; --gap: 24px; }

  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }

  /* Der Ablauf bleibt bewusst EINSPALTIG. Zweispaltig würde die
     Verbindungslinie von Schritt 1 nach 3 führen statt nach 2 – die
     Reihenfolge wäre dann optisch falsch. */
  .versprechen { padding: 46px 40px; }

  /* Fakten-Band: ab hier passen alle fünf Kacheln nebeneinander.
     Die span-Regeln aus dem 640er-Block müssen dafür zurückgesetzt werden. */
  .fakten { grid-template-columns: repeat(5, 1fr); }
  .fakten__item,
  .fakten__item:nth-child(4),
  .fakten__item:nth-child(5) { grid-column: auto; }
  .fakten__item { padding: 30px 18px; }

  /* Preis-Layout: Stundensatz + 2 Cards oben, Anfahrt rechts über 2 Reihen */
  /* Stundensatz und Geräteeinsatz stehen bewusst nebeneinander in der
     ersten Zeile: Wer die 64,90 € liest, hat den Zusatzposten im selben
     Blick. Die Geräte-Karte reicht über zwei Zeilen, weil ihre Tabelle
     mehr Höhe braucht als die Servicezeiten darunter. */
  .preis__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "stunde   geraete  anfahrt"
      "zeiten   geraete  anfahrt"
      "zuschlag zuschlag anfahrt";
  }
  .preis-hero { grid-area: stunde; display: flex; flex-direction: column; justify-content: center; }
  .geraete { grid-area: geraete; }
  .preis-card--zeiten   { grid-area: zeiten; }
  .preis-card--zuschlag { grid-area: zuschlag; }
  .anfahrt { grid-area: anfahrt; }

  /* Die Zuschlag-Karte läuft hier über zwei Spalten – die drei Posten
     stehen deshalb nebeneinander statt untereinander. */
  .preis-card--zuschlag .zuschlag {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
  }
  .preis-card--zuschlag .zuschlag__item {
    border-bottom: 0;
    border-right: 1px dashed var(--line);
    padding: 4px 20px 4px 0;
  }
  .preis-card--zuschlag .zuschlag__item:last-child { border-right: 0; padding-right: 0; }

  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
  .section__head { margin-bottom: 46px; }
  .hero__sub { font-size: 1.22rem; }
}

/* ---------- ab 1200px: Header darf wieder großzügiger werden ---------- */
@media (min-width: 1200px) {
  .nav__list { gap: 4px; }
  .nav__link { font-size: .97rem; padding: 8px 13px; }
  .header__call { margin-left: 20px; padding: 8px 20px; }
  .header__call-nr { font-size: 1rem; }
  .header__call-label { font-size: .68rem; }
  .logo__mark { width: 46px; height: 46px; font-size: 1rem; }
  .logo__name { font-size: 1.12rem; }
  .logo__claim { font-size: .74rem; }
}

/* ---------- ab 1280px: maximale Breite ---------- */
@media (min-width: 1280px) {
  :root { --pad-x: 32px; }
  .hero__title { font-size: 3.6rem; }
  .notfall, .anfahrt, .formular { padding: 40px 36px; }
  .ba-karte__text { padding: 28px 30px 32px; }
}

/* ---------- Druckansicht ---------- */
@media print {
  .header, .callbar, .nav, .nav-overlay, .skip-link, .formular,
  .todo, .muster__aktion, .legal__back { display: none !important; }
  body { padding: 0; color: #000; }
  .hero, .kontakt, .notfall, .anfahrt, .preis-hero, .karte, .footer {
    background: none !important; color: #000 !important; box-shadow: none !important;
  }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }

  /* Muster-Widerrufsformular: schwarz auf weiß, nicht über Seiten trennen */
  .legal { padding-top: 0; }
  .widerruf__adresse { background: none; border-left: 2px solid #000; }
  .muster {
    border-color: #000;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .muster__linie { background: #000; opacity: 1; }
  .muster__felder dd { margin-bottom: 30px; }
}
