:root {
  /* Werbeagentur NOX — Markenrot (#E30613–#FF2A2A), dunkle Basis (#0B0B0D–#1A1A1A) */
  --neon: #e30613;
  --neon-hover: #ff2a2a;
  --neon-deep: #b5050f;
  --neon-rgb: 227, 6, 19;
  --highlight-water: var(--neon);

  --bg: #0b0b0d;
  --surface: #121214;
  --text: rgba(255, 255, 255, 0.92);
  --muted: #999999;
  --line: rgba(255, 255, 255, 0.1);
  --ink: #ffffff;

  /* Header / Hero-Footer / dunkle Bänder */
  --header-bg: #0b0b0d;

  --brand-primary: var(--neon);
  --brand-hover: var(--neon-hover);
  --brand: var(--brand-primary);
  --brand-dark: #0b0b0d;
  --brand-soft: rgba(var(--neon-rgb), 0.16);

  --accent: var(--brand-primary);
  --accent-soft: rgba(var(--neon-rgb), 0.14);

  --cta: var(--brand-primary);
  --cta-dark: #0b0b0d;
  --cta-soft: rgba(var(--neon-rgb), 0.18);

  /* Subtiler Blau-/Grau-Verlauf (fast schwarz, leichter Blaustich) */
  --band-blue: linear-gradient(155deg, #0b0b0d 0%, #12121c 42%, #0c1018 100%);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.38);
  --radius: 14px;
  --radius-lg: 20px;
  /*
   * Typografie – wenige Stufen (SEO: Fließtext mind. 16px, klare H1/H2-Hierarchie)
   * Konvention: Fließtext = --fs-md; sekundär = --fs-sm; Meta/Caps = --fs-xs;
   * Zwischenüberschriften Sektionen = --fs-section-title; Hero nur --fs-hero-* / --fs-display.
   */
  --fs-xs: 0.8125rem; /* 13px: Eyebrows, Meta, Caps */
  --fs-sm: 0.875rem; /* 14px: kleine Absätze, Karten */
  --fs-md: 1rem; /* 16px: Standard-Fließtext */
  --fs-lg: 1.125rem; /* 18px: Leads / H2 unter Seitentitel */
  --fs-section-title: clamp(1.375rem, 2.25vw, 1.875rem); /* H2-Sektionen, zentrale Überschriften */
  --fs-hero-h1: clamp(1.875rem, 3.25vw, 2.5rem); /* klassischer Hero-H1 */
  --fs-hero-slide: clamp(1.5rem, 2.75vw, 2rem); /* zweite Slider-Zeile */
  --fs-hero-accent: clamp(2rem, 4vw, 2.625rem); /* Hero-Akzentzeile */
  --fs-hero-billboard-line: clamp(1.5rem, 3.25vw, 2.125rem); /* Billboard-Zeilen */
  --fs-hero-legacy: var(--fs-hero-h1);
  --fs-display: clamp(1.875rem, 2.75vw, 2.375rem); /* KPI-Zahlen, große Preisanzeige */
  --fs-seo-page-title: clamp(1.5rem, 2.35vw, 1.9375rem); /* SEO-Hub & Artikel H1 – über H2 */
}

/* ——— Steinreiniger page sections (match screenshot) ——— */
.ra-hero {
  background: transparent;
  padding: 0;
}

.ra-hero-slider-bleed {
  width: 100%;
  margin: 0;
}

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

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

.ra-hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
}

.ra-hero-slider__slide .ra-hero__grid {
  width: 100%;
  min-height: 100%;
}

.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(31, 31, 31, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(31, 31, 31, 0.14);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.ra-hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(31, 31, 31, 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: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  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: hidden;
  /* gleiche Höhe für alle Slides, unabhängig von Textlänge */
  min-height: clamp(380px, 36vw, 530px);
  position: relative;
}

/* Referenz-Layout: Textspalte etwas schmaler, rechts einheitliche Fläche */
.ra-hero-slider .ra-hero__grid--nox-brand {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.75fr);
  min-height: clamp(490px, 28vw, 542px);
  background: #000;
}

/* Drei Kurzargumente direkt unter Hero-CTAs (kein zusätzlicher Streifen) */
.ra-hero-trust-inline {
  list-style: none;
  margin: clamp(14px, 2vw, 22px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
  max-width: 100%;
}

.ra-hero-trust-inline__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  min-width: 0;
}

.ra-hero-trust-inline__ico {
  display: grid;
  place-items: center start;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.ra-hero-trust-inline__ico svg {
  display: block;
}

.ra-hero-trust-inline__text {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.88);
}

.ra-hero-trust-inline__line {
  display: block;
}

@media (max-width: 520px) {
  .ra-hero-trust-inline {
    gap: 8px;
  }

  .ra-hero-trust-inline__ico svg {
    width: 22px;
    height: 22px;
  }
}

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

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

.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(255, 255, 255, 0.72);
}

.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 (hell / Akzentzeile / hell) */
.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-slide);
  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 Folie: Billboard-Kopf (drei Zeilen, Markenakzent) */
.ra-hero__title--billboard {
  margin: 0 0 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0;
  letter-spacing: 0;
  line-height: 0;
  text-transform: uppercase;
  color: #fff;
}

.ra-hero__title--billboard .ra-hero__title-stack {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ra-hero__title--billboard .ra-hero__title-row {
  display: block;
  font-size: var(--fs-hero-billboard-line);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.06;
  color: #fff;
}

.ra-hero__title--billboard .ra-hero__title-accent {
  display: inline;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: var(--neon);
}

/* Hero Startbereich – Typo wie Marken-Referenz (Eyebrow rot, Domain-Zeile, Subline, Lead) */
.ra-hero-slider .ra-hero__copy--brand .ra-hero__eyebrow {
  margin: 0 0 12px;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--neon);
}

.ra-hero-slider .ra-hero__copy--brand .ra-hero__title--nox-domain {
  margin: 0 0 18px;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  /* Immer eine Zeile; kleineres Minimum für schmale Viewports */
  font-size: clamp(0.9375rem, 4vw, 2.875rem);
  letter-spacing: 0.04em;
  line-height: 1.06;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.ra-hero-slider .ra-hero__copy--brand .ra-hero__subline {
  margin: 0 0 14px;
  max-width: 38ch;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: var(--fs-lg);
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
}

.ra-hero-slider .ra-hero__copy--brand .ra-hero__lead {
  margin: 0 0 22px;
  max-width: 52ch;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: var(--fs-sm);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.88);
}

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

