/* =========================
   PAGES – Seitenbezogene Styles
   (Startseite, Landingpages, Leistungsseiten)
   ========================= */

/* === HERO MIT BACKGROUND-IMAGE ========================================= */

/* Landingpage-Layout (Bahnhöfe, Hausmeisterservice etc.) */
.page--leistung-landing .hero--leistung {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

/* === LANDINGPAGE INTRO (2-Spalten-Grid, kein Float) ====================== */

/* === INTRO-BEREICH: Text umfließt Bild (einheitlich für alle Seiten) === */

.section--intro {
  padding: 0.5rem 0 1.5rem;
}

.section--intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section--intro .intro-text {
  line-height: 1.45;
}

.section--intro .intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: var(--color-dark);
}

.section--intro .intro-text p {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

/* Intro-Bild: Desktop = Float rechts, Text fließt herum */
.section--intro .intro-image,
.section--intro .figure-with-caption {
  float: right;
  max-width: 380px;
  margin-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.section--intro .intro-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.figure-with-caption {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Float sauber beenden */
.section--intro::after {
  content: "";
  display: block;
  clear: both;
}

/* Mobile: Bild vollflächig im Contentbereich, gleiche Abstände wie Text */
@media (max-width: 768px) {
  /* Container-Breite regelt die Seitabstände, keine extra Innenabstände hier */
  .section--intro-inner {
    padding: 0;
  }

  .section--intro .intro-text {
    margin: 0;
  }

  .section--intro .intro-text h2,
  .partners-bar__text h2,
  .section-header h2,
  .section__header h2,
  .section--cta h2 {
    font-size: 1.5rem;
  }

  /* Bild auf voller Content-Breite, ohne seitliche Margins */
  .section--intro .intro-image,
  .section--intro .figure-with-caption {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 1.5rem 0 1.75rem 0; /* nur oben/unten Abstand */
  }
}


/* === Landingpage/Startseiten-Finishing-Anpassungen (2025-12-xx) === */

.hero--home {
  position: relative;
  min-height: 665px;
  max-height: 665px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #111, #2a2a2a);
}

/* Globales Hero-Image-Layer (BlurUp) */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  transition: filter 700ms ease, opacity 400ms ease;
  will-change: filter, opacity;
}

.hero.has-hero-blurup .hero__img {
  filter: blur(25px) saturate(1.05) brightness(0.9) contrast(1.05);
}

.hero.has-hero-blurup.is-hero-bg-loaded .hero__img {
  filter: blur(0) saturate(1) brightness(1) contrast(1);
}

.hero--home .hero__img {
  object-position: center top;
}

.hero--leistung .hero__img {
  object-position: center;
}

@media (max-width: 900px) {
  .hero--home {
    min-height: 420px;
    max-height: none;
    padding: 3rem 0 3.5rem;
  }
}

/* Pseudo-BlurUp deaktivieren: nur <img> rendern */
.hero--leistung::before,
.hero--leistung::after,
.hero--leistung.has-hero-blurup::before,
.hero--leistung.has-hero-blurup::after {
  content: none;
  display: none;
}

.hero__bg {
  display: none;
}

.hero--home .hero__overlay {
  display: none; /* Overlay wird per Panel erzeugt */
}

.hero--home .hero__inner {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

/* Hero-Content Startseite – alles zentrieren */
.hero--home .hero__content {
  text-align: center;
}

/* Panel im Hero – Startseite + Landingpages (Transparenz 0.5) */
.hero__content--panel,
.hero__content-panel {
  background: rgba(4, 38, 73, 0.5); /* Marineblau, 50% */
  padding: 2.5rem 3rem;
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* Startseite: Panel zentriert, max-width */
.hero--home .hero__content--panel {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.hero--home .hero__content--panel > *:not(:last-child) {
  margin-bottom: 1.25rem;
}

/* Landingpages: Panel max-width */
.hero--leistung .hero__content-panel {
  max-width: 48rem;
}

@media (max-width: 768px) {
  .hero--leistung .hero__content-panel {
    padding: 2rem 1.75rem;
    border-radius: 0.9rem; /* Konsistent mit Desktop */
  }
}

/* Allgemeine Hero-H1-Größe (Mobile / Basis) */
.hero__title {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 1px 1px 0 #333;
  hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word; /* Legacy */
}

/* Größere Variante für Desktop - nur Startseite */
@media (min-width: 1024px) {
  .hero {
    min-height: 665px;
    max-height: 665px;
    display: flex;
    align-items: center;
  }

  .hero__content-panel {
    margin: 0 auto;
  }
}


@media (min-width: 1200px) {
  .hero--home .hero__title {
    font-size: 4.1rem; /* Nur Startseite */
  }
  
  /* Alle anderen Seiten: max 3rem */
  .hero--leistung .hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero--home .hero__content--panel {
    padding: 2rem 1.75rem;
    border-radius: 0.9rem; /* Konsistent mit Desktop */
    max-width: 100%;
  }

  .hero--home .hero__title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero--home .hero__lead {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero--home .hero__db-row {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero--home .hero__content--panel {
    padding: 1.6rem 1.25rem;
    box-sizing: border-box;
  }

  .hero--home .hero__title {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .hero--home .hero__lead {
    font-size: 1rem;
  }

  .hero--home .hero__actions .btn {
    white-space: normal;
    text-align: center;
  }

  .hero--home .hero__db-row .hero-partner-label {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .hero--home .hero__db-row img.hero-partner-logo {
    height: 32px;
  }
}

@media (max-width: 420px) {
  .hero--home .hero__content--panel {
    padding: 1.4rem 1rem;
  }

  .hero--home .hero__title {
    font-size: 1.75rem;
    line-height: 1.22;
  }

  .hero--home .hero__lead {
    font-size: 0.95rem;
  }
}

.hero--home .hero__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero--home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Buttons zentrieren */
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .hero--leistung::before {
    background-position: center center;
  }
}

/* === LANDINGPAGE HERO (Leistungs-Landingpages) =========================== */

.hero--leistung {
  position: relative;
  min-height: 520px;
  max-height: 665px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #111, #2a2a2a);
}

.hero--leistung .hero__overlay {
  display: none; /* Overlay wird per ::before erzeugt */
}

.hero--leistung .hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero--leistung .hero__content {
  max-width: 48rem;
}

/* Panel hinter Text für bessere Lesbarkeit (konsolidiert mit oben) */

.hero--leistung .hero__kicker,
.hero--leistung .hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  display: block;
}

/* Top-Level Hero (Leistungsbereiche) */
.hero--top .hero__content--panel,
.hero--top .hero__content-panel {
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero--top .hero__title {
  font-size: 3.9rem;
  line-height: 1.08;
}

.hero--top .hero__subtitle {
  font-size: 1.08rem;
  opacity: 0.95;
}

.hero--leistung .hero__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  margin: 0 0 0.75rem;
}

.hero--leistung .hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 0 #333;
}

@media (min-width: 1200px) {
  .hero--leistung .hero__title {
    font-size: 2.8rem;
  }
}

/* Top-Level Leistungsbereiche: deutlich größere H1 */
.hero--top.hero--leistung .hero__title,
.hero--top.hero--leistung .hero_title {
  font-size: 3.7rem;
  line-height: 1.08;
}

@media (max-width: 900px) {
  .hero--top.hero--leistung .hero__title,
  .hero--top.hero--leistung .hero_title {
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .hero--top.hero--leistung .hero__title,
  .hero--top.hero--leistung .hero_title {
    font-size: 2.3rem;
  }
}

@media (max-width: 420px) {
  .hero--top.hero--leistung .hero__title,
  .hero--top.hero--leistung .hero_title {
    font-size: 2.05rem;
  }
}

.hero--leistung .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero--leistung .hero__db-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 3px;
}

.hero--leistung .hero__db-row .hero-partner-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  color: #fff;
}

.hero--leistung .hero__db-row .hero-partner-logo {
  display: block;
  height: 52px;
  width: auto;
}

@media (max-width: 768px) {
  .hero--leistung {
    min-height: 450px;
    padding: 3rem 0 4rem;
  }
  
  .hero--leistung .hero__bg {
    background-position: center center;
  }
  
  .hero--leistung .hero__title {
    font-size: 2rem;
  }
}


/* Startseiten-Hero: DB-Partner-Badge */
.hero--home .hero__db-row,
.hero--leistung--bahnhoefe .hero__db-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-dark);
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

/* Text im Badge (gemeinsam für Startseite und Bahnhöfe) */
.hero--home .hero__db-row .hero-partner-label,
.hero--leistung--bahnhoefe .hero__db-row .hero-partner-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-dark);
}

/* DB-Logo im Badge (gemeinsam für Startseite und Bahnhöfe) */
.hero--home .hero__db-row img.hero-partner-logo,
.hero--leistung--bahnhoefe .hero__db-row img.hero-partner-logo {
  height: 40px;
  width: auto;
  display: block;
}

.hero-partner-logo {
  display: block;
  height: 52px;
  width: auto;
}

/* DB-Partner-Badge (alte Variante, für Bahnhöfe-Landingpage) */
.hero-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  margin-bottom: 1.25rem;
}

.hero-partner-badge img {
  height: 52px;
  width: auto;
  display: block;
}

.hero-partner-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #002a47; /* var(--color-dark) */
  white-space: nowrap;
}

