:root {
  /* ——— Premium Design System (Grün · heller Grund · Anthrazit-Footer) ——— */
  --primary: #8dbb3e;
  --primary-hover: #7aa232;
  --background: #f8f8f6;
  --white: #ffffff;
  --text-dark: #222222;
  --text-gray: #666666;
  --card-bg: #f1f3ef;
  --footer: #2a2f36;
  --border: #e7e7e7;
  --border-card: #e8e8e8;

  --color-black: #1a1d22;
  --color-dark: var(--text-dark);
  --color-white: var(--white);
  --color-light: var(--card-bg);
  --color-gold: var(--primary);
  --color-beige: var(--background);
  --color-graphite: var(--footer);
  --color-success: #22c55e;
  --text-primary: var(--text-dark);
  --text-secondary: var(--text-gray);
  --text-light: #ffffff;
  --text-muted: var(--text-gray);
  --bg-primary: var(--white);
  --bg-secondary: var(--card-bg);
  --bg-dark: var(--footer);
  --bg-card: var(--white);
  --btn-primary-bg: var(--primary);
  --btn-primary-hover: var(--primary-hover);
  --btn-primary-text: #ffffff;
  --btn-dark-bg: var(--footer);
  --btn-dark-hover: #343b44;
  --btn-dark-text: #ffffff;
  --border-light: var(--border);
  --border-dark: rgba(42, 47, 54, 0.35);
  --icon-primary: var(--primary);
  --icon-dark: var(--text-dark);
  --icon-light: #ffffff;
  --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.22);
  --gradient-dark: linear-gradient(180deg, var(--footer) 0%, #1e2329 100%);
  --gradient-gold: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);

  --anthracite: var(--footer);
  --anthracite-soft: #3a424d;
  --olive: var(--primary);
  --olive-dark: var(--primary-hover);
  --trust-lime: var(--primary);
  --cream: var(--background);
  --gold-warm: var(--primary);
  --section-gray: var(--card-bg);

  --bg: var(--background);
  --surface: var(--white);
  --text: var(--text-dark);
  --muted: var(--text-gray);
  --line: var(--border);
  --ink: var(--text-dark);

  --header-bg: var(--footer);
  --header-nav-bg: rgba(255, 255, 255, 0.95);

  --brand: var(--primary);
  --brand-dark: var(--primary-hover);
  --brand-soft: rgba(141, 187, 62, 0.14);

  --accent: var(--primary);
  --accent-hover: var(--primary-hover);

  --accent-soft: rgba(141, 187, 62, 0.16);

  --cta: var(--primary);
  --cta-dark: var(--primary-hover);
  --cta-soft: rgba(141, 187, 62, 0.16);

  --band-blue: linear-gradient(120deg, var(--primary) 0%, var(--primary-hover) 38%, var(--footer) 100%);
  --shadow: var(--shadow-medium);
  --shadow-sm: var(--shadow-soft);
  --radius: 10px;
  --radius-lg: 14px;
  /* Einheitliche Skala: xs → sm → md → lg → Sektionstitel → Stat (Zahlen) → Hero */
  --fs-xs: 0.8125rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-section-title: clamp(1.35rem, 2.35vw, 1.75rem);
  --fs-stat: clamp(1.65rem, 2.75vw, 2.5rem);
  --fs-hero-h1: clamp(1.8rem, 3.6vw, 2.45rem);
  --fs-hero-slide: var(--fs-hero-h1);
  --fs-hero-legacy: var(--fs-hero-h1);
  --fs-hero-accent: clamp(2rem, 4vw, 2.85rem);
  --fs-logo-name: clamp(2.5rem, 5vw, 3.75rem);
  --fs-logo-header-name: clamp(1.875rem, 3.3vw, 2.75rem);
  --fs-logo-header-domain: clamp(0.6875rem, 1.05vw, 0.8125rem);
  --fs-badge-num: var(--fs-lg);
  --fs-btn: var(--fs-sm);
}

/* ——— Steinreiniger page sections (match screenshot) ——— */
.ra-hero {
  position: relative;
  /* Kein beiger Body-Hintergrund durchscheinen (Lücken / transparenter Trust) */
  background: var(--header-bg, #0d0d0d);
  padding: 0;
}

.ra-hero-slider-bleed {
  width: 100%;
  margin: 0;
  background: var(--header-bg, #0d0d0d);
}

.ra-hero-slider-bleed,
.ra-hero-slider,
.ra-hero-slider__viewport {
  display: block;
}

.ra-hero-slider,
.ra-hero-slider__viewport,
.ra-hero-slider__track {
  background: var(--header-bg, #0d0d0d);
}

.ra-hero-slider {
  position: relative;
  outline: none;
}

.ra-hero-slider__viewport {
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  margin: 0;
  display: block;
  transition: height 0.25s ease;
}

.ra-hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.ra-hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  background: var(--header-bg, #0d0d0d);
}

.ra-hero-slider__slide .ra-hero__grid {
  width: 100%;
  min-height: 100%;
  background: var(--header-bg, #0d0d0d);
}

.ra-hero-slider__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(10px, 2vw, 18px);
  pointer-events: none;
}

.ra-hero-slider__arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.14);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.ra-hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(17, 24, 39, 0.26);
}

.ra-hero-slider__arrow:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.ra-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
  min-width: 0;
}

.ra-hero__grid > .ra-hero__copy,
.ra-hero__grid > .ra-hero__media {
  min-width: 0;
}

/* Im Slider: bündig, ohne Karten-Look */
.ra-hero-slider .ra-hero__grid {
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  overflow: visible;
  /* Slider skaliert mit der Viewport-Breite mit – kleiner Browser = kleinerer Hero */
  min-height: clamp(440px, min(calc(88vh - 40px), 58vw), 1140px);
  min-height: clamp(440px, min(calc(88dvh - 40px), 58vw), 1140px);
  position: relative;
}

.ra-hero__copy {
  padding: clamp(22px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* Vollbreite-Hero: Text nicht am linken Rand kleben lassen */
.ra-hero-slider .ra-hero__copy {
  padding-left: max(
    20px,
    calc((100vw - min(1397px, calc(100vw - 40px))) / 2)
  );
  position: relative;
  z-index: 2;
  max-width: min(720px, min(92vw, 100%));
  /* Etwas nach oben rücken (vorher optisch zu tief zentriert) + 80px zusätzlich */
  transform: translateY(calc(-80px + clamp(-10px, -2.2vh, -40px)));
}

.ra-hero-slider .ra-hero__title,
.ra-hero-slider .ra-hero__lead,
.ra-hero-slider .ra-checks li,
.ra-hero-slider .ra-checks--hero1 .ra-checks__label {
  color: rgba(255, 255, 255, 0.92);
}

.ra-hero-slider .ra-eyebrow {
  color: #c9c4a2;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  font-size: var(--fs-sm);
  letter-spacing: 0.11em;
  margin-bottom: clamp(10px, 1.4vw, 14px);
}

.ra-hero-slider .ra-hero__lead {
  color: #fff;
}

.ra-hero-slider .ra-checks__dot {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.18);
}

.ra-hero-slider .ra-hero__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.18);
}

.ra-hero-slider .ra-hero__cta .btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.28);
}

.ra-eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: rgba(18, 21, 19, 0.55);
}

.ra-hero__title {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* SemiBold */
  letter-spacing: -0.03em;
  font-size: var(--fs-hero-h1);
  line-height: 1.02;
  color: var(--ink);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Hero Slider Folie 2: gleiche Typo wie früher <h2>, semantisch Absatz (ein H1 auf der Seite) */
.ra-hero-slider p.ra-hero__title {
  margin: 0 0 12px;
}

/* Hero Slider Folie 1: Headline wie Referenz (dunkel / großes Grün / dunkel) */
.ra-hero__title--hero1 {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  color: inherit;
  line-height: 1.08;
}

.ra-hero__title--hero1 .ra-hero__title-line {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: var(--fs-hero-h1);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.ra-hero__title--hero1 .ra-hero__title-accent {
  display: inline-block;
  margin: 0.12em 0 0.06em;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--fs-hero-accent);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--brand);
}

/* Hero-Slider: zweizeilige Headline wie Referenz (weiß + Akzent) */
.ra-hero__title--slider-split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06em;
  margin: 0 0 12px;
}

.ra-hero-slider .ra-hero__title--slider-split .ra-hero__title-line--slider {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: var(--fs-hero-h1);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.98);
}

.ra-hero-slider .ra-hero__title--slider-split .ra-hero__title-accent--slider {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--fs-hero-accent);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--brand);
}

/* Slider-Startbereich: Abstände (Typo = --fs-hero-* wie bei .ra-hero__title--slider-split) */
.ra-hero-slider .ra-hero__title--slider-split {
  gap: 0.08em;
  margin-bottom: clamp(14px, 2vw, 20px);
}

.ra-hero-slider .ra-hero__copy > .ra-hero__lead {
  font-size: var(--fs-lg);
  line-height: 1.58;
  max-width: 52ch;
}

.ra-hero__lead {
  margin: 0 0 16px;
  max-width: 56ch;
  color: var(--muted);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Slider Typography */
.ra-hero .ra-hero__lead {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--fs-md);
  line-height: 1.65;
}

.ra-hero .ra-checks:not(.ra-checks--hero1),
.ra-hero .ra-hero__cta .btn {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.ra-checks {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* Hero Folie 1: drei Merkmale immer nebeneinander (kein Flex-Wrap-Umbruch) */
.ra-checks.ra-checks--hero1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 2vw, 22px);
  align-items: start;
}

.ra-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: var(--fs-md);
}

.ra-checks--hero1 li {
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.ra-checks--hero1 .ra-checks__dot {
  margin-top: 2px;
  flex-shrink: 0;
}

.ra-checks--hero1 .ra-checks__label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: var(--fs-xs);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.ra-checks--hero1 .ra-checks__label strong {
  font-weight: 700;
}

.ra-checks__dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 2px solid rgba(141, 187, 62, 0.6);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65);
  flex: 0 0 auto;
}

