/* Leistungen-Hub Premium-Erweiterung: reuses the homepage's own light
   service-showcase.css (loaded alongside this file) but overrides its
   fixed 6-column tab index / cross-sell grid for pages with fewer
   children, and adds the new cube-effect "Aus der Praxis" showcase. */

/* Every H2 on the page used a different heading treatment (size, weight,
   whether the last word got the pink accent) depending on which sitewide
   component it came from. The about-hero heading ("Sanitär ist bei uns
   nie nur Sanitär.") was singled out as the standard to match, so this
   one rule carries its signature move — the closing word in the pink
   accent — onto every other section heading on the page, regardless of
   which component's h2 it lives in or whether the section is on a light
   or dark background (the pink reads on both). */
.heading-accent {
  color: #e6007e;
}

/* .service-direct__head span (subpages.css, meant for its kicker label)
   is a class+element selector — higher specificity than the single-class
   rule above, so it silently won inside that component's h2, and not
   just on color: it also carries font-size/weight/letter-spacing/
   text-transform meant for a small uppercase label, which shrank the
   accent word down to kicker size. All of it needs resetting back to
   the heading's own type, not just color. */
.service-direct__head .heading-accent {
  color: #e6007e;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

/* Composition variety for the two plain .service-direct__head sections on
   this page — both used the identical left-heading/right-paragraph split,
   which reads as repetitive sandwiched between the cinematic showcase/
   briefing/cube sections. */
.service-direct__head--center {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-direct__head--center h2 { max-width: 620px; margin-left: auto; margin-right: auto; }
.service-direct__head--center > p { max-width: 460px; margin-left: auto; margin-right: auto; }
.service-direct__head--center span { justify-content: center; }

.service-direct__head--reverse { grid-template-columns: 430px minmax(0, 1fr); }
.service-direct__head--reverse > div { order: 2; }
.service-direct__head--reverse > p { order: 1; }

@media (max-width: 991.98px) {
  .service-direct__head--reverse { grid-template-columns: 1fr; }
  .service-direct__head--reverse > div,
  .service-direct__head--reverse > p { order: 0; }
}

/* Specificity must match .service-direct--cross .service-direct__grid
   (0,2,0) — a lone .service-direct__grid--cols-3 class would lose the
   cascade to that base rule regardless of load order. */
.service-direct--cross .service-direct__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Vier Bereiche: editorial index + live photo preview ---------- */
/* Neither the tabbed dark-panel Swiper nor the bento card grid survived
   review — both are fundamentally "a grid of photo cards," just arranged
   differently, and read as generic. This drops the card metaphor
   entirely: a typographic index list (no photo per row) sits beside one
   large photo that crossfades to match whichever row is hovered/focused.
   No Swiper — initServiceIndexExplorer() in main.js just swaps the img
   src and a caption on hover/focus. */

.service-index-explorer {
  padding: clamp(70px, 8vw, 120px) 0;
  background: #fff;
}

.service-index-explorer__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.service-index-explorer__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 44px 90px rgba(3, 83, 164, .16);
}

.service-index-explorer__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .3s ease;
}

.service-index-explorer__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 51, 0) 46%, rgba(7, 29, 51, .88) 100%);
}

.service-index-explorer__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 36px);
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.service-index-explorer__list .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e6007e;
}

.service-index-explorer__list .section-kicker::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #e6007e;
}

.service-index-explorer__list h2 {
  max-width: 16ch;
  margin: 14px 0 0;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.service-index-explorer__list > p {
  max-width: 46ch;
  margin: 14px 0 0;
  color: #536876;
  font-size: .98rem;
  line-height: 1.7;
}

.service-index-explorer__nav {
  margin-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid #dde6ec;
}

.service-index-explorer__nav a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 2px;
  border-bottom: 1px solid #dde6ec;
  color: inherit;
  text-decoration: none;
  transition: padding-left .25s ease;
}

.service-index-explorer__nav a:hover,
.service-index-explorer__nav a:focus-visible,
.service-index-explorer__nav a.is-active {
  padding-left: 14px;
}

.service-index-explorer__nav .num {
  flex: 0 0 auto;
  color: #adbbc6;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 900;
  transition: color .2s ease;
}

.service-index-explorer__nav .label {
  flex: 1;
  min-width: 0;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 800;
  transition: color .2s ease;
}

.service-index-explorer__nav .lucide {
  flex: 0 0 auto;
  color: #e6007e;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity .2s ease, transform .2s ease;
}

.service-index-explorer__nav a:is(:hover, :focus-visible, .is-active) .num,
.service-index-explorer__nav a:is(:hover, :focus-visible, .is-active) .label {
  color: #e6007e;
}