.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(30, 95, 175, 0.6);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.65);
  flex: 0 0 auto;
}

.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: Telefon-Button soll nicht im Button umbrechen */
@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-sm);
  min-height: 52px;
}

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

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

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

/* Outline-Button: Primary-Rand, dunkler Text */
.ra-hero__cta .btn--outline {
  border-color: var(--brand);
  color: var(--ink);
  background: rgba(10, 10, 10, 0.35);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.14), 0 18px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.ra-hero__cta .btn--outline:hover {
  border-color: var(--brand);
  box-shadow: none;
  background: rgba(var(--neon-rgb), 0.08);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.22), 0 0 22px rgba(var(--neon-rgb), 0.18);
}

/* Billboard-CTAs (Primär rot, Ghost mit weißem Rand) – nicht über volle Spaltenbreite strecken (v. a. ab einspaltigem Hero ~1200px) */
.ra-hero-slider .ra-hero__cta .ra-btn-billboard-primary,
.ra-hero-slider .ra-hero__cta .ra-btn-billboard-secondary {
  flex: 0 1 auto;
  width: auto;
  min-width: min(100%, 10.5rem);
  max-width: min(100%, 15.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-xs);
  font-weight: 700;
  white-space: nowrap;
}

.ra-hero-slider .ra-hero__cta .ra-btn-billboard-primary {
  background: var(--neon);
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.ra-hero-slider .ra-hero__cta .ra-btn-billboard-primary:hover {
  background: var(--neon-hover);
  color: #ffffff;
  box-shadow: none;
  filter: none;
}

.ra-hero-slider .ra-hero__cta .btn--outline.ra-btn-billboard-secondary {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.88);
  color: #fff;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.ra-hero-slider .ra-hero__cta .btn--outline.ra-btn-billboard-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: none;
}

.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__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__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--line);
  min-height: clamp(320px, 32vw, 460px);
}

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

.ra-hero__video {
  z-index: 1;
  pointer-events: none;
}

.ra-hero-slider .ra-hero__media {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

/* Slider ohne Bildmotiv: kompakte schwarze Fläche */
.ra-hero-slider .ra-hero__media.ra-hero__media--solid-dark {
  background: #000;
}

/* Hero-Hintergrundvideo; bei Fehler/kein Frame: nur Schwarz (kein Ersatzbild) */
.ra-hero-slider .ra-hero__media--hero-video {
  background: #000;
}

/* Slider-Hero: kein CSS-Filter → vermeidet weiche Rasterisierung beim Skalieren */
.ra-hero-slider .ra-hero__media:not(.ra-hero__media--solid-dark) img,
.ra-hero-slider .ra-hero__media:not(.ra-hero__media--solid-dark) video {
  object-position: 72% 50%;
  transform: none;
  filter: none;
}

/* Slide 1: Panorama mit schwarzem Bereich links im Bitmap – rechte Spalte zeigt Geräte + Van (rechter Bildausschnitt) */
.ra-hero-slider__slide:first-child .ra-hero__media:not(.ra-hero__media--solid-dark) img,
.ra-hero-slider__slide:first-child .ra-hero__media:not(.ra-hero__media--solid-dark) video {
  object-fit: cover;
  object-position: 81% 50%;
  transform: none;
  transform-origin: center center;
}

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

/* Slide 1 Hero-Video: zentrierter Ausschnitt (3840×2160 Motion Graphic) */
.ra-hero-slider__slide:first-child .ra-hero__media--hero-video video {
  object-fit: cover;
  object-position: center center;
  filter: none;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .ra-hero__video {
    display: none;
  }
}

/* Im Hero-Slider: dunkler Studio-Look + links Lesefläche (nur wenn ein Bild angezeigt wird) */
.ra-hero-slider .ra-hero__media:not(.ra-hero__media--solid-dark)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 5, 0.94) 0%,
      rgba(8, 10, 8, 0.82) 16%,
      rgba(12, 14, 12, 0.42) 34%,
      rgba(14, 18, 14, 0.14) 52%,
      rgba(20, 26, 18, 0.06) 68%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(95% 130% at 0% 48%, rgba(0, 0, 0, 0.62) 0%, transparent 58%),
    radial-gradient(55% 85% at 92% 42%, rgba(var(--neon-rgb), 0.09) 0%, transparent 62%);
}

/* NOX-Hero mit Bild: Overlay nur für Übergang zur Textspalte */
.ra-hero__grid--nox-brand .ra-hero__media:not(.ra-hero__media--solid-dark)::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 5, 0.68) 0%,
      rgba(8, 10, 8, 0.28) 26%,
      rgba(255, 255, 255, 0) 48%
    ),
    radial-gradient(78% 105% at 0% 52%, rgba(0, 0, 0, 0.22) 0%, transparent 46%);
}

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

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

/* ——— Unter Hero-Slider: Features-Leiste, Galerie ——— */
.wa-features-bar {
  background: var(--bg);
  padding: clamp(8px, 1.4vw, 16px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.wa-features-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  row-gap: clamp(10px, 1.5vw, 16px);
}

.wa-features-bar__item {
  min-width: 0;
  text-align: center;
}

.wa-features-bar__ico {
  display: flex;
  justify-content: center;
  color: var(--neon);
  margin-bottom: 6px;
}

.wa-features-bar__ico svg {
  width: 32px;
  height: 32px;
}

.wa-features-bar__title {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 3px;
  line-height: 1.18;
}

.wa-features-bar__text {
  margin: 0 auto;
  max-width: 26ch;
  font-size: var(--fs-xs);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 960px) {
  .wa-features-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .wa-features-bar__grid {
    grid-template-columns: 1fr;
  }
}

/* Leistungen-Kartenband (hell, Referenzlayout) – über „Unsere Arbeiten“ */
.wa-leistungen-highlight {
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Kompakterer Streifen: weniger grauer „Hintergrund“, Kartenbreite im Carousel unverändert */
.wa-leistungen-highlight.ra-section {
  padding-top: clamp(26px, 3.6vw, 34px);
  padding-bottom: clamp(26px, 3.6vw, 34px);
}

.wa-leistungen-highlight__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(18px, 2.8vw, 28px);
}

.wa-leistungen-highlight__eyebrow {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.wa-leistungen-highlight__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.2;
  color: #0a0a0a;
}

.wa-leistungen-highlight__rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--brand);
}

.wa-leistungen-highlight__carousel-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.wa-leistungen-highlight__carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wa-leistungen-highlight__carousel-viewport::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .wa-leistungen-highlight__carousel-viewport {
    scroll-behavior: auto;
  }
}

