/* ==========================================================================
   MK Entrümpelung – Stylesheet
   Aufbau: 1. Tokens · 2. Reset · 3. Typografie · 4. Layout · 5. Komponenten
           6. Header · 7. Hero · 8. Sektionen · 9. Formular · 10. Footer
           11. Mobile Action Bar · 12. Animationen · 13. Utilities
   ========================================================================== */

/* 0. Schriften (lokal gehostet – keine Verbindung zu Google) ------------ */
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Serif 4"; font-style: normal; font-weight: 500 700; font-display: swap;
  src: url("../fonts/sourceserif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4"; font-style: normal; font-weight: 500 700; font-display: swap;
  src: url("../fonts/sourceserif-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Serif Fallback"; src: local("Georgia"), local("Times New Roman");
  size-adjust: 104%; ascent-override: 92%; descent-override: 26%;
}
/* Metrisch angepasster Fallback gegen Layout-Verschiebungen (CLS) */
@font-face {
  font-family: "Inter Fallback"; src: local("Arial"), local("Helvetica");
  size-adjust: 107.4%; ascent-override: 90.2%; descent-override: 22.5%; line-gap-override: 0%;
}

/* 1. Design Tokens ------------------------------------------------------- */
:root {
  --navy: #0B2A55;
  --blue: #0B3A8F;
  --deep: #061B3A;
  --gold: #FFC93D;
  --gold-d: #F0B429;
  --paper: #F7F5F1;
  --paper-2: #EFEBE3;
  --white: #FFFFFF;
  --wa: #25D366;
  --ink: #05142B;

  --muted: #4A5872;          /* 7.0:1 auf Paper */
  --muted-2: #56627A;
  --line: rgba(11, 42, 85, .10);
  --line-strong: rgba(11, 42, 85, .18);
  --on-dark: #FFFFFF;
  --on-dark-muted: rgba(255, 255, 255, .74);
  --on-dark-line: rgba(255, 255, 255, .14);

  --font-head: "Source Serif 4", "Serif Fallback", Georgia, "Times New Roman", serif;
  --font: "Inter", "Inter Fallback", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(5, 20, 43, .06), 0 2px 8px rgba(5, 20, 43, .04);
  --shadow: 0 2px 4px rgba(5, 20, 43, .04), 0 12px 32px -8px rgba(5, 20, 43, .12);
  --shadow-lg: 0 4px 8px rgba(5, 20, 43, .04), 0 30px 60px -20px rgba(5, 20, 43, .28);

  --gutter: clamp(16px, 5vw, 40px);
  --container: 1240px;
  --section-y: clamp(72px, 9vw, 136px);
  --header-h: 73px;
  --bar-h: 0px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (min-width: 900px) { :root { --header-h: 122px; } }

/* 2. Reset ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (min-width: 2200px) { html { font-size: 118%; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
:where(ul[role="list"], ol[role="list"]) { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
summary { cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--gold); color: var(--ink); }

/* 3. Typografie ------------------------------------------------------------ */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.02em; line-height: 1.12; overflow-wrap: break-word; }
h1, h2, .statement, .price-card__title, .privacy-quote p { font-family: var(--font-head); }
.h1 {
  font-size: clamp(2.125rem, 1.2rem + 3.9vw, 4.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.025em;
}
.h2 {
  font-size: clamp(1.875rem, 1.25rem + 2.7vw, 3.5rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.h3 { font-size: clamp(1.125rem, 1rem + .4vw, 1.3125rem); letter-spacing: -.015em; line-height: 1.3; }
.lead { font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem); line-height: 1.6; color: var(--muted); }
.text-muted { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8125rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--gold-d);
}
.on-dark .eyebrow { color: var(--gold); }
.on-dark .eyebrow::before { background: var(--gold); }
.gold-mark { position: relative; white-space: nowrap; isolation: isolate; }
.gold-mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--gold); border-radius: 4px; z-index: -1; opacity: .9;
}
@media (max-width: 420px) { p, li, dd { hyphens: auto; -webkit-hyphens: auto; } }

/* 4. Layout ---------------------------------------------------------------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2 * var(--gutter), 860px); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--on-dark); }
.section--deep { background: var(--deep); color: var(--on-dark); }
.on-dark .lead, .on-dark .text-muted { color: var(--on-dark-muted); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .lead { margin-top: 1.25rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.split { display: grid; gap: clamp(32px, 5vw, 80px); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .9fr 1.1fr; }
}

/* 5. Komponenten ----------------------------------------------------------- */
/* Icons */
.icon {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 28px; height: 28px; }
.icon-fill { fill: currentColor; stroke: none; }

.icon-tile {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(145deg, rgba(11, 58, 143, .08), rgba(11, 42, 85, .04));
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(11, 58, 143, .08);
}
.on-dark .icon-tile, .icon-tile--dark {
  background: rgba(255, 201, 61, .1); color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 201, 61, .22);
}

/* Buttons */
.btn {
  --btn-bg: var(--navy); --btn-fg: var(--white);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .75rem 1.5rem;
  border-radius: 999px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: 1rem; font-weight: 650; line-height: 1.2; letter-spacing: -.005em; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
}
.btn .icon { transition: transform .25s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--lg { min-height: 60px; padding: 1rem 1.875rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn--gold {
  --btn-bg: var(--gold); --btn-fg: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 12px 28px -12px rgba(240, 180, 41, .75);
}
.btn--gold:hover { --btn-bg: var(--gold-d); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 18px 36px -14px rgba(240, 180, 41, .85); }
.btn--navy { box-shadow: 0 12px 28px -14px rgba(11, 42, 85, .7); }
.btn--navy:hover { --btn-bg: var(--blue); transform: translateY(-2px); }
.btn--wa { --btn-bg: var(--wa); --btn-fg: var(--ink); box-shadow: 0 12px 28px -14px rgba(37, 211, 102, .7); }
.btn--wa:hover { --btn-bg: #3ee07a; transform: translateY(-2px); }
.btn--glass {
  --btn-bg: rgba(255, 255, 255, .08); --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, .24);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn--glass:hover { --btn-bg: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .4); transform: translateY(-2px); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.wa-dot {
  display: inline-grid; place-items: center; width: 28px; height: 28px; margin-left: -.35rem;
  border-radius: 50%; background: var(--wa); color: var(--white);
}
.wa-dot .icon { width: 16px; height: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }
@media (max-width: 519px) { .btn-row > .btn { width: 100%; } }
@media (max-width: 479px) { .btn--lg { padding-inline: 1.25rem; font-size: 1rem; } }

/* Check-Listen */
.checks { display: grid; gap: .75rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; }
.check {
  display: inline-grid; place-items: center; flex: none;
  width: 24px; height: 24px; margin-top: .05em; border-radius: 50%;
  background: rgba(255, 201, 61, .18); color: #9A6A00;
}
.check .icon { width: 14px; height: 14px; stroke-width: 2.6; }
.on-dark .check { background: rgba(255, 201, 61, .16); color: var(--gold); }

/* Cards */
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.card--hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card h3 { margin-block: 1.25rem .5rem; }
.card p { color: var(--muted); font-size: .98rem; }

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .85rem; border-radius: 999px;
  font-size: .875rem; font-weight: 600; letter-spacing: .01em;
  background: rgba(255, 255, 255, .1); color: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 201, 61, .6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 201, 61, .55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 201, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 201, 61, 0); }
}

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: .9375rem; font-weight: 550; color: var(--navy);
}
.chip .icon { width: 18px; height: 18px; color: var(--blue); }

