:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --text: #212121;
  --muted: #616161;
  --line: #e0e0e0;
  --ink: #212121;
  --header-bg: #0f172a;
  --brand: #1e88e5;
  --brand-dark: #1565c0;
  --brand-soft: rgba(30, 136, 229, 0.14);
  --accent: #2e7d32;
  --accent-soft: rgba(46, 125, 50, 0.16);
  --cta: #f57c00;
  --cta-dark: #e65100;
  --cta-soft: rgba(245, 124, 0, 0.16);
  --band-blue: linear-gradient(120deg, #1e88e5 0%, #1565c0 50%, #0d47a1 100%);
  --shadow: 0 18px 50px rgba(33, 33, 33, 0.07);
  --shadow-sm: 0 4px 14px rgba(33, 33, 33, 0.05);
  --radius: 14px;
  --radius-lg: 20px;
  /* Wenige Textgrößen – ruhigeres Erscheinungsbild */
  --fs-xs: 0.8125rem; /* 13px: Meta, Eyebrows, kleine UI */
  --fs-sm: 0.875rem; /* 14px: Nav, Formularhinweise */
  --fs-md: 1rem; /* 16px: Standard-Fließtext */
  --fs-lg: 1.125rem; /* 18px: Leads, kurze Einleitungen */
  --fs-section-title: clamp(1.5rem, 2.75vw, 2rem); /* Sektionsüberschriften */
  --fs-hero-slide: clamp(1.65rem, 3.5vw, 2.35rem); /* Hero-Zwischenfolien-Titel */
  --fs-hero-h1: clamp(1.85rem, 4vw, 2.65rem); /* Haupt-Hero-Titel */
  --fs-hero-legacy: clamp(2rem, 4vw, 2.75rem); /* Hero / alte Startseiten-Titel */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: var(--fs-md);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Unterseiten: gleiche Schriftglättung / Grundtypografie wie Startseite */
body.page-site {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
nav,
.nav {
  font-family: Montserrat, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

a {
  color: var(--brand-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Seitenanfang für #top / Logo-Link — nicht auf <a>, damit kein Fokus-Rahmen am Logo */
.scroll-target {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.scroll-target:focus {
  outline: none;
}

.scroll-target:focus-visible {
  outline: none;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 8px;
  z-index: 100;
  box-shadow: var(--shadow);
}

.container {
  width: min(1397px, 100% - 40px);
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--header-bg);
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 10px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

.topbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__pill svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: var(--fs-xs);
  text-decoration: none !important;
}

.topbar__cta:hover {
  background: var(--cta-dark);
  text-decoration: none !important;
}

/* ——— Seitenkopf (nur .site-header, nicht z. B. FAQ-<header>) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: var(--fs-lg);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* Mausklick: kein Rahmen am Logo; Tastatur: weiterhin :focus-visible (globale a-Regel) */
a.logo:focus:not(:focus-visible) {
  outline: none;
}

.logo svg {
  flex-shrink: 0;
}

.logo svg path {
  stroke: rgba(255, 255, 255, 0.92);
}

.logo .logo__icon {
  flex-shrink: 0;
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.logo span.accent {
  color: var(--cta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  font-size: var(--fs-md);
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  color: #fff;
  box-shadow: 0 10px 28px rgba(245, 124, 0, 0.38);
}

.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(245, 124, 0, 0.45);
}

.btn--outline {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--line);
}

.btn--outline:hover {
  border-color: #cbd5e1;
}

.btn--light {
  background: #fff;
  color: var(--brand-dark);
  border: 2px solid transparent;
}

.btn--light:hover {
  box-shadow: var(--shadow-sm);
}

.btn--block {
  width: 100%;
}

.btn__sub {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  opacity: 0.92;
  margin-top: 2px;
}

.btn:has(.btn__sub) {
  flex-direction: column;
  gap: 2px;
  padding-block: 14px;
  text-align: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background:
    linear-gradient(165deg, #fff 0%, #f8fafc 45%, #eef2f7 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(30, 136, 229, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(46, 125, 50, 0.07), transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
}

/* Vollbreite Hero mit Hintergrund bis unter die Tabs */
.hero.hero--bleed {
  padding: 0;
  background: transparent;
  overflow-x: clip;
}

.hero.hero--bleed::before {
  display: none;
}

.hero.hero--bleed .hero-slider {
  position: relative;
}

/* ——— Hero-Karussell ——— */
.hero-slider {
  position: relative;
}

.hero-slider:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
  border-radius: 12px;
}

.hero-slider__stage {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-slider__main {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  height: 700px;
  max-height: 700px;
  min-height: 0;
  overflow: hidden;
}

.hero-slider__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero-slider__viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-active-bg);
  background-size: cover;
  background-position: var(--hero-bg-position, center center);
  background-repeat: no-repeat;
}

.hero-slider__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(248, 250, 252, 0.72) 34%,
    rgba(248, 250, 252, 0.52) 52%,
    rgba(255, 255, 255, 0.24) 100%
  );
  pointer-events: none;
}

.hero-slider__track {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex: 1 1 auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.hero-slider__slide-inner {
  padding: clamp(22px, 4vw, 44px) 0 clamp(28px, 5vw, 52px);
}

.hero.hero--bleed .hero-slider__slide-inner {
  padding: clamp(12px, 2.2vw, 24px) 0 clamp(10px, 2vw, 20px);
}

.hero-slider__slide .hero-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-color: rgba(226, 232, 240, 0.98);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.hero-slider__controls {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(8px, 2vw, 16px);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  pointer-events: none;
  background: none;
  border: none;
  backdrop-filter: none;
}

.hero-slider__arrow {
  position: relative;
  z-index: 11;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 18, 32, 0.35);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hero-slider__arrow:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(10, 18, 32, 0.5);
  color: #fff;
}

.hero-slide-title {
  font-size: var(--fs-hero-legacy);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    transition: none;
  }

  .hero-slider__viewport::before,
  .hero-slider__viewport::after {
    transform: none;
  }

}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}