.ra-hero__features {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 56ch;
}

.ra-hero__feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.ra-hero__feature-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft, rgba(141, 187, 62, 0.18));
  color: var(--brand, #8dbb3e);
  flex: 0 0 auto;
}

.page-site .ra-hero__feature {
  grid-template-columns: 58px 1fr;
}

.page-site .ra-hero__feature-ico {
  width: 58px;
  height: 58px;
}

.page-site .ra-hero__feature-ico svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.45;
}

.ra-hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
  min-width: 0;
}

.ra-hero__feature-text strong {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: var(--fs-sm);
  color: #fff;
}

.ra-hero__feature-text span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.78);
}

.ra-hero-slider .ra-hero__feature-ico {
  background: rgba(141, 187, 62, 0.16);
  color: var(--brand, #8dbb3e);
}

@media (max-width: 520px) {
  .ra-hero__features {
    gap: 10px;
    margin: 14px 0 18px;
  }
  .ra-hero__feature {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }
  .ra-hero__feature-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .ra-hero__feature-ico svg {
    width: 18px;
    height: 18px;
  }
  .page-site .ra-hero__feature {
    grid-template-columns: 48px 1fr;
  }
  .page-site .ra-hero__feature-ico {
    width: 48px;
    height: 48px;
  }
  .page-site .ra-hero__feature-ico svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.35;
  }
}

.ra-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.ra-hero__cta .btn {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-wrap: break-word;
  border-radius: 6px !important;
}

/* Längerer Text im linken CTA → mehr Breite als rechter Button */
.ra-hero__cta .ra-btn-solid {
  flex: 1.85 1 0;
  min-width: min(100%, 220px);
}

.ra-hero__cta .ra-btn-ghost {
  flex: 1 1 0;
}

/* Desktop/Tablet: sekundärer CTA kompakt halten */
@media (min-width: 521px) {
  .ra-hero__cta .ra-btn-ghost {
    flex: 0 0 auto;
    white-space: nowrap;
    overflow-wrap: normal;
    word-wrap: normal;
    word-break: normal;
  }
}

.ra-btn-solid {
  /* Buttons im Slider wie Screenshot */
  padding: 14px 22px;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-btn);
  min-height: 52px;
}

.ra-btn-ghost {
  padding: 14px 22px;
  font-size: var(--fs-btn);
  min-height: 52px;
}

.ra-hero-slider .ra-btn-hero-cta {
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: var(--fs-sm);
  font-weight: 800;
}

/* Slider: beide CTAs immer nebeneinander (kein Flex-Wrap) */
.ra-hero-slider .ra-hero__cta {
  flex-wrap: nowrap;
  width: auto;
  max-width: 520px;
  justify-content: flex-start;
}

.ra-hero-slider .ra-hero__cta .btn.ra-btn-hero-cta {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: clamp(18px, 2.6vw, 30px);
  padding-right: clamp(18px, 2.6vw, 30px);
}

.ra-hero-slider .ra-hero__cta .ra-btn-solid {
  flex: 0 1 auto;
  min-width: 0;
}

.ra-hero-slider .ra-hero__cta .ra-btn-ghost {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
}

/* Slider: Buttons (Akzentfarbe) */
.ra-hero__cta .btn--primary {
  background: var(--accent);
  box-shadow: none;
}

.ra-hero__cta .btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: none;
}

/* Hero „Jetzt konfigurieren“ (Solid): Hover-Text schwarz */
.ra-hero-slider .ra-hero__cta .ra-btn-solid:hover,
.ra-hero-slider .ra-hero__cta .btn--primary.ra-btn-solid:hover {
  color: var(--text-dark) !important;
  filter: none !important;
}

.ra-hero-slider .ra-hero__cta .ra-btn-solid:focus-visible {
  color: var(--text-dark) !important;
  filter: none !important;
}

/* Outline-Button: grüner Rand, dunkler Text */
.ra-hero__cta .btn--outline {
  border-color: var(--brand);
  color: var(--ink);
  background: #fff;
}

.ra-hero__cta .btn--outline:hover {
  border-color: var(--brand);
  box-shadow: none;
  background: rgba(141, 187, 62, 0.06);
}

.ra-hero__cta .btn__arrow {
  flex: 0 0 auto;
  opacity: 0.95;
}

@media (max-width: 520px) {
  .ra-hero__cta {
    gap: 10px;
  }

  .ra-hero__cta .btn {
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: var(--fs-sm) !important;
    min-height: 46px !important;
  }

  .ra-hero-slider .ra-hero__cta .btn.ra-btn-hero-cta {
    font-size: var(--fs-xs) !important;
    letter-spacing: 0.045em;
    padding-left: clamp(14px, 3.5vw, 22px) !important;
    padding-right: clamp(14px, 3.5vw, 22px) !important;
  }

  .ra-hero__cta .btn__arrow {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 380px) {
  .ra-hero__cta .btn {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: var(--fs-xs) !important;
    gap: 6px !important;
  }

  .ra-hero-slider .ra-hero__cta .btn.ra-btn-hero-cta {
    font-size: var(--fs-xs) !important;
    padding-left: clamp(12px, 3.2vw, 18px) !important;
    padding-right: clamp(12px, 3.2vw, 18px) !important;
  }
}

.ra-hero__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f7f5 0%, #f0ebe3 55%, #ede4d8 100%);
  min-height: clamp(320px, 32vw, 460px);
}

.ra-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: translateZ(0);
  display: block;
}

.ra-hero-slider .ra-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  /* Kein beiger .ra-hero__media-Verlauf – bündig mit dunklem Slider */
  background: var(--header-bg, #0d0d0d);
}

.ra-hero-slider .ra-hero__media img {
  object-fit: cover;
  object-position: right center;
  transform: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 12%,
    rgba(0, 0, 0, 0.7) 24%,
    rgba(0, 0, 0, 1) 36%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.25) 12%,
    rgba(0, 0, 0, 0.7) 24%,
    rgba(0, 0, 0, 1) 36%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* Slide 1: Terrassen-Abendmotiv – bündig, Überdachung mittig-rechts im Fokus */
.ra-hero-slider__slide:first-child .ra-hero__media img {
  object-fit: cover;
  object-position: 65% 50%;
  transform: none;
  transform-origin: center center;
}

.page-home .ra-hero-slider__slide:first-child .ra-hero__media img {
  object-position: calc(65% + 200px) 50%;
}

/* Slide 2: Vorher/Nachher-Panorama – vertikal geteilt, Mitte im Fokus */
.ra-hero-slider__slide:nth-child(2) .ra-hero__media img {
  object-fit: cover;
  object-position: center 50%;
  transform: none;
  transform-origin: center center;
}

/* Im Hero-Slider: Bild rechts bündig + links Gradient zur Schrift */
.ra-hero-slider .ra-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.72) 18%,
      rgba(0, 0, 0, 0.50) 32%,
      rgba(0, 0, 0, 0.26) 44%,
      rgba(0, 0, 0, 0.10) 54%,
      rgba(0, 0, 0, 0) 62%
    ),
    radial-gradient(80% 120% at 25% 50%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(65% 85% at 88% 42%, rgba(216, 169, 107, 0.28) 0%, rgba(216, 169, 107, 0.08) 42%, transparent 68%);
}

.ra-rating {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 10px 28px rgba(18, 21, 19, 0.12);
  font-family: inherit;
}

.ra-rating__g {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--cta-dark), var(--cta));
}

.ra-rating__stars {
  color: var(--gold-warm);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
}

.ra-rating__score {
  font-weight: 900;
  color: var(--ink);
}

.ra-rating__meta {
  font-family: inherit;
  font-size: var(--fs-xs);
  color: rgba(18, 21, 19, 0.6);
}

.ra-trust {
  margin-top: 0;
  background: var(--section-gray);
  color: var(--ink);
  padding: 16px 0;
  position: relative;
  z-index: 5;
}

/* Hero: Trust-Leiste auf dem unteren Bild (Icon links, Zeile 1 weiß fett, Zeile 2 weiß regular, Icons oliv) */
.ra-hero .ra-trust {
  margin-top: clamp(-140px, -15vh, -92px);
  margin-bottom: 0;
  padding: clamp(20px, 3.2vw, 30px) 0 clamp(22px, 3.4vw, 34px);
  /* Leicht milchig / frosted über dem Hero-Bild */
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(18, 18, 20, 0.42) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  color: #fff;
}

/* Gleiche maximale Breite wie .container (untere Sektionen) */
.ra-trust .container.ra-trust__grid {
  width: min(1397px, calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .ra-trust .container.ra-trust__grid {
    width: min(1397px, calc(100% - 24px));
  }
}

.ra-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(18px, 3.5vw, 40px);
  row-gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.ra-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  padding: 12px 8px;
  box-sizing: border-box;
}

.ra-trust__ico {
  width: auto;
  height: auto;
  border-radius: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: transparent;
  color: var(--brand);
}

.ra-trust__item > div:not(.ra-trust__ico) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.ra-trust__svg {
  width: 42px;
  height: 42px;
  display: block;
}

.ra-trust__title {
  font-weight: 800;
  font-size: var(--fs-sm);
  letter-spacing: -0.005em;
  line-height: 1.22;
  margin: 0;
  color: var(--ink);
  text-align: center;
}

.ra-trust__text {
  font-size: var(--fs-xs);
  line-height: 1.32;
  margin: 0;
  color: rgba(18, 21, 19, 0.66);
  text-align: center;
  max-width: 28ch;
}

.ra-hero .ra-trust__grid {
  align-items: stretch;
  column-gap: clamp(10px, 2vw, 32px);
}