/* Partner-Leiste (Startseite) */
.section--partners {
  padding: 0;
  background: #fff;
}

.partners-bar {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.partners-bar__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
}

.partners-bar__text h2 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  color: rgb(0, 45, 90);
  line-height: 1.2;
}

.partners-bar__text p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.45;
}

.partners-bar__logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: nowrap;
}

.partner-logo {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

.partner-logo--db {
  transform: scale(1.12);
  transform-origin: center;
}

@media (max-width: 900px) {
  .partners-bar {
    height: auto;
    padding: 22px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .partners-bar__text {
    max-width: 720px;
  }

  .partners-bar__logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .partner-logo {
    max-height: 46px;
  }
}

@media (max-width: 520px) {
  .partners-bar__text h2 {
    font-size: 1.5rem;
  }

  .partners-bar__text p {
    font-size: 0.98rem;
  }

  .partner-logo {
    max-height: 42px;
  }
}


/* === SECTION GRID (2 SPALTEN) =========================================== */

.section-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.section-grid--2col {
  grid-template-columns: 1fr 1fr;
}

.section-col {
  /* Basis-Styling für Spalten */
}

.section-col--image {
  /* Spalte mit Bild */
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section__header {
  margin-bottom: 2rem;
  text-align: center;
}

.section__header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--color-dark);
}

.section__header p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Text "Als Projektpartner..." zentrieren */
.section-lead {
  font-size: 0.98rem;
  max-width: 50rem;
  margin: 0 auto 1.5rem;
}

/* Abschnitt-Lead zentriert (z.B. auf der Startseite im Services-Überblick) */
.section .section-header .section-lead--center,
.section-header .section-lead--center {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 50rem;
}

/* === FIGURE MIT BILDUnterschrift ======================================== */


/* === TOPIC SLIDER (AUTO-SCROLL) ========================================= */

.topic-slider {
  position: relative;
  overflow-x: hidden;
  margin-top: 1.5rem;
}

.topic-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar optisch ausblenden, aber nutzbar lassen */
.topic-slider-track::-webkit-scrollbar {
  height: 0;
}

.topic-slider-track {
  scrollbar-width: none;
}

.topic-slider-track::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Karten im Slider */
.topic-slider .thumb-card {
  min-width: 260px;
  max-width: 320px;
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* === THUMB-STRIP (HORIZONTALE BILDLEISTE) ================================ */

.thumb-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.thumb-strip::-webkit-scrollbar {
  height: 6px;
}

.thumb-strip::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.thumb-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.thumb-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.thumb-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.thumb-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.thumb-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  margin: 0;
  padding: 1rem;
  line-height: 1.3;
}

.thumb-card:hover h3 {
  color: var(--color-accent);
}

/* === SERVICES GRID (ÜBERBLICK) ========================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ==========================================================================
   Einheitliche Card-Komponente (Startseite + Landingpages)
   ========================================================================== */

/* Äußere Card */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* Link um die komplette Card */
.card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Sicherheit: nie die komplette Card unterstreichen */
.card__link:hover,
.card__link:focus {
  text-decoration: none !important;
  color: inherit;
}

/* Bild + Caption */
.card__media {
  margin: 0;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

/* KI-Bild-Caption */
.figure-caption {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: italic;
  background: #f8f8f8;
  text-align: right;
}

/* KI-Hinweis unter Slider (Startseite) */
.ai-caption {
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--color-muted) !important;
  font-style: italic;
  text-align: right;
  display: block;
  width: 100%;
}

/* Body: Text + Footer */
.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.3rem 1.3rem;
}