/* Media (Bilder mit festem Seitenverhältnis gegen CLS) */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--paper-2); aspect-ratio: 4 / 3;
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__tag {
  position: absolute; left: 14px; bottom: 14px;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(6, 27, 58, .72); color: var(--white);
  font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

/* Skip-Link */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: .75rem 1.25rem; border-radius: 999px;
  background: var(--gold); color: var(--ink); font-weight: 700;
  transform: translateY(-160%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: none; }

/* 6. Header (sticky, ruhig, institutionell) ------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 10px 30px -22px rgba(5, 20, 43, .45); }
.topbar { display: none; background: var(--deep); color: rgba(255, 255, 255, .82); font-size: .8125rem; }
@media (min-width: 900px) { .topbar { display: block; } }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar__claim, .topbar a { display: inline-flex; align-items: center; gap: .5rem; }
.topbar .icon { color: var(--gold); width: 15px; height: 15px; }
.topbar__links { display: flex; gap: 1.75rem; }
.topbar a:hover { color: var(--white); }
.topbar strong { color: var(--white); font-weight: 650; }
.header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 72px; }
@media (min-width: 900px) { .header__inner { min-height: 84px; } }

.logo { display: inline-flex; align-items: center; gap: .9rem; flex: none; }
.logo__img { height: 44px; width: auto; }
@media (min-width: 900px) { .logo__img { height: 50px; } }
.logo__sub {
  display: none; padding-left: .9rem; border-left: 1px solid var(--line-strong);
  font-size: .75rem; line-height: 1.35; font-weight: 600; color: var(--muted); letter-spacing: .01em;
}
@media (min-width: 1520px) { .logo__sub { display: block; } }

.nav { display: none; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(.9rem, 1.4vw, 1.6rem); }
.nav__link { position: relative; font-size: .9375rem; font-weight: 600; color: var(--navy); padding-block: .5rem; white-space: nowrap; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: var(--gold-d); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.header__cta { display: none; }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; }
.header__quick { min-height: 44px; padding: .5rem 1rem; font-size: .9375rem; }
.menu-toggle { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--navy); }
.menu-toggle:hover { background: var(--paper); }
.menu-toggle .icon { width: 26px; height: 26px; }
@media (max-width: 374px) {
  .logo__img { height: 38px; }
  .header__quick { min-height: 42px; padding-inline: .75rem; font-size: .84rem; }
  .menu-toggle { width: 44px; height: 44px; }
}
@media (min-width: 1200px) {
  .nav { display: block; }
  .header__actions { margin-left: 0; }
  .header__quick, .menu-toggle { display: none; }
  .header__cta { display: inline-flex; min-height: 46px; padding: .6rem 1.25rem; font-size: .9375rem; white-space: nowrap; }
}

/* Mobiles Menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--deep); color: var(--white);
  display: flex; flex-direction: column;
  padding: 88px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .35s var(--ease-out), visibility 0s linear .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .35s var(--ease-out); }
.mobile-menu__close { position: absolute; top: 12px; right: var(--gutter); display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--white); }
.mobile-menu__close:hover { background: rgba(255, 255, 255, .08); }
.mobile-menu__logo { position: absolute; top: 16px; left: var(--gutter); }
.mobile-menu__logo .logo__img { height: 40px; }
.mobile-menu__list { display: grid; margin-top: 1rem; }
.mobile-menu__list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid var(--on-dark-line);
  font-family: var(--font-head); font-size: clamp(1.25rem, 1rem + 1.4vw, 1.625rem); font-weight: 600;
}
.mobile-menu__list a .icon { opacity: .4; }
.mobile-menu__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: .75rem; }
.mobile-menu__note { font-size: .875rem; color: var(--on-dark-muted); text-align: center; margin-top: .25rem; }
body.menu-open { overflow: hidden; }

/* 6b. Aktion / Rabatt ---------------------------------------------------- */
.promo {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 180% at 20% 0%, #FFE08A 0%, rgba(255, 224, 138, 0) 55%), linear-gradient(100deg, var(--gold) 0%, var(--gold-d) 100%);
  color: var(--ink);
  border-bottom: 1px solid rgba(5, 20, 43, .08);
}
.promo::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .45) 50%, transparent 62%);
  transform: translateX(-120%); animation: promoShine 7s ease-in-out infinite;
}
@keyframes promoShine { 0%, 70% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.promo__inner {
  display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 1rem 1.25rem;
  padding-block: clamp(14px, 2.2vw, 22px);
}
.promo__badges { display: grid; gap: .45rem; }
.promo__badge {
  display: block; padding: .38rem .8rem; border-radius: 9px; text-align: center;
  font-size: clamp(.72rem, .66rem + .3vw, .9rem); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 3px 0 rgba(5, 20, 43, .22), 0 8px 16px -8px rgba(5, 20, 43, .35);
}
.promo__badge--navy { background: var(--navy); color: var(--white); }
.promo__badge--white { background: var(--white); color: var(--navy); }
.promo__offer { display: flex; flex-direction: column; line-height: .86; color: var(--navy); }
.promo__pct { font-size: clamp(2.75rem, 1.9rem + 4vw, 5rem); font-weight: 900; letter-spacing: -.05em; }
.promo__rabatt { font-size: clamp(1.15rem, .95rem + 1vw, 1.9rem); font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.promo__points { display: grid; gap: .45rem; padding-left: 1.1rem; border-left: 2px solid rgba(11, 42, 85, .25); }
.promo__points li { display: flex; align-items: center; gap: .55rem; font-size: clamp(.95rem, .88rem + .35vw, 1.15rem); font-weight: 600; line-height: 1.25; }
.promo__points .icon { color: var(--navy); width: 20px; height: 20px; flex: none; }
.promo__cta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.25rem; }
.promo__note { display: flex; align-items: flex-start; gap: .45rem; font-size: .875rem; font-weight: 550; color: #3A3000; line-height: 1.4; max-width: 46ch; }
.promo__note .icon { margin-top: 2px; flex: none; }
@media (min-width: 900px) {
  .promo__inner { grid-template-columns: auto auto auto 1fr; gap: 1rem 2rem; }
  .promo__cta { grid-column: auto; justify-content: flex-end; }
  .promo__cta .btn { order: 2; }
  .promo__note { order: 1; text-align: right; }
}
@media (max-width: 519px) {
  .promo__inner { grid-template-columns: auto 1fr; }
  .promo__badges { display: none; }
  .promo__cta .btn { width: 100%; }
}

/* 7. Hero (hell, mit Anfrageformular) ------------------------------------ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-block: clamp(40px, 6vw, 88px) clamp(48px, 6vw, 96px);
  background: var(--paper);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(247, 245, 241, .98) 0%, rgba(247, 245, 241, .95) 45%, rgba(247, 245, 241, .82) 70%, rgba(247, 245, 241, .7) 100%);
}
@media (max-width: 1099px) { .hero::before { background: rgba(247, 245, 241, .95); } }
.hero__grid { display: grid; gap: clamp(32px, 4vw, 56px); align-items: center; }
@media (min-width: 1100px) { .hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); } }
.hero .pill { background: var(--white); color: var(--navy); border-color: var(--line-strong); -webkit-backdrop-filter: none; backdrop-filter: none; }
.hero .pill__dot { background: var(--gold-d); }
.hero__title { margin-top: 1.25rem; color: var(--navy); }
.hero__accent { display: block; color: var(--blue); }
.hero__accent::after { content: ""; display: block; width: 88px; height: 5px; margin-top: .9rem; border-radius: 4px; background: var(--gold); }
.hero__title .nowrap { white-space: nowrap; }
@media (max-width: 359px) { .hero__title .nowrap { white-space: normal; } }
.hero__tagline { margin-top: 1.25rem; font-size: clamp(1.125rem, 1rem + .55vw, 1.375rem); font-weight: 650; letter-spacing: -.015em; line-height: 1.4; max-width: 36ch; color: var(--ink); }
.hero__sub { margin-top: .9rem; color: var(--muted); max-width: 58ch; font-size: clamp(1rem, .96rem + .2vw, 1.0938rem); }
.hero__trust { margin-top: 1.5rem; display: grid; gap: .65rem 1.5rem; }
@media (min-width: 560px) { .hero__trust { grid-template-columns: repeat(2, max-content); } }
.hero__trust li { font-weight: 600; font-size: .98rem; color: var(--navy); }
.hero__ctas { margin-top: 1.75rem; }
.rating {
  margin-top: 1.5rem; display: inline-flex; align-items: center; gap: .85rem;
  padding: .45rem 1rem .45rem .45rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: .9375rem;
}
.rating__g { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--paper); }
.rating__g svg { width: 18px; height: 18px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-d); }
.stars svg { width: 16px; height: 16px; }
.rating strong { font-weight: 700; }

/* Formular-Karte im Hero */
.form-card__head { margin-bottom: 1.25rem; }
.form-card__title { font-family: var(--font-head); font-size: clamp(1.4rem, 1.2rem + .7vw, 1.75rem); font-weight: 650; line-height: 1.2; color: var(--navy); }
.form-card__sub { margin-top: .35rem; color: var(--muted); font-size: .95rem; }
.form-card__promo {
  margin-top: .85rem; display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .8rem; border-radius: 999px; background: rgba(255, 201, 61, .25); color: #5A4200;
  font-size: .8125rem; font-weight: 700;
}
.hero .form-card { border-top: 5px solid var(--navy); }

/* Kennzahlen-Leiste */
.facts { background: var(--navy); color: var(--white); }
.facts__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.facts__list li { display: grid; gap: .15rem; padding: 1.25rem 1rem; border-right: 1px solid var(--on-dark-line); border-bottom: 1px solid var(--on-dark-line); }
.facts__list strong { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head); font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); font-weight: 650; color: var(--white); }
.facts__list span { font-size: .8125rem; color: var(--on-dark-muted); line-height: 1.35; }
.facts__star { width: 20px; height: 20px; color: var(--gold); }
@media (min-width: 900px) {
  .facts__list { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .facts__list li { border-bottom: 0; padding: 1.5rem 1.25rem; }
  .facts__list li:last-child { border-right: 0; }
}
@media (max-width: 899px) { .facts__list li:nth-child(2n) { border-right: 0; } .facts__list li:last-child { grid-column: 1 / -1; border-bottom: 0; } }

/* Zielgruppen */
.audience h3 { margin-top: 1.1rem; }

/* Einblicke: Videos & Galerie */
.videos { display: grid; gap: clamp(16px, 2vw, 24px); align-items: start; }
@media (min-width: 760px) { .videos { grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr); } }
.video { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--deep); box-shadow: var(--shadow); }
.video--wide { aspect-ratio: 16 / 9; }
.video--short { aspect-ratio: 9 / 16; }
@media (max-width: 759px) { .video--short { max-width: 340px; width: 100%; margin-inline: auto; } }
.video__facade { position: absolute; inset: 0; width: 100%; height: 100%; display: grid; place-items: center; color: var(--white); }
.video__facade > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.video__facade::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 27, 58, .25), rgba(6, 27, 58, .72)); }
.video__facade:hover > img { transform: scale(1.03); }
.video__logo { position: absolute; top: 18px; left: 18px; z-index: 1; }
.video__logo img { height: 40px; width: auto; }
.video__play {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 84px; height: 84px; border-radius: 50%; background: var(--gold); color: var(--ink);
  box-shadow: 0 0 0 10px rgba(255, 201, 61, .25), 0 18px 40px -12px rgba(0, 0, 0, .6);
  transition: transform .25s var(--ease);
}
.video__play .icon { width: 34px; height: 34px; margin-left: 4px; }
.video__facade:hover .video__play { transform: scale(1.07); }
.video--short .video__play { width: 68px; height: 68px; }
.video__label {
  position: absolute; z-index: 1; left: 18px; bottom: 16px; padding: .35rem .8rem; border-radius: 999px;
  background: rgba(6, 27, 58, .7); font-size: .8125rem; font-weight: 650;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-note { margin-top: 1rem; display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--muted-2); }