.ra-hero .ra-trust__item {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: clamp(10px, 1.4vw, 16px);
  padding: clamp(8px, 1.2vw, 14px) clamp(4px, 0.8vw, 10px);
  min-height: clamp(52px, 7vw, 72px);
}

.ra-hero .ra-trust__item > div:not(.ra-trust__ico) {
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.ra-hero .ra-trust__ico {
  color: var(--trust-lime);
  align-self: center;
}

.ra-hero .ra-trust__svg {
  width: clamp(36px, 3.6vw, 48px);
  height: clamp(36px, 3.6vw, 48px);
}

.ra-hero .ra-trust__title {
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: -0.01em;
  line-height: 1.22;
  text-align: left;
}

.ra-hero .ra-trust__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-xs);
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  max-width: none;
}

/* Desktop: eine Zeile, gleich breite Spalten, vertikale Trenner, Inhalt zentriert wie Referenz */
@media (min-width: 961px) {
  .ra-hero .ra-trust__grid {
    column-gap: 0;
    row-gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ra-hero .ra-trust__item {
    justify-content: center;
    gap: clamp(12px, 1.5vw, 18px);
    padding: clamp(10px, 1.4vw, 20px) clamp(10px, 1.8vw, 26px);
    min-height: clamp(56px, 6.5vw, 78px);
  }

  .ra-hero .ra-trust__item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .ra-hero .ra-trust__item > div:not(.ra-trust__ico) {
    flex: 0 1 auto;
  }

  .ra-hero .ra-trust__title {
    font-size: var(--fs-sm);
  }

  .ra-hero .ra-trust__text {
    font-size: var(--fs-xs);
  }
}

.ra-section {
  padding: 44px 0;
}

.ra-section--white-bleed {
  background: #fff;
}

.ra-section--white-bleed.ra-section--tint {
  background: linear-gradient(180deg, var(--section-gray) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.ra-section--about-intro {
  background: #fff;
  padding: 44px 0 32px;
}

/* Vorteils-Kacheln (6er-Grid, vor Produkt-Showcase) */
.ra-section--vorteile-kacheln {
  padding: 52px 0 50px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.ra-vorteile-kacheln__title {
  text-align: center;
  margin: 0 0 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: var(--fs-section-title);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
}

.ra-vorteile-kacheln__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  align-items: stretch;
}

.ra-vorteile-kacheln__card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 22px 12px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ra-vorteile-kacheln__ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  border: 2px solid var(--brand);
  background: transparent;
  flex-shrink: 0;
}

.ra-vorteile-kacheln__ico svg {
  display: block;
}

.ra-vorteile-kacheln__card h3 {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
}

.ra-vorteile-kacheln__card p {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: var(--text-gray);
}

@media (max-width: 1100px) {
  .ra-vorteile-kacheln__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ra-vorteile-kacheln__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .ra-vorteile-kacheln__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
}

/* Produkt-Showcase: zentrierte Headline + 4 Karten (Premium-System) */
.ra-section--produkte-showcase {
  padding: 56px 0 58px;
  background: var(--bg);
  scroll-margin-top: 106px;
}

.ra-produkte-showcase__id-anchors {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
}

.ra-produkte-showcase__head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: min(1040px, 100%);
}

.ra-produkte-showcase__head .ra-td-split__title {
  margin-left: auto;
  margin-right: auto;
}

.ra-produkte-showcase__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.45em;
  row-gap: 0.12em;
  line-height: 1.12;
}

.ra-produkte-showcase__title-part {
  white-space: nowrap;
}

.ra-produkte-showcase__lead {
  margin: 0 auto 22px;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-gray);
  max-width: min(960px, 100%);
  text-align: center;
}

.ra-produkte-showcase__lead--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.45em;
  row-gap: 0.2em;
}

.ra-produkte-showcase__lead-part:last-child {
  white-space: nowrap;
}

@media (min-width: 720px) {
  .ra-produkte-showcase__lead--row .ra-produkte-showcase__lead-part:first-child {
    white-space: nowrap;
  }
}

.ra-produkte-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.ra-section--produkte-showcase .ra-td-prod-card {
  border-radius: 10px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-soft);
}

.ra-section--produkte-showcase .ra-td-prod-card h3 {
  color: var(--text-dark);
}

.ra-section--produkte-showcase .ra-td-prod-card p {
  color: var(--text-gray);
}

@media (max-width: 1100px) {
  .ra-produkte-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ra-produkte-showcase__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Zwei-Spalten-Blöcke: Produkte + Vorteile (Referenzlayout) */
.ra-section.ra-td-split {
  padding: 48px 0 44px;
}

.ra-section.ra-td-benefits {
  padding: 44px 0 52px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ra-td-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}

.ra-td-split__kicker {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: var(--brand);
}

.ra-td-split__title {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: var(--fs-section-title);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}

.ra-td-benefits .ra-td-split__title {
  margin-bottom: 0;
  color: #fff;
}

.ra-td-benefits .ra-td-benefit__title {
  color: #fff;
}

.ra-td-benefits .ra-td-benefit__text {
  color: rgba(255, 255, 255, 0.72);
}

.ra-td-benefits .ra-td-benefit__ico {
  color: var(--brand);
}

.ra-td-split__lead {
  margin: 0 0 22px;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.68);
  max-width: 40ch;
}

.ra-td-split__cta {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}

.ra-td-prod-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
}

.ra-td-prod-card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
  scroll-margin-top: 106px;
}

.ra-td-prod-card__media {
  aspect-ratio: 4 / 3;
  background: var(--section-gray);
}

.ra-td-prod-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ra-td-prod-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.ra-td-prod-card h3 {
  margin: 0 0 8px;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ra-td-prod-card p {
  margin: 0 0 14px;
  font-size: var(--fs-md);
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.66);
  flex: 1;
}

.ra-td-prod-card__link {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--brand);
  text-decoration: none;
  align-self: flex-start;
}

.ra-td-prod-card__link:hover {
  color: var(--olive-dark);
  text-decoration: none;
}

.ra-td-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px) clamp(16px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ra-td-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.ra-td-benefit__ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--brand);
}

.ra-td-benefit__ico svg {
  width: 28px;
  height: 28px;
  display: block;
}

.ra-td-benefit__title {
  margin: 0 0 6px;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.ra-td-benefit__text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.65);
}

@media (max-width: 960px) {
  .ra-td-split__grid {
    grid-template-columns: 1fr;
  }

  .ra-td-prod-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .ra-td-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) and (min-width: 961px) {
  .ra-td-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Terrassenüberdachung: Referenz-Sektionen (Modelle, Farben, …) */
.ra-tu-section {
  padding: 44px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.ra-tu-section:last-of-type {
  border-bottom: none;
}

.ra-tu-slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ra-tu-slider__viewport::-webkit-scrollbar {
  display: none;
}

.ra-tu-slider__track {
  display: flex;
  gap: clamp(12px, 1.8vw, 20px);
}

.ra-tu-slider__track .ra-td-prod-card {
  flex: 0 0 calc((100% - 2 * clamp(12px, 1.8vw, 20px)) / 3);
  min-width: min(100%, 220px);
  scroll-snap-align: start;
}

.ra-tu-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.ra-tu-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.18);
  cursor: pointer;
}

.ra-tu-slider__dot.is-active {
  background: var(--brand);
  transform: scale(1.15);
}

.ra-tu-colors__swatches {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  margin-bottom: 14px;
}

.ra-tu-colors__swatch {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ra-tu-colors__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--section-gray);
  font-size: var(--fs-sm);
  color: rgba(17, 17, 17, 0.62);
}

.ra-tu-colors__note-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(17, 17, 17, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.45);
}

.ra-td-prod-cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .ra-tu-colors__swatches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ra-td-prod-cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ra-tu-slider__track .ra-td-prod-card {
    flex-basis: calc((100% - clamp(12px, 1.8vw, 20px)) / 2);
  }
}

@media (max-width: 640px) {
  .ra-tu-slider__track .ra-td-prod-card {
    flex-basis: 88%;
  }

  .ra-td-prod-cards--4 {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

.ra-about-intro {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(14px, 2.2vw, 28px);
  align-items: center;
}

.ra-about-intro__lead {
  margin: 0 0 14px;
  max-width: 70ch;
  color: rgba(15, 23, 42, 0.72);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.ra-about-intro__checks {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ra-about-intro__checks li {
  position: relative;
  padding-left: 34px;
  font-size: var(--fs-sm);
  color: rgba(17, 24, 39, 0.82);
  line-height: 1.45;
}

.ra-about-intro__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 2px solid rgba(141, 187, 62, 0.65);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

.ra-about-intro__checks li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 0px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: var(--fs-sm);
}

.ra-about-intro__image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--section-gray);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.10);
  aspect-ratio: 16 / 9;
}

.ra-about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ra-kicker {
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: rgba(18, 21, 19, 0.55);
}

.ra-calc__head .ra-kicker {
  margin-bottom: 10px;
  font-size: var(--fs-md);
  letter-spacing: 0.16em;
  color: var(--brand, rgba(18, 21, 19, 0.85));
}

.ra-h2 {
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: var(--fs-section-title);
  color: var(--ink);
}

.ra-h2--small {
  font-size: var(--fs-lg);
}

.ra-services {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.ra-service {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  text-align: left;
}

.ra-service__thumb {
  position: relative;
  height: 112px;
  background: var(--section-gray);
}

.ra-service__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ra-service__badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px rgba(141, 187, 62, 0.28);
  border: 3px solid #fff;
}

.ra-service h3 {
  margin: 26px 14px 8px;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.ra-service p {
  margin: 0 14px 14px;
  font-size: var(--fs-xs);
  line-height: 1.45;
  color: rgba(18, 21, 19, 0.66);
}

.ra-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.ra-split--offer {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.ra-split__image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--section-gray);
  min-height: 260px;
}

