/*
Theme Name: ENWIMO Treppenlifte
Theme URI: https://www.enwimo.de
Author: ENWIMO Treppenlifte
Description: Individuelles Theme für ENWIMO Treppenlifte – Endlich wieder mobil. Modern, seriös, seniorenfreundlich und vollständig responsiv. Ehrliche Festpreise, Pflegekassen-Zuschuss, Familienbetrieb seit 2012.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: enwimo
*/

/* ==========================================================================
   1. Design-Tokens
   ========================================================================== */
:root {
  /* Farben */
  --c-tinte: #235590;        /* Ingenieur-Navy – Headlines, Header */
  --c-tinte-tief: #193d68;   /* dunkler Verlauf, Footer */
  --c-papier: #ffffff;
  --c-nebel: #eef3f6;        /* Sektionshintergrund, kühl */
  --c-linie: #d5dfe6;
  --c-bernstein: #de8b2d;    /* CTA-Akzent */
  --c-bernstein-dunkel: #b96f16;
  --c-gruen: #2f7d5b;        /* Zuschuss / Erfolg */
  --c-gruen-hell: #e7f2ec;
  --c-text: #24313b;
  --c-text-soft: #52626d;

  /* Typografie */
  --f-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --f-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --fs-base: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem); /* 17–19 px */

  /* Layout */
  --w-max: 1200px;
  --w-text: 46rem;
  --r-card: 14px;
  --r-btn: 10px;
  --shadow-card: 0 6px 24px rgba(25, 61, 104, 0.09);
  --shadow-pop: 0 12px 36px rgba(25, 61, 104, 0.16);
}