.wa-leistungen-highlight__carousel-viewport:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.wa-leistungen-highlight__carousel-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  align-content: stretch;
  gap: clamp(14px, 2vw, 22px);
  padding: 2px 4px 8px;
  width: max-content;
}

.wa-leistungen-highlight__carousel-cell {
  flex: 0 0 min(280px, calc(100vw - 120px));
  width: min(280px, calc(100vw - 120px));
  max-width: min(280px, calc(100vw - 120px));
  scroll-snap-align: start;
  box-sizing: border-box;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.wa-leistungen-highlight__carousel-btn {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
}

.wa-leistungen-highlight__carousel-btn:hover:not(:disabled) {
  border-color: rgba(var(--neon-rgb), 0.45);
  background: #fafafa;
}

.wa-leistungen-highlight__carousel-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.wa-leistungen-highlight__carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.wa-leistungen-highlight__card {
  min-width: 0;
  /* Gleiche Kartenhöhe im Slider: Zeile stretcht auf höchste Karte; kein height:100% (bricht Stretch oft) */
  min-height: clamp(188px, 27vmin, 264px);
  height: auto;
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 18px) clamp(12px, 1.8vw, 16px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055);
}

.wa-leistungen-highlight__ico {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  color: var(--brand);
}

.wa-leistungen-highlight__ico svg {
  display: block;
}

.wa-leistungen-highlight__card-title {
  margin: 0 0 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: var(--fs-sm);
  letter-spacing: -0.01em;
  color: #0a0a0a;
  line-height: 1.25;
  min-height: 2.45em;
}

.wa-leistungen-highlight__card-text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.58);
  flex: 1 1 auto;
}

@media (max-width: 520px) {
  .wa-leistungen-highlight__carousel-cell {
    flex-basis: min(260px, calc(100vw - 104px));
    width: min(260px, calc(100vw - 104px));
    max-width: min(260px, calc(100vw - 104px));
  }

  .wa-leistungen-highlight__carousel-btn {
    width: 42px;
    height: 42px;
  }
}

.wa-arbeiten-teaser-region {
  scroll-margin-top: 88px;
}

.wa-arbeiten-intro {
  background: #ffffff;
  padding: clamp(40px, 5vw, 56px) 0 clamp(22px, 3vw, 32px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-arbeiten-intro__inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.wa-arbeiten-intro__eyebrow {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.wa-arbeiten-intro__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.2;
  color: #0a0a0a;
}

.wa-arbeiten-intro__rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 2px;
  background: var(--brand);
}

.wa-arbeiten-intro__lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.58);
}

#ueber-uns {
  scroll-margin-top: 88px;
}

#rechner {
  scroll-margin-top: 88px;
}

/* heller Galerie-Block wie Referenzscreenshot */
.wa-work-teaser.ra-section--white-bleed {
  background: #f4f4f4 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-work-teaser__inner {
  text-align: center;
}

.wa-work-teaser__ai-note {
  margin: 0 auto;
  max-width: 52ch;
  padding: 0 12px;
  font-size: var(--fs-xs);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(10, 10, 10, 0.35);
}

.wa-work-teaser__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-bottom: 26px;
}

.wa-work-teaser__filter {
  margin: 0;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: rgba(10, 10, 10, 0.48);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.wa-work-teaser__filter:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.wa-work-teaser__filter:hover {
  border-color: rgba(var(--neon-rgb), 0.5);
  color: #0a0a0a;
}

.wa-work-teaser__filter--active {
  background: var(--neon);
  border-color: transparent;
  color: #fff;
}

.wa-work-teaser__slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 14px;
}

.wa-work-teaser__track {
  display: flex;
  flex-direction: row;
  transition: transform 0.48s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}

.wa-work-teaser__panel {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .wa-work-teaser__track {
    transition: none;
  }
}

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

.wa-work-teaser__cell {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #ddd;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.wa-work-teaser__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Folierung: horizontales Karussell mit Pfeilen */
.wa-work-teaser__carousel-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.wa-work-teaser__carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wa-work-teaser__carousel-viewport::-webkit-scrollbar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .wa-work-teaser__carousel-viewport {
    scroll-behavior: auto;
  }
}

.wa-work-teaser__carousel-viewport:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.wa-work-teaser__carousel-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 2px 4px 8px;
  width: max-content;
}

.wa-work-teaser__carousel-row .wa-work-teaser__cell {
  flex: 0 0 min(360px, calc(100vw - 132px));
  width: min(360px, calc(100vw - 132px));
  max-width: min(360px, calc(100vw - 132px));
  scroll-snap-align: start;
}

.wa-work-teaser__carousel-btn {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    opacity 0.15s ease;
}

.wa-work-teaser__carousel-btn:hover:not(:disabled) {
  border-color: rgba(var(--neon-rgb), 0.45);
  background: #fafafa;
}

.wa-work-teaser__carousel-btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.wa-work-teaser__carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 520px) {
  .wa-work-teaser__carousel-row .wa-work-teaser__cell {
    flex-basis: min(320px, calc(100vw - 112px));
    width: min(320px, calc(100vw - 112px));
    max-width: min(320px, calc(100vw - 112px));
  }

  .wa-work-teaser__carousel-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 900px) {
  .wa-work-teaser__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .wa-work-teaser__grid {
    grid-template-columns: 1fr;
  }
}

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

.ra-section--white-bleed {
  background: var(--surface);
}

.ra-section--white-bleed.ra-section--tint {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ra-section--about-intro {
  background: var(--surface);
  padding: 44px 0 32px;
}

.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(255, 255, 255, 0.78);
  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(255, 255, 255, 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: rgba(var(--neon-rgb), 0.12);
  border: 2px solid rgba(var(--neon-rgb), 0.55);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.35);
}

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

.ra-about-intro__image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  aspect-ratio: 2 / 1;
}

/* Team-Panorama „Sichtbarkeit für Ihr Business“ (natürliches Bildformat 1024×460) */
.ra-about-intro__image--nox-banner {
  aspect-ratio: 1024 / 460;
}

.ra-about-intro__image--nox-banner img {
  object-fit: contain;
  object-position: center center;
  background: #0a0a0a;
}

.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(var(--neon-rgb), 0.65);
}

.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: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  text-align: left;
}

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

.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: #ffffff;
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.22), 0 0 26px rgba(var(--neon-rgb), 0.16);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.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-sm);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.74);
}