/* Textbereich */
.card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Überschrift in Cards */
.card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-dark);
  margin: 0 0 0.55rem;
  line-height: 1.3;
}

/* Text in Cards */
.card__content p {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--color-text);
  margin: 0 0 0.65rem;
}

.card__content p:last-child {
  margin-bottom: 0.5rem; /* Abstand direkt vor "Mehr erfahren" */
}

/* Footer-Link: immer unten rechts, mit fester Distanz zum Text */
.card__body .link-more {
  display: inline-flex;
  align-self: flex-end;   /* rechts im Body */
  margin-top: 0.75rem;    /* fester Abstand zum Text darüber */
  font-size: 0.9rem;
}

/* === TOPIC GRID (Landingpages) =========================================== */

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.topic-grid--leistungen {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* === LINK-MORE (Mehr erfahren →) ========================================= */

/* Einheitliches System für alle "Mehr erfahren / Mehr zu unseren Leistungen..." Links */

.link-more,
.link-more:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;                    /* Abstand zwischen Text und Pfeil */
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;          /* niemals Standard-Unterstreichung */
}

.link-more:hover,
.link-more:focus-visible {
  color: var(--color-accent);
  text-decoration: none;          /* Sicherheit gegen globale a:hover Regeln */
}

/* Nur der Text bekommt beim Hover eine dezente Unterlinie */
.link-more__label {
  position: relative;
}