.ra-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Besichtigung-Bild: kleiner / nicht gecropped */
.ra-split__image--besichtigung {
  min-height: 0;
  background: var(--section-gray);
  display: block;
}

.ra-split__image--besichtigung img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  box-sizing: border-box;
}

.ra-split--offer .ra-split__image--besichtigung {
  min-height: 260px;
  aspect-ratio: auto;
}

.ra-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(18, 21, 19, 0.06);
}

.ra-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(141, 187, 62, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  margin-bottom: 12px;
}

.ra-mini-checks {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(18, 21, 19, 0.75);
  font-size: var(--fs-sm);
}

.ra-mini-checks li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--brand-dark);
  font-weight: 900;
}

/* Partner-Block (wie Screenshot: Text links, Checkliste rechts) */
.ra-partner__head {
  max-width: 62ch;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.ra-partner__head .ra-h2 {
  margin-bottom: 12px;
}

.ra-partner__lead {
  margin: 0;
  color: rgba(18, 21, 19, 0.72);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.ra-partner-slider {
  margin-bottom: clamp(22px, 4vw, 40px);
}

.ra-partner-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.1);
  background: rgba(17, 24, 39, 0.04);
}

.ra-partner-slider__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(var(--partner-n, 5) * 100%);
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .ra-partner-slider__track {
    transition: none;
  }
}

.ra-partner-slider__slide {
  width: calc(100% / var(--partner-n, 5));
  flex-shrink: 0;
  min-width: 0;
}

.ra-partner-slider__figure {
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8e4de;
}

.ra-partner-slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ra-partner-slider__img.is-fallback {
  object-fit: contain;
  padding: clamp(12px, 3vw, 28px);
  background: linear-gradient(165deg, #f6f3ee, #e8e4de);
}

.ra-partner-slider__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 14px 12px;
  font-size: var(--fs-sm);
  line-height: 1.35;
  color: #fff;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.72), transparent);
}

.ra-partner-slider__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 20px);
  margin-top: 14px;
  flex-wrap: wrap;
}

.ra-partner-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #fff;
  color: var(--brand-dark);
  font-size: var(--fs-lg);
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.ra-partner-slider__btn:hover {
  background: var(--brand-soft);
  border-color: rgba(141, 187, 62, 0.55);
}

.ra-partner-slider__btn:active {
  transform: scale(0.96);
}

.ra-partner-slider--single .ra-partner-slider__toolbar {
  display: none;
}

.ra-partner-slider--single .ra-partner-slider__track {
  transition: none;
}

.ra-partner-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: min(420px, 100%);
}

.ra-partner-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.22);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ra-partner-slider__dot:hover {
  background: rgba(17, 24, 39, 0.38);
}

.ra-partner-slider__dot[aria-current="true"] {
  background: var(--brand-dark);
  transform: scale(1.2);
}

.ra-partner--after-slider {
  margin-top: clamp(8px, 2vw, 12px);
}

.ra-partner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  min-width: 0;
}

.ra-partner__left,
.ra-partner__right {
  min-width: 0;
  overflow-wrap: break-word;
}

.ra-partner__left .ra-kicker {
  margin-bottom: 10px;
}

.ra-partner__left p {
  color: rgba(18, 21, 19, 0.72);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.ra-partner__checks {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.ra-partner__checks li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: rgba(17, 24, 39, 0.82);
  font-size: var(--fs-sm);
  line-height: 1.45;
}

.ra-partner__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 2px solid rgba(141, 187, 62, 0.65);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.75);
}

.ra-partner__checks li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 13px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: var(--fs-sm);
}

@media (max-width: 960px) {
  .ra-partner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ra-partner__checks {
    margin-top: 2px;
  }

  .ra-step__num {
    width: 48px;
    height: 48px;
  }
}

.ra-section--steps {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ra-section--steps .ra-kicker {
  color: var(--brand);
}

.ra-section--steps .ra-h2 {
  color: #fff;
}

.ra-section--steps .ra-step h3 {
  color: #fff;
}

.ra-section--steps .ra-step p {
  color: rgba(255, 255, 255, 0.72);
}

.ra-section--steps .ra-step__num {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.ra-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ra-step {
  text-align: center;
  padding: 14px 10px;
}

.ra-step__num {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  background: rgba(141, 187, 62, 0.12);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: var(--fs-badge-num);
}

.ra-step h3 {
  margin: 0 0 6px;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.ra-step p {
  margin: 0;
  font-size: var(--fs-sm);
  color: rgba(18, 21, 19, 0.62);
}

.ra-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.ra-fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ra-fact__value {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: var(--fs-stat);
  color: var(--ink);
  margin: 0 0 10px;
}

.ra-fact__title {
  margin: 0 0 8px;
  font-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--anthracite);
}

.ra-fact__text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.74);
}

/* Referenzen: Projekt-Karussell */
.ra-refs-head {
  text-align: center;
  max-width: min(760px, 100%);
  margin: 0 auto clamp(24px, 3vw, 36px);
}

.ra-refs-head .ra-h2 {
  margin-bottom: 10px;
}

.ra-refs-head__sub {
  margin: 0;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-gray);
  font-weight: 400;
}

.ra-refs-carousel {
  position: relative;
  margin-top: 22px;
}

.ra-refs-carousel__toolbar {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 2px;
}

.ra-refs-carousel__btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.ra-refs-carousel__btn:hover {
  background: #fff;
  border-color: rgba(141, 187, 62, 0.45);
  color: var(--brand-dark);
}

.ra-refs-carousel__btn:active {
  transform: scale(0.96);
}

.ra-refs-carousel__btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.ra-refs-carousel__viewport {
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
  padding: 6px 0 8px;
  margin: 0 -6px;
}

.ra-refs-carousel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.ra-refs-carousel__viewport:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.ra-refs-carousel__track {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 4px 48px 12px;
  width: max-content;
}

.ra-refs-carousel__slide {
  flex: 0 0 min(560px, calc(100vw - 96px));
  max-width: min(560px, calc(100vw - 96px));
  scroll-snap-align: center;
}

.ra-refs-carousel__card {
  height: 100%;
  box-shadow: none;
}

.ra-refs-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.ra-refs-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(17, 24, 39, 0.18);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.ra-refs-carousel__dot:hover {
  background: rgba(17, 24, 39, 0.32);
}

.ra-refs-carousel__dot[aria-current="true"] {
  background: var(--brand);
  transform: scale(1.15);
}

.ra-refs-carousel__dot:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .ra-refs-carousel__track {
    gap: 12px;
    padding-inline: 40px;
  }

  .ra-refs-carousel__slide {
    flex-basis: min(520px, calc(100vw - 72px));
    max-width: min(520px, calc(100vw - 72px));
  }

  .ra-refs-carousel__btn {
    width: 40px;
    height: 40px;
  }
}

/* Referenzen: Projekt-Karten mit Bild */

.ra-fact--project {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.ra-fact__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #f0ebe3 0%, #e8e4dc 100%);
}

.ra-fact__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ra-fact--project .ra-fact__body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ra-fact__meta {
  margin: 0 0 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.52);
}

.ra-fact--project .ra-fact__value {
  font-size: var(--fs-section-title);
  margin: 0 0 8px;
}

.ra-fact--project .ra-fact__text {
  margin: 10px 0 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: var(--fs-sm);
  line-height: 1.55;
  max-width: 70ch;
}

@media (max-width: 960px) {
  .ra-facts__grid {
    grid-template-columns: 1fr;
  }
}

.ra-facts {
  background: linear-gradient(180deg, var(--section-gray) 0%, #eaeae8 50%, #e3e3e1 100%);
}

/* Preisrechner: Intro wie Produkt-Showcase zentriert */
.ra-calc__head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: min(1040px, 100%);
}

.ra-calc__head .ra-h2 {
  margin-left: auto;
  margin-right: auto;
}

.ra-calc__head .ra-calc__lead {
  margin: 10px auto 0;
  max-width: min(960px, 100%);
  text-align: center;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-gray);
}

.ra-calc__grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 16px 20px;
  align-items: start;
  margin-top: 0;
}

.ra-calc__form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ra-calc__field {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.ra-calc__label {
  font-weight: 800;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.72);
}

.ra-calc__form input,
.ra-calc__form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: #fff;
  color: var(--ink);
  font-size: var(--fs-sm);
  outline: none;
}

.ra-calc__form input:focus,
.ra-calc__form select:focus {
  border-color: rgba(141, 187, 62, 0.55);
  box-shadow: 0 0 0 4px rgba(141, 187, 62, 0.12);
}

.ra-calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.ra-calc__row .ra-calc__field {
  margin: 0;
}

.ra-calc__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: #fff;
  color: rgba(15, 23, 42, 0.82);
  font-size: var(--fs-sm);
  user-select: none;
  min-height: 46px;
}

.ra-calc__check input {
  width: 18px;
  height: 18px;
}

.ra-calc__check--block {
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
  margin: 0;
}

.ra-calc__check--block span {
  line-height: 1.4;
}

.ra-calc__result {
  min-width: 0;
}