.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(--line);
  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(--line);
  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: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.ra-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(var(--neon-rgb), 0.12);
  color: var(--ink);
  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 {
  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(255, 255, 255, 0.92);
  font-size: var(--fs-md);
  line-height: 1.7;
}

.ra-partner__left p strong {
  color: #ffffff;
  font-weight: 700;
}

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

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

.ra-partner__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 2px solid rgba(var(--neon-rgb), 0.45);
  box-shadow: inset 0 0 0 3px rgba(10, 10, 10, 0.35);
}

.ra-partner__checks li::after {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: var(--fs-xs);
  line-height: 1;
}

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

.ra-lead {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fs-md);
  line-height: 1.55;
  max-width: 70ch;
}

/* Preis-Schätzung: heller Abschnitt */
.ra-calc--light {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ra-calc--light .ra-kicker {
  color: var(--neon);
  font-size: var(--fs-xs);
  letter-spacing: 0.11em;
}

.ra-calc--light .ra-h2 {
  color: #0a0a0a;
}

.ra-calc--light .ra-lead {
  color: rgba(10, 10, 10, 0.6);
}

.ra-calc--light .ra-calc__form {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.ra-calc--light .ra-calc__label {
  color: rgba(10, 10, 10, 0.72);
}

.ra-calc--light .ra-calc__form input,
.ra-calc--light .ra-calc__form select {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #0a0a0a;
}

.ra-calc--light .ra-calc__check {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(10, 10, 10, 0.78);
}

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

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

.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(255, 255, 255, 0.78);
}

.ra-calc__form input,
.ra-calc__form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.55);
  color: var(--ink);
  font-size: var(--fs-sm);
  outline: none;
}

.ra-calc__form input:focus,
.ra-calc__form select:focus {
  border-color: rgba(var(--neon-rgb), 0.55);
  box-shadow: 0 0 0 4px rgba(var(--neon-rgb), 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(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.55);
  color: rgba(255, 255, 255, 0.78);
  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);
  border-radius: 18px;
  padding: 18px 18px 16px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.18);
}

.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-display);
  line-height: 1.05;
}

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

@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-md);
  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: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.ra-cta-field input::placeholder {
  color: rgba(31, 31, 31, 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: var(--cta);
  color: #ffffff;
  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-sm);
  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(--header-bg);
  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: underline;
}

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

  /* Einspaltig: leicht nach rechts (nur bei Hero-Bild) */
  .ra-hero-slider__slide:first-child .ra-hero__media:not(.ra-hero__media--solid-dark) img,
  .ra-hero-slider__slide:first-child .ra-hero__media:not(.ra-hero__media--solid-dark) video {
    object-position: 61% 50%;
  }

  .ra-hero-slider__slide:first-child .ra-hero__media--hero-video video {
    object-position: center center;
  }
}

@media (max-width: 960px) {
  .ra-hero__grid {
    grid-template-columns: 1fr;
  }
  .ra-hero__copy {
    padding: 22px;
  }
  .ra-hero__media {
    min-height: 260px;
  }
  .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-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 Mobil: Bild als voller Bereich-Hintergrund, Text darüber (nicht unter dem Text) */
  .ra-hero-slider .ra-hero__grid {
    position: relative;
    min-height: clamp(380px, 58vw, 540px);
    background: var(--bg);
    overflow: hidden;
  }

  .ra-hero-slider .ra-hero__grid--nox-brand {
    min-height: clamp(490px, 56vw, 592px);
    background: #000;
  }

  .ra-hero-slider .ra-hero__copy {
    padding: 22px 20px;
    margin: 14px;
    max-width: min(560px, calc(100% - 28px));
    background: rgba(10, 10, 10, 0.82);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 2;
  }

  .ra-hero-slider .ra-hero__media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    width: 100%;
  }

  .ra-hero-slider__slide:first-child .ra-hero__media:not(.ra-hero__media--solid-dark) img,
  .ra-hero-slider__slide:first-child .ra-hero__media:not(.ra-hero__media--solid-dark) video {
    object-position: 51% 48%;
  }

  .ra-hero-slider__slide:first-child .ra-hero__media--hero-video video {
    object-position: center center;
  }

  /* Desktop-Verlauf über dem Bild gegenüber Lesetext – wieder aktiv (nur mit Bild) */
  .ra-hero-slider .ra-hero__media:not(.ra-hero__media--solid-dark)::after {
    display: block;
  }

}

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

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

* {
  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(--band-blue);
  background-color: 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; /* Poppins ExtraBold */
}

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

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

/* Primär-Buttons bleiben lesbar: globales a:hover würge sonst weiße Button-Schrift zu Rot */
a.btn--primary:hover,
button.btn--primary:hover,
input.btn--primary:hover,
.btn.btn--primary:hover {
  color: #0a0a0a;
}

a.btn--primary:focus-visible,
button.btn--primary:focus-visible,
input.btn--primary:focus-visible,
.btn.btn--primary:focus-visible {
  color: #0a0a0a;
}

/* Keine Underlines bei Mouseover/Focus (global) */
a:hover,
a:focus-visible {
  text-decoration: none !important;
}

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

/* Footer-Leistungen: Zielanker unter festem Header */
#leistungen-intro,
#leistung-druck,
#leistung-beschriftung,
#leistung-folierung,
#faq {
  scroll-margin-top: 88px;
}

/*
 * Leistungen: Anker an Überschrift (nicht Sektionsrand), damit die Features-Leiste
 * darüber komplett aus dem Viewport scrollt und „UNSERE LEISTUNGEN“ klar im Bild sitzt.
 */
#leistungen {
  scroll-margin-top: clamp(96px, 12vh, 132px);
}

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

.topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

.topbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__pill svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: var(--fs-xs);
  text-decoration: none !important;
}

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

/* ——— Seitenkopf (nur .site-header, nicht z. B. FAQ-<header>) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: var(--fs-lg);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

a.logo:hover,
a.logo:focus-visible {
  color: #fff;
}

/* Mausklick: kein Rahmen am Logo; Tastatur: weiterhin :focus-visible (globale a-Regel) */
a.logo:focus:not(:focus-visible) {
  outline: none;
}

.logo svg {
  flex-shrink: 0;
}

.logo svg path {
  stroke: rgba(255, 255, 255, 0.92);
}

.logo .logo__icon {
  flex-shrink: 0;
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* 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: 999px;
  font-weight: 700;
  font-size: var(--fs-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.22), 0 0 26px rgba(var(--neon-rgb), 0.18), 0 18px 55px rgba(0, 0, 0, 0.55);
}

