/* =====================================================================
   MIETPARK VERKAUFEN – Stylesheet
   Keine externen Ressourcen: keine Google Fonts, kein CDN, kein Tracking.
   Farben und Maße lassen sich vollständig in :root anpassen.
   ===================================================================== */

/* ---------------------------------------------------------------------
   Schriften – selbst gehostet, nichts wird von Google geladen.
   Es sind variable Schriften: EINE Datei je Familie deckt alle
   benötigten Schnitte ab. Zusammen rund 73 KB, lateinischer Zeichensatz.
   Lizenz: SIL Open Font License, Texte liegen in assets/fonts/.
   Fehlen die Dateien, greift automatisch der Systemfont-Stack darunter.
   --------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-variabel.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-variabel.woff2") format("woff2");
  font-weight: 200 800; font-style: normal; font-display: swap;
}

:root {
  /* Farbwelt laut Konzept, Abschnitt 27.
     Industriegelb ist die Signalfarbe der Branche – Arbeitsbühnen und
     Baumaschinen sind gelb. Es wird deshalb ausschließlich für Aufrufe
     zum Handeln und kleine Hervorhebungen verwendet, nie für Fließtext:
     Gelb auf Weiß wäre nicht lesbar. Beschriftungen auf gelbem Grund
     stehen immer in Dunkelblau (Kontrast 7,4:1). */
  --navy:          #102A43;   /* Primärfarbe */
  --navy-2:        #1B3C5C;
  --anthrazit:     #27333A;
  --gelb:          #EFB70A;   /* CTA */
  --gelb-dkl:      #D4A105;   /* Hover */
  --gelb-hell:     #FCF3D8;   /* zarte Fläche, z. B. Hinweiskästen */
  --stahl:         #1D4E77;   /* Links und Symbole auf Weiß */
  --stahl-hell:    #E8EEF4;   /* Symbolflächen */
  --flaeche:       #F3F5F6;   /* helles Grau */
  --off:           #FAFAF8;   /* Off-White */
  --text:          #27333A;
  --text-leicht:   #5D6C77;
  --weiss:         #FFFFFF;
  --rot:           #9B3229;
  --rot-flaeche:   #FBEDEB;
  --ok:            #1F6B4F;
  --ok-flaeche:    #E8F2EE;
  --linie:         #DBE1E6;
  --linie-zart:    #E9EDF0;

  --radius:        12px;
  --radius-gross:  16px;
  --radius-klein:  8px;
  --schatten:      0 1px 2px rgba(16,42,67,.05), 0 10px 30px rgba(16,42,67,.07);
  --schatten-hoch: 0 12px 48px rgba(16,42,67,.16);
  --breite:        1200px;
  --breite-text:   760px;

  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  --font-kopf: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

/* Ein fieldset erhält vom Browser min-inline-size: min-content. Ohne
   diese Regel kann es in einem Raster nicht schmaler werden als sein
   längstes Wort – auf schmalen Geräten läuft die Seite dann seitlich
   über. Betrifft die Formularstufen ebenso wie die Feldgruppen. */
fieldset { min-width: 0; }

/* Dasselbe gilt für Felder in einem Raster: Sie haben von Haus aus
   min-width: auto und schrumpfen deshalb nicht unter ihren Inhalt.
   Bei langen deutschen Wörtern sprengt das die Seitenbreite. */
.zweispalter > *, .raster > *, .hero__inner > *, .feld-paar > *,
.optionen > *, .wahlkarten > *, .weiter > *, .fusszeile__raster > *,
.prozess__schritt > *, .merkmal > *, .person > *, .downloadbox > *,
.zustimmung > *, .hakenliste > li, .strichliste > li,
.wahlkarte__inhalt > *, .karte--link > *, .kopfzeile__inner > * { min-width: 0; }

/* Das hidden-Attribut muss auch dann greifen, wenn eine Klasse
   display: grid oder flex setzt. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
svg { flex: none; }

h1, h2, h3, h4 {
  font-family: var(--font-kopf);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 600;
  color: var(--navy);
  /* „Arbeitsbühnenvermietung“ und „Teleskopladervermietung“ passen auf
     schmalen Geräten in keine Zeile. Ohne diese Regel schiebt sich die
     ganze Seite nach rechts. */
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.78rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.52rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1.1em; overflow-wrap: break-word; }
p:last-child { margin-bottom: 0; }
li, td, th, dd, dt, figcaption, label, summary { overflow-wrap: break-word; }