.gallery__title { margin-top: clamp(40px, 5vw, 64px); font-family: var(--font-head); font-size: clamp(1.25rem, 1.1rem + .6vw, 1.625rem); font-weight: 650; color: var(--navy); }
.gallery { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 16px); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.gallery__item { position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__zoom {
  position: absolute; right: 10px; bottom: 10px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .9); color: var(--navy); opacity: 0; transition: opacity .25s var(--ease);
}
.gallery__item:hover .gallery__zoom, .gallery__item:focus-visible .gallery__zoom { opacity: 1; }
.lightbox { width: 100%; height: 100%; max-width: 100%; max-height: 100%; margin: 0; padding: 0; border: 0; background: rgba(6, 27, 58, .94); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(6, 27, 58, .6); }
.lightbox img { max-width: min(92vw, 900px); max-height: 86vh; width: auto; height: auto; border-radius: var(--radius); }
.lightbox__btn { position: fixed; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--white); }
.lightbox__btn:hover { background: rgba(255, 255, 255, .24); }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Deutschlandkarte */
.map-card { aspect-ratio: 500 / 664; max-width: 520px; margin-inline: auto; width: 100%; }
.map__land { fill: #E8EEF8; stroke: var(--blue); stroke-width: 1.5; stroke-linejoin: round; }
.map__dot { fill: var(--navy); stroke: var(--white); stroke-width: 2; }
.map__label { font-size: 14px; }
@media (max-width: 600px) { .map__label { font-size: 17px; } }
.review__g { width: 20px; height: 20px; }

/* 8. Sektionen ------------------------------------------------------------- */

/* 8.1 Emotion / Diskretion */
.emotion { text-align: center; }
.emotion .eyebrow { justify-content: center; }
.emotion__title { max-width: 18ch; margin-inline: auto; }
.emotion__answer {
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0; max-width: 30ch;
  font-size: clamp(1.25rem, 1.05rem + 1.1vw, 2rem); font-weight: 600; line-height: 1.35; letter-spacing: -.02em;
  color: var(--navy);
}
.emotion__text { margin: 1.5rem auto 0; max-width: 60ch; }
.emotion__rule { width: 1px; height: clamp(56px, 7vw, 96px); margin: clamp(40px, 6vw, 72px) auto; background: linear-gradient(var(--line-strong), transparent); }
.statement { font-size: clamp(1.875rem, 1.1rem + 3.4vw, 4.25rem); font-weight: 650; letter-spacing: -.025em; line-height: 1.08; }
.statement__muted { display: block; color: #8C95A6; font-weight: 500; font-style: italic; }
.statement__strong { display: block; color: var(--navy); margin-top: .15em; }
.quiet-list { margin-top: clamp(40px, 5vw, 64px); display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 2rem; }
.quiet-list li { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--navy); font-size: .98rem; }
.quiet-list .icon { color: var(--gold-d); }

/* 8.2 Problem → Lösung */
.solution-head { display: grid; gap: 1.25rem 4rem; margin-bottom: clamp(40px, 5vw, 72px); }
@media (min-width: 900px) { .solution-head { grid-template-columns: 1.1fr .9fr; align-items: end; } }
.solution-head .lead strong { color: var(--ink); font-weight: 650; }
.grid-4 { display: grid; gap: clamp(16px, 2vw, 24px); }
@media (min-width: 600px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card__num { position: absolute; top: 24px; right: 26px; font-size: .8125rem; font-weight: 700; color: #A4ACBB; letter-spacing: .06em; }
.section--white .card { background: var(--paper); border-color: transparent; }
.section--white .card--hover:hover { background: var(--white); }

/* 8.3 Ablauf / Timeline */
.process { overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(11, 58, 143, .55), transparent); pointer-events: none;
}
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before, .timeline::after {
  content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; border-radius: 2px;
}
.timeline::before { background: var(--on-dark-line); }
.timeline::after {
  background: linear-gradient(var(--gold), var(--gold-d));
  transform: scaleY(0); transform-origin: top; transition: transform 1.8s var(--ease-out) .2s;
}
.timeline.is-visible::after { transform: none; }
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; padding-bottom: 2.25rem; }
.step:last-child { padding-bottom: 0; }
.step__node {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--deep); border: 1.5px solid rgba(255, 201, 61, .55); color: var(--gold);
  font-weight: 750; font-size: .9375rem; letter-spacing: .02em;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.step:hover .step__node { background: var(--gold); color: var(--ink); transform: scale(1.06); }
.step__body { padding-top: .75rem; }
.step h3 { font-size: 1.1875rem; letter-spacing: -.015em; }
.step p { margin-top: .4rem; color: var(--on-dark-muted); font-size: .98rem; max-width: 46ch; }
@media (min-width: 1100px) {
  .timeline { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.5rem; }
  .timeline::before, .timeline::after { left: 28px; right: calc((100% - 7.5rem) / 6 - 28px); top: 27px; bottom: auto; width: auto; height: 2px; }
  .timeline::after { background: linear-gradient(90deg, var(--gold), var(--gold-d)); transform: scaleX(0); transform-origin: left; }
  .timeline.is-visible::after { transform: none; }
  .step { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 0; }
  .step__body { padding-top: 0; }
  .step p { font-size: .9375rem; }
}
.process__cta {
  margin-top: clamp(48px, 6vw, 80px); padding: clamp(24px, 3vw, 32px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem 2rem;
  border-radius: var(--radius-lg); background: rgba(255, 255, 255, .05); border: 1px solid var(--on-dark-line);
}
.process__cta p { font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); font-weight: 650; letter-spacing: -.015em; max-width: 34ch; }
.process__cta p span { display: block; font-weight: 450; font-size: .9375rem; color: var(--on-dark-muted); margin-top: .25rem; letter-spacing: 0; }

/* 8.4 Vorher / Nachher */
.ba-grid { display: grid; gap: clamp(16px, 2vw, 24px); }
@media (min-width: 900px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .ba-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.ba-item figcaption { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: .25rem 1rem; padding: 1rem .25rem 0; }
.ba-item figcaption strong { font-weight: 650; font-size: 1.0625rem; letter-spacing: -.01em; }
.ba-item figcaption span { color: var(--muted); font-size: .9rem; }
.ba {
  --pos: 50%;
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3; background: var(--paper-2);
  touch-action: pan-y; user-select: none; -webkit-user-select: none; cursor: ew-resize;
  box-shadow: var(--shadow);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__label {
  position: absolute; top: 14px; z-index: 2; padding: .35rem .75rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.ba__label--before { left: 14px; background: rgba(6, 27, 58, .72); color: var(--white); }
.ba__label--after { right: 14px; background: rgba(255, 255, 255, .85); color: var(--ink); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); z-index: 3; width: 2px; margin-left: -1px;
  background: var(--white); box-shadow: 0 0 12px rgba(0, 0, 0, .35); pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center; gap: 2px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--navy); box-shadow: 0 8px 24px rgba(5, 20, 43, .35);
  transition: transform .2s var(--ease);
}
.ba__knob .icon { width: 18px; height: 18px; stroke-width: 2.2; }
.ba.is-dragging .ba__knob { transform: translate(-50%, -50%) scale(1.08); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; }
.ba__range:focus-visible ~ .ba__handle .ba__knob { outline: 3px solid var(--gold); outline-offset: 3px; }
.ba-note { margin-top: 1.5rem; display: flex; align-items: center; gap: .5rem; color: var(--muted-2); font-size: .875rem; }

/* 8.5 Leistungen */
.services { display: grid; gap: clamp(14px, 1.6vw, 20px); }
@media (min-width: 540px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .services { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .services { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.service { padding: clamp(22px, 2.4vw, 28px); }
.service h3 { font-size: 1.0625rem; margin-block: 1.1rem .4rem; }
.service p { font-size: .9375rem; line-height: 1.55; }
.service--featured { background: var(--navy) !important; color: var(--white); border-color: transparent; }
.service--featured p { color: var(--on-dark-muted); }
.service--featured .icon-tile { background: rgba(255, 201, 61, .12); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(255, 201, 61, .25); }
.service__badge {
  position: absolute; top: 20px; right: 20px; padding: .3rem .65rem; border-radius: 999px;
  background: var(--gold); color: var(--ink); font-size: .6875rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase;
}
.service__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .5rem; min-height: 44px; font-weight: 650; font-size: .9375rem; color: var(--gold); }
.service__link:hover .icon { transform: translateX(3px); }
.service__link .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
@media (max-width: 539px) {
  .service { display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 1rem; align-items: start; padding: 20px; }
  .service .icon-tile { width: 44px; height: 44px; border-radius: 13px; grid-row: span 3; }
  .service h3 { margin: .2rem 0 .3rem; }
  .service p, .service .service__link { grid-column: 2; }
  .service--featured { padding-top: 56px; }
  .service__badge { top: 18px; left: 20px; right: auto; }
}
.services-foot { margin-top: clamp(32px, 4vw, 48px); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.5rem; text-align: center; }
.services-foot p { color: var(--muted); }

/* 8.6 Messie-Wohnungen */
.messie { overflow: hidden; }
.messie__media { position: relative; }
.messie__media .media { aspect-ratio: 4 / 5; border-radius: var(--radius-xl); }
@media (max-width: 899px) { .messie__media .media { aspect-ratio: 4 / 3; } }
.float-card {
  position: absolute; left: clamp(12px, 3vw, -24px); bottom: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, auto);
  max-width: 320px; display: flex; gap: .85rem; align-items: center;
  padding: 1rem 1.25rem; border-radius: 18px;
  background: rgba(255, 255, 255, .92); color: var(--ink);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}
.float-card strong { display: block; font-size: .98rem; letter-spacing: -.01em; }
.float-card span { display: block; font-size: .8125rem; color: var(--muted); line-height: 1.4; }
.float-card .icon-tile { width: 44px; height: 44px; border-radius: 12px; }
@media (min-width: 900px) { .float-card { left: -28px; right: auto; bottom: 40px; } }
.messie__checks { margin-top: 2rem; display: grid; gap: .9rem 1.5rem; }
@media (min-width: 600px) { .messie__checks { grid-template-columns: 1fr 1fr; } }
.messie__checks li { font-size: .98rem; color: rgba(255, 255, 255, .92); }
.privacy-quote {
  margin-top: 2.5rem; padding: 1.5rem 1.5rem 1.5rem 1.75rem; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 201, 61, .14), rgba(255, 201, 61, .04));
  border: 1px solid rgba(255, 201, 61, .28);
  display: flex; gap: 1rem; align-items: center;
}
.privacy-quote p { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.75rem); font-weight: 750; letter-spacing: -.025em; line-height: 1.2; }
.privacy-quote .icon { color: var(--gold); width: 32px; height: 32px; }
.messie .btn-row { margin-top: 2rem; }