.service-index-explorer__nav a:is(:hover, :focus-visible, .is-active) .lucide {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .service-index-explorer__grid {
    grid-template-columns: 1fr;
  }
  .service-index-explorer__stage {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 575.98px) {
  .service-index-explorer__nav a { gap: 14px; padding-block: 18px; }
  .service-index-explorer__nav .label { font-size: 1.1rem; }
}

/* ---------- FAQ: elevate the plain sitewide accordion ---------- */
/* Scoped to .service-master-faq so it only applies where this file is
   loaded (currently just this page) — the base .detail-faq/.detail-kicker
   rules in subpages.css stay untouched for every other page still using
   the plain pattern. This section sat as flat white text between two
   cinematic sections and read as a leftover from the old design. */

.service-master-faq {
  background: #f4f7fa;
}

.service-master-faq .detail-kicker {
  color: #e6007e;
}

.service-master-faq .detail-faq {
  border-top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-master-faq .detail-faq details {
  border: 1px solid #dde6ec;
  border-radius: 14px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.service-master-faq .detail-faq details:hover {
  border-color: #e6007e;
  box-shadow: 0 12px 28px rgba(3, 83, 164, .08);
}

.service-master-faq .detail-faq details[open] {
  border-color: #e6007e;
}

.service-master-faq .detail-faq summary {
  padding: 20px 24px;
}

.service-master-faq .detail-faq summary svg {
  color: #e6007e;
}

.service-master-faq .detail-faq p {
  margin: -6px 24px 20px;
}

/* ---------- Aus der Praxis: cube-effect Swiper ---------- */

/* Light section background on purpose — the two sections before this one
   (showcase panel, briefing photo) are already dark/full-bleed, and a
   third dark wall in a row read as one repeated section instead of three
   distinct ones. The swiper card itself stays dark/photo, so the section
   still delivers the "cube" moment as a floating premium object on a
   calmer ground instead of adding to the dark streak. */
.service-praxis-cube {
  --praxis-accent: #e6007e;
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 116px) 0;
  background: #f4f7fa;
}

.service-praxis-cube__layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
}

.service-praxis-cube__head { color: #0c2335; }

.service-praxis-cube__head .detail-kicker { color: var(--praxis-accent); }

.service-praxis-cube__head h2 {
  max-width: 15ch;
  margin: 14px 0 0;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  font-weight: 850;
  line-height: 1.1;
}

.service-praxis-cube__head > p {
  max-width: 34ch;
  margin: 16px 0 0;
  color: #536876;
  font-size: .96rem;
  line-height: 1.68;
}

.service-praxis-cube__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.service-praxis-cube__controls button {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid #cad7dc;
  border-radius: 50%;
  background: transparent;
  color: #0c2335;
  place-items: center;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.service-praxis-cube__controls button:hover,
.service-praxis-cube__controls button:focus-visible {
  border-color: var(--praxis-accent);
  background: var(--praxis-accent);
  color: #fff;
  transform: translateY(-2px);
}

.service-praxis-cube__controls .lucide { width: 1rem; height: 1rem; }

.service-praxis-cube__dots { display: flex; gap: 8px; }

.service-praxis-cube__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cad7dc;
  transition: background-color .18s ease, transform .18s ease;
}

.service-praxis-cube__dots button.is-active {
  background: var(--praxis-accent);
  transform: scale(1.35);
}

.service-praxis-cube__stage {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.service-praxis-cube__swiper {
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
}

.service-praxis-cube__slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(0, 6, 18, .5);
}

.service-praxis-cube__media {
  position: absolute;
  inset: 0;
}

.service-praxis-cube__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-praxis-cube__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 10, 24, 0) 32%, rgba(0, 10, 24, .78) 78%, rgba(0, 10, 24, .92) 100%);
}

.service-praxis-cube__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 3.4vw, 34px);
  color: #fff;
}

.service-praxis-cube__num {
  display: block;
  margin-bottom: 10px;
  color: var(--praxis-accent);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.service-praxis-cube__icon {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  place-items: center;
}

.service-praxis-cube__icon .lucide { width: 1.15rem; height: 1.15rem; }

.service-praxis-cube__copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 850;
}

.service-praxis-cube__copy p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: .88rem;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .service-praxis-cube__layout { grid-template-columns: 1fr; }
  .service-praxis-cube__stage { margin-top: 8px; }
}

@media (max-width: 575.98px) {
  .service-praxis-cube__swiper { width: min(320px, 84vw); }
}

@media (prefers-reduced-motion: reduce) {
  .service-praxis-cube__media img { transition: none; }
}

/* ---------- Hero: clean photo hero, no embedded form ---------- */
/* The old .service-lead hero packed a full lead-capture form into the
   hero itself. That form still exists and still works — it just moved
   into its own .service-request section right below — so this hero can
   stay a simple, uncluttered intro instead of doubling as a form shell. */

.service-hero-clean {
  padding: clamp(64px, 7vw, 100px) 0 clamp(56px, 6vw, 84px);
  background: #fff;
}

.service-hero-clean__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.service-hero-clean__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e6007e;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-hero-clean__kicker::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #e6007e;
}

.service-hero-clean__copy h1 {
  max-width: 15ch;
  margin: 18px 0 20px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.6vw, 4.6rem);
  font-weight: 900;
  line-height: .98;
  text-wrap: balance;
}

.service-hero-clean__copy > p {
  max-width: 46ch;
  margin: 0;
  color: #536876;
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-hero-clean__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.service-hero-clean__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0c2335;
  text-decoration: none;
}

.service-hero-clean__phone .lucide { width: 20px; height: 20px; color: #e6007e; }
.service-hero-clean__phone span { display: flex; flex-direction: column; font-weight: 800; font-size: .96rem; }
.service-hero-clean__phone small { color: #536876; font-size: .68rem; font-weight: 700; }

.service-hero-clean__trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #dde6ec;
  list-style: none;
}

.service-hero-clean__trust li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #0c2335;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-hero-clean__trust .lucide { width: 1.5rem; height: 1.5rem; color: #e6007e; }

.service-hero-clean__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(3, 83, 164, .16);
}

.service-hero-clean__media img { width: 100%; height: 100%; object-fit: cover; }

.service-hero-clean__badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(3, 83, 164, .2);
}

.service-hero-clean__badge-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(230, 0, 126, .1);
  color: #e6007e;
}