/* ---------- Grundgerüst ---------- */
.wrap { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 24px; }
.abschnitt { padding: 96px 0; }
.abschnitt--eng { padding: 66px 0; }
.abschnitt--flaeche { background: var(--flaeche); }
.abschnitt--stahl { background: var(--stahl-hell); }
.abschnitt--off { background: var(--off); }
.abschnitt--dunkel { background: var(--navy); color: #BFCEDC; }
.abschnitt--dunkel h2,
.abschnitt--dunkel h3 { color: #fff; }

.kopf { max-width: 64ch; margin-bottom: 52px; }
.kopf--mitte { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--stahl);
  margin-bottom: .9em;
}
/* Auf dunklem Grund trägt die Oberzeile das Gelb – dort ist es lesbar. */
.abschnitt--dunkel .kicker { color: var(--gelb); }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.26rem);
  line-height: 1.6;
  color: var(--text-leicht);
  max-width: var(--breite-text);
}
.abschnitt--dunkel .lead { color: #A5B7C7; }

.textspalte { max-width: var(--breite-text); }
.textspalte h2 { margin-top: 1.6em; }
.textspalte h2:first-child { margin-top: 0; }
.textspalte h3 { margin-top: 1.8em; }
.textspalte ul, .textspalte ol { padding-left: 1.3em; margin: 0 0 1.3em; }
.textspalte li { margin-bottom: .5em; }

.zentriert { text-align: center; }
.kleiner-hinweis { font-size: .92rem; color: var(--text-leicht); }

/* Nur für Screenreader – visuell nicht sichtbar, aber vorlesbar */
.visuell-versteckt {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* Sprungmarke für Tastaturnutzung */
.skiplink {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff;
  padding: 14px 22px; border-radius: 0 0 var(--radius-klein) 0;
  text-decoration: none; font-weight: 600;
}
.skiplink:focus { left: 0; }

/* ---------- Sichtbarer Fokus, durchgängig ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--stahl);
  outline-offset: 3px;
  border-radius: 4px;
}
.abschnitt--dunkel a:focus-visible,
.kopfzeile a:focus-visible,
.kopfzeile button:focus-visible,
.fusszeile a:focus-visible { outline-color: var(--gelb); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font: inherit; font-weight: 700; line-height: 1.2;
  min-height: 54px; padding: 15px 28px;
  border-radius: var(--radius-klein); border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}
/* Industriegelb mit dunkelblauer Schrift – 7,4:1 und branchentypisch. */
.btn--primaer { background: var(--gelb); color: var(--navy); border-color: var(--gelb); }
.btn--primaer:hover { background: var(--gelb-dkl); border-color: var(--gelb-dkl); }
.btn--sekundaer { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--sekundaer:hover { background: var(--navy); color: #fff; }
.btn--hell { background: #fff; color: var(--navy); border-color: #fff; }
.btn--hell:hover { background: var(--gelb); border-color: var(--gelb); }
.abschnitt--dunkel .btn--sekundaer { color: #fff; border-color: rgba(255,255,255,.44); }
.abschnitt--dunkel .btn--sekundaer:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--klein { min-height: 46px; padding: 11px 18px; font-size: .94rem; }
.btn--voll { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
/* Ein inline eingebundenes SVG hat keine eigene Größe. Ohne diese Regel
   bläht es sich im Flex-Button auf seine Ersatzgröße auf. */
.btn svg { width: 20px; height: 20px; }

.btn-reihe { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Textlink mit Pfeil – auch ohne Farbe erkennbar (Unterstreichung) */
.pfeillink {
  display: inline-flex; align-items: center; gap: .45em;
  color: var(--stahl); font-weight: 600;
  text-decoration: underline; text-underline-offset: 4px;
}
.pfeillink:hover { color: var(--navy); }
.pfeillink svg { width: 17px; height: 17px; }
.abschnitt--dunkel .pfeillink { color: #fff; }

/* Fließtext-Links immer unterstrichen */
.textspalte a:not(.btn):not(.pfeillink),
.fliesslink {
  color: var(--stahl);
  text-decoration: underline; text-underline-offset: 3px;
}
.textspalte a:not(.btn):not(.pfeillink):hover { color: var(--navy); }

/* ---------- Kopfzeile ---------- */
.hinweisbalken {
  background: var(--navy); color: #AFC0CF;
  font-size: .86rem; text-align: center; padding: 9px 24px;
}
.hinweisbalken strong { color: #fff; font-weight: 600; }
.hinweisbalken__kurz { display: none; }

.kopfzeile {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--linie-zart);
}
/* Sechs Navigationspunkte mit langen deutschen Wörtern, dazu
   Telefonnummer und Schaltfläche: Das passt nicht in die 1200 Pixel
   des Inhaltsbereichs. Die Kopfzeile bekommt deshalb etwas mehr Raum
   als der Text darunter. */
.kopfzeile .wrap { max-width: 1320px; }
.kopfzeile__inner { display: flex; align-items: center; gap: 16px; min-height: 82px; }
.kopfzeile--schlank .kopfzeile__inner { justify-content: space-between; }

.logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  margin-right: auto; min-width: 0;
  flex: none;              /* auf großen Schirmen nie zusammenstauchen */
}
.logo__mark {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--navy); display: grid; place-items: center; color: var(--gelb);
}
.logo__mark svg { width: 27px; height: 27px; }
.logo__text {
  display: flex; flex-direction: column; line-height: 1.1;
  min-width: 0; overflow: hidden;
}
.logo__name {
  font-family: var(--font-kopf); font-weight: 800; font-size: .95rem;
  letter-spacing: .04em; color: var(--navy); text-transform: uppercase;
}
.logo__zeile { display: block; white-space: nowrap; }
.logo__claim {
  font-size: .72rem; color: var(--text-leicht); letter-spacing: .02em;
  white-space: nowrap; margin-top: 3px;
}

.navi { display: flex; gap: 2px; }
.navi a {
  text-decoration: none; color: var(--text); padding: 10px 8px;
  border-radius: 8px; font-size: .92rem; font-weight: 500;
  white-space: nowrap;
  transition: background-color .15s, color .15s;
}
.kopfzeile .btn { white-space: nowrap; }
.navi a:hover { background: var(--stahl-hell); color: var(--navy); }
.navi a[aria-current="page"] {
  color: var(--navy); font-weight: 600;
  box-shadow: inset 0 -3px 0 var(--gelb);
  border-radius: 8px 8px 0 0;
}

.kopf-kontakt { display: flex; align-items: center; gap: 14px; }
.kopf-telefon {
  display: inline-flex; align-items: center; gap: .5em;
  text-decoration: none; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.kopf-telefon svg { width: 18px; height: 18px; color: var(--stahl); }
.kopf-telefon:hover { color: var(--stahl); }

.menue-btn {
  display: none; align-items: center; gap: .5em;
  background: var(--navy); color: #fff; border: 0;
  border-radius: var(--radius-klein); padding: 12px 16px;
  font: inherit; font-weight: 600; cursor: pointer; min-height: 46px;
  /* feste Breite, damit die Zeile beim Umschalten auf „Schließen“ nicht springt */
  min-width: 124px; justify-content: center; flex: none;
}
.menue-btn svg { width: 20px; height: 20px; }

.mobilnavi { display: none; border-top: 1px solid var(--linie-zart); background: #fff; }
.mobilnavi.offen { display: block; }
.mobilnavi ul { list-style: none; margin: 0; padding: 10px 0 14px; }
.mobilnavi a {
  display: block; padding: 15px 24px; text-decoration: none;
  font-weight: 500; border-bottom: 1px solid var(--linie-zart);
}
.mobilnavi a:hover { background: var(--flaeche); }
.mobilnavi .mobilnavi__cta { padding: 16px 24px 22px; }
.mobilnavi__telefon {
  display: flex; align-items: center; justify-content: center; gap: .55em;
  margin-top: 14px; padding: 12px; border: 0 !important;
  font-weight: 600; color: var(--navy);
  text-decoration: underline; text-underline-offset: 4px;
}
.mobilnavi__telefon svg { width: 19px; height: 19px; color: var(--stahl); }

/* ---------- Hero ---------- */
.hero { background: var(--flaeche); border-bottom: 1px solid var(--linie-zart); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px;
  align-items: center; padding: 84px 0 76px;
}
.hero__text p.lead { margin-bottom: 32px; }
.hero__hinweis { margin-top: 22px; font-size: .95rem; color: var(--text-leicht); max-width: 52ch; }
.hero__bild {
  border-radius: var(--radius-gross); overflow: hidden;
  box-shadow: var(--schatten); background: var(--stahl-hell);
}

/* Variante für ein breites Panoramabild: Text oben, Bild über die volle
   Breite darunter. In einer schmalen Spalte wären die Maschinen auf
   einem 2:1-Bild zu klein, um etwas zu erkennen. */
.hero--breit .wrap { padding-top: 76px; padding-bottom: 84px; }
.hero--breit .hero__text { max-width: 780px; }
.hero--breit .hero__bild { margin-top: 48px; }

/* Rahmen für Illustrationen und Fotos */
.bildrahmen {
  border-radius: var(--radius-gross); overflow: hidden;
  box-shadow: var(--schatten); background: var(--stahl-hell);
}
.bildrahmen img,
.hero__bild img { width: 100%; height: auto; }

.bildbreit { margin: 40px 0; }
.bildbreit figcaption { margin-top: 12px; font-size: .92rem; color: var(--text-leicht); }

/* Platzhalterfläche, solange kein Foto vorhanden ist */
.bildplatz {
  position: relative; aspect-ratio: 4 / 3;
  display: grid; place-items: center; gap: 12px;
  background: linear-gradient(150deg, var(--stahl-hell), #D8E3EC);
  color: var(--navy); text-align: center; padding: 32px;
}
.bildplatz svg { width: 62px; height: 62px; opacity: .45; }
.bildplatz__text { font-size: .92rem; max-width: 34ch; color: #2C4A63; }
.bildplatz--breit { aspect-ratio: 16 / 7; }
.bildplatz--portrait { aspect-ratio: 1 / 1; }

/* ---------- Vertrauensleiste ---------- */
.vertrauensleiste { border-top: 1px solid var(--linie-zart); background: #fff; }
.vertrauensleiste ul {
  list-style: none; margin: 0; padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: center;
}
.vertrauensleiste li {
  display: flex; align-items: center; gap: .55em;
  font-size: .95rem; font-weight: 500; color: var(--navy);
}
.vertrauensleiste svg { width: 19px; height: 19px; color: var(--stahl); }

/* ---------- Karten ---------- */
.raster { display: grid; gap: 24px; }
.raster--2 { grid-template-columns: repeat(2, 1fr); }
.raster--3 { grid-template-columns: repeat(3, 1fr); }
.raster--4 { grid-template-columns: repeat(4, 1fr); }

.karte {
  background: #fff; border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 30px;
}
.karte h2,
.karte h3 { margin-bottom: .5em; font-size: clamp(1.3rem, 2vw, 1.52rem); }
.karte p:last-child { margin-bottom: 0; }
.karte__symbol {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--stahl-hell); color: var(--stahl);
  display: grid; place-items: center; margin-bottom: 20px;
}
.karte__symbol svg { width: 24px; height: 24px; }
.abschnitt--flaeche .karte,
.abschnitt--stahl .karte,
.abschnitt--off .karte { border-color: transparent; box-shadow: var(--schatten); }
.abschnitt--dunkel .karte {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #BFCEDC;
}
.abschnitt--dunkel .karte__symbol { background: rgba(255,255,255,.12); color: var(--gelb); }

.karte--link { display: flex; flex-direction: column; text-decoration: none; }
.karte--link:hover { border-color: var(--stahl); }
.karte--link .pfeillink { margin-top: auto; padding-top: 18px; }

/* ---------- Merkmalsraster (dichter als Karten) ---------- */
.merkmal { display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.merkmal__symbol {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--stahl-hell); color: var(--stahl);
  display: grid; place-items: center;
}
.merkmal__symbol svg { width: 23px; height: 23px; }
.merkmal h3 { font-size: 1.12rem; margin-bottom: .3em; }
.merkmal p { color: var(--text-leicht); font-size: .96rem; margin: 0; }
.abschnitt--dunkel .merkmal__symbol { background: rgba(255,255,255,.12); color: var(--gelb); }
.abschnitt--dunkel .merkmal p { color: #A5B7C7; }

/* ---------- Prozessdarstellung ---------- */
.prozess { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.prozess__schritt {
  display: grid; grid-template-columns: 62px 1fr; gap: 22px;
  padding: 26px 0; border-top: 1px solid var(--linie);
}
.prozess__schritt:last-child { border-bottom: 1px solid var(--linie); }
.prozess__nr {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-kopf); font-weight: 700; font-size: 1.15rem;
}
.prozess__schritt h2,
.prozess__schritt h3 { margin-bottom: .35em; font-size: clamp(1.3rem, 2vw, 1.52rem); }
.prozess__schritt p { color: var(--text-leicht); margin: 0; }
.abschnitt--dunkel .prozess__schritt { border-color: rgba(255,255,255,.16); }
.abschnitt--dunkel .prozess__nr { background: var(--gelb); color: var(--navy); }
.abschnitt--dunkel .prozess__schritt p { color: #A5B7C7; }

/* ---------- Hinweisbox ---------- */
.hinweisbox {
  border-left: 4px solid var(--gelb);
  background: var(--gelb-hell);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px; margin: 32px 0;
}
.hinweisbox p:last-child { margin-bottom: 0; }
.hinweisbox--stahl { border-left-color: var(--stahl); background: var(--stahl-hell); }
.hinweisbox__titel {
  display: flex; align-items: center; gap: .55em;
  font-family: var(--font-kopf); font-weight: 600; color: var(--navy);
  margin-bottom: .5em;
}
.hinweisbox__titel svg { width: 20px; height: 20px; color: #8A6A00; }
.hinweisbox--stahl .hinweisbox__titel svg { color: var(--stahl); }

/* Herausgehobener Satz im Fließtext */
.merksatz {
  font-family: var(--font-kopf); font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.35;
  color: var(--navy); border-left: 5px solid var(--gelb);
  padding: 6px 0 6px 24px; margin: 34px 0;
}
.abschnitt--dunkel .merksatz { color: #fff; border-left-color: var(--gelb); }

/* Große Kernaussage auf ganzer Breite – z. B. Auslastung vor Flottengröße */
.grossaussage {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-gross); padding: 46px 52px;
  border-left: 8px solid var(--gelb);
  font-family: var(--font-kopf); font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem); line-height: 1.32;
  margin: 40px 0;
}
.grossaussage p { margin: 0; }
.grossaussage p + p {
  margin-top: .8em; font-family: var(--font-text); font-weight: 400;
  font-size: 1.02rem; line-height: 1.6; color: #A5B7C7;
}

/* ---------- Listen ---------- */
.hakenliste { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 11px; }
.hakenliste li {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start;
}
.hakenliste li::before {
  content: ""; width: 20px; height: 20px; margin-top: 4px; border-radius: 50%;
  background: var(--stahl-hell) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D4E77' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.abschnitt--dunkel .hakenliste li::before {
  background-color: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EFB70A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.hakenliste--zweispaltig { grid-template-columns: repeat(2, 1fr); gap: 11px 34px; }

/* Neutrale Aufzählung ohne Wertung */
.strichliste { list-style: none; margin: 0 0 1.4em; padding: 0; display: grid; gap: 10px; }
.strichliste li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start;
}
.strichliste li::before {
  content: ""; width: 12px; height: 2px; margin-top: 14px;
  background: var(--text-leicht); border-radius: 2px;
}

/* Schlagworte, z. B. Maschinengruppen */
.schlagworte {
  list-style: none; margin: 0 0 1.4em; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.schlagworte li {
  background: var(--stahl-hell); color: var(--navy);
  border-radius: 999px; padding: 8px 17px; font-size: .95rem; font-weight: 500;
}
.abschnitt--flaeche .schlagworte li,
.abschnitt--stahl .schlagworte li { background: #fff; border: 1px solid var(--linie); }
.abschnitt--dunkel .schlagworte li { background: rgba(255,255,255,.09); color: #D4DFE8; }

/* ---------- Ansprechpartnerkarte ---------- */
.person {
  display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center;
  background: #fff; border: 1px solid var(--linie);
  border-radius: var(--radius-gross); padding: 36px; box-shadow: var(--schatten);
}
.person__bild { border-radius: var(--radius); overflow: hidden; }
.person__daten { list-style: none; margin: 22px 0 24px; padding: 0; display: grid; gap: 9px; }
.person__daten li { display: flex; align-items: center; gap: .6em; font-weight: 500; }
.person__daten svg { width: 18px; height: 18px; color: var(--stahl); }
.person__daten a { color: var(--stahl); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Zwei-Spalten-Text ---------- */
.zweispalter { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px; }
.zweispalter--seitlich { grid-template-columns: 1.4fr .6fr; align-items: start; }

/* ---------- FAQ-Akkordeon ---------- */
.faq { max-width: var(--breite-text); }
.faq details { border-bottom: 1px solid var(--linie); background: #fff; }
.faq details:first-of-type { border-top: 1px solid var(--linie); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 24px 4px;
  font-family: var(--font-kopf); font-weight: 600; font-size: 1.1rem;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--stahl); }
.faq summary::after {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23102A43' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__inhalt { padding: 0 4px 26px; max-width: 68ch; color: var(--text-leicht); }
.faq__inhalt p:last-child { margin-bottom: 0; }
.faq__gruppe { margin-bottom: 56px; }
.faq__gruppe:last-child { margin-bottom: 0; }
.faq__gruppe > h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: .7em; }

/* ---------- Rückrufbox ---------- */
.rueckrufbox {
  background: var(--navy); color: #BFCEDC;
  border-radius: var(--radius-gross); padding: 40px;
}
.rueckrufbox h2 { color: #fff; }
.rueckrufbox__nummer {
  font-size: 1.28rem; font-weight: 600; color: #fff; margin: .6em 0;
}
.rueckrufbox__nummer a { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.rueckrufbox__mail a { color: var(--gelb); text-decoration: underline; text-underline-offset: 3px; }
/* Telefon- und Mailsymbol stehen hier direkt im Absatz. Ein inline
   eingebundenes SVG ohne Größenangabe bläht sich sonst auf seine
   Ersatzgröße von 300 x 150 Pixeln auf. */
.rueckrufbox__nummer,
.rueckrufbox__mail { display: flex; align-items: center; gap: .55em; }
.rueckrufbox svg { width: 21px; height: 21px; color: var(--gelb); }
.rueckrufbox__nummer svg { width: 23px; height: 23px; }

/* =====================================================================
   Formular
   ===================================================================== */
.formular { max-width: 760px; }
.formular__block,
.stufe {
  border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 30px; margin: 0 0 22px; background: #fff;
}
.formular__block > .block__titel,
.stufe__titel {
  font-family: var(--font-kopf); font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--navy); padding: 0 8px; margin: 0 0 .2em -8px;
  display: block;
}
.stufe__nr {
  display: block; font-family: var(--font-text);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--stahl); margin-bottom: .5em;
}
.formular__block p.block__hilfe,
.stufe p.block__hilfe {
  color: var(--text-leicht); font-size: .95rem; margin: .6em 0 1.5em;
}

.feld { margin-bottom: 20px; }
.feld:last-child { margin-bottom: 0; }
.feld--gruppe { border: 0; padding: 0; margin: 0 0 22px; min-width: 0; }
.feld > label,
.feldgruppe__titel {
  display: block; font-weight: 600; margin-bottom: 7px; color: var(--navy);
  padding: 0;
}
.feld__hilfe { font-size: .89rem; color: var(--text-leicht); margin: 0 0 9px; font-weight: 400; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
select, textarea {
  width: 100%; font: inherit; color: var(--text);
  padding: 13px 15px; min-height: 52px;
  border: 1.5px solid var(--linie); border-radius: var(--radius-klein);
  background: #fff;
  transition: border-color .15s;
}
input:hover, select:hover, textarea:hover { border-color: #B6C2CC; }
input:focus, select:focus, textarea:focus { border-color: var(--stahl); }
textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D6C77' stroke-width='2.2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 44px;
}
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--rot); background: var(--rot-flaeche);
}

/* Zwei Felder nebeneinander. Den Abstand nach unten trägt das Paar
   selbst – sonst klebt das folgende Feld an der unteren Feldkante,
   weil .feld:last-child seinen eigenen Abstand verliert. */
.feld-paar {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 20px;
}
.feld-paar > .feld { margin-bottom: 0; }
.feld-paar:last-child { margin-bottom: 0; }

/* Radiogruppen und Mehrfachauswahl */
.optionen { display: grid; gap: 10px; margin-top: 4px; }
.optionen--2 { grid-template-columns: repeat(2, 1fr); }
.optionen--3 { grid-template-columns: repeat(3, 1fr); }
.option {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  padding: 14px 16px; border: 1.5px solid var(--linie);
  border-radius: var(--radius-klein); cursor: pointer; font-weight: 400;
  transition: border-color .15s, background-color .15s;
}
.option:hover { border-color: #B6C2CC; background: var(--flaeche); }
.option input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--stahl); }
.option:has(input:checked) { border-color: var(--stahl); background: var(--stahl-hell); }

/* Große Auswahlkarten – Stufe 1 */
.wahlkarten {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 4px;
}
.wahlkarte { position: relative; display: block; cursor: pointer; }
.wahlkarte input {
  position: absolute; opacity: 0; width: 1px; height: 1px;
}
.wahlkarte__inhalt {
  display: block; height: 100%;
  border: 1.5px solid var(--linie); border-radius: var(--radius);
  padding: 20px 20px 22px; background: #fff;
  transition: border-color .15s, background-color .15s, box-shadow .15s;
}
.wahlkarte:hover .wahlkarte__inhalt { border-color: #B6C2CC; background: var(--flaeche); }
.wahlkarte__symbol {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--stahl-hell); color: var(--stahl); margin-bottom: 14px;
}
.wahlkarte__symbol svg { width: 23px; height: 23px; }
.wahlkarte__titel {
  display: block; font-family: var(--font-kopf); font-weight: 600;
  font-size: 1.06rem; color: var(--navy); margin-bottom: .25em;
}
.wahlkarte__text { display: block; font-size: .91rem; color: var(--text-leicht); line-height: 1.5; }
.wahlkarte__titel,
.wahlkarte__text { overflow-wrap: break-word; hyphens: auto; }
.wahlkarte input:checked + .wahlkarte__inhalt {
  border-color: var(--stahl); background: var(--stahl-hell);
  box-shadow: inset 0 0 0 1px var(--stahl);
}
.wahlkarte input:checked + .wahlkarte__inhalt .wahlkarte__symbol {
  background: var(--stahl); color: #fff;
}
.wahlkarte input:focus-visible + .wahlkarte__inhalt {
  outline: 3px solid var(--stahl); outline-offset: 3px;
}

/* Branchenspezifische Blöcke in Stufe 5 */
.zweig { border: 0; padding: 4px 0 0; margin: 0; min-width: 0; }
.zweig + .zweig { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--linie-zart); }
.zweig__titel {
  font-family: var(--font-kopf); font-weight: 600; font-size: 1.1rem;
  color: var(--navy); padding: 0; margin-bottom: 1em;
}
/* Mit JavaScript wird immer nur ein Zweig gezeigt – dann entfällt die Trennlinie. */
.formular--js .zweig + .zweig { margin-top: 0; padding-top: 4px; border-top: 0; }

.zustimmung {
  display: grid; grid-template-columns: 24px 1fr; gap: 13px; align-items: start;
  margin-bottom: 16px; line-height: 1.55;
}
.zustimmung:last-child { margin-bottom: 0; }
.zustimmung input { width: 21px; height: 21px; margin: 3px 0 0; accent-color: var(--stahl); }
.zustimmung a { color: var(--stahl); text-decoration: underline; text-underline-offset: 3px; }
.datenschutzblock {
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--linie-zart);
}
.datenschutzblock .feldgruppe__titel { margin-bottom: 1em; }

.honigtopf {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.absendehinweis {
  font-size: .92rem; color: var(--text-leicht);
  margin-top: 16px; max-width: 62ch;
}

/* Fortschrittsanzeige */
.fortschritt { margin-bottom: 24px; }
.fortschritt__text {
  font-size: .92rem; font-weight: 600; color: var(--navy); margin: 0 0 9px;
}
.fortschritt__balken {
  height: 8px; border-radius: 999px; background: var(--linie); overflow: hidden;
}
/* Der Balken ist dunkelblau, nicht gelb: Gelb auf hellem Grau wäre als
   Fortschrittsanzeige zu schwach zu erkennen. */
.fortschritt__balken span {
  display: block; height: 100%; width: 0;
  background: var(--navy); border-radius: 999px;
  transition: width .25s ease;
}

/* Steuerung unter den Stufen */
.stufen-navi { display: flex; gap: 14px; margin-bottom: 18px; }
.stufen-navi .btn { flex: 1; }
.stufen-navi .btn[hidden] { display: none !important; }

/* Meldungen */
.meldung {
  border-radius: var(--radius-klein); padding: 16px 20px; margin-bottom: 24px;
  display: grid; grid-template-columns: 22px 1fr; gap: 13px; align-items: start;
}
.meldung svg { width: 21px; height: 21px; margin-top: 2px; }
.meldung--ok { background: var(--ok-flaeche); border: 1.5px solid #B9D5C9; color: #17513C; }
.meldung--ok svg { color: var(--ok); }
.meldung--fehler { background: var(--rot-flaeche); border: 1.5px solid #E8C2BD; color: #762A22; }
.meldung--fehler svg { color: var(--rot); }
.meldung ul { margin: .5em 0 0; padding-left: 1.2em; }

/* ---------- Downloadbox ---------- */
.downloadbox {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center;
  border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 28px; background: #fff;
}
.downloadbox__symbol {
  width: 64px; height: 64px; border-radius: 12px;
  background: var(--stahl-hell); color: var(--stahl);
  display: grid; place-items: center;
}
.downloadbox__symbol svg { width: 30px; height: 30px; }
.downloadbox h2,
.downloadbox h3 { margin-bottom: .25em; font-size: 1.32rem; }
.downloadbox p { margin: 0; color: var(--text-leicht); font-size: .96rem; }

/* ---------- Breadcrumb ---------- */
.brotkrumen { background: var(--flaeche); border-bottom: 1px solid var(--linie-zart); }
.brotkrumen ol {
  list-style: none; margin: 0; padding: 14px 0;
  display: flex; flex-wrap: wrap; gap: 8px; font-size: .9rem; color: var(--text-leicht);
}
.brotkrumen li { display: flex; align-items: center; gap: 8px; }
.brotkrumen li + li::before { content: "›"; color: #93A2AD; }
.brotkrumen a { color: var(--text-leicht); text-decoration: underline; text-underline-offset: 3px; }
.brotkrumen a:hover { color: var(--navy); }
.brotkrumen [aria-current="page"] { color: var(--navy); font-weight: 500; }

/* ---------- Seitenkopf (Unterseiten) ---------- */
.seitenkopf { padding: 68px 0 58px; border-bottom: 1px solid var(--linie-zart); }
.seitenkopf--flaeche { background: var(--flaeche); }

/* ---------- Ratgeber ---------- */
.artikel { padding: 56px 0 90px; }
.artikel__meta { color: var(--text-leicht); font-size: .93rem; margin-bottom: 26px; }
.artikel .textspalte > h2 { padding-top: .3em; }
.artikel__fuss {
  max-width: var(--breite-text); margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--linie);
}

/* ---------- Weiterführende Links ---------- */
.weiter__titel { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-bottom: 1em; }
.weiter {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.weiter a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--radius-klein);
  padding: 16px 20px; text-decoration: none; font-weight: 600; color: var(--navy);
  transition: border-color .15s;
}
.weiter a:hover { border-color: var(--stahl); color: var(--stahl); }
.weiter svg { width: 18px; height: 18px; color: var(--stahl); }

/* ---------- Abschluss-CTA ---------- */
.schluss-cta { text-align: center; }
.schluss-cta .lead { margin-left: auto; margin-right: auto; }
.schluss-cta .btn-reihe { justify-content: center; margin-top: 32px; }
.schluss-cta__hinweis { margin-top: 22px; font-size: .93rem; color: #8EA2B3; }

/* ---------- Fußzeile ---------- */
.fusszeile { background: var(--navy); color: #9FB2C1; padding: 72px 0 0; }
.fusszeile h2, .fusszeile h3 {
  color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 1.3em; font-weight: 600;
}
.fusszeile__raster {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px;
  padding-bottom: 52px;
}
.fusszeile ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.fusszeile a { color: #BCCBD8; text-decoration: none; }
.fusszeile a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.fusszeile .logo__name { color: #fff; }
.fusszeile .logo__claim { color: var(--gelb); }
.fusszeile .logo__mark { background: rgba(255,255,255,.12); }
.fusszeile__text { margin-top: 20px; font-size: .95rem; max-width: 36ch; }
.fusszeile address { font-style: normal; line-height: 1.9; font-size: .96rem; }

.fusszeile__transparenz {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 26px 0; font-size: .89rem; color: #8B9FB0; max-width: 92ch;
}
.fusszeile__unten {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 20px 0 28px; font-size: .89rem;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
}

/* ---------- Mobile Sticky-CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--linie);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 22px rgba(16,42,67,.09);
}
.sticky-cta .btn { flex: 1; min-height: 52px; padding: 13px 14px; font-size: .96rem; }
.sticky-cta .btn--sekundaer { flex: 0 0 60px; padding: 13px 0; }
.sticky-cta .btn--sekundaer svg { width: 22px; height: 22px; }

/* ---------- Druckansicht (Checkliste) ---------- */
.druckbogen { max-width: 800px; margin: 0 auto; padding: 48px 24px 90px; }
.druckliste { list-style: none; margin: 0; padding: 0; }
.druckliste li {
  display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start;
  padding: 13px 0; border-bottom: 1px solid var(--linie-zart);
}
.druckliste li::before {
  content: ""; width: 19px; height: 19px; margin-top: 4px;
  border: 2px solid var(--navy); border-radius: 4px;
}

/* =====================================================================
   Reduzierte Bewegung respektieren
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (max-width: 1100px) {
  /* Überschrift und Aufruf zur Anfrage stehen bewusst VOR dem Bild –
     der Leser soll nicht erst an einer Illustration vorbeiscrollen. */
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 52px; }
  .raster--4 { grid-template-columns: repeat(2, 1fr); }
  .fusszeile__raster { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .person { grid-template-columns: 220px 1fr; gap: 32px; }
  .weiter { grid-template-columns: repeat(2, 1fr); }
  .grossaussage { padding: 34px 32px; }
}

/* Die Telefonnummer im Kopf ist ein Vertrauenssignal, braucht aber Platz.
   Sie weicht als Erstes – sie steht ohnehin in der Fußzeile, im mobilen
   Menü, auf der Kontaktseite und in der Leiste am unteren Bildschirmrand. */
@media (max-width: 1300px) {
  .kopfzeile:not(.kopfzeile--schlank) .kopf-telefon { display: none; }
}

/* Sechs Navigationspunkte brauchen Platz für lange deutsche Begriffe.
   Darunter greift das Menü statt einer gequetschten Leiste. */
@media (max-width: 1120px) {
  .navi { display: none; }
  .menue-btn { display: inline-flex; }
}

@media (max-width: 900px) {
  .raster--3 { grid-template-columns: repeat(2, 1fr); }
  .zweispalter,
  .zweispalter--seitlich { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
  /* Platz für die Leiste nur reservieren, wenn es sie auf dieser Seite gibt */
  body:has(.sticky-cta) { padding-bottom: 78px; }
  .downloadbox { grid-template-columns: 54px 1fr; }
  .downloadbox .btn { grid-column: 1 / -1; }
  .optionen--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  /* Auf schmalen Geräten übernimmt die untere Leiste den Aufruf zur Anfrage.
     Im Kopf bleiben Logo und Menü – sonst läuft die Zeile über. */
  .kopfzeile:not(.kopfzeile--schlank) .kopf-kontakt { display: none; }
  .kopfzeile--schlank .kopf-telefon { font-size: .95rem; }
  .logo { flex: 0 1 auto; }
  .kopfzeile__inner { min-height: 70px; gap: 12px; }
  .logo__mark { width: 42px; height: 42px; }
  .logo__name { font-size: .88rem; }
  .logo__claim { font-size: .68rem; }
  .hinweisbalken { font-size: .79rem; padding: 8px 16px; }
  .hinweisbalken__lang { display: none; }
  .hinweisbalken__kurz { display: inline; }
  .abschnitt { padding: 60px 0; }
  .abschnitt--eng { padding: 46px 0; }
  .wrap { padding: 0 18px; }
  .raster--2, .raster--3, .raster--4 { grid-template-columns: 1fr; }
  .hakenliste--zweispaltig { grid-template-columns: 1fr; }
  .feld-paar, .optionen--2, .optionen--3 { grid-template-columns: 1fr; }
  .wahlkarten { grid-template-columns: 1fr; }
  .wahlkarte__inhalt { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 16px; }
  .wahlkarte__symbol { margin-bottom: 0; grid-row: span 2; }
  .person { grid-template-columns: 1fr; padding: 26px; }
  .person__bild { max-width: 240px; }
  .formular__block, .stufe { padding: 22px; }
  .rueckrufbox { padding: 28px 22px; }
  .prozess__schritt { grid-template-columns: 46px 1fr; gap: 16px; }
  .prozess__nr { width: 42px; height: 42px; font-size: 1rem; }
  .fusszeile__raster { grid-template-columns: 1fr; gap: 36px; }
  .btn-reihe .btn { width: 100%; }
  .stufen-navi .btn { width: auto; }
  .kopf { margin-bottom: 34px; }
  .weiter { grid-template-columns: 1fr; }
  .vertrauensleiste ul { gap: 10px 22px; padding: 18px 0; }
  .vertrauensleiste li { font-size: .89rem; }
  .merksatz { padding-left: 18px; }
  .grossaussage { padding: 26px 24px; border-left-width: 6px; }
}

/* Sehr schmale Geräte: die Unterzeile im Logo weicht dem Menü */
@media (max-width: 520px) {
  .logo__claim { display: none; }
  .logo__name { font-size: .84rem; letter-spacing: .02em; }
  .menue-btn { padding: 11px 14px; }
  .kopfzeile__inner { gap: 10px; }
  .kopfzeile--schlank .logo__name { font-size: .78rem; }
  .kopfzeile--schlank .kopf-telefon { font-size: .88rem; gap: .35em; }
  .kopfzeile--schlank .kopf-telefon svg { width: 16px; height: 16px; }
  .kopfzeile--schlank .logo__mark { width: 36px; height: 36px; }
  .kopfzeile--schlank .logo__mark svg { width: 21px; height: 21px; }
}

@media (max-width: 390px) {
  .kopfzeile--schlank .logo__name { font-size: .72rem; }
  .kopfzeile--schlank .kopf-telefon { font-size: .82rem; }
}

/* Ganz schmal: der Menü-Knopf zeigt nur noch das Symbol. Die Beschriftung
   bleibt für Screenreader erhalten, sie wird nur visuell ausgeblendet. */
@media (max-width: 440px) {
  .menue-btn { min-width: 0; padding: 12px 13px; }
  .menue-btn__text {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
  }
}

@media print {
  .kopfzeile, .mobilnavi, .sticky-cta, .fusszeile, .hinweisbalken,
  .brotkrumen, .btn, .schluss-cta, .weiter { display: none !important; }
  body { font-size: 11pt; padding: 0; }
  .druckbogen { padding: 0; max-width: none; }
  a { text-decoration: none; color: #000; }
}