.ra-calc__card {
  background: var(--header-bg, #0d0d0d);
  background-image: none;
  border-radius: 18px;
  padding: 18px 18px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.ra-calc__badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ra-calc__price {
  margin: 14px 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: var(--fs-stat);
  line-height: 1.05;
}

.ra-calc__area-hint {
  margin: -4px 0 12px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.ra-calc__note {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 46ch;
}

.ra-calc__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Rechner-Karte „Festpreis anfragen“: Hover-Text schwarz (wie Hero-Solid-CTA) */
.ra-calc__cta .btn--primary.ra-btn-solid:hover,
.ra-calc__cta .btn.btn--primary.ra-btn-solid:hover {
  color: #000 !important;
  filter: none !important;
}

.ra-calc__cta .btn--primary.ra-btn-solid:focus-visible {
  color: #000 !important;
  filter: none !important;
}

@media (max-width: 960px) {
  .ra-calc__grid {
    grid-template-columns: 1fr;
  }

  .ra-calc__row {
    grid-template-columns: 1fr;
  }
}

.ra-cta-band {
  background: var(--header-bg);
  color: #fff;
  padding: 22px 0;
}

.ra-cta-band__grid {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 18px 22px;
  align-items: start;
}

.ra-cta-band__kicker {
  margin: 0 0 8px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.ra-cta-band__title {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: var(--fs-section-title);
  color: #fff;
}

.ra-cta-band__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-sm);
  line-height: 1.5;
  max-width: 34ch;
}

.ra-cta-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px 10px;
  align-items: start;
}

.ra-cta-field input {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
  padding: 0 12px;
  font: inherit;
}

.ra-cta-field input::placeholder {
  color: rgba(17, 24, 39, 0.55);
}

.ra-cta-field input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.ra-cta-submit {
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.05;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.ra-cta-submit:hover {
  filter: brightness(1.05);
}

.ra-cta-field--wide {
  grid-column: 1 / span 2;
}

.ra-cta-field--wide2 {
  grid-column: 3 / span 2;
}

.ra-cta-band__note {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.78);
}

.ra-cta-band__note a {
  color: #fff;
  text-decoration: none;
}

.ra-cta-band__note a:hover,
.ra-cta-band__note a:focus-visible {
  text-decoration: none;
}

.ra-cta-band__sep {
  margin: 0 8px;
  opacity: 0.55;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ra-footer {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.8);
  padding: 30px 0 18px;
}

.ra-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.ra-footer__lead {
  margin: 10px 0 0;
}

.ra-footer__col h3 {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
}

.ra-footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin: 6px 0;
}

.ra-footer__col a:hover {
  color: #fff;
  text-decoration: none;
}

.ra-footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-sm);
}

@media (max-width: 1200px) {
  .ra-hero-slider .ra-hero__grid {
    grid-template-columns: 1fr;
  }

  .ra-hero-slider .ra-hero__copy {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .ra-hero__grid {
    grid-template-columns: 1fr;
  }
  .ra-hero__copy {
    padding: 22px;
  }
  .ra-hero__media {
    min-height: 260px;
  }
  .ra-trust__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(16px, 4vw, 32px);
    row-gap: clamp(16px, 3vw, 26px);
  }
  .ra-about-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .ra-about-intro__image {
    aspect-ratio: auto;
    min-height: 260px;
  }
  .ra-services {
    grid-template-columns: 1fr 1fr;
  }
  .ra-split {
    grid-template-columns: 1fr;
  }
  .ra-steps {
    grid-template-columns: 1fr 1fr;
  }
  .ra-cta-band__grid {
    grid-template-columns: 1fr;
  }
  .ra-cta-form {
    grid-template-columns: 1fr;
  }

  /* Mobile: CTA-Button unter alle Eingabefelder setzen */
  .ra-cta-submit {
    order: 4;
    width: 100%;
  }

  .ra-cta-field--wide,
  .ra-cta-field--wide2 {
    grid-column: auto;
  }
  .ra-footer__grid {
    grid-template-columns: 1fr;
  }

  /* Hero-Slider: gestapeltes Layout – Bild bleibt im Hintergrund vollflächig sichtbar, kein dunkler Overlay */
  .ra-hero-slider .ra-hero__grid {
    background: transparent;
    min-height: clamp(420px, calc(72vh - 60px), 720px);
    min-height: clamp(420px, calc(72dvh - 60px), 720px);
    grid-template-columns: 1fr;
  }

  /* Text-Karte halbtransparent: Bild bleibt durchsichtig sichtbar */
  .ra-hero-slider .ra-hero__copy {
    padding-left: 20px;
    padding-right: 20px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(calc(-80px + clamp(-4px, -0.9vh, -18px)));
  }

  /* Gestapeltes Layout: Trust-Leiste weniger nach oben ziehen */
  .ra-hero .ra-trust {
    margin-top: clamp(-36px, -5vh, -12px);
  }

  .ra-hero .ra-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(12px, 3vw, 24px);
    row-gap: clamp(10px, 2vw, 16px);
  }
}

@media (max-width: 600px) {
  .ra-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ra-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .ra-services {
    grid-template-columns: 1fr;
  }

  .ra-hero .ra-trust {
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 18px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(18, 18, 20, 0.48) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
  }

  .ra-hero .ra-trust__grid {
    grid-template-columns: 1fr;
    row-gap: 12px;
    column-gap: 0;
  }

  .ra-hero-slider .ra-hero__grid {
    min-height: clamp(360px, calc(68vh - 60px), 620px);
    min-height: clamp(360px, calc(68dvh - 60px), 620px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: var(--fs-md);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

main {
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Unterseiten: gleiche Schriftglättung / Grundtypografie wie Startseite */
body.page-site {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-family: inherit;
  font-weight: 400;
}

h1,
h2,
h3,
nav,
.nav {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

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, calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    width: min(1397px, calc(100% - 24px));
  }
}

/* ——— 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: none;
  opacity: 0.92;
}

.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-sm);
  text-decoration: none !important;
}

.topbar__cta:hover {
  background: var(--cta-dark);
  text-decoration: none !important;
}

/* Pre-Header: dunkle Leiste mit Icons (über dem Haupt-Header) */
.topbar--preheader {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--fs-xs);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar--preheader .topbar__inner--preheader {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 9px 0;
}

.topbar--preheader .topbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.topbar--preheader a.topbar__pill {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.topbar--preheader a.topbar__pill:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}

.topbar--preheader .topbar__ico {
  display: flex;
  flex-shrink: 0;
  color: var(--olive);
}

.topbar--preheader .topbar__ico svg {
  display: block;
}

@media (max-width: 900px) {
  .topbar--preheader .topbar__inner--preheader {
    justify-content: center;
    font-size: var(--fs-xs);
    gap: 8px 14px;
  }

  .topbar--preheader .topbar__pill {
    white-space: normal;
  }
}

@media (max-width: 856px) {
  .topbar--preheader .topbar__inner--preheader > .topbar__pill:nth-child(2),
  .topbar--preheader .topbar__inner--preheader > .topbar__pill:nth-child(3) {
    display: none;
  }
}

/* ——— 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);
}

/* Text/CSS-Logo-Icon (ohne Bilddatei) */
.logo .ra-logo-icon {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 58px;
}

.logo .ra-logo-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 26px;
  border: 3px solid var(--brand-dark);
  border-top: none;
  border-radius: 6px;
}

.logo .ra-logo-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 34px;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-bottom: 22px solid var(--brand-dark);
}

.logo .ra-logo-icon__door {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 14px;
  height: 18px;
  transform: translateX(-50%);
  border: 3px solid var(--brand-dark);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  background: transparent;
  opacity: 0.9;
}

.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: 10px;
  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: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(141, 187, 62, 0.28);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 34px rgba(141, 187, 62, 0.36);
}

.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, var(--white) 0%, var(--cream) 48%, var(--section-gray) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(141, 187, 62, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(141, 187, 62, 0.08), 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: var(--band-blue);
  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: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight:nth-child(even) .highlight__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.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--compact .vorher-nacher__shot {
  aspect-ratio: 16 / 9;
}

.vorher-nacher--compact .vorher-nacher__caption {
  padding: 12px 16px 14px;
  font-size: var(--fs-sm);
}

.vorher-nacher--compact .vorher-nacher__arrow {
  width: 46px;
  height: 46px;
}

.vorher-nacher--compact .vorher-nacher__dots {
  margin-top: 14px;
}

.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-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.vorher-nacher__badge--right {
  left: auto;
  right: 14px;
}

.vorher-nacher__shot--pan-right .vorher-nacher__badge--nachher:not(.vorher-nacher__badge--right) {
  /* „Nachher“ näher zur Trennkante (links) */
  left: 8px;
}

@media (max-width: 640px) {
  .vorher-nacher__shot--pan-right .vorher-nacher__badge--nachher:not(.vorher-nacher__badge--right) {
    left: 14px;
  }
}

.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__ai-note {
  margin: -26px auto 22px;
  display: block;
  width: 100%;
  max-width: 680px;
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.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: var(--anthracite);
}

.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__name {
  font-size: var(--fs-md);
}

.video-text-split__brand .logo__name--brand {
  color: var(--brand);
}

.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: var(--fs-xs);
  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: 98px;
}

.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: 98px;
}

.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-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.roof-calc__title--result {
  margin-bottom: 18px;
  font-size: var(--fs-md);
}

.roof-calc__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.roof-calc__field label {
  display: block;
  margin-bottom: 6px;
  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-size: var(--fs-md);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--cta);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(141, 187, 62, 0.35);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.roof-calc__submit:hover {
  background: var(--cta-dark);
  box-shadow: 0 6px 18px rgba(19, 84, 140, 0.38);
}

.roof-calc__submit:active {
  transform: scale(0.99);
}

.roof-calc__disclaimer {
  margin: 4px 0 0;
  font-size: var(--fs-xs);
  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-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;
  }
}

/* ——— Warum wir + Prozess (vor FAQ) ——— */
.ra-section--why-us {
  padding: clamp(44px, 5vw, 64px) 0 clamp(56px, 7vw, 88px);
  background: #f0f1ef;
  scroll-margin-top: 106px;
}

.ra-why-us {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(14px, 2.2vw, 28px);
  align-items: center;
}

.ra-why-us__copy {
  justify-self: start;
  max-width: 70ch;
  width: 100%;
}

.ra-why-us__sub {
  margin: 0 0 14px;
  max-width: 70ch;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.72);
}

.ra-why-us__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ra-why-us__list li {
  position: relative;
  padding-left: 34px;
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: rgba(17, 24, 39, 0.82);
}

.ra-why-us__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 2px solid rgba(141, 187, 62, 0.65);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

.ra-why-us__list li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 0px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: var(--fs-sm);
}