.service-hero-clean__badge p { margin: 0; color: #0c2335; font-size: .84rem; font-weight: 800; line-height: 1.4; }
.service-hero-clean__badge small { color: #536876; font-size: .74rem; font-weight: 600; }

@media (max-width: 991.98px) {
  .service-hero-clean__grid { grid-template-columns: 1fr; }
  .service-hero-clean__media { aspect-ratio: 16 / 10; order: -1; }
  .service-hero-clean__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-hero-clean__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Request: the relocated lead-form as its own section ---------- */
/* .lead-form (editorial-system.css) is already fully self-contained —
   padding, radius, shadow, inputs, button — so nothing here restyles the
   form itself, only the two-column shell around it. */

.service-request {
  padding: 0 0 clamp(70px, 8vw, 110px);
  background: #fff;
}

.service-request__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.service-request__intro span { color: #e6007e; }

.service-request__intro h2 {
  max-width: 14ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.05;
}

.service-request__intro > p {
  max-width: 36ch;
  margin: 0;
  color: #536876;
  font-size: .98rem;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .service-request__grid { grid-template-columns: 1fr; }
}

/* ---------- Category grid: 6 photo cards replacing the old 4-item index ---------- */

.service-category-grid {
  padding: clamp(70px, 8vw, 116px) 0;
  background: #f4f7fa;
}

.service-category-grid__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-category-grid__head span { color: #e6007e; }

.service-category-grid__head h2 {
  margin: 14px 0 0;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.1;
}

.service-category-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-category-grid__grid a {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
}

.service-category-grid__grid figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.service-category-grid__grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 15, 28, .86) 0%, rgba(4, 15, 28, .3) 55%, rgba(4, 15, 28, .1) 100%);
}

.service-category-grid__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-category-grid__grid a:is(:hover, :focus-visible) img { transform: scale(1.06); }

.service-category-grid__grid > a > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 22px;
  justify-content: flex-end;
}

.service-category-grid__grid > a > div > .lucide {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 4px;
}

.service-category-grid__grid h3 { margin: 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; }
.service-category-grid__grid p { margin: 0; color: rgba(255, 255, 255, .78); font-size: .78rem; }

@media (max-width: 991.98px) {
  .service-category-grid__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-category-grid__grid { grid-template-columns: 1fr; }
}

/* ---------- Diagnose band: dark mid-page CTA banner ---------- */

.service-diagnose-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 0;
  background-image: linear-gradient(90deg, rgba(4, 15, 28, .92) 0%, rgba(4, 15, 28, .68) 46%, rgba(4, 15, 28, .32) 100%), var(--service-diagnose-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.service-diagnose-band__inner { max-width: 640px; }

.service-diagnose-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff8fc4;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-diagnose-band__kicker::before { content: ""; display: block; width: 28px; height: 2px; background: currentColor; }

.service-diagnose-band__inner h2 {
  max-width: 14ch;
  margin: 16px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

.service-diagnose-band__list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.service-diagnose-band__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
  font-size: .9rem;
  font-weight: 700;
}

.service-diagnose-band__list .lucide { width: 1.1rem; height: 1.1rem; color: #ff8fc4; }

/* ---------- Detail split: Rohrreinigung + Leckage side by side ---------- */

.service-detail-split {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-detail-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.service-detail-split__col h3 {
  max-width: 14ch;
  margin: 0 0 20px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 850;
  line-height: 1.15;
}

.service-detail-split__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-detail-split__col li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294553;
  font-size: .88rem;
  font-weight: 650;
}

.service-detail-split__col li .lucide {
  flex: 0 0 auto;
  width: 1.3rem;
  height: 1.3rem;
  padding: .3rem;
  border-radius: 50%;
  background: rgba(230, 0, 126, .12);
  color: #e6007e;
}

.service-detail-split__media {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
}

.service-detail-split__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 991.98px) {
  .service-detail-split__grid { grid-template-columns: 1fr; }
  .service-detail-split__media { order: -1; aspect-ratio: 16 / 9; }
}

/* ---------- Cross feature: single Bad & Sanierung panel ---------- */
/* Replaces the old 3-card related-sanitaer grid — one featured cross-sell
   instead of a second card grid duplicating the category grid above. */

.service-cross-feature {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #f4f7fa;
}

.service-cross-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.service-cross-feature__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(3, 83, 164, .14);
}

.service-cross-feature__media img { width: 100%; height: 100%; object-fit: cover; }

.service-cross-feature__copy span.detail-kicker { color: #e6007e; }

.service-cross-feature__copy h2 {
  max-width: 12ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.08;
}

.service-cross-feature__copy > p {
  max-width: 38ch;
  margin: 0 0 26px;
  color: #536876;
  font-size: .98rem;
  line-height: 1.7;
}

.service-cross-feature__copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-cross-feature__copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294553;
  font-size: .86rem;
  font-weight: 650;
}

.service-cross-feature__copy li .lucide {
  flex: 0 0 auto;
  width: 1.3rem;
  height: 1.3rem;
  padding: .3rem;
  border-radius: 50%;
  background: rgba(230, 0, 126, .12);
  color: #e6007e;
}

@media (max-width: 991.98px) {
  .service-cross-feature__grid { grid-template-columns: 1fr; }
}

/* ---------- Info grid: regions + FAQ teaser + FAQ preview ---------- */

.service-info-grid {
  padding: clamp(64px, 7vw, 96px) 0;
  background: #fff;
  border-top: 1px solid #dde6ec;
}

.service-info-grid__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 4vw, 56px);
}