@font-face {
  font-family: 'Bitter';
  src: url('assets/fonts/bitter-var.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. Basis
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-papier);
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--c-tinte);
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 800;
}
h1 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem); font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--c-tinte); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-bernstein-dunkel); }
ul, ol { padding-left: 1.3em; }
:focus-visible { outline: 3px solid var(--c-bernstein); outline-offset: 2px; border-radius: 4px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

.wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--nebel { background: var(--c-nebel); }
.section--tinte { background: linear-gradient(160deg, var(--c-tinte) 0%, var(--c-tinte-tief) 100%); color: #e8eef3; }
.section--tinte h2, .section--tinte h3 { color: #fff; }
.section-kopf { max-width: var(--w-text); margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section-kopf .eyebrow { display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-bernstein-dunkel); margin-bottom: 0.6rem; }
.section--tinte .eyebrow { color: var(--c-bernstein); }
.section-kopf p { color: var(--c-text-soft); }
.section--tinte .section-kopf p { color: #c3d2dd; }

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 52px; padding: 0.75rem 1.6rem;
  font-family: var(--f-body); font-size: 1.05rem; font-weight: 700;
  border-radius: var(--r-btn); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primaer { background: var(--c-bernstein); color: #fff; box-shadow: 0 4px 14px rgba(222,139,45,0.35); }
.btn--primaer:hover { background: var(--c-bernstein-dunkel); color: #fff; }
.btn--sekundaer { background: transparent; color: var(--c-tinte); border-color: var(--c-tinte); }
.btn--sekundaer:hover { background: var(--c-tinte); color: #fff; }
.btn--hell { background: #fff; color: var(--c-tinte); }
.btn--hell:hover { background: var(--c-nebel); color: var(--c-tinte); }
.btn--gross { min-height: 58px; font-size: 1.12rem; padding: 0.85rem 2rem; }

/* ==========================================================================
   4. Header
   ========================================================================== */
.topbar { background: var(--c-tinte-tief); color: #cfe0ea; font-size: 0.92rem; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; padding-top: 0.3rem; padding-bottom: 0.3rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--c-bernstein); }
.topbar__zeiten { display: flex; align-items: center; gap: 0.45rem; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-linie);
  transition: box-shadow 0.2s ease;
}
.site-header.ist-fixiert { box-shadow: 0 4px 20px rgba(25,61,104,0.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }

.site-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex: 0 0 auto; }
.site-logo__bild, .site-logo img { height: 58px; width: auto; display: block; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1; }
.site-logo__name { font-family: var(--f-display); font-weight: 800; font-size: 1.45rem; color: var(--c-tinte); letter-spacing: 0.05em; }
.site-logo__claim { font-family: var(--f-display); font-size: 0.86rem; font-weight: 700; font-style: italic; letter-spacing: 0.14em; color: var(--c-bernstein-dunkel); margin-top: 2px; }

.hauptnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.2rem; }
.hauptnav > ul > li { position: relative; }
.hauptnav a {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 0.65rem; font-weight: 600; font-size: 0.97rem;
  white-space: nowrap;
  color: var(--c-tinte); text-decoration: none; border-radius: 8px;
}
.hauptnav a:hover { background: var(--c-nebel); color: var(--c-tinte); }
.hauptnav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--c-linie); border-radius: 12px;
  box-shadow: var(--shadow-pop); padding: 0.4rem; display: none; flex-direction: column;
}
.hauptnav li:hover > .sub-menu, .hauptnav li:focus-within > .sub-menu { display: flex; }
.hauptnav .sub-menu a { padding: 0.6rem 0.9rem; width: 100%; }
.header-cta { display: flex; align-items: center; gap: 0.7rem; }
.header-cta .header-telefon { display: flex; flex-direction: column; text-align: right; text-decoration: none; line-height: 1.15; }
.header-telefon__label { font-size: 0.72rem; color: var(--c-text-soft); font-weight: 600; }
.header-telefon__nummer { font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; color: var(--c-tinte); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 52px; height: 52px; padding: 12px;
  background: none; border: 2px solid var(--c-linie); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; background: var(--c-tinte); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   5. Hero mit Stufen-Signatur
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--c-tinte) 0%, #2c5f9f 55%, var(--c-tinte-tief) 100%);
  color: #e9eff4;
  padding: clamp(3.2rem, 8vw, 6rem) 0 clamp(4.5rem, 9vw, 7rem);
}
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { color: #fff; margin-bottom: 0.5em; }
.hero h1 .akzent { color: var(--c-bernstein); }
.hero__lead { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: #c9d8e2; max-width: 34em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.6rem 0 1.2rem; }
.hero__fakten { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; padding: 0; margin: 0; list-style: none; font-size: 0.98rem; color: #c9d8e2; }
.hero__fakten li { display: flex; align-items: center; gap: 0.45rem; }
.hero__fakten svg { flex: 0 0 auto; }

/* Stufen-Grafik: die Signatur des Themes */
.stufen-grafik { position: relative; }
.stufen-grafik svg { width: 100%; height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35)); }
.hero__preisbadge {
  position: absolute; right: 4%; top: 0;
  background: #fff; color: var(--c-tinte);
  border-radius: 16px; padding: 0.9rem 1.2rem; text-align: center;
  box-shadow: var(--shadow-pop); transform: rotate(2deg);
}
.hero__preisbadge .ab { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-soft); }
.hero__preisbadge .preis { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.9rem; line-height: 1.1; }
.hero__preisbadge .zusatz { display: block; font-size: 0.8rem; color: var(--c-gruen); font-weight: 700; }
.hero__stufenrand {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  line-height: 0;
}
.hero__stufenrand svg { width: 100%; height: clamp(28px, 5vw, 56px); display: block; }

/* ==========================================================================
   6. Karten & Raster
   ========================================================================== */
.raster { display: grid; gap: clamp(1.1rem, 2.5vw, 1.8rem); }
.raster--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.raster--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.raster--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.karte {
  background: #fff; border: 1px solid var(--c-linie); border-radius: var(--r-card);
  padding: clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.karte__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--c-nebel); color: var(--c-tinte);
}
.karte h3 { margin-bottom: 0.4em; }
.karte p { color: var(--c-text-soft); font-size: 0.99rem; }
.karte .karte__fuss { margin-top: auto; padding-top: 0.8rem; }
.karte--link { text-decoration: none; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.karte--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.karte__pfeil { color: var(--c-bernstein-dunkel); font-weight: 700; }

/* ==========================================================================
   7. Preiskarten – große Slab-Ziffern
   ========================================================================== */
.preiskarte { position: relative; overflow: hidden; }
.preiskarte--top { border: 2px solid var(--c-bernstein); }
.preiskarte__band {
  position: absolute; top: 14px; right: -34px; transform: rotate(35deg);
  background: var(--c-bernstein); color: #fff; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 2.6rem;
}
.preiskarte__typ { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-soft); }
.preiskarte__preis { font-family: var(--f-display); font-weight: 800; color: var(--c-tinte); font-size: clamp(2.1rem, 1.6rem + 2vw, 2.9rem); line-height: 1.05; margin: 0.35rem 0 0.1rem; }
.preiskarte__preis .euro { font-size: 0.55em; vertical-align: 0.45em; }
.preiskarte__einheit { color: var(--c-text-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.preiskarte ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.preiskarte ul li { display: flex; gap: 0.55rem; align-items: flex-start; padding: 0.32rem 0; font-size: 0.98rem; }
.preiskarte ul li svg { flex: 0 0 auto; margin-top: 0.28em; color: var(--c-gruen); }
.preiskarte .hinweis { font-size: 0.85rem; color: var(--c-text-soft); }

/* Zuschuss-Rechnung */
.zuschuss-rechnung {
  background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-card);
  max-width: 30rem; margin: 0 auto; padding: clamp(1.4rem, 3vw, 2rem); color: var(--c-text);
}
.zuschuss-rechnung table { width: 100%; border-collapse: collapse; font-size: 1.02rem; }
.zuschuss-rechnung td { padding: 0.55rem 0; }
.zuschuss-rechnung td:last-child { text-align: right; font-weight: 700; font-family: var(--f-display); white-space: nowrap; }
.zuschuss-rechnung tr.abzug td { color: var(--c-gruen); }
.zuschuss-rechnung tr.summe td { border-top: 2px solid var(--c-tinte); font-size: 1.2rem; padding-top: 0.8rem; }
.zuschuss-rechnung .quelle { font-size: 0.82rem; color: var(--c-text-soft); margin: 0.9rem 0 0; }

/* ==========================================================================
   8. Ablauf (7 Schritte)
   ========================================================================== */
.ablauf { list-style: none; counter-reset: schritt; padding: 0; margin: 0; display: grid; gap: 0; max-width: 46rem; margin-inline: auto; }
.ablauf li { counter-increment: schritt; position: relative; padding: 0 0 1.8rem 4.2rem; }
.ablauf li::before {
  content: counter(schritt);
  position: absolute; left: 0; top: 0;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--c-tinte); color: #fff;
  font-family: var(--f-display); font-weight: 800; font-size: 1.35rem;
  display: grid; place-items: center;
}
.ablauf li::after {
  content: ''; position: absolute; left: 25px; top: 56px; bottom: 6px;
  width: 2px; background: var(--c-linie);
}
.ablauf li:last-child { padding-bottom: 0; }
.ablauf li:last-child::after { display: none; }
.ablauf h3 { margin-bottom: 0.25em; }
.ablauf p { color: var(--c-text-soft); margin-bottom: 0; }

/* ==========================================================================
   9. Preisrechner
   ========================================================================== */
.rechner {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-pop);
  max-width: 52rem; margin: 0 auto; padding: clamp(1.4rem, 4vw, 2.6rem);
  color: var(--c-text);
}
.rechner__frage { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--c-tinte); margin-bottom: 1rem; }
.rechner__optionen { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8rem; }
.rechner__option {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem 0.8rem; min-height: 56px;
  border: 2px solid var(--c-linie); border-radius: 12px; background: #fff;
  font-size: 1rem; font-weight: 600; color: var(--c-tinte); cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.rechner__option:hover { border-color: var(--c-bernstein); }
.rechner__option[aria-pressed="true"] { border-color: var(--c-bernstein); background: #fdf3e6; }
.rechner__fortschritt { height: 6px; background: var(--c-nebel); border-radius: 3px; margin-bottom: 1.6rem; overflow: hidden; }
.rechner__fortschritt > div { height: 100%; width: 0; background: var(--c-bernstein); border-radius: 3px; transition: width 0.3s ease; }
.rechner__ergebnis { text-align: center; }
.rechner__ergebnis .preis { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem, 2rem + 2vw, 3.2rem); color: var(--c-tinte); }
.rechner__ergebnis .zuschusszeile { color: var(--c-gruen); font-weight: 700; }
.rechner__zurueck { background: none; border: none; color: var(--c-text-soft); font-size: 0.95rem; cursor: pointer; padding: 0.5rem; text-decoration: underline; }

/* ==========================================================================
   10. Formulare
   ========================================================================== */
.formular { display: grid; gap: 1rem; }
.formular__zeile { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.formular label { font-weight: 700; font-size: 0.95rem; color: var(--c-tinte); display: block; margin-bottom: 0.3rem; }
.formular input[type="text"], .formular input[type="tel"], .formular input[type="email"],
.formular select, .formular textarea {
  width: 100%; min-height: 54px; padding: 0.7rem 0.9rem;
  font: inherit; color: var(--c-text);
  border: 2px solid var(--c-linie); border-radius: 10px; background: #fff;
}
.formular textarea { min-height: 120px; resize: vertical; }
.formular input:focus, .formular select:focus, .formular textarea:focus { border-color: var(--c-bernstein); outline: none; }
.formular .pflicht { color: var(--c-bernstein-dunkel); }
.formular__datenschutz { font-size: 0.88rem; color: var(--c-text-soft); display: flex; gap: 0.6rem; align-items: flex-start; }
.formular__datenschutz input { width: 22px; height: 22px; margin-top: 0.2em; flex: 0 0 auto; }
.formular__erfolg {
  background: var(--c-gruen-hell); border: 2px solid var(--c-gruen); color: #1d5940;
  border-radius: 12px; padding: 1rem 1.2rem; font-weight: 600;
}
.hp-feld { position: absolute !important; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   11. FAQ-Akkordeon
   ========================================================================== */
.faq { max-width: var(--w-text); margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--c-linie); border-radius: 12px;
  margin-bottom: 0.8rem; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 1.25rem; font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--c-tinte);
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--c-bernstein-dunkel); flex: 0 0 auto; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.25rem 1.2rem; color: var(--c-text-soft); }

/* ==========================================================================
   12. Über-uns-Band, Vergleich, Marken
   ========================================================================== */
.ueber-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.ueber-band__karte { background: var(--c-nebel); border-radius: 18px; padding: clamp(1.5rem, 4vw, 2.4rem); }
.ueber-band__karte .zitat { font-family: var(--f-display); font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem); font-weight: 500; color: var(--c-tinte); line-height: 1.45; }
.ueber-band__karte .zitat-name { font-weight: 700; color: var(--c-tinte); margin-top: 1rem; margin-bottom: 0; }
.ueber-band__karte .zitat-rolle { color: var(--c-text-soft); font-size: 0.92rem; }