.hero-welcome {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--brand);
  margin: 0 0 10px;
}

h1 {
  font-size: var(--fs-hero-legacy);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* H1 außerhalb Hero: Sektionsgröße statt globalem Hero-Mega-Titel */
.seo-article h1,
.page-site .seo-hub-hero h1,
.legal h1 {
  font-size: var(--fs-section-title);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}

.lead {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 54ch;
}

.hero .lead {
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  font-size: var(--fs-md);
  color: var(--ink);
  font-weight: 700;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust svg {
  color: var(--ink);
  flex-shrink: 0;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-md);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand);
}

/* ——— Highlights (4 Spalten) ——— */
.highlights {
  padding: 56px 0;
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 55%, #0a3d91 100%);
  border-block: none;
  color: rgba(255, 255, 255, 0.92);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight {
  text-align: center;
  padding: 8px 12px;
}

.highlight__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight:nth-child(even) .highlight__icon {
  background: rgba(46, 125, 50, 0.38);
  color: #c8e6c9;
}

.highlights .highlight h3 {
  color: #fff;
}

.highlights .highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.highlight h3 {
  margin: 0 0 8px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.highlight p {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Vorher / Nachher (Karussell) ——— */
.vorher-nacher {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.vorher-nacher__carousel {
  position: relative;
  padding: 0;
  margin-top: 8px;
}

.vorher-nacher__carousel:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
  border-radius: var(--radius-lg);
}

.vorher-nacher__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #e2e8f0;
  box-shadow: var(--shadow);
}

.vorher-nacher__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .vorher-nacher__track {
    transition: none;
  }
}

.vorher-nacher__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.vorher-nacher__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-height: 0;
}

@media (max-width: 640px) {
  .vorher-nacher__row {
    grid-template-columns: 1fr;
  }
}

.vorher-nacher__shot {
  position: relative;
  overflow: hidden;
  background: #cbd5e1;
  min-height: 0;
  aspect-ratio: 5 / 3;
}

.vorher-nacher__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vorher-nacher__shot--pan-left img {
  object-position: 18% center;
}

.vorher-nacher__shot--pan-right img {
  object-position: 82% center;
}

.vorher-nacher__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.vorher-nacher__badge--vorher {
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
}

.vorher-nacher__badge--nachher {
  background: rgba(245, 124, 0, 0.95);
  color: #fff;
}

.vorher-nacher__caption {
  margin: 0;
  padding: 16px 20px 20px;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.vorher-nacher__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.vorher-nacher__arrow:hover {
  background: #fff;
  color: var(--cta-dark);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.18);
}

.vorher-nacher__arrow--prev {
  left: 12px;
}

.vorher-nacher__arrow--next {
  right: 12px;
}

@media (max-width: 520px) {
  .vorher-nacher__arrow {
    width: 44px;
    height: 44px;
  }

  .vorher-nacher__arrow--prev {
    left: 8px;
  }

  .vorher-nacher__arrow--next {
    right: 8px;
  }

  .vorher-nacher__arrow svg {
    width: 22px;
    height: 22px;
  }
}

.vorher-nacher__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.vorher-nacher__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.vorher-nacher__dot:hover {
  border-color: #cbd5e1;
}

.vorher-nacher__dot.is-active {
  border-color: var(--cta);
  background: var(--cta);
  transform: scale(1.15);
}

/* ——— Stats ——— */
.stats {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stat-card__num {
  font-size: var(--fs-section-title);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-card__label {
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: var(--fs-md);
}

.stat-card p {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
}

/* ——— Intro / Über uns ——— */
.section-intro {
  padding: 64px 0;
  background: var(--surface);
}

.section-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.video-text-split {
  padding: 56px 0;
}

.video-text-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-text-split__copy .section-eyebrow {
  margin-bottom: 10px;
}

.video-text-split__copy h2 {
  margin: 0 0 14px;
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.video-text-split__lead,
.video-text-split__more {
  margin: 0 0 14px;
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.55;
}

.video-text-split__more:last-child {
  margin-bottom: 0;
}

.video-text-split__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #0f172a;
}

.video-text-split__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-text-split__brand {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  max-width: min(calc(100% - 20px), 260px);
  padding: 0;
  pointer-events: none;
}

.video-text-split__brand .logo--on-video {
  color: #fff;
  gap: 8px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
}

.video-text-split__brand .logo__icon {
  width: 44px;
  height: 44px;
}

.video-text-split__brand .logo__name {
  font-size: 1rem;
}

.video-text-split__brand .logo__name--brand {
  color: #90caf9;
}

.video-text-split__brand .logo__name--white,
.video-text-split__brand .logo__name--white .accent {
  color: #fff;
}

.video-text-split__brand .logo__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.45em;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.95);
}