.service-info-grid__col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-info-grid__col h3 .lucide { flex: 0 0 auto; width: 1.2rem; height: 1.2rem; color: #e6007e; }
.service-info-grid__col > p { margin: 0 0 20px; color: #536876; font-size: .92rem; }
.service-info-grid__cities { margin: 0; color: #536876; font-size: .92rem; line-height: 1.8; }

.service-info-grid__faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-info-grid__faq details {
  border: 1px solid #dde6ec;
  border-radius: 12px;
  background: #f4f7fa;
  transition: border-color .18s ease;
}

.service-info-grid__faq details[open] { border-color: #e6007e; }
.service-info-grid__faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: #0c2335;
  font-size: .88rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}
.service-info-grid__faq summary::-webkit-details-marker { display: none; }
.service-info-grid__faq summary .lucide { flex: 0 0 auto; width: 1rem; height: 1rem; color: #e6007e; transition: transform .2s ease; }
.service-info-grid__faq details[open] summary .lucide { transform: rotate(45deg); }
.service-info-grid__faq p { margin: -4px 18px 16px; color: #536876; font-size: .82rem; line-height: 1.6; }

@media (max-width: 991.98px) {
  .service-info-grid__grid { grid-template-columns: 1fr; }
}

/* ---------- Process band: light compact steps + photo ---------- */
/* Replaces the sitewide .service-master-process component for this page —
   that component is a heavy dark full-bleed band with a giant watermark
   ("ABLAUF") behind it, built for a different context. The reference
   composition here is light and compact: heading, four small icon steps,
   one tall photo with the Google badge floating on it. */

.service-process-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-process-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.service-process-band__copy span.detail-kicker { color: #e6007e; }

.service-process-band__copy h2 {
  max-width: 14ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.08;
}

.service-process-band__copy > p {
  max-width: 42ch;
  margin: 0 0 40px;
  color: #536876;
  font-size: .98rem;
  line-height: 1.7;
}

.service-process-band__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid #dde6ec;
  list-style: none;
}

.service-process-band__steps li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-process-band__steps > li > .lucide {
  width: 1.5rem;
  height: 1.5rem;
  color: #e6007e;
}

.service-process-band__num {
  color: #adbbc6;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 900;
}

.service-process-band__steps h3 {
  margin: 0;
  color: #0c2335;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-process-band__media {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(3, 83, 164, .16);
}

.service-process-band__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 991.98px) {
  .service-process-band__grid { grid-template-columns: 1fr; }
  .service-process-band__media { order: -1; aspect-ratio: 16 / 9; }
  .service-process-band__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-process-band__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Heizungstechnik hub additions — dark hero variant, 3-col intro
   grid, detailed diagnose list, price card, steps band, decision
   band, 5-step process variant, project/principle split, region
   map grid. Everything below is scoped to its own new class names
   except the explicit modifiers on already-shared components
   (.service-hero-clean, .service-category-grid, .service-detail-split,
   .service-process-band), so none of it changes how the Sanitär
   page (or any future page reusing the plain versions) looks.
   ============================================================ */

/* ---------- Hero: dark photo variant ---------- */

.service-hero-clean--dark {
  background: #071d33;
}

.service-hero-clean--dark .service-hero-clean__copy h1,
.service-hero-clean--dark .service-hero-clean__phone { color: #fff; }

.service-hero-clean--dark .service-hero-clean__copy > p { color: rgba(255, 255, 255, .74); }

.service-hero-clean--dark .service-hero-clean__phone small { color: rgba(255, 255, 255, .6); }

.service-hero-clean--dark .service-hero-clean__trust {
  border-top-color: rgba(255, 255, 255, .18);
}

.service-hero-clean--dark .service-hero-clean__trust li { color: #fff; }

.service-hero-clean--dark .service-hero-clean__badge {
  background: #0c2335;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
}

.service-hero-clean--dark .service-hero-clean__badge p { color: #fff; }
.service-hero-clean--dark .service-hero-clean__badge small { color: rgba(255, 255, 255, .62); }
.service-hero-clean--dark .service-hero-clean__badge-icon { background: rgba(230, 0, 126, .18); }

/* ---------- Category grid: 3-column intro variant ---------- */
/* Same .service-category-grid shell as the 6-card systems grid
   further down, just a 3-column row with a numbered card body
   (number, title, short line, labelled arrow-link) instead of the
   plain icon+title+description body used by the 6-card version. */

.service-category-grid--3col .service-category-grid__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-category-grid__num {
  color: #ff8fc4;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.service-category-grid--3col .service-category-grid__grid h3 { margin-top: 2px; font-size: 1.2rem; }
.service-category-grid--3col .service-category-grid__grid > a > div > p { color: rgba(255, 255, 255, .74); font-size: .85rem; }

.service-category-grid--3col .service-category-grid__grid b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #ff8fc4;
  font-size: .8rem;
  font-weight: 800;
}

.service-category-grid--3col .service-category-grid__grid b .lucide { width: 1rem; height: 1rem; }

@media (max-width: 991.98px) {
  .service-category-grid--3col .service-category-grid__grid { grid-template-columns: 1fr; }
}

/* ---------- Diagnose band: detailed two-line list items ---------- */

.service-diagnose-band__list--detailed { gap: 22px 34px; }
.service-diagnose-band__list--detailed li { align-items: flex-start; gap: 12px; }
.service-diagnose-band__list--detailed .lucide { flex: 0 0 auto; margin-top: 2px; width: 1.2rem; height: 1.2rem; }
.service-diagnose-band__list--detailed li div { display: flex; flex-direction: column; gap: 4px; }
.service-diagnose-band__list--detailed strong { color: #fff; font-size: .92rem; font-weight: 800; }
.service-diagnose-band__list--detailed span { color: rgba(255, 255, 255, .68); font-size: .82rem; font-weight: 500; }

/* ---------- Detail split: kicker + price-card variant ---------- */

.service-detail-split__col > span.detail-kicker { display: inline-flex; margin-bottom: 12px; color: #e6007e; }

.service-detail-split__list--rich {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-detail-split__list--rich li { display: flex; align-items: flex-start; gap: 12px; }

.service-detail-split__list--rich .lucide {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 1.3rem;
  height: 1.3rem;
  padding: .3rem;
  border-radius: 50%;
  background: rgba(230, 0, 126, .12);
  color: #e6007e;
}

.service-detail-split__list--rich li div { display: flex; flex-direction: column; gap: 2px; }
.service-detail-split__list--rich strong { color: #0c2335; font-size: .92rem; font-weight: 800; }
.service-detail-split__list--rich span { color: #536876; font-size: .84rem; }

.service-detail-split__grid--price {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr) minmax(280px, .75fr);
}

@media (max-width: 1199.98px) {
  .service-detail-split__grid--price { grid-template-columns: 1fr 1fr; }
  .service-detail-split__grid--price .service-price-card { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .service-detail-split__grid--price { grid-template-columns: 1fr; }
}

.service-price-card {
  padding: 28px;
  border: 1px solid #dde6ec;
  border-radius: 18px;
  background: #f4f7fa;
}

.service-price-card > span.detail-kicker { display: block; margin-bottom: 8px; color: #e6007e; }

.service-price-card__price {
  display: block;
  margin: 0 0 20px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.service-price-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294553;
  font-size: .86rem;
  font-weight: 650;
}

.service-price-card li .lucide { flex: 0 0 auto; width: 1.1rem; height: 1.1rem; color: #e6007e; }
.service-price-card .action-primary { width: 100%; justify-content: center; }

/* ---------- Steps band: dark full-bleed 5-step banner ---------- */

.service-steps-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 96px) 0;
  background-image: linear-gradient(90deg, rgba(4, 15, 28, .94) 0%, rgba(4, 15, 28, .72) 55%, rgba(4, 15, 28, .42) 100%), var(--service-steps-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.service-steps-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff8fc4;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-steps-band__kicker::before { content: ""; display: block; width: 28px; height: 2px; background: currentColor; }

.service-steps-band > .eco-container > h2 {
  max-width: 18ch;
  margin: 16px 0 34px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
}

.service-steps-band__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 34px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.service-steps-band__list li { display: flex; flex-direction: column; gap: 8px; min-width: 140px; flex: 1 1 140px; }
.service-steps-band__list .lucide { width: 1.4rem; height: 1.4rem; color: #ff8fc4; }
.service-steps-band__list span { color: rgba(255, 255, 255, .5); font-family: var(--font-display); font-size: .85rem; font-weight: 800; }
.service-steps-band__list h3 { margin: 0; font-size: .88rem; font-weight: 750; line-height: 1.3; }

@media (max-width: 767.98px) {
  .service-steps-band__list li { flex: 1 1 45%; }
}

/* ---------- Decision band: copy + 4-item checklist ---------- */

.service-decision-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #f4f7fa;
}

.service-decision-band__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.service-decision-band__copy span.detail-kicker { color: #e6007e; }

.service-decision-band__copy h2 {
  max-width: 13ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.08;
}

.service-decision-band__copy > p { max-width: 34ch; margin: 0 0 28px; color: #536876; font-size: .98rem; line-height: 1.7; }

.service-decision-band__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-decision-band__list li {
  padding: 22px;
  border: 1px solid #dde6ec;
  border-radius: 16px;
  background: #fff;
}

.service-decision-band__list .lucide {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(230, 0, 126, .1);
  color: #e6007e;
}

.service-decision-band__list h3 { margin: 0 0 4px; color: #0c2335; font-size: .96rem; font-weight: 800; }
.service-decision-band__list p { margin: 0; color: #536876; font-size: .8rem; }

@media (max-width: 991.98px) {
  .service-decision-band__grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .service-decision-band__list { grid-template-columns: 1fr; }
}

/* ---------- Process band: 5-step variant ---------- */

.service-process-band--5 .service-process-band__steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.service-process-band--5 .service-process-band__steps p { margin: 2px 0 0; color: #536876; font-size: .78rem; line-height: 1.5; }

@media (max-width: 1199.98px) {
  .service-process-band--5 .service-process-band__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .service-process-band--5 .service-process-band__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-process-band--5 .service-process-band__steps { grid-template-columns: 1fr; }
}

/* ---------- Project split: case study + principle panel ---------- */

.service-project-split {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-project-split__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-project-split__panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border-radius: 20px;
  background: #f4f7fa;
}

.service-project-split__panel figure { position: relative; margin: 0; min-height: 260px; }
.service-project-split__panel figure img { width: 100%; height: 100%; object-fit: cover; }

.service-project-split__copy { padding: 30px 26px; }
.service-project-split__copy span.detail-kicker { color: #e6007e; }

.service-project-split__copy h3 {
  max-width: 14ch;
  margin: 12px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 850;
  line-height: 1.15;
}

.service-project-split__copy ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-project-split__copy ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #294553;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
}

.service-project-split__copy ul li .lucide {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 1.1rem;
  height: 1.1rem;
  color: #e6007e;
}

.service-project-split__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0c2335;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(11, 11, 15, .28);
  text-underline-offset: 3px;
}

.service-project-split__link:hover { color: #e6007e; text-decoration-color: currentColor; }
.service-project-split__link .lucide { width: 1rem; height: 1rem; }

.service-project-split__panel--dark { background: #071d33; color: #fff; }
.service-project-split__panel--dark .service-project-split__copy h3 { color: #fff; }
.service-project-split__panel--dark figure .koeln-about-hero__google-badge { position: absolute; right: 14px; bottom: 14px; }

.service-project-split__principles li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.service-project-split__principles .lucide {
  width: 1.3rem;
  height: 1.3rem;
  margin-bottom: 2px;
  color: #e6007e;
}

.service-project-split__principles span { color: #fff; font-size: .86rem; font-weight: 800; }
.service-project-split__principles small { color: rgba(255, 255, 255, .62); font-size: .74rem; line-height: 1.5; }

@media (max-width: 991.98px) {
  .service-project-split__grid { grid-template-columns: 1fr; }
  .service-project-split__panel { grid-template-columns: 1fr; }
}

/* ---------- Region map grid: region + map image + FAQ preview ---------- */

.service-region-map-grid {
  padding: clamp(64px, 7vw, 96px) 0;
  background: #fff;
  border-top: 1px solid #dde6ec;
}

.service-region-map-grid__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.service-region-map-grid__col > span.detail-kicker { display: block; margin-bottom: 10px; color: #e6007e; }

.service-region-map-grid__col h3 {
  margin: 0 0 14px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.service-region-map-grid__col .action-primary { margin-top: 20px; }

.service-region-map-grid__map {
  display: block;
  width: 100%;
  max-width: 320px;
  margin-top: 24px;
  border-radius: 16px;
}

.service-info-grid__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #0c2335;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(11, 11, 15, .28);
  text-underline-offset: 3px;
}

.service-info-grid__more:hover { color: #e6007e; text-decoration-color: currentColor; }
.service-info-grid__more .lucide { width: 1rem; height: 1rem; }
.service-region-map-grid .service-info-grid__faq > span.detail-kicker { display: block; margin-bottom: 14px; color: #e6007e; }

@media (max-width: 991.98px) {
  .service-region-map-grid__grid { grid-template-columns: 1fr; }
}

/* ---------- Project split: single-panel variant ---------- */
/* Used where there's no verified real case study to pair with the
   Krause-Prinzip panel — one centered panel instead of an empty half. */

.service-project-split--single .service-project-split__grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   Badsanierung hub v2 — reference-matched rebuild: wide hero with
   secondary CTA + info bar, before/after slider, dark connected-node
   process band, light solutions grid, trust row, final CTA with the
   real lead-form embedded directly (not a separate section).
   ============================================================ */

/* ---------- Hero: wide variant with secondary CTA + info bar ---------- */

@media (min-width: 992px) {
  .service-hero-clean--wide .service-hero-clean__grid { grid-template-columns: minmax(0, 1fr) minmax(420px, 620px); }
}

.service-hero-clean--wide .service-hero-clean__copy h1 { max-width: 13ch; }

.service-hero-clean__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 6px;
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.service-hero-clean__secondary:hover { border-color: #fff; background: rgba(255, 255, 255, .08); color: #fff; }

.service-hero-clean__infobar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  list-style: none;
}

.service-hero-clean__infobar li { display: flex; align-items: center; gap: 10px; }
.service-hero-clean__infobar .lucide { flex: 0 0 auto; width: 1.2rem; height: 1.2rem; color: #e6007e; }
.service-hero-clean__infobar strong { display: block; color: #fff; font-size: .82rem; font-weight: 800; }
.service-hero-clean__infobar span { color: rgba(255, 255, 255, .6); font-size: .74rem; }

.service-hero-clean__media--top-badge .service-hero-clean__badge {
  top: 24px;
  right: 24px;
  bottom: auto;
  left: auto;
  width: auto;
  max-width: 168px;
  flex-direction: column;
  align-items: flex-start;
}

.service-hero-clean__media--top-badge .service-hero-clean__badge strong {
  color: #0c2335;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.service-hero-clean__media--top-badge .service-hero-clean__badge .koeln-about-hero__google-stars { margin: 6px 0; }
.service-hero-clean__media--top-badge .service-hero-clean__badge small { color: #536876; font-size: .72rem; font-weight: 700; }

@media (max-width: 991.98px) {
  .service-hero-clean__infobar { gap: 20px; }
}

/* ---------- Transform split: real before/after comparison slider ---------- */
/* bad-vorher-nachher.webp is a genuine side-by-side composite (old
   bathroom left half, renovated right half) — the slider shows the
   full image at 200% width, positioned left/right per layer, and a
   clip-path on the "before" layer reveals only as much of the left
   half as the handle position allows. Real photo content on both
   sides, not a decorative gimmick. */

.service-transform-split {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-transform-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.service-transform-split__copy span.detail-kicker { color: #e6007e; }

.service-transform-split__copy h2 {
  max-width: 12ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.08;
}

.service-transform-split__copy > p { max-width: 42ch; margin: 0 0 26px; color: #536876; font-size: .98rem; line-height: 1.7; }

.service-transform-split__copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-transform-split__copy li { display: flex; align-items: flex-start; gap: 10px; color: #294553; font-size: .9rem; font-weight: 650; }
.service-transform-split__copy li .lucide { flex: 0 0 auto; margin-top: 2px; width: 1.2rem; height: 1.2rem; color: #e6007e; }

.service-transform-split__slider {
  position: relative;
  aspect-ratio: 890 / 940;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(3, 83, 164, .16);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}

.service-transform-split__after,
.service-transform-split__before {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 200% 100%;
}

.service-transform-split__after { background-position: right center; }
.service-transform-split__before { background-position: left center; clip-path: inset(0 50% 0 0); }

.service-transform-split__label {
  position: absolute;
  top: 16px;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 29, 51, .72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}

.service-transform-split__label--before { left: 16px; }
.service-transform-split__label--after { right: 16px; }

.service-transform-split__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.service-transform-split__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  transform: translate(-50%, -50%);
}

.service-transform-split__grip::before {
  content: "◂ ▸";
  color: #0c2335;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 4px;
}

@media (max-width: 991.98px) {
  .service-transform-split__grid { grid-template-columns: 1fr; }
}

/* ---------- Flow band: dark 6-step connected-node process ---------- */

.service-flow-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #071d33;
  color: #fff;
  text-align: center;
}

.service-flow-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff8fc4;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-flow-band__kicker::before { content: ""; display: block; width: 28px; height: 2px; background: currentColor; }

.service-flow-band > .eco-container > h2 {
  max-width: 26ch;
  margin: 16px auto 50px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
}

.service-flow-band__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-flow-band__steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  z-index: 0;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, .22);
}

.service-flow-band__steps li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-flow-band__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: #e6007e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
}

.service-flow-band__icon .lucide { width: 1.3rem; height: 1.3rem; }
.service-flow-band__steps h3 { margin: 0; font-size: .92rem; font-weight: 800; }
.service-flow-band__steps p { max-width: 16ch; margin: 0; color: rgba(255, 255, 255, .62); font-size: .76rem; line-height: 1.5; }

@media (max-width: 991.98px) {
  .service-flow-band__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 36px; }
  .service-flow-band__steps::before { display: none; }
}

@media (max-width: 575.98px) {
  .service-flow-band__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Solutions grid: light cards with header action link ---------- */

.service-solutions-grid {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-solutions-grid__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.service-solutions-grid__head span.detail-kicker { color: #e6007e; }

.service-solutions-grid__head h2 {
  margin: 12px 0 0;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 850;
  line-height: 1.1;
}

.service-solutions-grid__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #dde6ec;
  border-radius: 6px;
  color: #0c2335;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.service-solutions-grid__all:hover { border-color: #e6007e; background: #fdf1f7; color: #0c2335; }

.service-solutions-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-solutions-grid__grid article { display: flex; flex-direction: column; }
.service-solutions-grid__grid figure { margin: 0 0 16px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; }
.service-solutions-grid__grid img { width: 100%; height: 100%; object-fit: cover; }
.service-solutions-grid__grid h3 { margin: 0 0 8px; color: #0c2335; font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; }
.service-solutions-grid__grid p { flex: 1; margin: 0 0 14px; color: #536876; font-size: .84rem; line-height: 1.6; }

.service-solutions-grid__grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e6007e;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.service-solutions-grid__grid a::after { content: "→"; transition: transform .18s ease; }
.service-solutions-grid__grid a:hover::after { transform: translateX(3px); }

@media (max-width: 991.98px) {
  .service-solutions-grid__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-solutions-grid__grid { grid-template-columns: 1fr; }
}

/* ---------- Trust row: 5-icon "Warum wir?" strip ---------- */

.service-trust-row {
  padding: clamp(64px, 7vw, 96px) 0;
  background: #f4f7fa;
  text-align: center;
}

.service-trust-row span.detail-kicker { color: #e6007e; }

.service-trust-row h2 {
  max-width: 34ch;
  margin: 12px auto 44px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  font-weight: 850;
  line-height: 1.15;
}

.service-trust-row__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-trust-row__list li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.service-trust-row__list .lucide { width: 1.7rem; height: 1.7rem; color: #e6007e; }
.service-trust-row__list h3 { margin: 0; color: #0c2335; font-size: .9rem; font-weight: 800; }
.service-trust-row__list p { max-width: 20ch; margin: 0; color: #536876; font-size: .78rem; line-height: 1.5; }

@media (max-width: 991.98px) {
  .service-trust-row__list { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 32px; }
}

@media (max-width: 575.98px) {
  .service-trust-row__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Final request: dark CTA with the real lead-form embedded ---------- */
/* .lead-form is already fully self-styled (white card, padding, shadow,
   inputs, button) — nothing here restyles the form itself, only the
   two-column dark shell it sits in. */

.service-final-request {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;
  background-image: linear-gradient(100deg, rgba(4, 15, 28, .94) 0%, rgba(4, 15, 28, .8) 44%, rgba(4, 15, 28, .5) 100%), var(--service-final-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.service-final-request__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.service-final-request__copy span.detail-kicker { color: #ff8fc4; }

.service-final-request__copy h2 {
  max-width: 14ch;
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.service-final-request__copy > p { max-width: 40ch; margin: 0 0 26px; color: rgba(255, 255, 255, .76); font-size: .98rem; line-height: 1.7; }

.service-final-request__copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-final-request__copy li { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .9rem; font-weight: 650; }
.service-final-request__copy li .lucide { flex: 0 0 auto; width: 1.2rem; height: 1.2rem; color: #ff8fc4; }

.service-final-request__phone { display: inline-flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.service-final-request__phone .lucide { width: 22px; height: 22px; color: #e6007e; }
.service-final-request__phone small { display: block; color: rgba(255, 255, 255, .6); font-size: .7rem; font-weight: 700; }
.service-final-request__phone strong { display: block; font-size: 1.05rem; font-weight: 800; }

@media (max-width: 991.98px) {
  .service-final-request__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Objektservice hub v2 — reference-matched rebuild, filled with the
   real technical property-service content (Reparaturmanagement,
   Wartungskoordination, technische Objektbetreuung, Schadens-
   dokumentation), not the facility-cleaning copy the reference image
   showed but the user confirmed doesn't exist as a real service.
   ============================================================ */

/* ---------- Hero: two-line trust items + Google badge variant ---------- */

.service-hero-clean__trust li > div { display: flex; flex-direction: column; gap: 2px; }
.service-hero-clean__trust li > div strong { color: #fff; font-size: .82rem; font-weight: 800; }
.service-hero-clean__trust li > div span { color: rgba(255, 255, 255, .58); font-size: .72rem; font-weight: 500; }

.service-hero-clean__badge--google { text-align: left; }
.service-hero-clean__badge-google {
  display: block;
  margin-bottom: 4px;
  color: #536876;
  font-size: .68rem;
  font-weight: 800;
}

/* ---------- Overview split: checklist + dark stats panel ---------- */

.service-overview-split {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-overview-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}

.service-overview-split__copy span.detail-kicker { color: #e6007e; }

.service-overview-split__copy h2 {
  max-width: 14ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 1.08;
}

.service-overview-split__copy > p { max-width: 42ch; margin: 0 0 26px; color: #536876; font-size: .98rem; line-height: 1.7; }

.service-overview-split__copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-overview-split__copy li { display: flex; align-items: flex-start; gap: 10px; color: #294553; font-size: .86rem; font-weight: 600; line-height: 1.5; }
.service-overview-split__copy li .lucide { flex: 0 0 auto; margin-top: 2px; width: 1.2rem; height: 1.2rem; color: #e6007e; }

.service-overview-split__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 3.5vw, 44px);
  border-radius: 20px;
  background-image: linear-gradient(160deg, rgba(4, 15, 28, .92) 0%, rgba(4, 15, 28, .78) 100%), var(--service-overview-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-overview-split__panel h3 { margin: 0 0 16px; font-family: var(--font-display); font-size: 1.6rem; font-weight: 850; line-height: 1.2; }
.service-overview-split__panel > p { margin: 0 0 30px; color: rgba(255, 255, 255, .72); font-size: .9rem; line-height: 1.65; }

.service-overview-split__stats {
  display: flex;
  gap: 24px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.service-overview-split__stats li { display: flex; flex-direction: column; gap: 4px; }
.service-overview-split__stats .lucide { width: 1.1rem; height: 1.1rem; margin-bottom: 4px; color: #ff8fc4; }
.service-overview-split__stats strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; }
.service-overview-split__stats span { color: rgba(255, 255, 255, .6); font-size: .7rem; font-weight: 700; }

@media (max-width: 991.98px) {
  .service-overview-split__grid { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .service-overview-split__copy ul { grid-template-columns: 1fr; }
}

/* ---------- Audience grid: 4 target-customer cards ---------- */

.service-audience-grid {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #f4f7fa;
}

.service-audience-grid__head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-audience-grid__head span.detail-kicker { color: #e6007e; }

.service-audience-grid__head h2 {
  margin: 12px 0 14px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 850;
  line-height: 1.15;
}

.service-audience-grid__head p { margin: 0; color: #536876; font-size: .96rem; line-height: 1.65; }

.service-audience-grid__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-audience-grid__list li {
  padding: 28px 24px;
  border: 1px solid #dde6ec;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.service-audience-grid__list .lucide {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 16px;
  border: 1.5px solid rgba(230, 0, 126, .3);
  border-radius: 50%;
  color: #e6007e;
}

.service-audience-grid__list h3 { margin: 0 0 8px; color: #0c2335; font-size: .96rem; font-weight: 800; }
.service-audience-grid__list p { margin: 0; color: #536876; font-size: .82rem; line-height: 1.55; }

@media (max-width: 991.98px) {
  .service-audience-grid__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-audience-grid__list { grid-template-columns: 1fr; }
}

/* ---------- Availability band: dark photo band + floating phone card ---------- */

.service-availability-band {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;
  background-image: linear-gradient(100deg, rgba(4, 15, 28, .92) 0%, rgba(4, 15, 28, .68) 55%, rgba(4, 15, 28, .3) 100%), var(--service-availability-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.service-availability-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.service-availability-band__copy span.detail-kicker { color: #ff8fc4; }

.service-availability-band__copy h2 {
  max-width: 14ch;
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
}

.service-availability-band__copy > p { max-width: 44ch; margin: 0 0 26px; color: rgba(255, 255, 255, .74); font-size: .96rem; line-height: 1.7; }

.service-availability-band__copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-availability-band__copy li { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .88rem; font-weight: 600; }
.service-availability-band__copy li .lucide { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; color: #ff8fc4; }

.service-availability-band__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  color: #0c2335;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

.service-availability-band__card .lucide { flex: 0 0 auto; width: 1.4rem; height: 1.4rem; color: #e6007e; }
.service-availability-band__card small { display: block; color: #536876; font-size: .74rem; font-weight: 700; }
.service-availability-band__card strong { display: block; margin: 4px 0; font-size: 1.15rem; font-weight: 900; }
.service-availability-band__card span { display: block; color: #536876; font-size: .74rem; }

@media (max-width: 991.98px) {
  .service-availability-band__grid { grid-template-columns: 1fr; }
}

/* ---------- Final request: light variant (no dark photo background) ---------- */

.service-final-request--light {
  background-image: none;
  background-color: #f4f7fa;
  color: #0c2335;
}

.service-final-request--light .service-final-request__copy span.detail-kicker { color: #e6007e; }
.service-final-request--light .service-final-request__copy h2 { color: #0c2335; }
.service-final-request--light .service-final-request__copy > p { color: #536876; }
.service-final-request--light .service-final-request__copy li { color: #294553; }
.service-final-request--light .service-final-request__copy li .lucide { color: #e6007e; }

/* ============================================================
   Elektro hub v2 — reference-matched rebuild. "15+ Jahre Erfahrung",
   "1000+ zufriedene Kunden", "100% fachgerecht", "KNX" and "DGUV V3"
   from the reference image aren't grounded anywhere in the real
   content, so the stats panel and E-Check copy use safe, already-
   established language instead (Meisterbetrieb, fester Ansprech-
   partner, "geltende Vorgaben") — see conversation summary for detail.
   ============================================================ */

.service-hero-clean__subline {
  margin: 4px 0 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 800;
}

/* ---------- Triple split: checklist | photo | dark stats panel ---------- */

.service-triple-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
  min-height: 620px;
}

.service-triple-split__col { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 4.5vw, 64px); }
.service-triple-split__col--light { background: #f4f7fa; }
.service-triple-split__col--dark { background: #071d33; color: #fff; }

.service-triple-split__col--light span.detail-kicker,
.service-triple-split__col--dark span.detail-kicker { color: #e6007e; }

.service-triple-split__col--light h2 {
  max-width: 15ch;
  margin: 14px 0 16px;
  color: #0c2335;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  font-weight: 850;
  line-height: 1.2;
}

.service-triple-split__col--light > p { margin: 0 0 24px; color: #536876; font-size: .92rem; line-height: 1.65; }

.service-triple-split__col--light ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-triple-split__col--light li { display: flex; align-items: center; gap: 10px; color: #294553; font-size: .84rem; font-weight: 600; }
.service-triple-split__col--light li .lucide { flex: 0 0 auto; width: 1.1rem; height: 1.1rem; color: #e6007e; }

.service-triple-split__media { margin: 0; min-height: 320px; }
.service-triple-split__media img { width: 100%; height: 100%; object-fit: cover; }

.service-triple-split__col--dark h3 {
  max-width: 14ch;
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  font-weight: 850;
  line-height: 1.2;
}

.service-triple-split__col--dark > p { margin: 0 0 32px; color: rgba(255, 255, 255, .7); font-size: .92rem; line-height: 1.65; }

.service-triple-split__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-triple-split__stats li { display: flex; align-items: center; gap: 12px; }
.service-triple-split__stats .lucide {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1.5px solid rgba(230, 0, 126, .35);
  border-radius: 50%;
  color: #e6007e;
}
.service-triple-split__stats strong { display: block; font-size: .92rem; font-weight: 800; }
.service-triple-split__stats span { display: block; color: rgba(255, 255, 255, .58); font-size: .76rem; }

@media (max-width: 991.98px) {
  .service-triple-split { grid-template-columns: 1fr; }
  .service-triple-split__media { min-height: 280px; }
}

/* ---------- Emergency band: photo | copy | phone card ---------- */

.service-emergency-band { background: #071d33; color: #fff; }

.service-emergency-band__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.3fr) minmax(280px, .9fr);
  gap: 0;
  align-items: stretch;
}

.service-emergency-band__media { margin: 0; min-height: 100%; }
.service-emergency-band__media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

.service-emergency-band__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 4.5vw, 60px); }
.service-emergency-band__copy span.detail-kicker { color: #ff8fc4; }

.service-emergency-band__copy h2 {
  max-width: 16ch;
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 900;
  line-height: 1.2;
}

.service-emergency-band__copy > p { max-width: 38ch; margin: 0 0 24px; color: rgba(255, 255, 255, .72); font-size: .92rem; line-height: 1.65; }

.service-emergency-band__copy ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-emergency-band__copy li { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .86rem; font-weight: 600; }
.service-emergency-band__copy li .lucide { flex: 0 0 auto; width: 1.1rem; height: 1.1rem; color: #ff8fc4; }

.service-emergency-band__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(32px, 4vw, 44px);
  border: 1px solid rgba(230, 0, 126, .32);
  text-align: center;
}

.service-emergency-band__phone-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #e6007e;
  box-shadow: 0 16px 34px rgba(230, 0, 126, .35);
}

.service-emergency-band__phone-icon .lucide { width: 1.7rem; height: 1.7rem; color: #fff; }
.service-emergency-band__card p { margin: 0; color: rgba(255, 255, 255, .82); font-size: .88rem; font-weight: 650; }
.service-emergency-band__card a { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; text-decoration: none; }
.service-emergency-band__card small { color: #ff8fc4; font-size: .78rem; font-weight: 700; }

@media (max-width: 991.98px) {
  .service-emergency-band__grid { grid-template-columns: 1fr; }
  .service-emergency-band__media img { min-height: 240px; }
}

/* ---------- Icon grid: 6 light cards with icon + title + description ---------- */

.service-icon-grid {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #fff;
}

.service-icon-grid__head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.service-icon-grid__head span.detail-kicker { color: #e6007e; }

.service-icon-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-icon-grid__grid a {
  display: block;
  padding: 30px 26px;
  border: 1px solid #dde6ec;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.service-icon-grid__grid a:hover { border-color: #e6007e; box-shadow: 0 20px 40px rgba(3, 83, 164, .1); transform: translateY(-2px); }

.service-icon-grid__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(230, 0, 126, .1);
  color: #e6007e;
}

.service-icon-grid__grid h3 { margin: 0 0 8px; color: #0c2335; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; }
.service-icon-grid__grid p { margin: 0; color: #536876; font-size: .84rem; line-height: 1.6; }

@media (max-width: 991.98px) {
  .service-icon-grid__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
  .service-icon-grid__grid { grid-template-columns: 1fr; }
}

/* ---------- Final triple: copy | dark form card | photo ---------- */
/* .lead-form ships its own white card styling — this variant needs a
   translucent dark shell instead so it reads correctly against the
   section's dark background, without touching the shared component. */

.service-final-triple {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.1fr) minmax(0, .7fr);
  min-height: 560px;
  background: #071d33;
  color: #fff;
}

.service-final-triple__col { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 4.5vw, 60px); }

.service-final-triple__copy span.detail-kicker { color: #ff8fc4; }

.service-final-triple__copy h2 {
  max-width: 12ch;
  margin: 14px 0 4px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
}

.service-final-triple__copy h3 {
  max-width: 14ch;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 800;
}

.service-final-triple__copy > p { max-width: 36ch; margin: 0 0 28px; color: rgba(255, 255, 255, .72); font-size: .92rem; line-height: 1.65; }

.service-final-triple__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-final-triple__copy li { display: flex; align-items: center; gap: 8px; color: #fff; font-size: .82rem; font-weight: 700; }
.service-final-triple__copy li .lucide { flex: 0 0 auto; width: 1.1rem; height: 1.1rem; color: #e6007e; }

.service-final-triple__form { background: rgba(255, 255, 255, .04); }
.service-final-triple__form .lead-form { background: #fff; }

.service-final-triple__media { margin: 0; }
.service-final-triple__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

@media (max-width: 1199.98px) {
  .service-final-triple { grid-template-columns: 1fr; }
  .service-final-triple__media { min-height: 260px; order: -1; }
}