.ra-why-us__figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: visible;
  background: var(--section-gray);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
}

.ra-why-us__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.ra-why-us__badge {
  position: absolute;
  left: clamp(-90px, -6vw, -40px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(112px, 22vw, 140px);
  height: clamp(112px, 22vw, 140px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.14);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--border-card);
  z-index: 2;
}

@media (max-width: 960px) {
  .ra-why-us__badge {
    left: clamp(8px, 3vw, 16px);
    top: auto;
    bottom: clamp(-18px, -2vw, -12px);
    transform: none;
  }
}

.ra-why-us__badge-num {
  display: block;
  font-weight: 900;
  font-size: var(--fs-stat);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--brand-dark);
}

.ra-why-us__badge-text {
  display: block;
  margin-top: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.ra-section--process-light {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #fff;
  scroll-margin-top: 106px;
}

.ra-section--process-light .ra-process-light__head .ra-h2 {
  margin-bottom: 12px;
}

.ra-process-light__head {
  text-align: center;
  max-width: min(760px, 100%);
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.ra-process-light__sub {
  margin: 0;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-gray);
}

.ra-process-light__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(6px, 1.2vw, 14px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(4px, 1vw, 12px);
}

.ra-process-light__step {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding: 0 clamp(6px, 1vw, 12px);
}

.ra-process-light__ico {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(141, 187, 62, 0.12);
  border: 1px solid rgba(141, 187, 62, 0.28);
  color: var(--brand-dark);
}

.ra-process-light__ico svg {
  width: 38px;
  height: 38px;
}

.ra-process-light__title {
  margin: 0 0 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.ra-process-light__text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: rgba(18, 21, 19, 0.62);
}

.ra-process-light__sep {
  flex: 0 0 clamp(14px, 2vw, 24px);
  width: clamp(14px, 2vw, 24px);
  margin-top: 30px;
  height: 0;
  border-top: 2px dotted rgba(17, 24, 39, 0.22);
  align-self: center;
}

@media (max-width: 960px) {
  .ra-why-us {
    grid-template-columns: 1fr;
  }

  .ra-why-us__copy {
    justify-self: stretch;
    max-width: none;
  }

  .ra-why-us__figure img {
    min-height: 220px;
  }

  .ra-process-light__track {
    flex-wrap: wrap;
    row-gap: 28px;
    justify-content: center;
  }

  .ra-process-light__sep {
    display: none;
  }

  .ra-process-light__step {
    flex: 1 1 calc(50% - 12px);
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .ra-process-light__step {
    flex: 1 1 100%;
    max-width: 360px;
  }
}

/* ——— FAQ + Einsatzgebiete (zweispaltig) ——— */
.faq-section {
  padding: clamp(48px, 6vw, 72px) 0;
  background: transparent;
}

.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  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(17, 17, 17, 0.08);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
}

.faq-section__col--regions {
  padding-top: clamp(4px, 1vw, 10px);
}

.faq-section__kicker {
  margin: 0 0 10px;
  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-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-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.18em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 2px solid rgba(141, 187, 62, 0.65);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.8);
}

.faq-section__regions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 4px;
  border: none;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff !important;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  box-shadow: 0 6px 18px rgba(141, 187, 62, 0.32);
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.faq-section__regions-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(141, 187, 62, 0.4);
}

.faq-section__faq-head {
  margin: 0 0 22px;
  text-align: left;
}

.faq-section__faq-title {
  margin: 0 0 12px;
  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-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: var(--fs-lg);
  font-weight: 500;
  color: var(--brand-dark);
  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-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.62;
  color: #4b5563;
}

@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(17, 17, 17, 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: none;
  opacity: 0.92;
}

.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: 63px 0 32px;
  background: var(--anthracite);
  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: 98px;
}

.themen-vn-marquee {
  padding: 40px 0 36px;
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100%;
}

.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);
  box-sizing: border-box;
}

.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: var(--fs-lg);
  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;
}

.ra-einsatz-seo-link {
  margin: 6px 0 0;
  font-size: var(--fs-md);
}

.ra-einsatz-seo-link a {
  font-weight: 700;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ra-einsatz-seo-link a:hover {
  color: var(--brand-dark);
}

.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(141, 187, 62, 0.45);
  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,
.seo-hub-list--keywords {
  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-category {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.seo-hub-category:first-of-type {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.seo-hub-category .seo-hub-list--cities {
  margin-bottom: 0;
}

.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(141, 187, 62, 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: 1px 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: 1px 0 6px;
}

.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: 1px;
}

.legal p.lead {
  font-size: var(--fs-md);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--ink);
}

.legal .product-page__cta {
  margin-top: 28px;
  margin-bottom: 2rem;
}

/* Konfigurator-Seite: normales Scrollen (Footer sichtbar), iframe-Höhe per JS */
.page--konfigurator {
  background: var(--surface);
}

body.page-konfigurator .ra-section--konfigurator-intro {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(16px, 2.5vw, 28px);
}

.ra-section--konfigurator-intro h1 {
  margin: 0 0 12px;
  font-size: var(--fs-section-title);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.konfigurator-intro__lead {
  margin: 0 0 20px;
  max-width: 52ch;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text);
}

.konfigurator-intro__head {
  margin-bottom: 0;
}

.container--konfigurator {
  max-width: min(100%, 1600px);
}

.konfigurator-stage {
  width: 100%;
  height: var(--konfig-stage-h, min(88svh, 900px));
  min-height: 520px;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  padding: 0;
}

.konfigurator-stage__frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  vertical-align: top;
  background: #ffffff;
}

@media (max-width: 720px) {
  .konfigurator-stage {
    min-height: 480px;
  }
}

@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: 1005px) {
  .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);
  }

  /* Flaches Menü (z. B. SEO-Hub ohne Drawer): Panel wie Navbar */
  .site-header--landing .site-header__nav > .nav-links.open {
    background: var(--header-nav-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-soft);
  }

  .site-header--landing .site-header__nav > .nav-links.open a {
    color: var(--text-dark);
  }

  .site-header--landing .site-header__nav > .nav-links.open a:hover {
    color: var(--brand);
  }

  .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:not(.topbar--preheader) .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-cta .btn {
    width: 100%;
  }

  /* Kopfzeile: Layout via Grid (max-width: 960px) – hier nur Typo/Tagline */

  /* Mobile: alte Tagline-Zeilen ausblenden, Domain aber sichtbar lassen */
  .site-header--landing .logo__tagline:not(.logo__tagline--domain) {
    display: none;
  }

  /* 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;
  }

  /* Mobile: Kopf-CTA (Jetzt anrufen + Kostenloses Angebot) ausblenden */
  .site-header--landing .site-header__call-cta {
    display: none;
  }
}

@media (max-width: 960px) and (orientation: landscape) {
  /* Mobile Querformat: Kopf-CTA ausblenden (Jetzt anrufen + Kostenloses Angebot) */
  .site-header--landing .site-header__call-cta {
    display: none;
  }
}

/* ——— Startseite Referenzlayout (Dachreiniger24) ——— */
.site-header--landing {
  position: relative;
  z-index: 55;
}

/* ——— Header: helle Glas-Navbar (Premium clean) ——— */
.site-header.site-header--landing {
  background: var(--header-nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-card);
  box-shadow: var(--shadow-soft);
}

.site-header--landing .logo,
.site-header--landing .logo__name,
.site-header--landing .logo__tagline {
  color: var(--text-dark);
}

.site-header--landing .logo__name--brand {
  color: var(--brand);
}

.site-header--landing .logo__name--dark {
  color: var(--text-dark);
}

.site-header--landing .logo__name--white,
.site-header--landing .logo__name--white .accent {
  color: var(--text-dark);
}

.site-header--landing .logo span.accent {
  color: var(--brand);
}

.site-header--landing .logo svg path {
  stroke: var(--text-dark);
}

.site-header--landing .nav-links--caps a,
.site-header--landing .nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500; /* Medium */
  letter-spacing: 0.22px;
  text-transform: uppercase;
  color: var(--text-dark) !important;
}

.site-header--landing .nav-links--caps a:hover,
.site-header--landing .nav-links a:hover {
  color: var(--brand) !important;
  text-decoration: none;
}

.site-header--landing .nav-links a[aria-current="page"] {
  color: var(--brand) !important;
  font-weight: 700;
}

.site-header--landing .header-phone {
  color: var(--text-dark);
}

.site-header--landing .header-phone__label {
  color: var(--text-gray);
}

.site-header--landing .header-phone__num {
  color: var(--brand);
}

.site-header--landing .menu-toggle {
  color: var(--text-dark);
  border-color: var(--line);
  background: var(--surface);
}

.site-header--landing .menu-toggle:hover {
  border-color: rgba(141, 187, 62, 0.45);
  background: var(--card-bg);
}

.site-header--landing .btn--header-cta {
  background: var(--accent);
  color: #fff !important;
  border: 1px solid transparent;
  box-shadow: none;
}

.site-header--landing .btn--header-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
  box-shadow: none;
}

.site-header--landing .site-header__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px 12px;
  padding: 17px 0;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.logo--stacked {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo__img {
  display: block;
  width: auto;
  height: 44px;
  border-radius: 10px;
}

.site-header--landing .logo__img {
  height: 48px;
}

.footer--landing .logo__img {
  height: 42px;
}

@media (max-width: 520px) {
  .logo__img {
    height: 40px;
    border-radius: 9px;
  }
}

.logo__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.logo__name {
  font-family: "Poppins", sans-serif;
  /* wie Hero-Headline: kräftig + engeres Tracking */
  font-weight: 900;
  font-size: var(--fs-logo-name);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text-dark); /* Headlines / Logo */
}

.site-header--landing .logo__name {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
}

.footer--landing .logo__name {
  font-size: var(--fs-logo-header-name);
  font-weight: 800;
}