.vergleich { max-width: 56rem; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vergleich table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); min-width: 560px; }
.vergleich th, .vergleich td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--c-linie); font-size: 0.99rem; }
.vergleich thead th { background: var(--c-tinte); color: #fff; font-family: var(--f-display); }
.vergleich thead th:last-child { background: var(--c-bernstein); }
.vergleich tbody tr:last-child td { border-bottom: none; }
.vergleich .ja { color: var(--c-gruen); font-weight: 700; }
.vergleich .nein { color: #b3423a; font-weight: 700; }

.checkliste { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.checkliste li { display: flex; gap: 0.6rem; align-items: flex-start; }
.checkliste svg { flex: 0 0 auto; margin-top: 0.3em; color: var(--c-gruen); }
.section--tinte .checkliste svg { color: var(--c-bernstein); }

.marken-zeile { text-align: center; margin: 2rem auto 0; max-width: 40rem; color: var(--c-text-soft); line-height: 1.9; }
.marken-zeile strong { font-family: var(--f-display); color: var(--c-tinte); font-size: 1.12rem; letter-spacing: 0.03em; }

/* ==========================================================================
   13. CTA-Band & Footer
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 0.6rem; }
.cta-band__telefon { font-family: var(--f-display); font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); font-weight: 800; color: #fff; text-decoration: none; display: inline-block; margin: 0.4rem 0; }
.cta-band__telefon:hover { color: var(--c-bernstein); }

.site-footer { background: var(--c-tinte-tief); color: #a7bac7; padding: clamp(1.8rem, 4vw, 2.6rem) 0 1rem; font-size: 0.92rem; line-height: 1.55; }
.site-footer a { color: #dbe6ee; text-decoration: none; }
.site-footer a:hover { color: var(--c-bernstein); }
.footer-raster { display: grid; grid-template-columns: 1.4fr 1.1fr 1fr 1fr; gap: 1.5rem 2rem; margin-bottom: 1.4rem; }
.footer-raster h3 { color: #fff; font-family: var(--f-body); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.55rem; }
.footer-raster ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.28rem; }
.footer-marke p { font-size: 0.88rem; margin: 0.7rem 0 0; max-width: 30em; }
.footer-logo-chip { display: inline-block; background: #fff; border-radius: 10px; padding: 0.5rem 0.75rem; line-height: 0; }
.footer-logo-chip img { height: 46px; width: auto; }
.footer-unten { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 0.9rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.8rem; }

/* Mobile Anruf-Leiste */
.mobil-leiste {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: #fff; border-top: 1px solid var(--c-linie);
  box-shadow: 0 -6px 20px rgba(25,61,104,0.12);
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.mobil-leiste .btn { flex: 1; min-height: 50px; font-size: 1rem; padding: 0.5rem 0.6rem; }

/* ==========================================================================
   14. Inhaltsseiten & Blog
   ========================================================================== */
.seiten-kopf { background: linear-gradient(155deg, var(--c-tinte) 0%, var(--c-tinte-tief) 100%); color: #e9eff4; padding: clamp(2.6rem, 6vw, 4.2rem) 0; position: relative; }
.seiten-kopf h1 { color: #fff; margin-bottom: 0.3em; }
.seiten-kopf p { color: #c3d2dd; max-width: 40em; margin-bottom: 0; font-size: 1.08rem; }
.seiten-kopf .brotkrumen { font-size: 0.88rem; color: #9fb4c2; margin-bottom: 1rem; }
.seiten-kopf .brotkrumen a { color: #cfe0ea; }

.inhalt { max-width: var(--w-text); margin: 0 auto; }
.inhalt h2 { margin-top: 1.8em; }
.inhalt img { border-radius: var(--r-card); }

.beitrag-raster { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; }
.beitrag-karte { text-decoration: none; }
.beitrag-karte time { font-size: 0.85rem; color: var(--c-text-soft); }

/* ==========================================================================
   15. Responsiv – Tablet & Smartphone
   ========================================================================== */
@media (max-width: 1080px) {
  .raster--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-raster { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1199px) {
  /* Burger-Menü früh aktivieren: verhindert Zeilenumbrüche in der Navigation */
  .nav-toggle { display: flex; }
  .hauptnav {
    position: fixed; inset: 0; top: var(--header-hoehe, 117px); z-index: 890;
    background: #fff; overflow-y: auto; padding: 1rem clamp(1rem, 4vw, 2rem) 6rem;
    display: none;
  }
  .hauptnav.ist-offen { display: block; }
  .hauptnav ul { flex-direction: column; gap: 0; }
  .hauptnav a { padding: 1rem 0.6rem; font-size: 1.15rem; white-space: normal; border-bottom: 1px solid var(--c-nebel); border-radius: 0; min-height: 54px; }
  .hauptnav .sub-menu { position: static; display: flex; border: none; box-shadow: none; padding: 0 0 0 1.2rem; }
  .hauptnav .sub-menu a { font-size: 1.02rem; color: var(--c-text-soft); }
}

@media (max-width: 860px) {
  .header-cta .header-telefon { display: none; }
}

@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .stufen-grafik { max-width: 420px; margin: 0 auto; }
  .raster--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ueber-band { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-logo__bild, .site-logo img { height: 46px; }
  .raster--3, .raster--2, .raster--4 { grid-template-columns: 1fr; }
  .formular__zeile { grid-template-columns: 1fr; }
  .beitrag-raster { grid-template-columns: 1fr; }
  .topbar__zeiten { display: none; }
  .hero__ctas .btn { width: 100%; }
  .mobil-leiste { display: flex; }
  body { padding-bottom: 72px; }
  .footer-raster { grid-template-columns: 1fr; }
  .hero__preisbadge { position: static; transform: none; display: inline-block; margin-top: 1rem; }
  .ablauf li { padding-left: 3.4rem; }
  .ablauf li::before { width: 44px; height: 44px; font-size: 1.15rem; }
  .ablauf li::after { left: 21px; top: 48px; }
}

@media (max-width: 400px) {
  .site-logo__bild, .site-logo img { height: 40px; }
  .site-logo__claim { display: none; }
  .btn { width: 100%; }
  .header-cta .btn { width: auto; min-height: 46px; font-size: 0.92rem; padding: 0.5rem 0.9rem; }
}

/* Druck */
@media print {
  .topbar, .site-header, .mobil-leiste, .site-footer, .hero__ctas { display: none !important; }
}