.btn--primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.28), 0 0 30px rgba(var(--neon-rgb), 0.22), 0 22px 65px rgba(0, 0, 0, 0.6);
}

.btn--outline {
  background: rgba(10, 10, 10, 0.35);
  color: var(--ink);
  border: 2px solid rgba(var(--neon-rgb), 0.22);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.12);
}

.btn--outline:hover {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.22), 0 0 20px rgba(var(--neon-rgb), 0.16);
}

.btn--light {
  background: rgba(10, 10, 10, 0.55);
  color: var(--ink);
  border: 2px solid transparent;
}

.btn--light:hover {
  box-shadow: var(--shadow-sm);
}

.btn--block {
  width: 100%;
}

.btn__sub {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  opacity: 0.92;
  margin-top: 2px;
}

.btn:has(.btn__sub) {
  flex-direction: column;
  gap: 2px;
  padding-block: 14px;
  text-align: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background:
    linear-gradient(165deg, #fff 0%, var(--bg) 48%, #eef2f8 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, rgba(74, 144, 226, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(30, 95, 175, 0.06), 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(31, 31, 31, 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(31, 31, 31, 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: SEO-Seiten + Rechtstext – eine gemeinsame Seitentitel-Stufe */
.seo-article h1,
.legal h1 {
  font-size: var(--fs-seo-page-title);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.seo-article h1 {
  margin: 0 0 14px;
  color: #0a0a0a;
}

.legal h1 {
  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: var(--line);
  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: #dcdcdc;
  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(31, 31, 31, 0.88);
  color: #fff;
}

.vorher-nacher__badge--nachher {
  background: rgba(var(--neon-rgb), 0.92);
  color: #0a0a0a;
}

.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(31, 31, 31, 0.15);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.vorher-nacher__arrow:hover {
  background: rgba(10, 10, 10, 0.55);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.2), 0 0 22px rgba(var(--neon-rgb), 0.16), 0 18px 55px rgba(0, 0, 0, 0.55);
}

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

.vorher-nacher__dot.is-active {
  border-color: var(--cta);
  background: var(--cta);
  transform: scale(1.15);
}

/* ——— Stats ——— */
.stats {
  padding: 56px 0;
  background: var(--bg);
}

.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(--header-bg);
}

.video-text-split__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-text-split__brand {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  max-width: min(calc(100% - 20px), 260px);
  padding: 0;
  pointer-events: none;
}

.video-text-split__brand .logo--on-video {
  color: #fff;
  gap: 8px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
}

.video-text-split__brand .logo__icon {
  width: 44px;
  height: 44px;
}

.video-text-split__brand .logo__name {
  font-size: 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);
}

/* Kontaktseite: heller Block unter dem Header */
section#kontakt.section--surface {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

section#kontakt .section-head h2 {
  color: #0a0a0a;
}

section#kontakt .section-head p {
  color: rgba(10, 10, 10, 0.62);
}

section#kontakt form label {
  color: #0a0a0a;
}

section#kontakt form input,
section#kontakt form textarea,
section#kontakt form select {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.12);
  color: #0a0a0a;
}

section#kontakt form input::placeholder,
section#kontakt form textarea::placeholder {
  color: rgba(10, 10, 10, 0.45);
}

/* Danke-Seite: heller Block wie Kontakt */
section#danke.section--surface {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

section#danke .section-head h1 {
  color: #0a0a0a;
}

section#danke .section-head p {
  color: rgba(10, 10, 10, 0.62);
}

/* ——— 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: var(--bg);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
  font-size: var(--fs-md);
  margin: 0;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
}

.step h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 2px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.step p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
  line-height: 1.55;
}

/* ——— Packages (Preis/Leistung) ——— */
#preise {
  scroll-margin-top: 88px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.package {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.package__media {
  margin: -28px -24px 18px -24px;
  aspect-ratio: 16 / 10;
  background: var(--line);
  overflow: hidden;
}

.package__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package--featured {
  border-color: rgba(30, 95, 175, 0.45);
  box-shadow: 0 20px 50px rgba(30, 95, 175, 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(30, 95, 175, 0.38);
}

.package h3 {
  margin: 0 0 12px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.package > p {
  margin: 0 0 18px;
  font-size: var(--fs-md);
  color: var(--muted);
}

.package ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}

.package li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--fs-md);
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.package li:last-child {
  border-bottom: none;
}

.package li svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 3px;
}

.price-hint {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: #eeeeee;
  border-radius: var(--radius);
  font-size: var(--fs-md);
  color: var(--muted);
}

.price-hint strong {
  color: var(--ink);
}

/* ——— Dachfläche & Kosten (Rechner) ——— */
#dachrechner {
  scroll-margin-top: 88px;
}

.roof-calc-section {
  padding: clamp(44px, 5vw, 64px) 0;
  background: var(--surface);
}

.roof-calc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

.roof-calc__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 31, 31, 0.08);
  box-shadow: 0 10px 36px rgba(31, 31, 31, 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-section-title);
  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-lg);
}

.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: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  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: #ffffff;
  background: var(--cta);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.22), 0 0 26px rgba(var(--neon-rgb), 0.18), 0 18px 55px rgba(0, 0, 0, 0.55);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
}

.roof-calc__submit:hover {
  background: var(--brand-hover);
  box-shadow: 0 6px 18px rgba(var(--neon-rgb), 0.35);
}

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

/* ——— FAQ + Einsatzgebiete (zweispaltig) ——— */
.faq-section {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.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(12px, 2vw, 20px) clamp(18px, 2.5vw, 26px) clamp(16px, 2.5vw, 24px);
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.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: rgba(255, 255, 255, 0.72);
  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: rgba(255, 255, 255, 0.86);
}

.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: rgba(var(--neon-rgb), 0.12);
  border: 2px solid rgba(var(--neon-rgb), 0.55);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.35);
}

.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: #ffffff !important;
  background: var(--cta);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  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(0, 0, 0, 0.24);
}

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

.faq-section__faq-title {
  margin: 0 0 10px;
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--neon-rgb), 0.85);
  line-height: 1.15;
}

.faq-section__faq-lead {
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.58);
  max-width: 52ch;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-section .faq-item {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  background: #fafafa;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-section .faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--fs-md);
  color: #0a0a0a;
  line-height: 1.42;
}

.faq-section .faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-section .faq-item summary::marker {
  content: "";
}

.faq-section .faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15em;
  font-weight: 500;
  color: var(--neon);
  line-height: 1;
}

.faq-section .faq-item[open] summary::after {
  content: "−";
  font-size: var(--fs-lg);
}