.site-header--landing .logo__name--brand,
.footer--landing .logo__name--brand {
  color: var(--brand);
}

.logo__name--brand-a,
.sticky-contact__brand-a {
  position: relative;
  display: inline-block;
}

.logo__r,
.sticky-contact__brand--r {
  position: absolute;
  top: -0.02em;
  left: calc(100% - 0.04em);
  font-size: 0.624em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--brand);
  white-space: nowrap;
}

.site-header--landing .logo__name--dark {
  color: var(--text-dark);
}

.footer--landing .logo__name--dark {
  color: #fff;
}

.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-family: "Poppins", sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text-gray);
}

.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: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.footer--landing .logo__tagline {
  color: rgba(255, 255, 255, 0.55);
}

.site-header--landing .logo__tagline--domain {
  font-size: var(--fs-logo-header-domain);
}

.site-header--landing .logo__tagline--domain,
.footer--landing .logo__tagline--domain {
  display: block;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-header--landing .logo__tagline {
  color: var(--text-gray);
}

.site-header--landing .logo__tagline--domain {
  color: var(--text-gray);
}

/* Startseite (Hero-Slider): Header-Logo über dem Slider leicht angehoben */
.page-home .site-header--landing .logo__img {
  height: 52px;
}

.footer--landing .logo__tagline--domain {
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.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;
}

/* Header-Menü leicht nach rechts schieben (Desktop) */
.site-header--landing .site-header__nav {
  flex: 0 1 auto;
  justify-content: flex-end;
  padding-right: 0px;
  margin-left: auto;
  margin-right: 4px;
}

.nav-links--caps a,
.nav-links--caps .nav-links__parent {
  text-transform: uppercase;
  font-size: var(--fs-sm);
  font-weight: 500; /* Medium */
  letter-spacing: 0.5px;
  color: inherit;
}

.nav-links--caps a:hover {
  color: inherit;
}

.site-header--landing .nav-links {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0 2px;
}

/* Produkt-Hauptmenü: „Überdachungen“ mit Untermenü */
.nav-links__item--has-sub {
  position: relative;
}

.nav-links__parent {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}

.nav-links__parent--tier2 {
  font-weight: 600;
  font-size: var(--fs-sm);
}

.site-header--landing .nav-links__parent--tier2 {
  font-size: var(--fs-sm);
}

.site-header--landing .nav-links__parent {
  gap: 0.1em;
}

.nav-links__chev {
  display: inline-block;
  font-size: 0.75em;
  line-height: 1;
  transform: translateY(1px);
  opacity: 0.85;
}

.site-header--landing .nav-links__chev {
  font-size: 0.75em;
  margin-left: 0;
}

.nav-links__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1006px) {
  .site-header--landing .nav-links__item--has-sub > .nav-links__sub {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    min-width: 228px;
    padding: 7px 0;
    background: var(--surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 80;
  }

  .site-header--landing .nav-links__item--has-sub:hover > .nav-links__sub,
  .site-header--landing .nav-links__item--has-sub:focus-within > .nav-links__sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Zweite Ebene (z. B. unter „Überdachungen“): Flyout rechts neben dem Eintrag */
  .site-header--landing .nav-links__sub .nav-links__item--has-sub {
    position: relative;
  }

  .site-header--landing .nav-links__sub .nav-links__item--has-sub > .nav-links__sub {
    position: absolute;
    left: calc(100% + 4px);
    top: -6px;
    min-width: 212px;
    padding: 7px 0;
    margin: 0;
    background: var(--surface);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 90;
  }

  .site-header--landing .nav-links__sub .nav-links__item--has-sub:hover > .nav-links__sub,
  .site-header--landing .nav-links__sub .nav-links__item--has-sub:focus-within > .nav-links__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .site-header--landing .nav-links__item--has-sub > .nav-links__sub a,
  .site-header--landing .nav-links__sub .nav-links__item--has-sub > .nav-links__sub a {
    display: block;
    padding: 9px 16px;
    font-size: var(--fs-sm);
    white-space: nowrap;
    color: var(--text-dark);
  }

  .site-header--landing .nav-links__item--has-sub > .nav-links__sub a:hover,
  .site-header--landing .nav-links__sub .nav-links__item--has-sub > .nav-links__sub a:hover {
    background: var(--card-bg);
    color: var(--brand);
  }
}

@media (max-width: 1005px) {
  .site-header--landing .nav-links__item--has-sub > .nav-links__sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 6px 0 4px 10px;
    padding: 0;
  }

  .site-header--landing .nav-links__sub .nav-links__item--has-sub > .nav-links__sub {
    margin: 4px 0 2px 14px;
    gap: 2px;
  }

  .site-header--landing .nav-links__item--has-sub > .nav-links__sub a,
  .site-header--landing .nav-links__sub .nav-links__item--has-sub > .nav-links__sub a {
    padding: 8px 10px;
    font-size: var(--fs-sm);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--text-dark);
  }

  .site-header--landing .nav-links__item--has-sub > .nav-links__sub a:hover,
  .site-header--landing .nav-links__sub .nav-links__item--has-sub > .nav-links__sub a:hover {
    color: var(--brand);
  }
}

.site-header--landing .nav-links a,
.site-header--landing .nav-links .nav-links__parent {
  padding: 6px 4px;
  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: #111827;
  min-width: 0;
}

.header-phone__icon {
  color: var(--brand);
}

.header-phone:hover .header-phone__num {
  color: #111827;
  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(17, 24, 39, 0.7);
}

.header-phone__num {
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: 0.01em;
  color: #111827;
  white-space: nowrap;
}

/* Schmale Viewports: Telefon-Label + Nummer in der Kopfzeile ausblenden (keine Überlappung mit Nav); ab 1396px wieder sichtbar */
@media (max-width: 1395px) {
  .site-header__actions .header-phone {
    position: relative;
  }

  .site-header__actions .header-phone__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

/* Unter 1236px: Telefon-Icon + „Kostenloses Angebot“ in der Kopfzeile ausblenden (Menü/Sticky bleiben) */
@media (max-width: 1235px) {
  .site-header__actions .header-phone,
  .site-header__actions .btn--header-cta {
    display: none;
  }
}

a[href="tel:+4959575174188"]:not(.header-phone),
.btn--hero-call {
  white-space: nowrap;
}

.btn--header-cta {
  text-transform: uppercase;
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  padding: 11px 18px;
  border-radius: 10px;
  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: var(--accent);
}

.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: var(--brand);
}

.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-sm);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--accent);
  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-sm);
    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: var(--accent);
}

.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: var(--brand);
  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: var(--cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.highlights--trust .highlight:nth-child(even) .highlight__icon--round {
  background: var(--cta);
  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: var(--ink);
}

.heading-caps--light {
  color: #fff;
}

section.vn-landing.section--surface {
  background: var(--section-gray);
  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: var(--accent);
  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;
  letter-spacing: 0.028em;
  color: var(--ink);
  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: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: var(--fs-sm);
  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-sm);
  letter-spacing: 0.09em;
  white-space: nowrap;
  background: var(--cta);
  box-shadow: 0 4px 14px rgba(141, 187, 62, 0.28);
}

.vn-landing .btn--vn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(141, 187, 62, 0.38);
}

.btn--blue-outline:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(141, 187, 62, 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: var(--anthracite);
  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: var(--cta);
  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: var(--brand-dark);
  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: var(--brand-dark);
}

.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: var(--text-gray);
}

.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: var(--header-bg);
  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-md);
  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: inherit;
  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;
}

/* ——— Sticky Kontakt Box (scrollt mit) ——— */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  z-index: 120;
  width: min(360px, calc(100vw - 36px));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px 0 0 14px;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.14);
  overflow: hidden;
}

.sticky-contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px 14px 14px;
  position: relative;
}

.sticky-contact__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  cursor: pointer;
  color: #111827;
  line-height: 1;
  padding: 0;
}

.sticky-contact__close:hover {
  background: #fff;
  border-color: rgba(17, 24, 39, 0.22);
}

.sticky-contact__close:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.sticky-contact__brand-block {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 6px;
}

.sticky-contact__brand-text {
  min-width: 0;
}

.sticky-contact__brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
  white-space: normal;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.1;
}

.sticky-contact__brand--stein {
  color: var(--ink);
}

.sticky-contact__brand--reiniger {
  color: var(--brand);
}

.sticky-contact__domain {
  margin-top: 2px;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-gray);
  word-break: break-word;
}

.sticky-contact__sub {
  margin: -4px 0 2px;
  font-size: var(--fs-xs);
  color: var(--text-gray);
}

.sticky-contact__row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--text-dark);
}

.sticky-contact__ico {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(141, 187, 62, 0.12);
  color: var(--brand);
}

.sticky-contact__row a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--fs-xs);
  line-height: 1.35;
}

.sticky-contact__row a:hover {
  text-decoration: none;
  opacity: 0.85;
}

@media (max-width: 520px) {
  .sticky-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
    transform: none;
  }
}