.link-more__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15em;                /* kleiner Abstand unter dem Text */
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform-origin: left center;
  transform: scaleX(0.9);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.link-more:hover .link-more__label::after,
.link-more:focus-visible .link-more__label::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Pfeil: nie unterstrichen, nur leichte Bewegung nach rechts beim Hover */
.link-more__icon {
  display: inline-block;
  text-decoration: none;          /* kein Unterstrich am Pfeil */
  transition: transform 0.15s ease;
}

.link-more:hover .link-more__icon,
.link-more:focus-visible .link-more__icon {
  transform: translateX(3px);     /* dezente, ruhige Bewegung nach rechts */
}

/* === CTA-SECTIONS ====================================================== */

.section--cta {
  background: var(--color-section-alt);
  padding: 3rem 0;
  margin-top: 4rem;
}

.section--cta-alt {
  background: transparent;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 0;
  margin-top: 4rem;
  text-align: center;
}

.section--cta h2 {
  margin-bottom: 0.75rem;
}

.section--cta p {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.section-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.section--cta-alt .section-cta-actions {
  justify-content: center;
}

/* === RESPONSIVE ======================================================== */

@media (max-width: 939px) {
  .hero--home,
  .hero--leistung {
    min-height: 400px;
    padding: 2.5rem 0;
  }

  .section-grid--2col {
    grid-template-columns: 1fr;
  }

  .thumb-card {
    flex: 0 0 240px;
  }

  .topic-slider .thumb-card {
    min-width: 220px;
  }

  .services-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .section-cta-actions {
    justify-content: stretch;
  }

  .section-cta-actions .btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .hero--home .hero__actions,
  .hero--leistung .hero__actions,
  .section-cta-actions {
    flex-direction: column;
  }

  .hero--home .hero__actions .btn,
  .hero--leistung .hero__actions .btn,
  .section-cta-actions .btn {
    width: 100%;
  }
}

/* --- Bahnhöfe: Leistungsbereiche Block (seitenbezogen) --- */
.page--leistung-landing--bahnhoefe .bahnhof-overview__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 48px;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview .section__header,
.page--leistung-landing--bahnhoefe .bahnhof-overview .section__header h2,
.page--leistung-landing--bahnhoefe .bahnhof-overview .section__header p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview {
  padding-top: 16px;
  padding-bottom: 32px;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview .section__header {
  margin-bottom: 20px;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview .topic-grid--leistungen {
  margin-top: 0;
}

.page--leistung-landing--bahnhoefe .section--intro {
  padding-bottom: 16px;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview .section__header p {
  max-width: 90ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview__inner > p {
  max-width: 72ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview__inner > p:last-of-type {
  max-width: 90ch;
  width: 100%;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview__lead {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview__list {
  list-style: none;
  padding: 18px 22px;
  margin: 12px 0 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
  background: #f5f6f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.page--leistung-landing--bahnhoefe .bahnhof-overview__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}

.page--leistung-landing--bahnhoefe .section--intro a,
.page--leistung-landing--bahnhoefe .bahnhof-overview__inner a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.page--leistung-landing--bahnhoefe .section--intro a:hover,
.page--leistung-landing--bahnhoefe .bahnhof-overview__inner a:hover {
  text-decoration: underline;
}

.page--leistung-landing--bahnhoefe .section--intro a:visited,
.page--leistung-landing--bahnhoefe .bahnhof-overview__inner a:visited {
  color: inherit;
}

/* --- Taktile Bodenindikatoren: Leistungsboxen & Prozess (seitenbezogen) --- */
.page--leistung-landing--taktile-bodenindikatoren .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--taktile-bodenindikatoren .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Modernisierung (seitenbezogen) --- */
.page--leistung-landing--modernisierung .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--modernisierung .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Barrierefreiheit (seitenbezogen) --- */
.page--leistung-landing--barrierefreiheit .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--barrierefreiheit .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Nachhaltigkeit (seitenbezogen) --- */
.page--leistung-landing--nachhaltigkeit .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--nachhaltigkeit .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Innovationen (seitenbezogen) --- */
.page--leistung-landing--innovationen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--innovationen .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Sicherheitsstandards (seitenbezogen) --- */
.page--leistung-landing--sicherheitsstandards .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--sicherheitsstandards .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Architektur und Design (seitenbezogen) --- */
.page--leistung-landing--architektur-und-design .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--architektur-und-design .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Verkehrskonzepte (seitenbezogen) --- */
.page--leistung-landing--verkehrskonzepte .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--verkehrskonzepte .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Kulturelle Vielfalt (seitenbezogen) --- */
.page--leistung-landing--kulturelle-vielfalt .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--kulturelle-vielfalt .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Wirtschaftliche Entwicklung (seitenbezogen) --- */
.page--leistung-landing--wirtschaftliche-entwicklung .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--wirtschaftliche-entwicklung .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Bürgerbeteiligung (seitenbezogen) --- */
.page--leistung-landing--bürgerbeteiligung .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--bürgerbeteiligung .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnhöfe: Zukunftsvisionen (seitenbezogen) --- */
.page--leistung-landing--zukunftsvisionen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--zukunftsvisionen .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnsteige: Unterseiten (seitenbezogen) --- */
.page--leistung-landing--umbau-von-bahnsteigen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--umbau-von-bahnsteigen .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--sicherheitsoptimierung .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--sicherheitsoptimierung .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--innovative-technologien .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--innovative-technologien .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--aesthetische-konzepte .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--ästhetische-konzepte .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--aesthetische-konzepte .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--ästhetische-konzepte .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--nachhaltige-loesungen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--nachhaltige-loesungen .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--komfortable-wartezonen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--komfortable-wartezonen .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--verkehrsanbindungen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--verkehrsanbindungen .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--beleuchtungskonzepte .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--beleuchtungskonzepte .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--fahrgastinformationen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--fahrgastinformationen .steps-grid .step-item {
  background-color: #fff;
}

.page--leistung-landing--bahnsteiggestaltung .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--bahnsteiggestaltung .steps-grid .step-item {
  background-color: #fff;
}

/* --- Reisezentren: Unterseiten (seitenbezogen) --- */
.page--leistung-landing--umbau-von-reisezentren .cards-grid--three .card,
.page--leistung-landing--transformation .cards-grid--three .card,
.page--leistung-landing--neugestaltung .cards-grid--three .card,
.page--leistung-landing--digitale-innovationen .cards-grid--three .card,
.page--leistung-landing--zugänglichkeit .cards-grid--three .card,
.page--leistung-landing--gestaltung-und-atmosphäre .cards-grid--three .card,
.page--leistung-landing--serviceeinrichtungen .cards-grid--three .card,
.page--leistung-landing--umweltschutz-in-reisezentren .cards-grid--three .card,
.page--leistung-landing--nutzungskonzepte .cards-grid--three .card,
.page--leistung-landing--sicherheit .cards-grid--three .card,
.page--leistung-landing--partizipation-der-gemeinschaft .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--umbau-von-reisezentren .steps-grid .step-item,
.page--leistung-landing--transformation .steps-grid .step-item,
.page--leistung-landing--neugestaltung .steps-grid .step-item,
.page--leistung-landing--digitale-innovationen .steps-grid .step-item,
.page--leistung-landing--zugänglichkeit .steps-grid .step-item,
.page--leistung-landing--gestaltung-und-atmosphäre .steps-grid .step-item,
.page--leistung-landing--serviceeinrichtungen .steps-grid .step-item,
.page--leistung-landing--umweltschutz-in-reisezentren .steps-grid .step-item,
.page--leistung-landing--nutzungskonzepte .steps-grid .step-item,
.page--leistung-landing--sicherheit .steps-grid .step-item,
.page--leistung-landing--partizipation-der-gemeinschaft .steps-grid .step-item {
  background-color: #fff;
}

/* --- Bahnsteige: Leistungsbereiche Block (seitenbezogen) --- */
.page--leistung-landing--bahnsteige .bahnsteig-overview__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 48px;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview .section__header,
.page--leistung-landing--bahnsteige .bahnsteig-overview .section__header h2,
.page--leistung-landing--bahnsteige .bahnsteig-overview .section__header p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview .section__header p {
  max-width: 90ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview__inner > p {
  max-width: 72ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview__inner > p:last-of-type {
  max-width: 90ch;
  width: 100%;
}

.page--leistung-landing--bahnsteige .section--intro {
  padding-bottom: 16px;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview {
  padding-top: 16px;
  padding-bottom: 32px;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview__lead {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview__list {
  list-style: none;
  padding: 18px 22px;
  margin: 12px 0 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
  background: #f5f6f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}

.page--leistung-landing--bahnsteige .bahnsteig-overview .topic-grid--leistungen {
  margin-top: 0;
}

.page--leistung-landing--bahnsteige .section--intro a,
.page--leistung-landing--bahnsteige .bahnsteig-overview__inner a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.page--leistung-landing--bahnsteige .section--intro a:hover,
.page--leistung-landing--bahnsteige .bahnsteig-overview__inner a:hover {
  text-decoration: underline;
}

.page--leistung-landing--bahnsteige .section--intro a:visited,
.page--leistung-landing--bahnsteige .bahnsteig-overview__inner a:visited {
  color: inherit;
}

/* --- Reisezentren: Leistungsbereiche Block (seitenbezogen) --- */
.page--leistung-landing--reisezentren .reisezentrum-overview__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 48px;
}

.page--leistung-landing--reisezentren .reisezentrum-overview .section__header,
.page--leistung-landing--reisezentren .reisezentrum-overview .section__header h2,
.page--leistung-landing--reisezentren .reisezentrum-overview .section__header p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--reisezentren .reisezentrum-overview .section__header p {
  max-width: 90ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--reisezentren .reisezentrum-overview__inner > p {
  max-width: 72ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--reisezentren .reisezentrum-overview__inner > p:last-of-type {
  max-width: 90ch;
  width: 100%;
}

.page--leistung-landing--reisezentren .section--intro {
  padding-bottom: 16px;
}

.page--leistung-landing--reisezentren .reisezentrum-overview {
  padding-top: 16px;
  padding-bottom: 32px;
}

.page--leistung-landing--reisezentren .reisezentrum-overview__lead {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}

.page--leistung-landing--reisezentren .reisezentrum-overview__list {
  list-style: none;
  padding: 18px 22px;
  margin: 12px 0 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
  background: #f5f6f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.page--leistung-landing--reisezentren .reisezentrum-overview__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.page--leistung-landing--reisezentren .reisezentrum-overview__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}

.page--leistung-landing--reisezentren .reisezentrum-overview .topic-grid--leistungen {
  margin-top: 0;
}

.page--leistung-landing--reisezentren .section--intro a,
.page--leistung-landing--reisezentren .reisezentrum-overview__inner a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.page--leistung-landing--reisezentren .section--intro a:hover,
.page--leistung-landing--reisezentren .reisezentrum-overview__inner a:hover {
  text-decoration: underline;
}

.page--leistung-landing--reisezentren .section--intro a:visited,
.page--leistung-landing--reisezentren .reisezentrum-overview__inner a:visited {
  color: inherit;
}

/* --- Hausmeisterservice: Leistungsbereiche Block (seitenbezogen) --- */
.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 48px;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview .section__header,
.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview .section__header h2,
.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview .section__header p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview .section__header p {
  max-width: 90ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__inner > p {
  max-width: 72ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__inner > p:last-of-type {
  max-width: 90ch;
  width: 100%;
}

.page--leistung-landing--hausmeisterservice .section--intro {
  padding-bottom: 16px;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview {
  padding-top: 16px;
  padding-bottom: 32px;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__lead {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__list {
  list-style: none;
  padding: 18px 22px;
  margin: 12px 0 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
  background: #f5f6f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}

.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview .topic-grid--leistungen {
  margin-top: 0;
}

.page--leistung-landing--hausmeisterservice .section--intro a,
.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__inner a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.page--leistung-landing--hausmeisterservice .section--intro a:hover,
.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__inner a:hover {
  text-decoration: underline;
}

.page--leistung-landing--hausmeisterservice .section--intro a:visited,
.page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__inner a:visited {
  color: inherit;
}

/* --- Hausmeisterservice: Unterseiten (seitenbezogen) --- */
.page--leistung-landing--tiefgaragenreinigung .cards-grid--three .card,
.page--leistung-landing--winterdienst .cards-grid--three .card,
.page--leistung-landing--unterhaltsreinigung .cards-grid--three .card,
.page--leistung-landing--glasreinigung .cards-grid--three .card,
.page--leistung-landing--treppenhausreinigung .cards-grid--three .card,
.page--leistung-landing--grünanlagenpflege .cards-grid--three .card,
.page--leistung-landing--bauendreinigung .cards-grid--three .card,
.page--leistung-landing--sonderreinigung .cards-grid--three .card,
.page--leistung-landing--wartung-technischer-anlagen .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--tiefgaragenreinigung .steps-grid .step-item,
.page--leistung-landing--winterdienst .steps-grid .step-item,
.page--leistung-landing--unterhaltsreinigung .steps-grid .step-item,
.page--leistung-landing--glasreinigung .steps-grid .step-item,
.page--leistung-landing--treppenhausreinigung .steps-grid .step-item,
.page--leistung-landing--grünanlagenpflege .steps-grid .step-item,
.page--leistung-landing--bauendreinigung .steps-grid .step-item,
.page--leistung-landing--sonderreinigung .steps-grid .step-item,
.page--leistung-landing--wartung-technischer-anlagen .steps-grid .step-item {
  background-color: #fff;
}

/* --- Renovierungen: Leistungsbereiche Block (seitenbezogen) --- */
.page--leistung-landing--renovierungen .renovierungen-overview__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 48px;
}

.page--leistung-landing--renovierungen .renovierungen-overview .section__header,
.page--leistung-landing--renovierungen .renovierungen-overview .section__header h2,
.page--leistung-landing--renovierungen .renovierungen-overview .section__header p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--renovierungen .renovierungen-overview .section__header p {
  max-width: 90ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--renovierungen .renovierungen-overview__inner > p {
  max-width: 72ch;
  margin-left: 0;
  margin-right: 0;
}

.page--leistung-landing--renovierungen .renovierungen-overview__inner > p:last-of-type {
  max-width: 90ch;
  width: 100%;
}

.page--leistung-landing--renovierungen .section--intro {
  padding-bottom: 16px;
}

.page--leistung-landing--renovierungen .renovierungen-overview {
  padding-top: 16px;
  padding-bottom: 32px;
}

.page--leistung-landing--renovierungen .renovierungen-overview__lead {
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.05rem;
}

.page--leistung-landing--renovierungen .renovierungen-overview__list {
  list-style: none;
  padding: 18px 22px;
  margin: 12px 0 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
  background: #f5f6f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.page--leistung-landing--renovierungen .renovierungen-overview__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.page--leistung-landing--renovierungen .renovierungen-overview__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 700;
  opacity: 0.7;
}

.page--leistung-landing--renovierungen .renovierungen-overview .topic-grid--leistungen {
  margin-top: 0;
}

.page--leistung-landing--renovierungen .section--intro a,
.page--leistung-landing--renovierungen .renovierungen-overview__inner a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.page--leistung-landing--renovierungen .section--intro a:hover,
.page--leistung-landing--renovierungen .renovierungen-overview__inner a:hover {
  text-decoration: underline;
}

.page--leistung-landing--renovierungen .section--intro a:visited,
.page--leistung-landing--renovierungen .renovierungen-overview__inner a:visited {
  color: inherit;
}

/* --- Rauchwarnmelderpflicht: Unterseite (seitenbezogen) --- */
.page--leistung-landing--rauchwarnmelderpflicht .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--rauchwarnmelderpflicht .steps-grid .step-item {
  background-color: #fff;
}

/* --- Renovierungen: Unterseiten (seitenbezogen) --- */
.page--leistung-landing--bodenbelagsarbeiten .cards-grid--three .card,
.page--leistung-landing--tapezierarbeiten .cards-grid--three .card,
.page--leistung-landing--fliesenlegerarbeiten .cards-grid--three .card,
.page--leistung-landing--trockenbauarbeiten .cards-grid--three .card,
.page--leistung-landing--brand--und-rauchschutztüren .cards-grid--three .card,
.page--leistung-landing--rauchwarnmelder .cards-grid--three .card {
  background-color: #f6f7fb;
}

.page--leistung-landing--bodenbelagsarbeiten .steps-grid .step-item,
.page--leistung-landing--tapezierarbeiten .steps-grid .step-item,
.page--leistung-landing--fliesenlegerarbeiten .steps-grid .step-item,
.page--leistung-landing--trockenbauarbeiten .steps-grid .step-item,
.page--leistung-landing--brand--und-rauchschutztüren .steps-grid .step-item,
.page--leistung-landing--rauchwarnmelder .steps-grid .step-item {
  background-color: #fff;
}

/* Desktop: 2 Spalten -> 2x3 wirkt wie „zwei Blöcke“ */
@media (min-width: 992px) {
  .page--leistung-landing--bahnhoefe .bahnhof-overview__list {
    grid-template-columns: 1fr 1fr;
  }

  .page--leistung-landing--bahnsteige .bahnsteig-overview__list {
    grid-template-columns: 1fr 1fr;
  }

  .page--leistung-landing--reisezentren .reisezentrum-overview__list {
    grid-template-columns: 1fr 1fr;
  }

  .page--leistung-landing--hausmeisterservice .hausmeisterservice-overview__list {
    grid-template-columns: 1fr 1fr;
  }

  .page--leistung-landing--renovierungen .renovierungen-overview__list {
    grid-template-columns: 1fr 1fr;
  }
}
