/* ============================================================
   OBJEKTRETTER – objektretter.de
   Design-Rezept: "Marine & Feld" (R14-Derivat)
   Navy #1E3357 (Vertrauen/Schutz) + Logo-Grün #5C9E2C (Wert)
   Fonts: Libre Franklin (Display) + Source Sans 3 (Body)
   Made by RGN Marketing – rgn-marketing.de
   ============================================================ */

:root {
  --navy: #1E3357;
  --navy-deep: #162744;
  --navy-2: #162744;
  --navy-ink: #0E1A2E;
  --green: #5C9E2C;
  --green-dark: #47811F;
  --green-deep: #3A6B18;
  --green-tint: #EEF5E4;
  --sky: #F4F7FB;
  --paper: #FFFFFF;
  --text: #2E3A50;
  --muted: #5D6B84;
  --line: #E2E8F1;
  --line-green: #D4E5C2;
  --wa: #25D366;

  --font-display: 'Libre Franklin', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --r-s: 10px;
  --r-m: 14px;
  --r-l: 20px;
  --r-pill: 999px;

  --shadow: 0 10px 30px rgba(20, 36, 63, .08);
  --shadow-lg: 0 24px 60px rgba(20, 36, 63, .14);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --header-h: 76px;
  --topbar-h: 40px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; cursor: pointer; background: none; }