.footer-grid--4 {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

/* Startseite: 5 Spalten wie Referenz (Marke · Produkte · Service · Über uns · Kontakt) */
.footer-grid--5 {
  grid-template-columns: minmax(0, 1.28fr) repeat(4, minmax(0, 1fr));
  gap: 32px 26px;
  margin-bottom: 40px;
}

.footer--landing {
  background: var(--footer);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer--landing .footer-lead {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 14px;
  max-width: 36ch;
  font-size: var(--fs-sm);
  line-height: 1.55;
  font-weight: 400;
}

.footer--landing .footer-col h3 {
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.08em;
  font-size: var(--fs-sm);
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer--landing .footer-col a {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 9px;
  font-size: var(--fs-sm);
  line-height: 1.45;
  font-weight: 500;
}

.footer--landing .footer-col a:hover {
  color: var(--brand);
}

.footer--landing .footer-kontakt-row {
  font-size: var(--fs-sm);
  line-height: 1.45;
  font-weight: 500;
}

.footer--landing .footer-kontakt-row a,
.footer--landing .footer-kontakt-row > span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: inherit;
  font-weight: inherit;
}

.footer--landing .footer-kontakt-row a:hover {
  color: var(--brand);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.88;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.footer-social__link:hover {
  color: var(--brand);
  opacity: 1;
}

@media (max-width: 1100px) {
  .footer-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid--5 .footer-brand-block {
    grid-column: 1 / -1;
  }
}

.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: var(--brand);
  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;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 18px;
}

.footer-bottom--landing .footer-bottom__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin: 0;
  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: 1006px) {
  .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 1fr max-content;
    align-items: center;
    gap: 16px 16px;
  }

  .site-header--landing .logo--stacked {
    grid-column: 1;
    justify-self: start;
  }

  .site-header--landing .site-header__nav {
    grid-column: 2;
    justify-self: end; /* Richtung "Jetzt anrufen" */
    padding-inline-end: 0;
  }

  .site-header--landing .nav-links {
    justify-content: flex-end;
  }

  .site-header--landing .site-header__actions {
    grid-column: 3;
    justify-self: end;
  }

  .site-header--landing .menu-toggle {
    display: none;
  }
}

@media (max-width: 1005px) {
  /* Flex + nav width:100% in einer Zeile → Überlappung mit Logo/Menü – zweite Zeile nur für Nav */
  .site-header--landing .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: auto minmax(0, auto);
    align-items: center;
    column-gap: 10px;
    row-gap: 0;
  }

  .site-header--landing .logo--stacked {
    grid-column: 1;
    grid-row: 1;
    flex: none;
    min-width: 0;
    max-width: 100%;
  }

  .site-header--landing .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex-shrink: 0;
    margin-left: 0;
    margin-top: 0;
    width: auto;
  }

  .site-header--landing .site-header__actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
    max-width: none;
    min-width: 0;
  }

  .site-header--landing .site-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    align-self: stretch;
    position: relative;
    flex: none;
  }

  .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: 5px 0;
    background: #fff;
    padding: 14px 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__call-cta {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 10px;
  }

  .btn--header-cta {
    font-size: var(--fs-sm);
    padding: 9px 12px;
  }
}

/* Sehr schmale Viewports: Logo nicht über Rand/Menü schieben */
@media (max-width: 658px) {
  .site-header--landing .site-header__inner {
    column-gap: 8px;
    padding-inline: 4px;
  }

  .site-header--landing .logo--stacked {
    gap: 0;
  }

  .site-header--landing .logo__name {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
  }

  .site-header--landing .logo__tagline--domain {
    font-size: var(--fs-xs);
  }

  .page-home .site-header--landing .logo__name {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
  }

  .page-home .site-header--landing .logo__tagline--domain {
    font-size: var(--fs-xs);
  }

  .page-home .site-header--landing .logo__img {
    height: 44px;
  }

  .site-header--landing .menu-toggle {
    padding: 8px 10px;
    font-size: var(--fs-xs);
  }
}

@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,
  .footer-grid--5 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid--5 .footer-brand-block {
    grid-column: 1 / -1;
  }

  .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,
  .footer-grid--5 {
    grid-template-columns: 1fr;
  }

  .footer-grid--5 .footer-brand-block {
    grid-column: auto;
  }

  .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-sm);
    padding: 8px 10px;
    letter-spacing: 0.04em;
  }
}

/* ——— Kontakt-Band wie Header: Mobile-Menü, Inline-CTAs, Footer, Sticky ——— */
@media (min-width: 1006px) {
  .site-header--landing .site-header__nav-drawer {
    display: contents;
  }

  .site-header__mobile-kontakt {
    display: none !important;
  }
}

@media (max-width: 1005px) {
  /* Fallback für Browser ohne :has(...) Support:
     JS setzt am Header die Klasse .nav-open. */
  .site-header--landing .site-header__nav-drawer {
    display: none;
  }

  .site-header--landing.nav-open .site-header__nav-drawer {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 6px);
    z-index: 60;
    background: var(--header-nav-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-soft);
    gap: 0;
  }

  /* Progressive Enhancement: wenn :has(...) unterstützt wird, funktioniert es auch ohne JS-Headerklasse */
  .site-header--landing .site-header__nav-drawer:has(#nav-menu.open) {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 6px);
    z-index: 60;
    background: var(--header-nav-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-soft);
    gap: 0;
  }

  .site-header--landing.nav-open .nav-links,
  .site-header--landing .site-header__nav-drawer:has(#nav-menu.open) .nav-links {
    display: flex !important;
    position: static !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .site-header--landing.nav-open .site-header__mobile-kontakt,
  .site-header--landing .site-header__nav-drawer:has(#nav-menu.open) .site-header__mobile-kontakt {
    display: block !important;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
}

.site-header__call-cta--mobile-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.site-header__call-cta--mobile-menu .btn--header-cta {
  width: 100%;
  justify-content: center;
}

.site-header__call-cta--inline {
  margin-top: 22px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.ra-about-intro__copy .site-header__call-cta--inline,
.ra-card .site-header__call-cta--inline {
  margin-top: 24px;
}

@media (max-width: 560px) {
  .site-header__call-cta--inline {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__call-cta--inline .header-phone {
    justify-content: flex-start;
  }

  .site-header__call-cta--inline .btn--header-cta {
    width: 100%;
    justify-content: center;
  }
}

.footer-kontakt-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-kontakt-phoneblock {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
}

.footer-kontakt-phoneblock:hover .footer-kontakt-phoneblock__num {
  text-decoration: none;
  opacity: 0.92;
}

.footer-kontakt-phoneblock__label {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.72);
}

.footer-kontakt-phoneblock__num {
  font-weight: 600;
  font-size: var(--fs-md);
  color: #fff;
}

.btn--footer-kontakt-cta {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.sticky-contact__cta-band {
  margin-bottom: 6px;
}

/* Sticky-Box: „Kostenlose Anfrage“ – schwarz / weiß (nicht Gold wie Header-CTA) */
.sticky-contact .sticky-contact__cta-band .btn.btn--primary.btn--header-cta {
  background: var(--header-bg, #0d0d0d);
  background-image: none;
  color: #fff !important;
  border: 2px solid var(--header-bg, #0d0d0d);
  box-shadow: none;
  filter: none !important;
}

.sticky-contact .sticky-contact__cta-band .btn.btn--primary.btn--header-cta:hover {
  background: #1a1a1a;
  background-image: none;
  border-color: #1a1a1a;
  color: #fff !important;
  box-shadow: none;
  filter: none !important;
}


.site-header__call-cta--sticky-box {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.site-header__call-cta--sticky-box .btn--header-cta {
  width: 100%;
  justify-content: center;
}

/* ——— Buttons: flach, ohne Schatten / ohne aufhellenden Glanz (Hover) ——— */
a.btn,
button.btn,
input.btn,
.btn {
  box-shadow: none !important;
  text-shadow: none !important;
}

a.btn:hover,
button.btn:hover,
input.btn:hover,
.btn:hover,
a.btn:focus,
button.btn:focus,
input.btn:focus,
.btn:focus {
  box-shadow: none !important;
  text-shadow: none !important;
}

a.btn:focus-visible,
button.btn:focus-visible,
input.btn:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  box-shadow: none !important;
}

/* Primär & ähnliche CTAs: statt filter: brightness(>1) nur leicht abdunkeln */
.btn.btn--primary:hover,
.btn--primary:hover {
  box-shadow: none !important;
  filter: brightness(0.94) !important;
}

a.btn.btn--primary[href$="konfigurator.html"]:hover,
a.btn.btn--primary[href$="konfigurator.html"]:focus-visible {
  color: #000;
}

.ra-hero__cta .btn--primary:hover {
  filter: brightness(0.94) !important;
}

.btn--light:hover {
  box-shadow: none !important;
  filter: none !important;
}

.btn--blue-outline:hover,
.vn-landing .btn--vn-cta,
.vn-landing .btn--vn-cta:hover {
  box-shadow: none !important;
}

.btn--blue-outline:hover,
.vn-landing .btn--vn-cta:hover {
  filter: brightness(0.94) !important;
}

.page-home .hero-cta--landing .btn--primary.btn--hero-lg,
.page-home .hero-cta--landing .btn--primary.btn--hero-lg:hover {
  box-shadow: none !important;
}

.page-home .hero-cta--landing .btn--primary.btn--hero-lg:hover {
  filter: brightness(0.94) !important;
}

.faq-section__regions-btn,
.faq-section__regions-btn:hover {
  box-shadow: none !important;
}

.faq-section__regions-btn:hover {
  filter: brightness(0.94) !important;
}

.roof-calc__submit,
.roof-calc__submit:hover {
  box-shadow: none !important;
}

.roof-calc__submit:hover {
  filter: brightness(0.94) !important;
}

/* ——— Cookie-Einwilligung (nur index.html) ——— */
.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  padding: 12px 16px 16px;
  pointer-events: none;
}

.cookie-consent--visible {
  pointer-events: auto;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__box {
  max-width: 960px;
  margin: 0 auto;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.18);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.cookie-consent__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0 0 14px;
  color: var(--text-gray);
}

.cookie-consent__text a {
  color: var(--primary-hover);
  font-weight: 600;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__actions .btn {
  font-size: 0.875rem;
  padding: 10px 16px;
}

.cookie-consent__panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cookie-consent__panel[hidden] {
  display: none;
}

.cookie-consent__option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  cursor: pointer;
}

.cookie-consent__option:last-child {
  margin-bottom: 0;
}

.cookie-consent__option input {
  margin-top: 4px;
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
}

.cookie-consent__option strong {
  display: block;
  margin-bottom: 2px;
}

.cookie-consent__option span {
  color: var(--text-gray);
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__actions .btn {
    width: 100%;
  }
}