.faq-section .faq-item[open] {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-section .faq-item[open] summary {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.faq-section .faq-item > p {
  margin: 0;
  padding: 16px 22px 22px;
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.65;
  color: #4b5563;
}

@media (max-width: 1024px) {
  .faq-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px 32px;
  }
}

@media (max-width: 820px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-section__col--regions {
    padding-top: 0;
  }
}

/* ——— Contact ——— */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

form label {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: 6px;
  color: var(--ink);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  margin-bottom: 14px;
  background: var(--surface);
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-aside {
  padding: 28px;
  background: var(--header-bg);
  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(31, 31, 31, 0.35);
}

.contact-aside__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: var(--fs-md);
}

.contact-line a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-line a:hover {
  text-decoration: underline;
}

.contact-line svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 3px;
}

/* ——— CTA banner ——— */
.cta-banner {
  padding: 56px 0;
  background: var(--band-blue);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 12px;
  font-size: var(--fs-section-title);
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin: 0 0 24px;
  max-width: 520px;
  margin-inline: auto;
  opacity: 0.9;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ——— Footer ——— */
footer {
  padding: 48px 0 32px;
  background: var(--header-bg);
  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: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--fs-sm);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-right: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
}

/* ——— Vorher/Nachher-Leiste (Kästen, volle Breite) ——— */
#vorher-nachher-slider {
  scroll-margin-top: 88px;
}

.themen-vn-marquee {
  padding: 40px 0 36px;
  background: var(--bg);
  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: var(--line);
}

.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(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.55);
  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: rgba(10, 10, 10, 0.75);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(var(--neon-rgb), 0.2), 0 0 18px rgba(var(--neon-rgb), 0.16);
}

.themen-vn-marquee__btn--prev {
  left: 10px;
}

.themen-vn-marquee__btn--next {
  right: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .themen-vn-marquee__viewport {
    scroll-behavior: auto;
  }
}

/* ——— Einsatzgebiete (regionaler Hub) / SEO-Unterseiten ——— */
.themenseiten-teaser {
  padding: 72px 0;
}

.themenseiten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.themenseiten-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.themenseiten-card:hover {
  border-color: rgba(30, 95, 175, 0.4);
  box-shadow: var(--shadow);
}

.themenseiten-card h3 {
  margin: 0 0 8px;
  font-size: var(--fs-lg);
  color: var(--ink);
}

.themenseiten-card p {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--muted);
  flex: 1;
}

.themenseiten-card .more {
  margin-top: 14px;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--brand-dark);
}

/* Startseite #einsatzgebiete: heller Abschnitt */
#einsatzgebiete.themenseiten-teaser {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#einsatzgebiete .ra-kicker {
  color: rgba(var(--neon-rgb), 0.85);
}

#einsatzgebiete .ra-h2 {
  color: #0a0a0a;
}

#einsatzgebiete .ra-lead {
  color: rgba(10, 10, 10, 0.58);
}

#einsatzgebiete .themenseiten-card {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#einsatzgebiete .themenseiten-card:hover {
  border-color: rgba(var(--neon-rgb), 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

#einsatzgebiete .themenseiten-card h3 {
  color: #0a0a0a;
}

#einsatzgebiete .themenseiten-card p {
  color: rgba(10, 10, 10, 0.58);
}

#einsatzgebiete .themenseiten-card .more {
  color: #0a0a0a;
}