.video-text-split__brand .logo__tagline-part {
  flex: 0 0 auto;
  white-space: nowrap;
}

.section-intro h2 {
  font-size: var(--fs-section-title);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-intro .lead-block {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-lg);
}

.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tick-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
}

.tick-list li:last-child {
  border-bottom: none;
}

.tick-list svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

/* ——— Generic sections ——— */
section {
  padding: 31px 0;
}

.section--alt,
.section--surface {
  background: var(--surface);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: var(--fs-section-title);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-lg);
}

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  padding: 26px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.section--alt .step {
  background: #f5f5f5;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
  font-size: var(--fs-md);
  margin: 0;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
}

.step h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 2px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.step p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Packages (Preis/Leistung) ——— */
#preise {
  scroll-margin-top: 88px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.package {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.package__media {
  margin: -28px -24px 18px -24px;
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
  overflow: hidden;
}

.package__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package--featured {
  border-color: rgba(245, 124, 0, 0.45);
  box-shadow: 0 20px 50px rgba(245, 124, 0, 0.14);
  position: relative;
}

.package__badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--cta);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.38);
}

.package h3 {
  margin: 0 0 12px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.package > p {
  margin: 0 0 18px;
  font-size: var(--fs-md);
  color: var(--muted);
}

.package ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}

.package li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--fs-md);
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.package li:last-child {
  border-bottom: none;
}

.package li svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 3px;
}

.price-hint {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: #eeeeee;
  border-radius: var(--radius);
  font-size: var(--fs-md);
  color: var(--muted);
}

.price-hint strong {
  color: var(--ink);
}

/* ——— Dachfläche & Kosten (Rechner) ——— */
#dachrechner {
  scroll-margin-top: 88px;
}

.roof-calc-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background: var(--surface);
}

.roof-calc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.roof-calc__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
  padding: clamp(22px, 3vw, 30px) clamp(20px, 2.5vw, 28px);
  min-width: 0;
}