/* 8.7 Was wird behalten? */
.keep__visual { position: relative; padding: 0 12% 18% 0; }
.keep__visual .media--a { aspect-ratio: 4 / 3; }
.keep__visual .media--b {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 4 / 3;
  border: 6px solid var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.keep__cats { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.keep__quote { margin-top: 1.25rem; font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem); font-weight: 600; color: var(--navy); letter-spacing: -.015em; }
.info-box {
  margin-top: 2rem; display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.375rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.info-box strong { display: block; font-weight: 650; letter-spacing: -.01em; }
.info-box p { color: var(--muted); font-size: .95rem; margin-top: .2rem; }

/* 8.8 Vertrauen */
.trust-top { margin-bottom: clamp(40px, 5vw, 64px); }
.trust-top .media { aspect-ratio: 16 / 11; }
.grid-3 { display: grid; gap: clamp(16px, 2vw, 24px); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.trust-card { display: grid; grid-template-columns: auto 1fr; gap: .25rem 1.1rem; align-items: start; }
.trust-card .icon-tile { grid-row: span 2; }
.trust-card h3 { margin: .2rem 0 0; font-size: 1.125rem; }
.trust-card p { margin: 0; }

/* 8.9 Bewertungen */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 2rem; margin-bottom: clamp(32px, 4vw, 48px); }
.reviews-head .section-head { margin-bottom: 0; }
.rating-card {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.rating-card__g { width: 36px; height: 36px; }
.rating-card__score { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.rating-card small { display: block; color: var(--muted); font-size: .8125rem; margin-top: .2rem; }
.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 86%;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 8px 4px 24px; margin: -8px -4px 0;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .carousel__track { grid-auto-columns: calc((100% - 24px) / 2); } }
@media (min-width: 1000px) { .carousel__track { grid-auto-columns: calc((100% - 48px) / 3); } }
.review { scroll-snap-align: start; display: flex; flex-direction: column; gap: 1rem; }
.review__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review__tag { font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); padding: .25rem .6rem; border: 1px dashed var(--line-strong); border-radius: 999px; }
.review blockquote { font-size: 1.0156rem; line-height: 1.6; color: var(--ink); flex: 1; }
.review footer { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.review footer .review__avatar { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold); font-weight: 700; font-size: 1rem; }
.review footer strong { display: block; font-size: .9375rem; font-weight: 650; }
.review footer span { display: block; font-size: .8125rem; color: var(--muted); }

.carousel__nav { display: flex; gap: .5rem; }
.carousel__btn {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-strong); color: var(--navy);
  transition: background-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
}
.carousel__btn:hover:not(:disabled) { background: var(--navy); color: var(--white); }
.carousel__btn:disabled { opacity: .35; cursor: default; }
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: .5rem; }
.carousel__dots button { width: 8px; height: 8px; border-radius: 999px; background: var(--line-strong); transition: width .3s var(--ease), background-color .3s var(--ease); position: relative; }
.carousel__dots button::after { content: ""; position: absolute; inset: -12px -6px; }
.carousel__dots button[aria-current="true"] { width: 24px; background: var(--navy); }
.reviews-foot { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.reviews-foot p { font-size: .875rem; color: var(--muted-2); max-width: 60ch; }

/* 8.10 Preise */
.price-factors { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: .6rem; }
.price-factors li {
  display: flex; align-items: center; gap: .75rem; padding: .8rem 1rem; border-radius: 14px;
  background: var(--paper); font-weight: 550; font-size: .9375rem; color: var(--navy);
}
.price-factors .icon { color: var(--blue); width: 20px; height: 20px; }
.price-card {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-xl);
  background: var(--navy); color: var(--white); box-shadow: var(--shadow-lg);
}
.price-card::before {
  content: ""; position: absolute; z-index: -1; width: 360px; height: 360px; right: -140px; top: -140px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 201, 61, .28), transparent);
}
.price-card__title { margin-top: 1.25rem; font-size: clamp(1.625rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.1; }
.price-card .checks { margin-top: 1.75rem; }
.price-card .btn { margin-top: 2rem; }
.price-card__note { margin-top: 1rem; font-size: .8125rem; color: var(--on-dark-muted); text-align: center; }
@media (min-width: 900px) { .price-card { position: sticky; top: calc(var(--header-h) + 24px); } }

/* 8.11 Einsatzgebiet */
.cities { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.chip--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.chip--primary .icon { color: var(--gold); }
.chip--ghost { background: transparent; border-style: dashed; color: var(--muted); }
.area-note { margin-top: 1.5rem; color: var(--muted); font-size: .95rem; }
.area-note a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.map-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(160deg, #FFFFFF 0%, #F3F1EC 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 680 / 560;
}
.map-card svg { width: 100%; height: 100%; }
.map__dot { fill: var(--navy); stroke: var(--white); stroke-width: 3; }
.map__label { font-family: var(--font); font-size: 15px; font-weight: 600; fill: var(--ink); paint-order: stroke; stroke: rgba(255, 255, 255, .92); stroke-width: 5px; stroke-linejoin: round; }
@media (max-width: 600px) {
  .map__label { font-size: 23px; stroke-width: 6px; }
  }
.map__legend {
  position: absolute; left: 16px; top: 16px; display: flex; align-items: center; gap: .5rem;
  padding: .45rem .8rem; border-radius: 999px; background: rgba(255, 255, 255, .9);
  font-size: .75rem; font-weight: 600; color: var(--muted); box-shadow: var(--shadow-sm);
}
.map__legend i { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 2px var(--navy); }

/* 8.12 FAQ */
@media (min-width: 900px) { .faq__aside { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; } }
.faq-contact {
  margin-top: 2rem; padding: 1.5rem; border-radius: var(--radius);
  background: var(--paper); display: grid; gap: 1rem;
}
.faq-contact strong { font-size: 1.0625rem; letter-spacing: -.01em; }
.faq-contact p { color: var(--muted); font-size: .95rem; margin-top: .25rem; }
.faq-contact .btn-row .btn { flex: 1 1 auto; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.35rem 0; font-size: clamp(1.0313rem, 1rem + .25vw, 1.1875rem); font-weight: 650; letter-spacing: -.015em; line-height: 1.35;
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-item summary:focus-visible { outline-offset: 4px; }
.faq-item__icon {
  position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); transition: background-color .3s var(--ease), transform .35s var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px;
  background: var(--navy); border-radius: 2px; transition: transform .35s var(--ease), background-color .3s var(--ease);
}
.faq-item__icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-item__icon { background: var(--navy); transform: rotate(180deg); }
.faq-item[open] .faq-item__icon::before { background: var(--gold); }
.faq-item[open] .faq-item__icon::after { transform: rotate(0deg); background: var(--gold); }
.faq-item__body { overflow: hidden; }
.faq-item__body p { padding: 0 3.5rem 1.5rem 0; color: var(--muted); max-width: 68ch; }
@media (max-width: 599px) { .faq-item__body p { padding-right: 0; } }

/* 8.13 Finale CTA */
.cta-final {
  position: relative; isolation: isolate; overflow: hidden; color: var(--white); text-align: center;
  padding-block: clamp(96px, 13vw, 180px); background: var(--deep);
}
.cta-final__bg { position: absolute; inset: -8% 0; z-index: -2; will-change: transform; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 50% 40%, rgba(6, 27, 58, .72) 0%, rgba(6, 27, 58, .9) 70%), linear-gradient(0deg, rgba(6, 27, 58, .6), rgba(6, 27, 58, .2));
}
.cta-final .h2 { max-width: 16ch; margin-inline: auto; font-size: clamp(2rem, 1.2rem + 3.6vw, 4.25rem); }
.cta-final .lead { max-width: 56ch; margin: 1.5rem auto 0; }
.cta-final .btn-row { justify-content: center; margin-top: 2.5rem; }
.cta-final__checks { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem 1.75rem; font-weight: 550; }
.cta-final__checks li { display: inline-flex; align-items: center; gap: .6rem; }

/* 9. Anfrageformular ------------------------------------------------------- */
.contact-tiles { margin-top: 2rem; display: grid; gap: .75rem; }
@media (min-width: 520px) and (max-width: 899px) { .contact-tiles { grid-template-columns: 1fr 1fr; } }
.contact-tile {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.contact-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-tile small { display: block; color: var(--muted); font-size: .8125rem; }
.contact-tile strong { display: block; font-size: 1.0625rem; letter-spacing: -.01em; }
.contact-tile .icon-tile--wa { background: rgba(37, 211, 102, .12); color: #128C4A; box-shadow: inset 0 0 0 1px rgba(37, 211, 102, .25); }

.form-card {
  position: relative; background: var(--white); border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.progress { margin-bottom: 1.75rem; }
.progress__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .8125rem; font-weight: 600; color: var(--muted); }
.progress__meta b { color: var(--navy); font-weight: 700; }
.progress__track { margin-top: .6rem; height: 6px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.progress__fill { height: 100%; width: var(--progress, 20%); border-radius: inherit; background: linear-gradient(90deg, var(--navy), var(--blue)); transition: width .5s var(--ease-out); }

.form-step { border: 0; margin: 0; padding: 0; min-width: 0; }
.form-step legend, .form-step__title {
  padding: 0; font-size: clamp(1.375rem, 1.15rem + .9vw, 1.75rem); font-weight: 750; letter-spacing: -.025em; line-height: 1.2;
}
.form-step__title:focus { outline: none; }
.form-step__hint { margin-top: .5rem; color: var(--muted); font-size: .95rem; }
.form-step.is-entering { animation: stepIn .45s var(--ease-out); }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

.options { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
@media (min-width: 600px) { .options--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.options--list { grid-template-columns: 1fr; }
@media (min-width: 480px) { .options--list { grid-template-columns: 1fr 1fr; } }
.option { position: relative; }
.option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.option__box {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .6rem;
  height: 100%; min-height: 92px; padding: 1rem; border-radius: 16px;
  border: 1.5px solid var(--line-strong); background: var(--white);
  font-weight: 600; font-size: .9375rem; line-height: 1.25; cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.options--list .option__box { flex-direction: row; align-items: center; min-height: 56px; padding: .85rem 1rem; }
.option__box .icon { color: var(--blue); }
.option__box:hover { border-color: rgba(11, 58, 143, .5); transform: translateY(-1px); }
.option__box::after {
  content: ""; position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); background: var(--white) no-repeat center / 12px;
  transition: all .2s var(--ease);
}
.options--list .option__box::after { top: 50%; margin-top: -10px; right: 14px; }
.option input:checked + .option__box {
  border-color: var(--navy); background: rgba(11, 58, 143, .045); box-shadow: 0 0 0 3px rgba(11, 58, 143, .1);
}
.option input:checked + .option__box::after {
  border-color: var(--navy); background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC93D' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.option input:focus-visible + .option__box { outline: 3px solid var(--gold); outline-offset: 2px; }

.fields { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 520px) { .fields--2 { grid-template-columns: 1fr 1.4fr; } .fields--half { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; min-width: 0; }
.field label { font-size: .875rem; font-weight: 650; color: var(--navy); }
.field label span { font-weight: 450; color: var(--muted-2); }
.input {
  width: 100%; min-height: 56px; padding: .9rem 1rem; border-radius: 14px;
  border: 1.5px solid var(--line-strong); background: var(--white);
  font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
textarea.input { min-height: 120px; resize: vertical; line-height: 1.5; }
.input::placeholder { color: #8A93A5; }
.input:hover { border-color: rgba(11, 58, 143, .45); }
.input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 58, 143, .12); }
.field.is-invalid .input { border-color: #B3261E; box-shadow: 0 0 0 4px rgba(179, 38, 30, .08); }
.field-error { display: none; align-items: center; gap: .4rem; font-size: .8125rem; font-weight: 550; color: #9F1F18; }
.field.is-invalid .field-error, .step-error.is-shown { display: flex; }
.step-error { display: none; margin-top: 1rem; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 550; color: #9F1F18; }

.dropzone {
  margin-top: 1.5rem; position: relative; display: grid; place-items: center; text-align: center; gap: .5rem;
  padding: clamp(24px, 4vw, 36px) 1rem; border-radius: 20px;
  border: 2px dashed var(--line-strong); background: var(--paper);
  cursor: pointer; transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.dropzone:hover, .dropzone.is-over { border-color: var(--blue); background: rgba(11, 58, 143, .04); }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dropzone:focus-within { outline: 3px solid var(--gold); outline-offset: 2px; }
.dropzone .icon-tile { background: var(--white); }
.dropzone strong { font-size: 1.0625rem; letter-spacing: -.01em; }
.dropzone small { color: var(--muted); font-size: .8125rem; }
.photo-tip {
  margin-top: 1rem; display: flex; gap: .75rem; align-items: flex-start;
  padding: .9rem 1rem; border-radius: 14px; background: rgba(255, 201, 61, .16); color: #5A4200;
  font-size: .9rem; font-weight: 550; line-height: 1.45;
}
.photo-tip .icon { color: #9A6A00; width: 20px; height: 20px; margin-top: 1px; }
.thumbs { margin-top: 1rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: .6rem; }
.thumb { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute; top: 4px; right: 4px; display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%; background: rgba(6, 27, 58, .8); color: var(--white);
}
.thumb button .icon { width: 14px; height: 14px; stroke-width: 2.4; }
.files-meta { margin-top: .75rem; font-size: .8125rem; color: var(--muted); }
.wa-alt { margin-top: 1rem; font-size: .9rem; color: var(--muted); }
.wa-alt a { color: #128C4A; font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }

.form-nav { margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.form-nav .btn { min-width: 0; }
.form-nav__next { margin-left: auto; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); padding-inline: 1rem; }
.btn--ghost:hover { --btn-bg: var(--paper); }
.btn--skip { --btn-bg: transparent; --btn-fg: var(--muted); font-weight: 550; padding-inline: .75rem; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 479px) {
  .form-nav { flex-wrap: wrap; }
  .form-nav__next, .form-nav__submit { width: 100%; order: -1; }
  .form-nav .btn--ghost { flex: 1; }
}
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading .icon--arrow { display: none; }
.btn.is-loading::after {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid currentColor; border-right-color: transparent; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-privacy { margin-top: 1.25rem; display: flex; gap: .6rem; align-items: flex-start; font-size: .8125rem; color: var(--muted); line-height: 1.5; }
.form-privacy .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--navy); }
.form-privacy a { text-decoration: underline; text-underline-offset: 2px; }
.form-privacy strong { color: var(--navy); font-weight: 650; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.form-result { text-align: center; padding: clamp(8px, 2vw, 24px) 0; }
.form-result:focus { outline: none; }
.form-result__icon {
  display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 1.25rem; border-radius: 50%;
  background: var(--gold); color: var(--ink); box-shadow: 0 16px 36px -14px rgba(240, 180, 41, .8);
}
.form-result__icon .icon { width: 34px; height: 34px; stroke-width: 2.4; }
.form-result__icon--info { background: var(--paper); color: var(--navy); box-shadow: none; }
.form-result h3 { font-size: clamp(1.375rem, 1.15rem + .9vw, 1.75rem); }
.form-result p { margin: .75rem auto 0; max-width: 44ch; color: var(--muted); }
.form-result .btn-row { justify-content: center; margin-top: 1.75rem; }

/* 10. Footer --------------------------------------------------------------- */
.footer { background: var(--deep); color: var(--on-dark-muted); padding-block: clamp(56px, 7vw, 96px) calc(2rem + var(--bar-h)); font-size: .9375rem; }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer .logo { color: var(--white); }
.footer__about { margin-top: 1.25rem; max-width: 36ch; }
.footer h2 { color: var(--white); font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links { display: grid; gap: .6rem; }
.footer__links a { transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--gold); }
.footer__contact a { display: inline-flex; align-items: center; gap: .6rem; color: var(--white); font-weight: 550; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact .icon { width: 18px; height: 18px; color: var(--gold); }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 1.5rem; border-top: 1px solid var(--on-dark-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8125rem;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer__bottom a:hover { color: var(--white); }

/* 11. Mobile Action Bar ---------------------------------------------------- */
.action-bar { display: none; }
@media (max-width: 899px) {
  :root { --bar-h: calc(76px + env(safe-area-inset-bottom)); }
  .action-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: .5rem;
    padding: .625rem max(.75rem, env(safe-area-inset-left)) calc(.625rem + env(safe-area-inset-bottom)) max(.75rem, env(safe-area-inset-right));
    background: rgba(247, 245, 241, .88);
    -webkit-backdrop-filter: blur(18px) saturate(170%); backdrop-filter: blur(18px) saturate(170%);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px -18px rgba(5, 20, 43, .35);
    transform: translateY(110%); transition: transform .4s var(--ease-out);
  }
  .action-bar.is-visible { transform: none; }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-height: 56px; border-radius: 14px; font-size: .8125rem; font-weight: 650; letter-spacing: .01em;
    -webkit-tap-highlight-color: transparent; transition: transform .15s var(--ease);
  }
  .action-bar a:active { transform: scale(.96); }
  .action-bar .icon { width: 20px; height: 20px; }
  .action-bar__call { background: var(--white); color: var(--navy); border: 1px solid var(--line-strong); }
  .action-bar__wa { background: var(--wa); color: var(--ink); }
  .action-bar__offer { background: var(--gold); color: var(--ink); }
  body.menu-open .action-bar { transform: translateY(110%); }
}

/* 12. Animationen ---------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="scale"] { transform: scale(.97); }
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero__bg, .cta-final__bg { transform: none !important; }
}

/* 13. Utilities & Rechtstexte --------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.legal { padding-block: clamp(40px, 6vw, 80px) var(--section-y); background: var(--white); min-height: 70vh; }
.legal h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); letter-spacing: -.035em; }
.legal h2 { font-size: 1.25rem; margin-top: 2.5rem; }
.legal p, .legal li { margin-top: .75rem; color: var(--muted); max-width: 72ch; }
.legal .placeholder-box { margin-top: 1.5rem; padding: 1rem 1.25rem; border-radius: 14px; background: rgba(255, 201, 61, .18); color: #5A4200; font-weight: 550; }
.breadcrumbs { font-size: .875rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }

/* Feinschliff */
.footer h2 { font-family: var(--font); }
.footer__address { display: flex; gap: .6rem; align-items: flex-start; color: var(--on-dark-muted); }
.footer__address .icon { width: 18px; height: 18px; color: var(--gold); margin-top: 3px; flex: none; }
@media (max-width: 759px) { .video--short { max-width: 280px; } }

/* 14. Unterseiten (Leistungen, Ratgeber, Städte) ---------------------------- */
.hero--sub { padding-block: clamp(28px, 4vw, 56px) clamp(40px, 5vw, 72px); }
.hero--sub .hero__title { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.5rem); line-height: 1.08; }
.hero--sub .breadcrumbs { margin-bottom: 1rem; }
.hero__sub--lead { font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem); color: var(--ink); opacity: .82; margin-top: 1.1rem; }
.breadcrumbs a { color: var(--blue); }
.link-grid { display: grid; gap: clamp(14px, 1.6vw, 20px); }
@media (min-width: 640px) { .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.link-card { display: grid; grid-template-columns: 52px 1fr; column-gap: 1rem; align-items: start; }
.link-card .icon-tile { grid-row: span 2; }
.link-card__title { font-weight: 700; font-size: 1.0625rem; color: var(--navy); letter-spacing: -.01em; }
.link-card__text { margin-top: .25rem; color: var(--muted); font-size: .9375rem; line-height: 1.5; }
.link-card:hover .link-card__title { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.card-link { color: inherit; }
.card-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card-link:hover { color: var(--blue); }
.service--featured .service__link { position: relative; z-index: 1; }
.chip--link { color: var(--navy); transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease); }
.chip--link:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.text-link, .prose a, .more-links a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.on-dark .more-links a { color: var(--gold); }
.more-links { margin-top: 1.75rem; font-size: .98rem; }
.subhead { margin-top: 2rem; font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: .01em; }
.subhead + .cities { margin-top: .9rem; }
.subhead-lg { font-size: clamp(1.375rem, 1.2rem + .7vw, 1.75rem); color: var(--navy); margin-bottom: 1.25rem; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.info-panel { display: grid; gap: 1rem; align-content: start; }
.info-panel h3, .info-panel__title { font-family: var(--font-head); font-size: 1.375rem; font-weight: 650; color: var(--navy); letter-spacing: -.01em; }
.info-panel p { margin: 0; }
.mini-steps { margin: 0; padding: 0; list-style: none; counter-reset: ms; display: grid; gap: .9rem; }
.mini-steps li { counter-increment: ms; display: grid; grid-template-columns: 34px 1fr; column-gap: .85rem; }
.mini-steps li::before {
  content: counter(ms); grid-row: span 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--gold); font-weight: 700; font-size: .875rem;
}
.mini-steps strong { color: var(--navy); font-size: .98rem; }
.mini-steps span { color: var(--muted); font-size: .9rem; }
.article-grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (min-width: 1000px) { .article-grid { grid-template-columns: minmax(0, 1fr) 340px; } .article-aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.article-aside { display: grid; gap: 1rem; }
.aside-links { display: grid; gap: .6rem; }
.aside-links a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose { max-width: 72ch; color: var(--ink); font-size: 1.0625rem; line-height: 1.75; }
.prose h2 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); color: var(--navy); margin: 2.5rem 0 .9rem; line-height: 1.2; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 1rem; color: #2B3A52; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.3rem; display: grid; gap: .5rem; color: #2B3A52; }
.prose li::marker { color: var(--gold-d); font-weight: 700; }
.prose strong { color: var(--ink); }
.prose .ext-links { list-style: none; padding: 0; }
.prose .ext-links li { padding: 1rem 1.1rem; border-radius: 14px; background: var(--paper); }
.footer__links--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; }

/* Performance: Abschnitte außerhalb des Sichtbereichs erst bei Bedarf rendern */
.section, .facts, .cta-final { content-visibility: auto; contain-intrinsic-size: auto 900px; }
@media (max-width: 1099px) { .hero__bg { display: none; } }
.hero__bg picture { display: block; width: 100%; height: 100%; }

/* Rechtstexte: Zwischenüberschriften & Listen */
.legal h3 { font-size: 1.0625rem; margin-top: 1.5rem; color: var(--navy); }
.legal ul { margin: .75rem 0 0; padding-left: 1.25rem; }
.legal li { margin-top: .35rem; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* 15. Cookie-Einwilligung ---------------------------------------------------- */
.consent {
  position: fixed; z-index: 180; left: 50%; bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%); width: min(100% - 24px, 720px);
  max-height: calc(100vh - 32px); overflow-y: auto;
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(5, 20, 43, .55), 0 0 0 1px var(--line);
}
.consent__inner { padding: clamp(18px, 3vw, 28px); }
.consent__title { font-family: var(--font-head); font-size: clamp(1.2rem, 1.1rem + .4vw, 1.4rem); color: var(--navy); }
.consent__text { margin-top: .6rem; font-size: .9rem; line-height: 1.55; color: #2B3A52; }
.consent__text a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.consent__settings { margin-top: 1rem; display: grid; gap: .6rem; }
.consent__opt { display: flex; gap: .8rem; align-items: flex-start; padding: .8rem 1rem; border-radius: 14px; background: var(--paper); cursor: pointer; }
.consent__opt input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); flex: none; }
.consent__opt strong { display: block; font-size: .95rem; color: var(--navy); }
.consent__opt small { display: block; font-size: .8125rem; color: var(--muted); line-height: 1.45; }
.consent__actions { margin-top: 1.1rem; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.consent__btn { min-height: 48px; padding-inline: 1rem; font-size: .9375rem; }
@media (min-width: 640px) { .consent__actions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 639px) { .consent__actions [data-consent="settings"], .consent__actions [data-consent="save"] { grid-column: 1 / -1; order: 3; } }
body.consent-open .action-bar { transform: translateY(110%); }
.footer__consent { color: inherit; font: inherit; text-decoration: none; }
.footer__consent:hover { color: var(--white); }

/* Logo-Karte in „Warum MK“ */
.brand-card {
  display: grid; justify-items: center; gap: 1.25rem; text-align: center;
  padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--white) 0%, var(--paper) 100%);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.brand-card__logo { width: min(280px, 70%); height: auto; }
.brand-card__claim { max-width: 34ch; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.brand-card__facts { display: grid; gap: .6rem; justify-items: start; text-align: left; }
.brand-card__facts li { display: flex; gap: .7rem; align-items: center; font-weight: 600; font-size: .9375rem; color: var(--navy); }