.seo-hub-hero {
  padding: 48px 0 40px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.seo-hub-hero__title {
  margin: 0 0 14px;
  font-size: var(--fs-seo-page-title);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.seo-hub-hero__lead {
  margin: 0;
  max-width: 100%;
  width: 100%;
  font-size: var(--fs-lg);
  color: rgba(10, 10, 10, 0.72);
  line-height: 1.55;
}

.seo-hub-hero__lead strong {
  color: #0a0a0a;
  font-weight: 700;
}

.seo-hub-hero__lead p {
  margin: 0 0 1rem;
}

.seo-hub-hero__lead ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.seo-hub-hero__lead li {
  margin-bottom: 0.35em;
}

.seo-hub-hero__lead li:last-child {
  margin-bottom: 0;
}

.seo-hub-body {
  padding-top: 40px;
  padding-bottom: 72px;
}

.seo-hub-section-title {
  margin: 0 0 16px;
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.seo-hub-section-title--small {
  margin: 0 0 12px;
  font-size: var(--fs-md);
}

.seo-hub-checklist {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 65ch;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text);
}

.seo-hub-outro {
  width: 100%;
  max-width: 100%;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text);
}

.seo-hub-outro p {
  margin: 0 0 1rem;
}

.seo-hub-outro p:last-child {
  margin-bottom: 0;
}

.seo-hub-outro a {
  color: var(--cta-dark);
  font-weight: 700;
}

.seo-hub-body .seo-cta-bar {
  margin-top: 32px;
}

.seo-cta-bar__hint {
  color: var(--muted);
  font-size: var(--fs-sm);
}

.seo-hub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.seo-hub-list--cities {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.seo-hub-lead-secondary {
  margin: -8px 0 20px;
  max-width: 70ch;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--muted);
}

main.page:has(.seo-hub-body) {
  background: #fff;
  color: #0b0b0d;
}

main.page:has(.seo-hub-body) .seo-hub-checklist,
main.page:has(.seo-hub-body) .seo-hub-outro {
  color: rgba(10, 10, 10, 0.88);
}

main.page:has(.seo-hub-body) .seo-hub-outro a {
  color: var(--brand);
}

main.page:has(.seo-hub-body) .seo-hub-section-title {
  color: #0a0a0a;
}

main.page:has(.seo-hub-body) .seo-hub-lead-secondary {
  color: rgba(10, 10, 10, 0.62);
}

.seo-hub-item {
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.seo-hub-item:hover {
  border-color: rgba(30, 95, 175, 0.45);
  box-shadow: var(--shadow-sm);
}

.seo-hub-item strong {
  color: var(--ink);
  font-size: var(--fs-lg);
}

.seo-hub-item span {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.seo-hub-item--muted {
  border-style: dashed;
  opacity: 0.95;
}

.breadcrumb {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cta-dark);
}

.seo-article {
  padding: 40px 0 72px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.seo-article .narrow {
  max-width: 100%;
  margin-inline: auto;
}

.seo-article .sub {
  font-size: var(--fs-lg);
  color: rgba(10, 10, 10, 0.62);
  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: #0a0a0a;
}

.seo-article p {
  margin: 0 0 16px;
  color: rgba(10, 10, 10, 0.88);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.seo-article ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: rgba(10, 10, 10, 0.88);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.seo-article .breadcrumb {
  color: rgba(10, 10, 10, 0.52);
}

.seo-article .breadcrumb a {
  color: rgba(10, 10, 10, 0.58);
}

.seo-article .breadcrumb a:hover {
  color: var(--neon-deep);
}

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

.seo-article .seo-cta-bar {
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.seo-article .seo-cta-bar__hint {
  color: rgba(10, 10, 10, 0.62);
}

/* ——— Legal subpages ——— */
body.page-site:has(> main.page--legal) {
  background: #fff;
}

.page {
  padding: 40px 0 72px;
}

.page--legal {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legal {
  max-width: 100%;
}

.legal h1 {
  margin: 0 0 10px;
}

.page--legal .legal h1 {
  color: #0a0a0a;
}

.legal .meta {
  font-size: var(--fs-md);
  color: var(--muted);
  margin: 0 0 28px;
}

.page--legal .legal .meta {
  color: rgba(10, 10, 10, 0.55);
}

.legal h2 {
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
  color: var(--ink);
}

.page--legal .legal h2 {
  color: #0a0a0a;
}

.legal p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.page--legal .legal p {
  color: rgba(10, 10, 10, 0.86);
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: var(--text);
  font-size: var(--fs-md);
  line-height: 1.65;
}

.page--legal .legal ul {
  color: rgba(10, 10, 10, 0.86);
}

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

.page--legal .legal address {
  color: rgba(10, 10, 10, 0.86);
}

.legal a {
  word-break: break-word;
}

.page--legal .legal a {
  color: var(--neon-deep);
}

.page--legal .legal a:hover {
  color: var(--neon-hover);
}

.legal-backlink {
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .themenseiten-grid {
    grid-template-columns: 1fr 1fr;
  }

  .packages {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .package--featured {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .section-intro__grid,
  .video-text-split__grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-width: 220px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--ink);
  }

  .nav-links a:hover {
    color: var(--brand-dark);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav .btn--primary {
    display: none;
  }
}

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

  .highlights__grid {
    grid-template-columns: 1fr;
  }

  .themenseiten-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .site-header--landing .logo__name {
    font-size: 32px;
  }

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

/* ——— RAOMOVA: Header auf weiß (Desktop + Mobile) ——— */
.site-header.site-header--landing {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(18, 21, 19, 0.06);
}

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

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

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

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

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

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

.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.35px;
  text-transform: uppercase;
  color: var(--ink) !important;
  white-space: nowrap;
}

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

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

.site-header--landing .header-phone__label {
  color: rgba(255, 255, 255, 0.72);
}

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

.site-header--landing .menu-toggle {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.55);
}

.site-header--landing .menu-toggle:hover {
  border-color: rgba(var(--neon-rgb), 0.35);
  box-shadow: 0 0 18px rgba(var(--neon-rgb), 0.16);
}

/* Header-CTA ohne Glow/Schatten (wie im Mockup) */
.site-header--landing .btn--header-cta {
  box-shadow: none;
}

.site-header--landing .btn--header-cta:hover {
  box-shadow: none;
}

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

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

/*
 * Slogan unter Logo: horizontal unter „NOX“ zentrieren.
 * PNG logo-nox-werbeagentur.png 217×71 – Bounds der weißen/roten Glyphen ca. x 25–191 → Mitte 108.5px (intr.).
 * Bei gerenderter Höhe 49px: Mitte skaliert mit 49/71.
 */
.logo.logo--stacked {
  --logo-nox-center-x: calc(108.5 / 71 * 49px);
}

.logo__slogan {
  display: block;
  margin-top: 4px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-header--landing .logo--stacked,
.footer--landing .logo--stacked,
.sticky-contact .sticky-contact__logo.logo--stacked {
  display: grid;
  grid-template-columns: max-content;
  justify-items: start;
  align-items: start;
  gap: 0.3125rem 0;
  max-width: 100%;
}

.sticky-contact .sticky-contact__logo.logo--stacked {
  text-decoration: none;
  color: inherit;
}

.site-header--landing .logo.logo--stacked .logo__slogan,
.footer--landing .logo.logo--stacked .logo__slogan,
.sticky-contact .sticky-contact__logo.logo--stacked .logo__slogan {
  box-sizing: border-box;
  margin: -7px 0 0;
  padding: 0;
  width: max-content;
  max-width: calc(217 / 71 * 49px);
  position: relative;
  left: var(--logo-nox-center-x);
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.22;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.logo__img {
  display: block;
  width: auto;
  height: 49px;
  border-radius: 4px;
}

.site-header--landing .logo__img,
.footer--landing .logo__img,
.sticky-contact .sticky-contact__logo .logo__img {
  height: 49px;
  border-radius: 0;
  margin-bottom: 0;
}

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

  .site-header--landing .logo__img,
  .footer--landing .logo__img,
  .sticky-contact .sticky-contact__logo .logo__img {
    height: 49px;
  }
}

.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: clamp(30px, 3.1vw, 40px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-header--landing .logo__name {
  font-size: clamp(18px, 1.85vw, 26px);
}

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

.footer--landing .logo__name {
  font-size: clamp(16px, 1.6vw, 22px);
}

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

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

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

.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.14em;
  text-transform: uppercase;
  color: #fff;
}

.site-header--landing .logo__tagline,
.footer--landing .logo__tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.5em;
  max-width: 100%;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.site-header--landing .logo__tagline--domain,
.footer--landing .logo__tagline--domain {
  display: block;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: var(--fs-xs);
  color: #6b7280;
}

.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;
  margin-left: -13px;
  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;
}

.site-header--landing .site-header__nav {
  flex: 0 1 auto;
  justify-content: center;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.nav-links--caps a {
  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: center;
  gap: 6px 8px;
}

.site-header--landing .nav-links a {
  padding: 5px 6px;
  border-radius: 4px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.site-header__call-cta {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

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

.header-phone:hover .header-phone__num {
  color: var(--ink);
  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(31, 31, 31, 0.7);
}

.header-phone__num {
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.01em;
  color: var(--ink);
  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-xs);
  letter-spacing: 0.05em;
  padding: 11px 18px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-home .hero-slider__viewport::after {
  background: linear-gradient(
    95deg,
    rgba(8, 12, 22, 0.97) 0%,
    rgba(8, 12, 22, 0.9) 28%,
    rgba(8, 12, 22, 0.55) 46%,
    rgba(8, 12, 22, 0.12) 62%,
    transparent 78%
  ) !important;
}

.page-home .hero-slider__slide .hero-eyebrow {
  margin: 0 0 12px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.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-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--cta);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (min-width: 720px) and (max-width: 960px) {
  .page-home .hero-cta--landing .btn--primary.btn--hero-lg {
    font-size: var(--fs-xs);
    padding: 16px 18px;
    letter-spacing: 0.07em;
  }
}

.page-home .hero-cta--landing .btn--primary.btn--hero-lg:hover {
  background: var(--brand-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

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

.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: var(--header-bg) !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: linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(17, 17, 17, 0.94) 45%, rgba(10, 10, 10, 0.92) 100%) !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: var(--header-bg) !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: var(--highlight-water);
}

.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(--line);
  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(--brand);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.vn-landing__col-text .heading-caps {
  text-align: left;
  margin: 0 0 14px;
  font-size: var(--fs-lg);
  letter-spacing: 0.028em;
  color: 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: var(--muted);
  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-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.vn-landing .btn--vn-cta {
  border-radius: 5px;
  padding: 14px 22px;
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  white-space: nowrap;
  background: var(--cta);
  box-shadow: 0 4px 14px rgba(30, 95, 175, 0.28);
}

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

.btn--blue-outline:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(30, 95, 175, 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(--header-bg);
  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(31, 31, 31, 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: rgba(10, 10, 10, 0.75);
  color: var(--ink);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(var(--neon-rgb), 0.22);
}

.compare__handle-knob svg {
  opacity: 0.9;
  stroke: var(--neon);
}

.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: rgba(255, 255, 255, 0.72);
}

.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: var(--highlight-water);
  flex-shrink: 0;
}

.contact-band__title {
  margin: 0;
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  flex: 0 1 auto;
  min-width: 0;
}

.contact-band__lead {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 38ch;
}

.contact-band__fields {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 12px;
  align-items: stretch;
  min-width: 0;
}

.contact-band__fields > .cb-field:nth-child(1),
.contact-band__fields > .cb-field:nth-child(2),
.contact-band__fields > .cb-field:nth-child(3) {
  grid-column: span 2;
}

.contact-band__fields > .cb-field:nth-child(4),
.contact-band__fields > .cb-field:nth-child(5) {
  grid-column: span 3;
}

.cb-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.contact-band__fields input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(10, 10, 10, 0.55);
  border: none;
  border-radius: 6px;
  margin: 0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: var(--fs-md);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 10px 30px rgba(0, 0, 0, 0.45);
}

.contact-band__fields input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.contact-band__fields input:focus {
  outline: 2px solid rgba(var(--neon-rgb), 0.75);
  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(31, 31, 31, 0.12);
  border-radius: 14px 0 0 14px;
  box-shadow: 0 14px 40px rgba(31, 31, 31, 0.14);
  overflow: hidden;
  color: #111111;
}

.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;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  cursor: pointer;
  color: #111111;
  line-height: 1;
  padding: 0;
}

.sticky-contact__close:hover {
  background: #f0f0f0;
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: none;
}

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

.sticky-contact__brand-block {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: -14px -14px 12px -14px;
  padding: 14px 48px 14px 14px;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px 0 0 0;
}

.sticky-contact__pitch {
  margin: -4px 0 10px;
  padding: 0 2px;
  font-size: var(--fs-md);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(17, 17, 17, 0.94);
}

.sticky-contact .header-phone {
  color: #111111;
}

.sticky-contact .header-phone__icon {
  color: #111111;
}

.sticky-contact .header-phone__label {
  color: rgba(17, 17, 17, 0.72) !important;
}

.sticky-contact .header-phone__num {
  color: #111111 !important;
}

.sticky-contact .header-phone:hover .header-phone__num {
  color: #111111 !important;
}

.sticky-contact__brand-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
}

.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: var(--fs-md);
  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: #6b7280;
  word-break: break-word;
}

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

.sticky-contact__row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  color: #111111;
}

.sticky-contact__ico {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
}

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

.sticky-contact__row a:hover {
  text-decoration: underline;
  opacity: 1;
}

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

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

.footer-kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-kontakt-row:last-child {
  margin-bottom: 0;
}

.footer-kontakt-row__icon {
  flex-shrink: 0;
  display: flex;
  color: var(--brand);
  margin-top: 2px;
}

.footer-col--kontakt a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom--landing {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px 20px;
}

.footer-bottom--landing .footer-bottom__copy {
  justify-self: start;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom--landing .footer-bottom__legal {
  justify-self: end;
  text-align: right;
}

.footer-bottom--landing .footer-bottom__legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin: 0 10px;
  font-size: var(--fs-sm);
}

.footer-bottom--landing .footer-bottom__legal a:hover {
  color: #fff;
}

.footer-lead {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-md);
}

@media (min-width: 961px) {
  .site-header--landing .site-header__inner {
    display: grid;
    /* Gleiche Außen-Spalten → Navigation optisch mittig im Header */
    grid-template-columns: 1fr auto 1fr;
    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: center;
    padding-inline: 0;
  }

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

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

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

@media (max-width: 960px) {
  /* 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: 10px 0;
    background: rgba(17, 17, 17, 0.95);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 60;
  }

  .site-header--landing .nav-links a {
    color: var(--ink) !important;
  }

  .site-header--landing .nav-links a:hover {
    color: var(--neon) !important;
  }

  .site-header__call-cta {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 10px;
  }

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

/* 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,
  .footer--landing .logo--stacked {
    gap: 0.3125rem 0;
  }

  .site-header--landing .logo .logo__icon {
    width: 44px;
    height: 44px;
  }

  .site-header--landing .logo__name {
    /* nicht wieder größer werden lassen (sonst Überlappung mit Menü-Button) */
    font-size: clamp(16px, 4.6vw, 20px);
  }

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

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

  .site-header--landing .site-header__call-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 8px;
  }

  .btn--header-cta {
    font-size: var(--fs-xs);
    padding: 8px 10px;
    letter-spacing: 0.04em;
  }
}

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

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

@media (max-width: 960px) {
  /* 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: rgba(17, 17, 17, 0.95);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    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: rgba(17, 17, 17, 0.95);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    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;
}

/* Dunkler Block „Über uns“: Label nicht dunkelgrau (war auf --surface kaum lesbar) */
.ra-about-intro__copy .site-header__call-cta--inline .header-phone__label {
  color: #ffffff;
}

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

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

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

.site-header__call-cta--sticky-box .btn--header-cta,
.sticky-contact .sticky-contact__anfrage-btn {
  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;
}

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