strong { font-weight: 700; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.container--narrow { width: min(900px, 92%); margin-inline: auto; }

.section { padding: clamp(64px, 8vw, 108px) 0; position: relative; }
.section--sky { background: var(--sky); }
.section--dark { background: linear-gradient(150deg, var(--navy-2), var(--navy) 55%, #23406E); color: #DCE4F2; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* Schräg-Kante (Dach-Motiv) für dunkle Sektionen */
.section--slant { clip-path: polygon(0 34px, 100% 0, 100% calc(100% - 34px), 0 100%); padding: clamp(88px, 9vw, 132px) 0; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-dark);
}
.eyebrow::before { content: ''; width: 34px; height: 2.5px; border-radius: 2px; background: var(--green); }
.section--dark .eyebrow { color: #A9D97E; }
.section--dark .eyebrow::before { background: #A9D97E; }

.section-title { font-size: clamp(1.9rem, 4.2vw, 2.85rem); font-weight: 800; letter-spacing: -.015em; margin: 14px 0 16px; }
.section-title em { font-style: normal; color: var(--green-dark); }
.section--dark .section-title em { color: #A9D97E; }
.section-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 62ch; }
.section--dark .section-sub { color: #B9C6DD; }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px;
  padding: 15px 28px; border-radius: var(--r-s);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  text-align: center;
}
.btn .ti { font-size: 20px; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(92, 158, 44, .32); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn--ghost { background: rgba(255, 255, 255, .1); color: #fff; border: 1.5px solid rgba(255, 255, 255, .45); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-2px); }
.btn--wa { background: #128C7E; color: #fff; box-shadow: 0 8px 22px rgba(18, 140, 126, .35); }
.btn--wa:hover { background: #0E7266; transform: translateY(-2px); }
.btn--outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 17.5px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-ink); color: #C4CFE2; font-size: 14px; height: var(--topbar-h); display: flex; align-items: center; position: relative; z-index: 60; }
.topbar__inner { display: flex; justify-content: center; align-items: center; gap: 16px; }
.topbar__links { display: flex; gap: 36px; }
.topbar__links a { display: flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar__links a:hover { color: #fff; }
.topbar__links .ti { font-size: 16px; color: #A9D97E; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 241, .8);
  height: var(--header-h); display: flex; align-items: center;
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 10px 30px rgba(20, 36, 63, .09); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-img { height: 48px; width: auto; }
.brand-fallback { display: none; flex-direction: column; line-height: 1.05; }
.brand--text .brand-fallback { display: flex; }
.brand-fallback strong { font-family: var(--font-display); font-size: 21px; font-weight: 800; letter-spacing: .01em; color: var(--navy); }
.brand-fallback strong em { font-style: normal; color: var(--green-dark); }
.brand-fallback small { font-size: 10.5px; font-weight: 600; letter-spacing: .06em; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav a.nav-link, .nav button.nav-link {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--navy);
  padding: 10px 16px; border-radius: var(--r-s); transition: background .2s, color .2s;
}
.nav a.nav-link:hover, .nav button.nav-link:hover, .nav li.is-open > .nav-link { background: var(--sky); color: var(--green-dark); }
.nav a.nav-link.is-active { color: var(--green-dark); }
.nav .ti-chevron-down { font-size: 15px; transition: transform .25s var(--ease); }
.nav li.is-open .ti-chevron-down { transform: rotate(180deg); }

/* Mega-Menü (volle Header-Breite) */
.nav li.has-mega { position: static; }
.mega {
  position: absolute; top: 100%; left: 0; right: 0; transform: translateY(10px);
  background: #fff; border-top: 1px solid var(--line);
  border-radius: 0 0 var(--r-l) var(--r-l);
  box-shadow: 0 30px 60px rgba(20, 36, 63, .16);
  overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav li.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mega__inner { width: min(1200px, 92%); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 2.35fr) minmax(250px, .85fr); gap: 28px; align-items: stretch; }
.mega__grid { padding: 26px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega__item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: var(--r-m); transition: background .2s; }
.mega__item:hover { background: var(--sky); }
.mega__item.is-active { background: var(--green-tint); }
.mega__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-tint); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.mega__item:hover .mega__icon { background: var(--green); color: #fff; }
.mega__item h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 2px; }
.mega__item p { font-size: 13.5px; color: var(--muted); line-height: 1.4; }
.mega__aside { background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: #DCE4F2; padding: 26px 24px; display: flex; flex-direction: column; justify-content: center; gap: 14px; border-radius: var(--r-m); margin: 26px 0; }
.mega__aside h4 { color: #fff; font-size: 17px; }
.mega__aside p { font-size: 14px; color: #B9C6DD; line-height: 1.5; }
.mega__aside .btn { padding: 12px 18px; font-size: 15px; }
.mega__tel { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; }
.mega__tel .ti { color: #A9D97E; }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .btn { padding: 12px 22px; font-size: 15.5px; }

.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-s); border: 1px solid var(--line); align-items: center; justify-content: center; font-size: 24px; color: var(--navy); }

/* Mobile Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none;
}
.drawer::before { content: ''; position: absolute; inset: 0; background: rgba(14, 26, 46, .55); opacity: 0; transition: opacity .3s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 88vw);
  background: #fff; padding: 22px; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open::before { opacity: 1; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.drawer__close { width: 44px; height: 44px; border-radius: var(--r-s); border: 1px solid var(--line); font-size: 22px; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.drawer__panel > a, .drawer__acc-btn {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy);
  padding: 14px 12px; border-radius: var(--r-s); border-bottom: 1px solid var(--line);
}
.drawer__acc-list { display: none; padding: 4px 0 8px; }
.drawer__acc.is-open .drawer__acc-list { display: block; }
.drawer__acc.is-open .ti-chevron-down { transform: rotate(180deg); }
.drawer__acc-list a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: 15.5px; color: var(--text); border-radius: var(--r-s); }
.drawer__acc-list a:hover { background: var(--sky); }
.drawer__acc-list .ti { color: var(--green-dark); font-size: 18px; }
.drawer__cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 640px;
  min-height: clamp(600px, calc(100svh - var(--header-h) - var(--topbar-h)), 880px);
  display: flex; align-items: center;
  padding: clamp(70px, 8vw, 110px) 0 clamp(120px, 13vw, 170px);
  isolation: isolate; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(78deg, rgba(14, 26, 46, .93) 0%, rgba(22, 39, 68, .82) 34%, rgba(22, 39, 68, .45) 62%, rgba(22, 39, 68, .18) 100%),
    linear-gradient(to top, rgba(14, 26, 46, .55), transparent 42%);
}
.hero__content { max-width: 710px; color: #fff; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: clamp(.76rem, 1.05vw, .88rem); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: #A9D97E; margin-bottom: 16px;
}
.hero__kicker::before { content: ''; width: 38px; height: 2.5px; background: var(--green); border-radius: 2px; }
.hero__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.3vw, 2.65rem); font-weight: 800; line-height: 1.15; letter-spacing: -.018em; color: #fff; margin-bottom: 18px; white-space: nowrap; }
.hero__title br + em { white-space: nowrap; }
.hero__title em { font-style: normal; color: #A9D97E; }
.hero__text { font-size: clamp(1.08rem, 1.8vw, 1.28rem); line-height: 1.6; color: #D5DEEE; max-width: 56ch; margin-bottom: 26px; }
.hero__usps { display: grid; grid-template-columns: 1fr; gap: 11px; margin-bottom: 30px; }
.hero__usps li { display: flex; align-items: center; gap: 11px; font-size: 17px; font-weight: 600; color: #EDF1F8; }
.hero__usps .ti { color: #A9D97E; font-size: 21px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; font-size: 15px; font-weight: 600; color: #C4CFE2; }
.hero__trust span { display: flex; align-items: center; gap: 8px; }
.hero__trust .ti { color: #A9D97E; font-size: 17px; }

/* ---------- Stats-Band (überlappt Hero) ---------- */
.stats-wrap { position: relative; z-index: 5; margin-top: clamp(-92px, -7vw, -70px); }
.stats {
  background: linear-gradient(135deg, var(--navy-2), var(--navy) 60%, #23406E);
  border-radius: var(--r-l); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(26px, 3.4vw, 40px) clamp(18px, 3vw, 40px);
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
}
.stat { text-align: center; padding: 0 10px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: -9px; top: 12%; bottom: 12%; width: 1px; background: rgba(255, 255, 255, .14); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: #A9D97E; letter-spacing: -.01em; }
.stat__label { font-size: 14.5px; font-weight: 600; color: #C4CFE2; margin-top: 4px; line-height: 1.35; }

/* ---------- Deko (Hintergrund-Standard) ---------- */
.deco { position: absolute; pointer-events: none; z-index: 0; }
.deco--glow-green { width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(92, 158, 44, .14), transparent 65%); }
.deco--glow-navy { width: 640px; height: 640px; border-radius: 50%; background: radial-gradient(circle, rgba(30, 51, 87, .11), transparent 65%); }
.deco--mark { width: clamp(380px, 40vw, 640px); opacity: .05; }
.deco--mark img { width: 100%; height: auto; }
.section > .container { position: relative; z-index: 1; }

/* ---------- Zwei Wege ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px); }
.path {
  border-radius: var(--r-l); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  background: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.path:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.path__media { position: relative; aspect-ratio: 16 / 8.5; overflow: hidden; }
.path__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.path:hover .path__media img { transform: scale(1.045); }
.path__badge {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(14, 26, 46, .82); color: #A9D97E; backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: var(--r-pill);
}
.path--sell .path__badge { background: var(--green); color: #fff; }
.path__body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.path__body h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 800; }
.path__body > p { color: var(--muted); font-size: 16.5px; }
.path__list { display: grid; gap: 10px; }
.path__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; font-weight: 600; color: var(--text); }
.path__list .ti { color: var(--green-dark); font-size: 19px; margin-top: 2px; }
.path__foot { margin-top: auto; padding-top: 8px; }

/* ---------- Leistungs-Karten (LP-Stil) ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 28px); }
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service__media { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__media img { transform: scale(1.05); }
.service__body { padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service__body h3 { font-size: 1.25rem; font-weight: 800; }
.service__body > p { font-size: 15.5px; color: var(--muted); line-height: 1.55; }
.service__list { display: grid; gap: 8px; margin-top: 2px; }
.service__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; font-weight: 600; }
.service__list .ti { color: var(--green-dark); font-size: 17px; margin-top: 2.5px; }
.service__link {
  margin-top: auto; padding-top: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--green-dark);
}
.service__link .ti { transition: transform .25s var(--ease); }
.service:hover .service__link .ti { transform: translateX(5px); }

/* ---------- Vorher / Nachher (2 Slider) ---------- */
.ba-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3.4vw, 44px); }

/* V/N-Karussell */
.vn-carousel { position: relative; }
.vn-viewport { overflow: hidden; }
.vn-track { display: flex; gap: clamp(24px, 3.4vw, 44px); transition: transform .55s var(--ease); }
.vn-item { flex: 0 0 calc(50% - clamp(24px, 3.4vw, 44px) / 2); min-width: 0; }
.vn-arrow {
  position: absolute; top: calc(50% + 22px); transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--navy); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s, opacity .2s, transform .2s var(--ease);
}
.vn-arrow:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-50%) scale(1.06); }
.vn-arrow:disabled { opacity: .32; pointer-events: none; }
.vn-arrow--prev { left: -24px; }
.vn-arrow--next { right: -24px; }
.vn-meta { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 16px; }
.vn-meta .ba__note { margin-top: 0; }
.vn-counter {
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 5px 14px; box-shadow: 0 3px 10px rgba(20, 36, 63, .05); white-space: nowrap;
}
.ba-item h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ba-item h3 .ti { color: var(--green-dark); font-size: 22px; }
.ba {
  position: relative; border-radius: var(--r-l); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; user-select: none; touch-action: none;
  border: 1px solid var(--line);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  background: #fff; box-shadow: 0 0 14px rgba(0, 0, 0, .35); transform: translateX(-50%); pointer-events: none;
}
.ba__handle::after {
  content: '‹ ›';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 2px; padding-bottom: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}
.ba__tag {
  position: absolute; top: 16px; font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(14, 26, 46, .78); color: #fff; backdrop-filter: blur(4px); pointer-events: none;
}
.ba__tag--before { left: 16px; }
.ba__tag--after { right: 16px; background: var(--green); }
.ba__note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Ablauf (RGN flow-steps Standard) ---------- */
.flow-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 44px 0 10px; }
.flowline {
  position: absolute; top: 41px; left: 12.5%; right: 12.5%; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green) 55%, var(--navy));
  background-size: 220% 100%; animation: orFlow 3.2s linear infinite; opacity: .5; z-index: 0;
}
.flowline::after {
  content: ''; position: absolute; top: 50%; left: 0; width: 11px; height: 11px; margin-top: -5.5px;
  border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(92, 158, 44, .2), 0 0 16px rgba(92, 158, 44, .75);
  animation: orTravel 3.6s cubic-bezier(.5, 0, .5, 1) infinite;
}
@keyframes orFlow { to { background-position: -220% 0; } }
@keyframes orTravel { 0% { left: 0; } 100% { left: 100%; } }
.pstep { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.pstep__badge {
  position: relative; width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.pstep__badge::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--green); opacity: 0; animation: orPing 2.6s var(--ease) infinite; }
.pstep:nth-child(3) .pstep__badge::before { animation-delay: .6s; }
.pstep:nth-child(4) .pstep__badge::before { animation-delay: 1.2s; }
.pstep:nth-child(5) .pstep__badge::before { animation-delay: 1.8s; }
@keyframes orPing { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(1.18); opacity: 0; } }
.pstep__badge lord-icon { width: 46px; height: 46px; }
.pstep__num {
  position: absolute; top: -4px; right: -2px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: #fff; font-family: var(--font-display); font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(92, 158, 44, .4);
}
.pstep h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 7px; }
.pstep p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.pstep__meta { display: inline-block; margin-top: 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--green-deep); background: var(--green-tint); border: 1px solid var(--line-green); padding: 4px 12px; border-radius: var(--r-pill); }
.steps-cta { text-align: center; margin-top: 40px; }
.steps-cta-sub { margin-top: 12px; font-size: 14.5px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; }
.steps-cta-sub .ti { color: var(--green-dark); }

/* ---------- Warum wir (dunkle Sektion) ---------- */
.why { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(30px, 4.5vw, 64px); align-items: center; }
.why__media { position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.6; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__quote {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(14, 26, 46, .84); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-m);
  padding: 18px 20px;
}
.why__quote p { font-size: 15.5px; line-height: 1.5; color: #EDF1F8; font-style: italic; }
.why__quote footer { margin-top: 10px; font-size: 13.5px; font-weight: 700; color: #A9D97E; font-style: normal; }
.why__list { display: grid; gap: 22px; margin-top: 34px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item__icon {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 15px;
  background: rgba(169, 217, 126, .14); border: 1px solid rgba(169, 217, 126, .3);
  color: #A9D97E; font-size: 26px; display: flex; align-items: center; justify-content: center;
}
.why-item__icon lord-icon { width: 38px; height: 38px; }
.why-item h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.why-item p { font-size: 15.5px; color: #B9C6DD; line-height: 1.55; }

/* ---------- Einzugsgebiet ---------- */
.area { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 4.5vw, 60px); align-items: center; }
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-pills li {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 18px; box-shadow: 0 3px 10px rgba(20, 36, 63, .05);
  transition: transform .2s var(--ease), border-color .2s;
}
.area-pills li:hover { transform: translateY(-2px); border-color: var(--green); }
.area-pills .ti { color: var(--green-dark); font-size: 16px; }
.area-pills li.is-more { background: var(--green-tint); border-color: var(--line-green); color: var(--green-deep); }
.area__note { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 15px; color: var(--muted); }
.area__note .ti { color: var(--green-dark); font-size: 19px; }
.area-card {
  background: linear-gradient(160deg, var(--navy-2), var(--navy) 65%, #23406E);
  border-radius: var(--r-l); box-shadow: var(--shadow-lg); color: #DCE4F2;
  padding: clamp(28px, 3.4vw, 40px); border: 1px solid rgba(255, 255, 255, .08);
  position: relative; overflow: hidden;
}
.area-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(169, 217, 126, .16), transparent 65%); }
.area-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 20px; }
.area-card ul { display: grid; gap: 16px; position: relative; }
.area-card li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.area-card li .ti { color: #A9D97E; font-size: 21px; margin-top: 1px; }
.area-card li a:hover { color: #fff; text-decoration: underline; }
.area-card li strong { display: block; color: #fff; font-size: 15.5px; }
.area-card .btn { margin-top: 24px; width: 100%; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-m);
  overflow: hidden; transition: box-shadow .25s var(--ease), border-color .25s;
}
.faq.is-open { box-shadow: var(--shadow); border-color: var(--line-green); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  text-align: left; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--navy);
}
.faq__q .ti { flex-shrink: 0; font-size: 20px; color: var(--green-dark); transition: transform .3s var(--ease); }
.faq.is-open .faq__q .ti { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 24px 22px; font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 72ch; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--shadow); padding: clamp(26px, 3.4vw, 40px); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card > p { font-size: 15.5px; color: var(--muted); margin-bottom: 24px; }
.form-label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--navy); margin: 18px 0 9px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 10px; }
.choice-grid--4 { grid-template-columns: repeat(4, 1fr); }
.choice { position: relative; display: flex; }
.choice > span { flex: 1; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; text-align: center;
  border: 1.5px solid var(--line); border-radius: var(--r-s);
  padding: 14px 8px; font-size: 13.5px; font-weight: 700; color: var(--text);
  transition: all .2s var(--ease); min-height: 74px;
}
.choice .ti { font-size: 24px; color: var(--muted); transition: color .2s; }
.choice input:checked + span { border-color: var(--green); background: var(--green-tint); color: var(--green-deep); box-shadow: 0 0 0 3px rgba(92, 158, 44, .14); }
.choice input:checked + span .ti { color: var(--green-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-s);
  background: #fff; padding: 14px 16px; font: inherit; font-size: 16px; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(92, 158, 44, .16); }
textarea.input { min-height: 110px; resize: vertical; }
.form-hint { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.form-hint a { text-decoration: underline; }
.form-card .btn { width: 100%; margin-top: 18px; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success .ti { font-size: 54px; color: var(--green); margin-bottom: 14px; display: inline-block; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 16px; }
.form-card.is-sent form { display: none; }
.form-card.is-sent .form-success { display: block; }

.contact-card {
  background: linear-gradient(160deg, var(--navy-2), var(--navy) 60%, #23406E);
  border-radius: var(--r-l); color: #DCE4F2; box-shadow: var(--shadow-lg);
  padding: clamp(26px, 3.4vw, 38px); position: sticky; top: calc(var(--header-h) + 24px);
  border: 1px solid rgba(255, 255, 255, .08);
}
.contact-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 20px; }
.contact-person { display: flex; align-items: center; gap: 15px; padding: 16px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r-m); margin-bottom: 22px; }
.contact-person__avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 2px solid rgba(169, 217, 126, .55);
}
.contact-person__avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-person strong { display: block; color: #fff; font-size: 16.5px; }
.contact-person small { font-size: 13.5px; color: #B9C6DD; }
.contact-lines { display: grid; gap: 8px; }
.contact-line {
  display: flex; align-items: center; gap: 14px; padding: 13px 15px;
  border-radius: var(--r-s); background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08); font-size: 16px; font-weight: 600; color: #EDF1F8;
  transition: background .2s, transform .2s var(--ease);
}
.contact-line:hover { background: rgba(255, 255, 255, .12); transform: translateX(3px); }
.contact-line .ti { font-size: 21px; color: #A9D97E; flex-shrink: 0; }
.contact-line--wa .ti { color: var(--wa); }
.contact-line lord-icon { width: 30px; height: 30px; flex-shrink: 0; }
.contact-line small { display: block; font-size: 12.5px; font-weight: 600; color: #97A5C0; }
.contact-card__note { margin-top: 20px; font-size: 13.5px; color: #97A5C0; display: flex; gap: 9px; align-items: flex-start; }
.contact-card__note .ti { color: #A9D97E; font-size: 17px; margin-top: 1px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-ink); color: #A9B4CB; font-size: 15.5px; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); padding: clamp(52px, 6vw, 76px) 0 44px; }
.footer__brand img { height: 58px; width: auto; margin-bottom: 16px; filter: drop-shadow(0 0 1px rgba(255,255,255,.4)); }
.footer__brand p { line-height: 1.6; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 18px; letter-spacing: .02em; }
.footer ul { display: grid; gap: 11px; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact .ti { color: #A9D97E; font-size: 18px; margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 14px; flex-wrap: wrap; }
.footer__claim { color: #A9D97E; font-weight: 600; }

/* ---------- Sticky Mobile Bar + FAB ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: 1fr 1.25fr;
  background: rgba(14, 26, 46, .97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.sticky-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  padding: 13px 6px; border-radius: var(--r-s); color: #fff;
}
.sticky-bar .ti { font-size: 19px; }
.sticky-bar__call { background: rgba(255, 255, 255, .1); }
.sticky-bar__wa { background: rgba(37, 211, 102, .16); color: #7BE2A3; }
.sticky-bar__cta { background: var(--green); }
.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 65;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.08); }

/* ---------- Sub-Hero (Unterseiten) ---------- */
.subhero {
  position: relative; isolation: isolate; color: #fff;
  padding: clamp(76px, 9vw, 130px) 0 clamp(64px, 7vw, 96px);
  overflow: hidden;
}
.subhero__bg { position: absolute; inset: 0; z-index: -2; }
.subhero__bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(80deg, rgba(14, 26, 46, .94) 8%, rgba(22, 39, 68, .8) 45%, rgba(22, 39, 68, .35) 100%); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: #B9C6DD; margin-bottom: 20px; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb .ti { font-size: 13px; color: #7C8BA8; }
.breadcrumb strong { color: #A9D97E; }
.subhero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -.018em; max-width: 20ch; margin-bottom: 18px; }
.subhero h1 em { font-style: normal; color: #A9D97E; }
.subhero p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #D5DEEE; max-width: 58ch; margin-bottom: 28px; }
.subhero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.subhero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 15px; font-weight: 600; color: #C4CFE2; }
.subhero__trust span { display: flex; align-items: center; gap: 8px; }
.subhero__trust .ti { color: #A9D97E; }

/* ---------- Unterseiten-Layout (Sidebar + Content) ---------- */
.subpage { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(28px, 3.6vw, 52px); align-items: start; }
.subnav { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.subnav__box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--shadow); overflow: hidden; }
.subnav__box h3 { font-size: 15px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 20px 22px 12px; }
.subnav__box ul { padding: 0 12px 14px; display: grid; gap: 4px; }
.subnav__box a {
  display: flex; align-items: center; gap: 12px; padding: 12px 12px;
  border-radius: var(--r-s); font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text);
  transition: background .2s, color .2s;
}
.subnav__box a .ti { font-size: 19px; color: var(--muted); transition: color .2s; }
.subnav__box a:hover { background: var(--sky); color: var(--navy); }
.subnav__box a:hover .ti { color: var(--green-dark); }
.subnav__box a.is-active { background: var(--green-tint); color: var(--green-deep); }
.subnav__box a.is-active .ti { color: var(--green-dark); }
.subnav__box a .ti-arrow-right { margin-left: auto; font-size: 15px; opacity: 0; transition: opacity .2s; }
.subnav__box a:hover .ti-arrow-right, .subnav__box a.is-active .ti-arrow-right { opacity: 1; }
.subnav__cta {
  background: linear-gradient(160deg, var(--navy-2), var(--navy) 65%, #23406E);
  border-radius: var(--r-l); color: #DCE4F2; padding: 26px 24px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}
.subnav__cta h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.subnav__cta p { font-size: 14px; color: #B9C6DD; margin-bottom: 16px; }
.subnav__cta .btn { width: 100%; padding: 13px 14px; font-size: 15px; }
.subnav__cta .subnav__tel { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 12px; font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: #fff; }
.subnav__cta .subnav__tel .ti { color: #A9D97E; }

.article { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(40px, 5vw, 60px); }
.article-intro__media { position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16 / 8; }
.article-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.article-intro__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 26, 46, .88), rgba(14, 26, 46, .42) 52%, rgba(14, 26, 46, .12) 100%); }
.article-intro__title { position: absolute; left: clamp(20px, 3vw, 36px); bottom: clamp(18px, 2.6vw, 30px); right: 20px; z-index: 2; }
.article-intro__title .eyebrow { color: #A9D97E; }
.article-intro__title .eyebrow::before { background: #A9D97E; }
.article-intro__title h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-top: 8px; }
.article-body { display: grid; gap: 18px; font-size: 17.5px; }
.article-body p { max-width: 75ch; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 8px; }
.article-body h2 em { font-style: normal; color: var(--green-dark); }

.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 22px 20px; box-shadow: 0 4px 14px rgba(20, 36, 63, .05);
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile .ti { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--green-tint); color: var(--green-dark); font-size: 21px; display: flex; align-items: center; justify-content: center; }
.tile strong { display: block; font-family: var(--font-display); font-size: 15.5px; color: var(--navy); margin-bottom: 3px; }
.tile p { font-size: 14px; color: var(--muted); line-height: 1.5; }

.benefit-box { background: var(--green-tint); border: 1px solid var(--line-green); border-radius: var(--r-l); padding: clamp(26px, 3vw, 38px); }
.benefit-box h3 { font-size: 1.35rem; margin-bottom: 18px; }
.benefit-box ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 26px; }
.benefit-box li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; font-weight: 600; }
.benefit-box .ti { color: var(--green-dark); font-size: 20px; margin-top: 2px; }

.vsteps { display: grid; gap: 0; position: relative; }
.vstep { display: grid; grid-template-columns: 60px minmax(0, 1fr); gap: 20px; padding-bottom: 30px; position: relative; }
.vstep::before { content: ''; position: absolute; left: 29px; top: 60px; bottom: 4px; width: 2px; background: linear-gradient(var(--green), var(--line)); opacity: .5; }
.vstep:last-child::before { display: none; }
.vstep__num {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--green); color: var(--green-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(92, 158, 44, .18);
}
.vstep h3 { font-size: 1.2rem; margin: 8px 0 6px; }
.vstep p { color: var(--muted); font-size: 16px; max-width: 65ch; }
.vstep .pstep__meta { margin-top: 8px; }

/* Vergleichstabelle */
.compare { border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.compare table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { font-family: var(--font-display); font-size: 15px; background: var(--sky); color: var(--navy); }
.compare thead th.is-hl { background: var(--navy); color: #fff; }
.compare thead th.is-hl small { display: block; color: #A9D97E; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 700; color: var(--navy); width: 30%; }
.compare td.is-hl { background: var(--green-tint); font-weight: 600; }
.compare td .ti-check { color: var(--green-dark); margin-right: 6px; }
.compare td .ti-x { color: #C0392B; margin-right: 6px; }
.compare__note { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* CTA-Banner */
.cta-banner { position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-lg); isolation: isolate; padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px); color: #fff; }
.cta-banner__bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(80deg, rgba(14, 26, 46, .93) 20%, rgba(22, 39, 68, .62) 100%); }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 800; max-width: 22ch; margin-bottom: 12px; }
.cta-banner h2 em { font-style: normal; color: #A9D97E; }
.cta-banner p { color: #D5DEEE; font-size: 17px; max-width: 55ch; margin-bottom: 26px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero mit Formular (Variante B) ---------- */
.hero--form { padding: clamp(56px, 6vw, 84px) 0 clamp(110px, 12vw, 150px); }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; }
.hero--form .hero__content { max-width: none; }
.hero__direct { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-bottom: 24px; font-size: 16px; font-weight: 600; color: #EDF1F8; }
.hero__direct a { display: inline-flex; align-items: center; gap: 9px; transition: color .2s; }
.hero__direct a:hover { color: #A9D97E; }
.hero__direct .ti { font-size: 20px; color: #A9D97E; }
.hero__direct a.is-wa .ti { color: var(--wa); }
.hero__direct span.sep { opacity: .4; }

/* ---------- Multi-Step-Formular ---------- */
.msf-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-l); box-shadow: var(--shadow-lg);
  padding: clamp(24px, 2.8vw, 34px);
}
.msf__badge {
  position: absolute; top: -16px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .02em;
  padding: 8px 15px; border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(92, 158, 44, .38);
  transform: rotate(-2deg);
}
.msf__badge .ti { font-size: 16px; }
.msf__head h3 { font-size: 1.35rem; margin-bottom: 5px; }
.msf__head p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.msf__progress { height: 6px; border-radius: 6px; background: var(--sky); margin-bottom: 20px; overflow: hidden; display: none; }
.msf.has-progress .msf__progress { display: block; }
.msf__progress-bar { height: 100%; width: 20%; border-radius: 6px; background: linear-gradient(90deg, var(--green), var(--green-dark)); transition: width .45s var(--ease); }
.msf__step { display: none; }
.msf__step.is-active { display: block; animation: msfIn .35s var(--ease); }
@keyframes msfIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.msf .choice-grid { grid-template-columns: 1fr 1fr; }
.msf .choice span { min-height: 86px; font-size: 14px; }
.msf .form-label:has(+ .choice-grid) { text-align: center; }
.msf__nav { display: flex; flex-direction: column; align-items: center; margin-top: 10px; gap: 4px; }
.msf__hint { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.msf__hint .ti { color: var(--green-dark); font-size: 14px; }
.msf__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--muted);
  padding: 6px 10px; border-radius: var(--r-s); transition: color .2s, background .2s;
}
.msf__back:hover { color: var(--navy); background: var(--sky); }
.msf .btn[type="submit"] { width: 100%; margin-top: 16px; }
.msf .form-hint { margin-top: 12px; }
.msf__google {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line);
}
.msf__google svg { width: 18px; height: 18px; flex-shrink: 0; }
.msf__google-label { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--text); }
.msf__stars { display: inline-flex; gap: 2px; }
.msf__stars .ti { color: #FBBC05; font-size: 15px; }
.msf__google-score { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--navy); }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.msf-card.is-sent .msf__body { display: none; }
.msf-card.is-sent .form-success { display: block; }

/* ---------- Final-CTA ---------- */
.cta-final { position: relative; isolation: isolate; color: #fff; text-align: center; padding: clamp(84px, 10vw, 140px) 0; overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; z-index: -2; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(14, 26, 46, .88), rgba(22, 39, 68, .78) 55%, rgba(14, 26, 46, .92)); }
.cta-final .eyebrow { color: #A9D97E; justify-content: center; }
.cta-final .eyebrow::before { background: #A9D97E; }
.cta-final .eyebrow::after { content: ''; width: 34px; height: 2.5px; border-radius: 2px; background: #A9D97E; }
.cta-final h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -.018em; max-width: 24ch; margin: 16px auto 16px; }
.cta-final h2 em { font-style: normal; color: #A9D97E; }
.cta-final p { color: #D5DEEE; font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 56ch; margin: 0 auto 30px; }
.cta-final__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-final__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 24px; font-size: 15px; font-weight: 600; color: #C4CFE2; }
.cta-final__trust span { display: flex; align-items: center; gap: 8px; }
.cta-final__trust .ti { color: #A9D97E; }

/* ---------- Footer Logo-Plate ---------- */
.footer__logo { height: 155px; width: auto; margin-bottom: 18px; }

/* ---------- Reveal Motion ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .flowline, .flowline::after, .pstep__badge::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* Toast (Unterseiten folgen) */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(20px);
  background: var(--navy-ink); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease); z-index: 100;
  display: flex; align-items: center; gap: 10px; max-width: 92vw; text-align: center;
}
.toast .ti { color: #A9D97E; }
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .subpage { grid-template-columns: 260px minmax(0, 1fr); }
}

@media (max-width: 980px) {
  .nav, .header__cta .btn--primary { display: none; }
  .burger { display: flex; }
  .paths { grid-template-columns: 1fr; }
  .hero__grid, .ba-duo, .why, .area, .contact { grid-template-columns: 1fr; }
  .vn-item { flex-basis: 90%; }
  .vn-arrow { width: 42px; height: 42px; font-size: 19px; }
  .vn-arrow--prev { left: 2px; }
  .vn-arrow--next { right: 2px; }
  .hero--form { padding-bottom: 130px; }
  .why__media { max-width: 560px; aspect-ratio: 4 / 3.4; }
  .contact-card { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .stat + .stat::before { display: none; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .flowline { display: none; }
  .subpage { grid-template-columns: minmax(0, 1fr); }
  .subnav { position: static; grid-template-columns: 1fr 1fr; align-items: stretch; order: 2; }
  .subpage .article { order: 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; }
  /* Globale Button-Regel (Kunden-Vorgabe): mobil immer einzeilig, kompakt, full-width */
  .btn { width: 100%; font-size: 14.5px; padding: 13px 12px; white-space: nowrap; }
  .btn--lg { font-size: 14.5px; padding: 13px 12px; }
  .area-pills { gap: 7px; }
  .area-pills li { font-size: 12.5px; padding: 6px 11px; gap: 5px; }
  .area-pills .ti { font-size: 13px; }
  .topbar__links { gap: 26px; font-size: 13.5px; }
  .brand-img { height: 33px; }
  .header__inner { gap: 12px; }
  .burger { flex-shrink: 0; width: 42px; height: 42px; }
  .hero__kicker { font-size: 10.5px; letter-spacing: .1em; gap: 8px; white-space: nowrap; }
  .hero__kicker::before { width: 20px; flex-shrink: 0; }
  .hero__text { font-size: 15.5px; }
  .hero__title { font-size: clamp(1.45rem, 6.3vw, 1.75rem); white-space: normal; }
  .hero { min-height: 0; padding: 56px 0 130px; }
  .hero__usps { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; padding: 26px 18px; position: relative; }
  .stats::before { content: ''; position: absolute; left: 50%; top: 11%; bottom: 11%; width: 1px; background: rgba(255, 255, 255, .15); }
  .stats::after { content: ''; position: absolute; top: 50%; left: 9%; right: 9%; height: 1px; background: rgba(255, 255, 255, .15); }
  .services { grid-template-columns: 1fr; }
  .msf .choice-grid { grid-template-columns: 1fr 1fr; }
  .msf__badge { right: 12px; font-size: 12px; padding: 7px 12px; }
  .cta-final__actions .btn { width: 100%; }
  .flow-steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .benefit-box ul { grid-template-columns: 1fr; }
  .choice-grid, .choice-grid--4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .subnav { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .sticky-bar { display: grid; }
  .fab { display: none; }
  body { padding-bottom: 74px; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 560px; }
  .section--slant { clip-path: polygon(0 18px, 100% 0, 100% calc(100% - 18px), 0 100%); }
  .article-intro__media { aspect-ratio: 16 / 10; }
  .cta-banner__actions, .cta-final__actions { flex-direction: column; gap: 10px; }
  .cta-banner__actions .btn, .cta-final__actions .btn { width: 100%; padding: 13px 12px; font-size: 14.5px; white-space: nowrap; }
  .subhero { padding-top: 38px; padding-bottom: 52px; }
  .subhero__actions { flex-direction: column; gap: 10px; margin-bottom: 0; }
  .subhero__actions .btn { width: 100%; padding: 11px 12px; font-size: 14.5px; white-space: nowrap; }
  .subhero__trust { display: none; }
  .subnav { grid-template-columns: 1fr; }
  .subnav__cta { display: none; }
}