.roof-calc__title {
  margin: 0 0 20px;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.roof-calc__title--result {
  margin-bottom: 18px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.roof-calc__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roof-calc__field label {
  display: block;
  margin-bottom: 6px;
  font-family: Roboto, sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.roof-calc__field input,
.roof-calc__field select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font: inherit;
  font-size: var(--fs-md);
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9c2b8;
  border-radius: 10px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.roof-calc__field input:focus,
.roof-calc__field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.roof-calc__submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 22px;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: #22c55e;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.roof-calc__submit:hover {
  background: #16a34a;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.38);
}

.roof-calc__submit:active {
  transform: scale(0.99);
}

.roof-calc__disclaimer {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.roof-calc__output {
  margin: 0;
  padding: 0;
}

.roof-calc__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: Roboto, sans-serif;
  font-size: var(--fs-md);
}

.roof-calc__row:last-child {
  border-bottom: none;
}

.roof-calc__row dt {
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.roof-calc__row dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.roof-calc__row--total dt {
  color: var(--ink);
  font-weight: 700;
}

.roof-calc__total-value {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .roof-calc__grid {
    grid-template-columns: 1fr;
  }
}

/* ——— FAQ + Einsatzgebiete (zweispaltig) ——— */
.faq-section {
  padding: clamp(48px, 6vw, 72px) 0;
  background: linear-gradient(180deg, #e8eef5 0%, #e2e9f2 50%, #dde5f0 100%);
}

.faq-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 28px 36px;
  align-items: start;
}

.faq-section__col {
  min-width: 0;
}

.faq-section__col--faq {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  padding: clamp(20px, 3vw, 28px) clamp(18px, 2.5vw, 26px) clamp(22px, 3vw, 30px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(30, 136, 229, 0.12);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.faq-section__col--regions {
  padding-top: clamp(4px, 1vw, 10px);
}

.faq-section__kicker {
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  line-height: 1.25;
}

.faq-section__regions-tagline {
  margin: 0 0 22px;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  line-height: 1.45;
  color: #1a1a1a;
  max-width: 34ch;
}

.faq-section__cities {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  color: #1a1a1a;
}

.faq-section__cities li {
  position: relative;
  padding-left: 26px;
  line-height: 1.4;
}

.faq-section__cities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%231e88e5' stroke-width='2'%3E%3Cpath d='M9 17s6-4.35 6-10a6 6 0 1 0-12 0c0 5.65 6 10 6 10z'/%3E%3Ccircle cx='9' cy='7' r='2' fill='%231e88e5' stroke='none'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.faq-section__regions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 4px;
  border: none;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(180deg, #2196f3 0%, #1e88e5 55%, #1976d2 100%);
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.35);
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.faq-section__regions-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(30, 136, 229, 0.42);
}

.faq-section__faq-head {
  margin: 0 0 22px;
  text-align: left;
}

.faq-section__faq-title {
  margin: 0 0 12px;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-section .faq-item {
  margin: 0;
  border: 1px solid #e4e7ec;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-section .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  cursor: pointer;
  list-style: none;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: var(--fs-md);
  color: #1a1a1a;
  line-height: 1.4;
}

.faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-section .faq-item summary::marker {
  content: "";
}

.faq-section .faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15em;
  font-weight: 500;
  color: #1e88e5;
  line-height: 1;
}

.faq-section .faq-item[open] summary::after {
  content: "−";
  font-size: var(--fs-lg);
}

.faq-section .faq-item[open] summary {
  border-bottom: 1px solid #eceff3;
}

.faq-section .faq-item > p {
  margin: 0;
  padding: 14px 20px 20px;
  font-family: Montserrat, sans-serif;
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.62;
  color: #4b5563;
}

@media (max-width: 1024px) {
  .faq-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px 32px;
  }
}

@media (max-width: 820px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-section__col--regions {
    padding-top: 0;
  }
}

/* ——— Contact ——— */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

form label {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: 6px;
  color: var(--ink);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  margin-bottom: 14px;
  background: var(--surface);
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-aside {
  padding: 28px;
  background: var(--band-blue);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.92);
}

.contact-aside h3 {
  margin: 0 0 12px;
  font-size: var(--fs-lg);
  color: #fff;
}

.contact-aside > p {
  margin: 0 0 16px;
  font-size: var(--fs-md);
  opacity: 0.9;
}

.contact-aside__photo {
  margin: 0 0 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(13, 71, 161, 0.35);
}

.contact-aside__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: var(--fs-md);
}

.contact-line a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-line svg {
  flex-shrink: 0;
  color: #ffcc80;
  margin-top: 3px;
}

/* ——— CTA banner ——— */
.cta-banner {
  padding: 56px 0;
  background: var(--band-blue);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-size: var(--fs-section-title);
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin: 0 0 24px;
  max-width: 520px;
  margin-inline: auto;
  opacity: 0.9;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ——— Footer ——— */
footer {
  padding: 48px 0 32px;
  background: #0a1628;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--fs-sm);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-right: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
}

/* ——— Vorher/Nachher-Leiste (Kästen, volle Breite) ——— */
#vorher-nachher-slider {
  scroll-margin-top: 88px;
}

.themen-vn-marquee {
  padding: 40px 0 36px;
  background: var(--bg);
}

.themen-vn-marquee__intro {
  margin-bottom: 14px;
}

.themen-vn-marquee__wrap {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.themen-vn-marquee__viewport {
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: default;
}

.themen-vn-marquee__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.themen-vn-marquee__viewport:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.themen-vn-marquee__track {
  display: flex;
  width: max-content;
}

.themen-vn-marquee__cell {
  flex: 0 0 calc(413px * 2);
  min-width: 0;
}

.themen-vn-marquee__pair {
  display: flex;
  width: calc(413px * 2);
  height: 275px;
  border-right: 1px solid var(--line);
  box-sizing: border-box;
}

.themen-vn-marquee__cell:first-child .themen-vn-marquee__pair {
  border-left: 1px solid var(--line);
}

.themen-vn-marquee__half {
  position: relative;
  flex: 0 0 413px;
  width: 413px;
  height: 275px;
  background: #e5e7eb;
}

.themen-vn-marquee__half img {
  display: block;
  width: 413px;
  height: 275px;
  object-fit: cover;
}

.themen-vn-marquee__pair--komposit {
  display: block;
  position: relative;
  overflow: hidden;
  height: 275px;
}

.themen-vn-marquee__pair--komposit img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 275px;
  object-fit: cover;
  object-position: center;
}

.themen-vn-marquee__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
  transition: background 0.15s ease, color 0.15s ease;
}

.themen-vn-marquee__btn:hover {
  background: #fff;
  color: var(--brand-dark);
}

.themen-vn-marquee__btn--prev {
  left: 10px;
}

.themen-vn-marquee__btn--next {
  right: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .themen-vn-marquee__viewport {
    scroll-behavior: auto;
  }
}

/* ——— Einsatzgebiete (regionaler Hub) / SEO-Unterseiten ——— */
.themenseiten-teaser {
  padding: 72px 0;
}

.themenseiten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.themenseiten-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.themenseiten-card:hover {
  border-color: rgba(30, 136, 229, 0.4);
  box-shadow: var(--shadow);
}

.themenseiten-card h3 {
  margin: 0 0 8px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.themenseiten-card p {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
  flex: 1;
}

.themenseiten-card .more {
  margin-top: 14px;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--brand-dark);
}

.seo-hub-hero {
  padding: 48px 0 40px;
  background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}

.seo-hub-hero__title {
  margin: 0 0 14px;
  font-size: var(--fs-section-title);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.seo-hub-hero__lead {
  margin: 0;
  max-width: 100%;
  width: 100%;
  font-size: var(--fs-lg);
  color: var(--muted);
  line-height: 1.55;
}

.seo-hub-hero__lead p {
  margin: 0 0 1rem;
}

.seo-hub-hero__lead ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.seo-hub-hero__lead li {
  margin-bottom: 0.35em;
}

.seo-hub-hero__lead li:last-child {
  margin-bottom: 0;
}

.seo-hub-body {
  padding-top: 40px;
  padding-bottom: 72px;
}

.seo-hub-section-title {
  margin: 0 0 16px;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.seo-hub-section-title--small {
  margin: 0 0 12px;
  font-size: var(--fs-md);
}

.seo-hub-checklist {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 65ch;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text);
}

.seo-hub-outro {
  width: 100%;
  max-width: 100%;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text);
}

.seo-hub-outro p {
  margin: 0 0 1rem;
}

.seo-hub-outro p:last-child {
  margin-bottom: 0;
}

.seo-hub-outro a {
  color: var(--cta-dark);
  font-weight: 700;
}

.seo-hub-body .seo-cta-bar {
  margin-top: 32px;
}

.seo-cta-bar__hint {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.seo-hub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.seo-hub-list--cities {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.seo-hub-lead-secondary {
  margin: -8px 0 20px;
  max-width: 70ch;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--muted);
}

.seo-hub-item {
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.seo-hub-item:hover {
  border-color: rgba(30, 136, 229, 0.45);
  box-shadow: var(--shadow-sm);
}

.seo-hub-item strong {
  color: var(--ink);
  font-size: var(--fs-lg);
}

.seo-hub-item span {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.seo-hub-item--muted {
  border-style: dashed;
  opacity: 0.95;
}

.breadcrumb {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cta-dark);
}

.seo-article {
  padding: 40px 0 72px;
  background: var(--surface);
}

.seo-article .narrow {
  max-width: 100%;
  margin-inline: auto;
}

.seo-article h1 {
  margin: 0 0 14px;
}

.seo-article .sub {
  font-size: var(--fs-lg);
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.seo-article h2 {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
  color: var(--ink);
}

.seo-article p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.seo-article ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.seo-cta-bar {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

/* ——— Legal subpages ——— */
.page {
  padding: 40px 0 72px;
}

.page--legal {
  background: var(--surface);
}

.legal {
  max-width: 100%;
}

.legal h1 {
  margin: 0 0 10px;
}

.legal .meta {
  font-size: var(--fs-md);
  color: var(--muted);
  margin: 0 0 28px;
}

.legal h2 {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
  color: var(--ink);
}

.legal p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.legal li {
  margin-bottom: 6px;
}

.legal address {
  font-style: normal;
  margin-bottom: 14px;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.legal a {
  word-break: break-word;
}

.legal-backlink {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .themenseiten-grid {
    grid-template-columns: 1fr 1fr;
  }

  .packages {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .package--featured {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .section-intro__grid,
  .video-text-split__grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-width: 220px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--ink);
  }

  .nav-links a:hover {
    color: var(--brand-dark);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav .btn--primary {
    display: none;
  }
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .themenseiten-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-cta .btn {
    width: 100%;
  }

  /* Mobile Header: verhindert Überdeckung von Menü/Logo */
  .site-header--landing .site-header__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header--landing .logo--stacked {
    width: 100%;
    justify-content: flex-start;
  }

  .site-header--landing .logo__tagline {
    display: none;
  }

  .site-header--landing .logo .logo__icon {
    width: 46px;
    height: 46px;
  }

  .site-header--landing .logo__name {
    font-size: 0.95rem;
  }

  .site-header--landing .menu-toggle {
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 4px;
  }

  /* Optional: Actions umbrechen statt überdecken */
  .site-header--landing .site-header__actions {
    max-width: 100%;
  }

  /* Menü unter dem Logo statt überlagernd */
  .site-header--landing .site-header__nav {
    width: 100%;
    order: 10;
  }

  .site-header--landing .nav-links {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin-top: 10px;
    width: 100%;
  }

  /* Hero/Slider: verhindert abgeschnittene Oberkante auf kleinen Displays */
  .hero-slider__main {
    height: auto;
    max-height: none;
    min-height: min(640px, 78svh);
  }

  .hero.hero--bleed .hero-slider__slide-inner {
    padding-top: 18px;
  }

  .page-home .hero-slider__viewport::before {
    background-position: center top !important;
  }
}

/* ——— Startseite Referenzlayout (Dachreiniger24) ——— */
.site-header--landing {
  position: relative;
  z-index: 55;
}

.site-header--landing .site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 12px 0;
  position: relative;
}

.logo--stacked {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.logo__name {
  font-weight: 800;
  font-size: var(--fs-lg);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.site-header--landing .logo__name--brand,
.footer--landing .logo__name--brand {
  color: #90caf9;
}

.site-header--landing .logo__name--white,
.site-header--landing .logo__name--white .accent,
.footer--landing .logo__name--white,
.footer--landing .logo__name--white .accent {
  color: #fff;
}

.logo__tagline {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.site-header--landing .logo__tagline,
.footer--landing .logo__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.5em;
  max-width: 100%;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.site-header--landing .logo__tagline-part,
.footer--landing .logo__tagline-part {
  flex: 0 0 auto;
  white-space: nowrap;
}

.footer-brand-block .logo.logo--footer {
  margin-bottom: 0;
  align-items: flex-start;
}

.footer-brand-block .footer-lead {
  margin-top: 14px;
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-links--caps a {
  text-transform: uppercase;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff !important;
}

.nav-links--caps a:hover {
  color: #90caf9 !important;
}

.site-header--landing .nav-links {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 6px 10px;
}

.site-header--landing .nav-links a {
  padding: 4px 6px;
  border-radius: 4px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.site-header__call-cta {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.header-phone:hover .header-phone__num {
  color: #b3e5fc;
  text-decoration: none;
}

.header-phone__icon {
  display: flex;
  flex-shrink: 0;
  align-self: center;
}

.header-phone__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.header-phone__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.15;
  min-width: 0;
}

.header-phone__label {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.header-phone__num {
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
  color: #90caf9;
  white-space: nowrap;
}

a[href="tel:+4959575174188"]:not(.header-phone),
.btn--hero-call {
  white-space: nowrap;
}

.btn--header-cta {
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  padding: 11px 18px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-home .hero-slider__viewport::after {
  background: linear-gradient(
    95deg,
    rgba(8, 12, 22, 0.97) 0%,
    rgba(8, 12, 22, 0.9) 28%,
    rgba(8, 12, 22, 0.55) 46%,
    rgba(8, 12, 22, 0.12) 62%,
    transparent 78%
  ) !important;
}

.page-home .hero-slider__slide .hero-eyebrow {
  margin: 0 0 12px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff8c00;
}

.page-home .hero-slider__slide .hero-lead {
  color: #fff;
  font-weight: 400;
  max-width: 38ch;
  font-size: var(--fs-lg) !important;
  line-height: 1.55 !important;
  margin-bottom: 18px !important;
}

.page-home .hero-slider__slide .hero-checklist,
.page-home .hero-slider__slide .hero-checklist li {
  color: #fff;
}

.page-home .hero-slider__slide .hero-checklist {
  margin-bottom: 22px;
}

.page-home .hero-slider__slide .hero-checklist li {
  padding: 6px 0;
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.page-home .hero-slider__slide .hero-checklist svg {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: #2196f3;
}

.page-home .hero-slider__slide .hero-title-caps,
.page-home .hero-slider__slide .hero-slide-title.hero-title-caps {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

.page-home .hero-slider__slide h1.hero-title-caps {
  color: #fff;
  font-size: var(--fs-hero-h1);
  line-height: 1.06;
  margin: 0 0 12px;
}

.page-home .hero-slider__slide .hero-slide-title.hero-title-caps {
  font-size: var(--fs-hero-slide);
  line-height: 1.08;
  margin: 0 0 12px;
}

.page-home .hero-cta--landing {
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

@media (min-width: 720px) {
  .page-home .hero-cta--landing {
    flex-wrap: nowrap;
    align-items: center;
  }
}

.page-home .hero-cta--landing .btn--primary.btn--hero-lg {
  border-radius: 5px;
  padding: 17px 26px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: #ff8c00;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 720px) and (max-width: 960px) {
  .page-home .hero-cta--landing .btn--primary.btn--hero-lg {
    font-size: var(--fs-xs);
    padding: 16px 18px;
    letter-spacing: 0.07em;
  }
}

.page-home .hero-cta--landing .btn--primary.btn--hero-lg:hover {
  background: #f57c00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.page-home .hero-cta--landing .btn--hero-call {
  border-radius: 5px;
  padding: 14px 20px;
  font-size: var(--fs-md);
  font-weight: 700;
  background: rgba(10, 14, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.page-home .hero-cta--landing .btn--hero-call:hover {
  background: rgba(18, 24, 34, 0.95);
  border-color: #fff;
}

.page-home .hero-cta--landing .btn--hero-call__phone-ico {
  stroke: #ff8c00;
}

.page-home .hero-slider__slide .hero-slide-title {
  color: #fff;
}

.hero-grid--landing {
  grid-template-columns: minmax(0, 1fr);
  max-width: min(640px, 100%);
}

.page-home .hero.hero--bleed .hero-slider__slide-inner .hero-grid--landing {
  max-width: min(560px, 100%);
}

@media (min-width: 1024px) {
  .page-home .hero.hero--bleed .hero-slider__slide-inner .hero-grid--landing {
    max-width: min(560px, 44%);
  }
}

.hero-eyebrow {
  margin: 0 0 10px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta);
}


.hero-title-caps {
  font-size: var(--fs-hero-slide);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 22px !important;
}

.hero-checklist {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.hero-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.45;
}

.hero-checklist svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #2196f3;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.hero-cta--landing {
  gap: 14px;
  margin-bottom: 0 !important;
}

.btn--hero-lg {
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  padding: 16px 26px;
  border-radius: 8px;
}

.btn--hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff !important;
  font-weight: 700;
  font-size: var(--fs-md);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn--hero-call:hover {
  background: rgba(0, 0, 0, 0.52);
  border-color: #fff;
}

.btn--hero-call__phone-ico {
  stroke: var(--cta);
}

.page-home .hero.hero--bleed .hero-slider__slide-inner {
  padding: clamp(14px, 2.2vw, 28px) 0 clamp(10px, 1.5vw, 18px);
  box-sizing: border-box;
}

.page-home .hero-slider__slide {
  justify-content: center;
}

.highlights--trust {
  padding: 48px 0;
  background: #060d18 !important;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.highlights--trust .highlight__icon--round {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: #1e88e5;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.highlights--trust .highlight:nth-child(even) .highlight__icon--round {
  background: #1e88e5;
  color: #fff;
}

.highlights--trust .highlight h3 {
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  font-weight: 800;
}

.highlights--trust.highlights--hero-band {
  padding: 22px 0 26px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  background: #1a202c !important;
  position: relative;
  z-index: 6;
}

.hero-slider__main > .highlights--trust.highlights--hero-band {
  flex-shrink: 0;
  border-top: none;
  box-shadow: none;
  padding: 14px 0 16px;
  background: #0a0e14 !important;
}

.hero-slider__main > .highlights--trust.highlights--hero-band .highlights__grid {
  gap: 12px 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.hero-slider__main > .highlights--trust.highlights--hero-band .highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
  text-align: left;
  padding: 6px 4px;
}

.hero-slider__main > .highlights--trust.highlights--hero-band .highlight__icon--round {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 48px;
  height: 48px;
  margin: 0;
  align-self: center;
}

.hero-slider__main > .highlights--trust.highlights--hero-band .highlight h3 {
  grid-column: 2;
  grid-row: 1;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.25;
}

.hero-slider__main > .highlights--trust.highlights--hero-band .highlight p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .hero-slider__main > .highlights--trust.highlights--hero-band .highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-slider__main > .highlights--trust.highlights--hero-band .highlights__grid {
    grid-template-columns: 1fr;
  }

}

.section-eyebrow {
  margin: 0 0 10px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
}

.section-eyebrow--on-blue {
  color: #ffb74d;
}

.heading-caps {
  margin: 0 0 14px;
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0a1628;
}

.heading-caps--light {
  color: #fff;
}

section.vn-landing.section--surface {
  background: #eceff1;
  padding-top: 64px;
  padding-bottom: 64px;
}

.vn-landing__split {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 40px 44px;
  align-items: center;
}

.vn-landing__col-text {
  padding-top: 0;
  max-width: min(100%, 22rem);
  min-width: 0;
}

.vn-landing__col-text .section-eyebrow {
  margin: 0 0 14px;
  color: #ff8c00;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.vn-landing__col-text .heading-caps {
  text-align: left;
  margin: 0 0 14px;
  font-size: var(--fs-lg);
  letter-spacing: 0.028em;
  color: #0a1628;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .vn-landing__col-text .heading-caps {
    white-space: normal;
  }
}

.vn-landing__intro {
  margin: 0 0 22px;
  color: #5c6570;
  font-size: var(--fs-md);
  line-height: 1.6;
  max-width: 36ch;
}

.btn--blue-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  background: #1e88e5;
  color: #fff !important;
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.vn-landing .btn--vn-cta {
  border-radius: 5px;
  padding: 14px 22px;
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  white-space: nowrap;
  background: #1e88e5;
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.28);
}

.vn-landing .btn--vn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.38);
}

.btn--blue-outline:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(30, 136, 229, 0.35);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 0;
}

.compare {
  margin: 0;
}

.compare__frame {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a1628;
  box-shadow: var(--shadow);
}

.vn-landing .compare__frame {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  aspect-ratio: unset;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
}

.compare--static .compare__frame--static {
  padding: 0;
}

.compare__static-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare__after {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare__clip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid rgba(255, 255, 255, 0.98);
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.2);
}

.compare__before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.compare__badge {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare__badge--vorher {
  left: 14px;
  background: #0a0a0a;
  color: #fff;
}

.compare__badge--nachher {
  right: 14px;
  background: #1e88e5;
  color: #fff;
}

.vn-landing .compare__badge {
  top: auto;
  bottom: 12px;
  padding: 7px 12px;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}

.vn-landing .compare__badge--vorher {
  left: 12px;
  top: auto;
  background: #1a1f26;
}

.vn-landing .compare__badge--nachher {
  right: 12px;
  top: auto;
}

.compare__handle {
  position: absolute;
  left: var(--compare-pos, 50%);
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare__handle-knob {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #1e88e5;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(10, 22, 40, 0.12);
}

.compare__handle-knob svg {
  opacity: 0.9;
  stroke: #1e88e5;
}

.compare__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: ew-resize;
  opacity: 0.01;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.compare__caption {
  margin: 12px 0 0;
  text-align: center;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--muted);
}

.vn-landing .compare__caption {
  margin-top: 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: #6b7280;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-band {
  padding: 48px 0 52px;
  background: #1e88e5;
  color: #fff;
}

.contact-band__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr) minmax(140px, 200px);
  gap: 28px 36px;
  align-items: start;
}

.contact-band__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.contact-band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 14px;
}

.contact-band__eyebrow {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffb74d;
  flex-shrink: 0;
}

.contact-band__title {
  margin: 0;
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  flex: 0 1 auto;
  min-width: 0;
}

.contact-band__lead {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 38ch;
}

.contact-band__fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 12px;
  align-items: stretch;
  min-width: 0;
}

.contact-band__fields > .cb-field:nth-child(1),
.contact-band__fields > .cb-field:nth-child(2),
.contact-band__fields > .cb-field:nth-child(3) {
  grid-column: span 2;
}

.contact-band__fields > .cb-field:nth-child(4),
.contact-band__fields > .cb-field:nth-child(5) {
  grid-column: span 3;
}

.cb-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.contact-band__fields input {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-radius: 6px;
  margin: 0;
  padding: 12px 14px;
  font-family: Roboto, sans-serif;
  font-size: var(--fs-md);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-band__fields input::placeholder {
  color: #9e9e9e;
  opacity: 1;
}

.contact-band__fields input:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.contact-band__submit-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}

.btn--contact-band-submit {
  width: 100%;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  padding: 16px 14px;
  font-weight: 800;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.contact-band__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.contact-band__privacy svg {
  flex-shrink: 0;
  opacity: 0.95;
}

.footer-grid--4 {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.footer-kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-kontakt-row:last-child {
  margin-bottom: 0;
}

.footer-kontakt-row__icon {
  flex-shrink: 0;
  display: flex;
  color: #1e88e5;
  margin-top: 2px;
}

.footer-col--kontakt a {
  color: #e2e8f0;
}

.footer-bottom--landing {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px 20px;
}

.footer-bottom--landing .footer-bottom__copy {
  justify-self: start;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom--landing .footer-bottom__legal {
  justify-self: end;
  text-align: right;
}

.footer-bottom--landing .footer-bottom__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin: 0 10px;
  font-size: var(--fs-sm);
}

.footer-bottom--landing .footer-bottom__legal a:hover {
  color: #fff;
}

.footer-lead {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-md);
}

@media (min-width: 961px) {
  .site-header--landing .site-header__inner {
    display: grid;
    /* Wie Startseite: Logo-Spalte behält Breite (nicht durch breitere Navigation gestaucht) */
    grid-template-columns: max-content auto minmax(0, 1.1fr);
    align-items: center;
    gap: 16px 32px;
  }

  .site-header--landing .logo--stacked {
    grid-column: 1;
    justify-self: start;
  }

  .site-header--landing .site-header__nav {
    grid-column: 2;
    justify-self: center;
    /* Luft zwischen letztem Nav-Link und Telefon/CTA */
    padding-inline-end: clamp(32px, 4vw, 56px);
  }

  .site-header--landing .site-header__actions {
    grid-column: 3;
    justify-self: end;
  }

  .site-header--landing .menu-toggle {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-header--landing .site-header__nav {
    flex: none;
    width: 100%;
    order: 10;
  }

  .site-header--landing .nav-links {
    position: absolute;
    right: 20px;
    left: 20px;
    top: calc(100% + 6px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px 0;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .site-header--landing .nav-links a {
    color: var(--ink) !important;
  }

  .site-header--landing .nav-links a:hover {
    color: var(--brand-dark) !important;
  }

  .site-header--landing .logo--stacked {
    flex: 1;
    min-width: 0;
  }

  .site-header--landing .menu-toggle {
    order: 2;
  }

  .site-header--landing .site-header__actions {
    order: 3;
    margin-left: auto;
    max-width: calc(100% - 120px);
  }

  .site-header__call-cta {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 10px;
  }

  .btn--header-cta {
    font-size: var(--fs-xs);
    padding: 9px 12px;
  }
}

@media (max-width: 900px) {
  .vn-landing__split {
    grid-template-columns: 1fr;
  }

  .vn-landing__col-text {
    max-width: 100%;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .contact-band__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-band__fields {
    grid-template-columns: 1fr;
  }

  .contact-band__fields > .cb-field:nth-child(1),
  .contact-band__fields > .cb-field:nth-child(2),
  .contact-band__fields > .cb-field:nth-child(3),
  .contact-band__fields > .cb-field:nth-child(4),
  .contact-band__fields > .cb-field:nth-child(5) {
    grid-column: 1 / -1;
  }

  .contact-band__submit-col {
    max-width: min(100%, 320px);
  }

  .contact-band__head {
    gap: 10px 12px;
  }

  .footer-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom--landing {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-bottom--landing .footer-bottom__legal {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .footer-grid--4 {
    grid-template-columns: 1fr;
  }

  .site-header--landing .site-header__call-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 8px;
  }

  .btn--header-cta {
    font-size: var(--fs-xs);
    padding: 8px 10px;
    letter-spacing: 0.04em;
  }
}
