/* CSS Reset */
*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body { margin: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

html{
  scrollbar-gutter: stable;
}

/* Theme */
:root{
  --bg-solid: #12122B;
  --bg: #12122B;               
  --bg-2: #0f6fa6;              
  --bg-deep: #0b4f7a;                
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
  --accent: #ea7d00;       
  --accent-2: #ff9a2a;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --brand-blue: #12122B;       
  --brand-blue-soft: #1b1d3a;
  --text-dark: #0f1026;
  --text-muted: rgba(15,16,38,.68);
  --text-on-white: #0f1026;
  --muted-on-white: rgba(15,16,38,.68);
  --ui-border: rgba(15,16,38,.14);
  --ui-soft: rgba(15,16,38,.04);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
  --pad: 24px;
  --h1: clamp(2.0rem, 2.2vw + 1.2rem, 3.35rem);
  --h2: clamp(1.5rem, 1.4vw + 1rem, 2.2rem);
  --lead: clamp(1.02rem, .55vw + .9rem, 1.22rem);
  --font-head: 'Inter', ui-sans-serif, system-ui, -apple-system;
  --font-text: 'Urbanist', sans-serif;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  background: var(--bg-solid);
  color: var(--text);
  line-height: 1.55;
}

.section::before{
  display: none !important;
}


.section--alt{
  background: #fff;
  color: var(--text-on-white);
}

.section--alt .h2,
.section--alt h2,
.section--alt h3,
.section--alt .card__title,
.section--alt .service__title,
.section--alt .step__title{
  color: var(--brand-blue);
}

.section--alt p,
.section--alt .lead,
.section--alt .card__text,
.section--alt .service__text,
.section--alt .step__text{
  color: var(--muted-on-white);
}

.section--alt .card,
.section--alt .service,
.section--alt .step{
  background: rgba(19,135,196,.04);
  border: 1px solid rgba(19,135,196,.12);
}

.section#warum{
  position: relative;
  padding: clamp(80px, 10vw, 110px) 0;
  overflow: hidden;
}

.section#warum::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      800px 400px at 10% 20%,
      rgba(255,255,255,.08),
      transparent 60%
    );
  pointer-events: none;
}

.section#warum .section__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

@media (max-width: 900px){
  .section#warum .section__grid{
    grid-template-columns: 1fr;
  }
}

.section#warum .h2{
  margin-bottom: 20px;
  line-height: 1.15;
}

.section#warum .lead{
  max-width: 42ch;
  margin-bottom: 18px;
}

.section#warum .lead{
  max-width: 42ch;
  margin-bottom: 18px;
}

.section#warum .cards{
  display: grid;
  gap: 18px;
}

.section#warum .card{
  position: relative;
  padding: 22px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);

  transform: translateY(0);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.section#warum .card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  background: rgba(255,255,255,.14);
}

.section#warum .card__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 12px;
}

@media (max-width: 600px){
  .section#warum .card{
    padding: 18px;
  }
  .section#warum .card__title{
    font-size: 1.05rem;
  }
}

/* WARUM */

.section#warum .cards{
  position: relative;
  display: grid;
  gap: 22px;
}

.section#warum .card{
  position: relative;
  padding: 26px;
  border-radius: 26px;

  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(255,255,255,.18),
      transparent 55%
    ),
    rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);

  box-shadow:
    0 12px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.25);

  transform: translateY(0) scale(1);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    background .45s ease;
}

.section#warum .card:nth-child(1){
  transform: translateX(24px);
}
.section#warum .card:nth-child(2){
  transform: translateX(0);
}
.section#warum .card:nth-child(3){
  transform: translateX(-24px);
}

.section#warum .card:hover{
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 30px 70px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(255,255,255,.28),
      transparent 55%
    ),
    rgba(255,255,255,.12);
}

.section#warum .card__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;

  background:
    linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.25));

  border: 1px solid rgba(255,255,255,.35);
  font-size: 1.35rem;

  box-shadow:
    0 8px 22px rgba(234,125,0,.25),
    inset 0 1px 0 rgba(255,255,255,.35);

  transition: transform .35s ease;
}

.section#warum .card:hover .card__icon{
  transform: scale(1.1) rotate(-3deg);
}

.section#warum .card__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;

  background:
    linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.25));

  border: 1px solid rgba(255,255,255,.35);
  font-size: 1.35rem;

  box-shadow:
    0 8px 22px rgba(234,125,0,.25),
    inset 0 1px 0 rgba(255,255,255,.35);

  transition: transform .35s ease;
}

.section#warum .card:hover .card__icon{
  transform: scale(1.1) rotate(-3deg);
}

#warum .card{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

#warum .card.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* WARUM – LINKER CONTENT */

.section#warum .warum-content{
  position: relative;
  max-width: 520px;

  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system;
}

.section#warum .warum-content .h2{
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;

  margin-bottom: 26px;

  position: relative;
}

.section#warum .warum-content .h2::after{
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;

  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section#warum .warum-content .h2::after{
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;

  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.section#warum .warum-content p:not(.lead){
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,.80);
}

.section#warum .warum-content{
  padding: 32px 34px;
  border-radius: 28px;

  background:
    radial-gradient(
      700px 380px at 10% 10%,
      rgba(255,255,255,.12),
      transparent 55%
    ),
    rgba(255,255,255,.04);

  border: 1px solid rgba(255,255,255,.14);

  box-shadow:
    0 30px 80px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

@media (max-width: 900px){
  .section#warum .warum-content{
    max-width: none;
    padding: 26px;
  }
}

.container{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

/* HEADER */

.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 0 rgba(10,10,24,.06);
}

.header__bar{
  max-width: var(--container);
  margin: auto;
  padding: 14px 0;
  display: flex;
  align-items: center; 
  gap: 14px;
}

.header__bar--flush{
  padding-left: 0;
  padding-right: 0;
}

.brand{
  display: flex;
  align-items: center;
}

.brand__logo{
  height: 42px;
  width: auto;
}

/* Hamburger */
.nav-toggle{
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: -15px;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 300; 
}

/* Mobile */
@media (max-width: 480px){
  .nav-toggle{
    margin-right: 0 !important;
  }
}

.nav-toggle__bar{
  width: 22px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-overlay{
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 9999;

  background: #12122B;
  backdrop-filter: blur(22px);

  display: grid;
  place-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* OVERLAY CLOSE BUTTON (X) */

.nav-close{
  position: fixed;
  top: 14px;
  right: max(var(--pad), calc((100vw - var(--container)) / 2));
  width: 44px;
  height: 44px;

  background: none;
  border: none;
  cursor: pointer;

  z-index: 10002;

  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-close span{
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.nav-close span:first-child{
  transform: rotate(45deg);
}

.nav-close span:last-child{
  transform: rotate(-45deg);
}

body.nav-open .nav-overlay{
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .nav-overlay__inner{
  overflow-y: auto;
}

.nav-overlay__inner{
  width: min(640px, 92vw);
  max-height: calc(100dvh - 140px);
  overflow: hidden;
  padding: 10px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  text-align: center;
}

/* Menü */
.nav-overlay__menu{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-overlay__menu a{
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* CTA */
.nav-overlay__cta{
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(320px, 90%);
}

.nav-overlay__mail{
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px){
  .nav-overlay__menu a{
    font-size: 1.35rem;
  }
}

@media (max-width: 720px){
  .header__bar{
    padding: 12px 0;
  }
}

.nav-overlay__inner{
  scrollbar-width: none;
}

.nav-overlay__inner::-webkit-scrollbar{
  width: 0;
  height: 0;
}

.nav-overlay__menu li,
.nav-overlay__cta{
  opacity: 0;
  transform: translateY(24px);
}

body.nav-open .nav-overlay__menu li,
body.nav-open .nav-overlay__cta{
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .45s ease,
    transform .45s cubic-bezier(.2,.8,.2,1);
}

body.nav-open .nav-overlay__menu li:nth-child(1){ transition-delay: .05s; }
body.nav-open .nav-overlay__menu li:nth-child(2){ transition-delay: .10s; }
body.nav-open .nav-overlay__menu li:nth-child(3){ transition-delay: .15s; }
body.nav-open .nav-overlay__menu li:nth-child(4){ transition-delay: .20s; }
body.nav-open .nav-overlay__menu li:nth-child(5){ transition-delay: .25s; }
body.nav-open .nav-overlay__menu li:nth-child(6){ transition-delay: .30s; }
body.nav-open .nav-overlay__menu li:nth-child(7){ transition-delay: .35s; }
body.nav-open .nav-overlay__menu li:nth-child(8){ transition-delay: .40s; }

body.nav-open .nav-overlay__cta{
  transition-delay: .5s;
}

.header-cta{
  flex: 1;                     
  display: flex;
  justify-content: center;      
  align-items: center;        
}


.header-cta__call{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;

  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;

  box-shadow: 0 14px 34px rgba(234,125,0,.22);
  border: 1px solid rgba(255,255,255,.22);
}

.header-cta__text{
  display: flex;
  flex-direction: column;
  align-items: center;   
  text-align: center;    
  gap: 4px;
  line-height: 1.1;
}

.header-cta__phone-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1px;
}

.header-cta__icon{
  width: 22px;
  height: 22px;

  background-color: #fff;

  -webkit-mask: url("/img/0288-phone-wave.svg") no-repeat center / contain;
  mask: url("/img/0288-phone-wave.svg") no-repeat center / contain;
}

.header-cta__phone{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.header-cta__call:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(234,125,0,.28);
  filter: brightness(1.02);
}

.header-cta__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  display: grid;
  place-items: center;
  z-index: 999 !important;
}

/* SVG selbst */
.header-cta__icon svg{
  width: 18px;
  height: 18px;
  color: #000;
}

.header-cta{
  color: #fff;
}

.hero .icon-phone{
  color: var(--brand-blue);
}

.icon-phone{
  width: 18px;
  height: 18px;

  background-color: currentColor;

  -webkit-mask: url("/img/0288-phone-wave.svg") no-repeat center / contain;
  mask: url("/img/0288-phone-wave.svg") no-repeat center / contain;
}

.header-cta__text{
  display: grid;
  line-height: 1.05;
}

.header-cta__top{
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: .86rem;
  opacity: .95;
}

.header-cta__phone{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}

.header-cta__chip{
  font-weight: 950;
  font-size: .78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
}

@media (max-width: 980px){
  .header-cta__call{
    max-width: 420px;
  }
}

@media (max-width: 720px){
  .header-cta{
    justify-items: flex-end;
  }

  .header-cta__top{
    display: none;
  }

  .header-cta__phone{
    font-size: .95rem;
  }

  .header-cta__call{
    padding: 9px 12px;
  }

  .header-cta__icon{
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px){
  .header-cta{
    display: none;
  }
}

/* BUTTONS */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(234,125,0,.18);
}

.btn--ghost{
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn--ghost:hover{
  background: #fff;
  color: #fff;
}

.section--alt .btn--ghost{
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
}
.section--alt .btn--ghost:hover{
  background: var(--brand-blue);
  color: #fff;
}

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

/* MOBILE */

@media (max-width: 480px){
  .nav-overlay__menu a{
    font-size: 1.3rem;
  }
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.30fr .70fr;
  gap: 22px;
  align-items: center;
}

.eyebrow{
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent) !important;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero__title{
  font-size: var(--h1);
  line-height: 1.08;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
}

.hero__sub{
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0 0 28px 0;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.trust{
  display: grid;
  gap: 10px;
  margin: 0 0 18px 0;
}
.trust__item{
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.86);
}
.trust__icon{
  width: 22px;
  height: 22px;
  border-radius: 7px;

  background: rgba(15,16,38,.08);
  border: 1px solid rgba(15,16,38,.12);

  display: grid;
  place-items: center;

  color: var(--accent);
}

.trust__icon.icon-check::before{
  content: "";
  display: block;             
  width: 12px;
  height: 12px;

  background-color: currentColor;

  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
}

.trust__icon{
  color: var(--accent);
}

.trust__icon.icon-check{
  background-color: transparent;
  background-image: url("img/1139-checkmark4.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.service__arrow{
  width: 18px;
  height: 18px;

  display: inline-block;

  color: var(--accent);

  transition:
    transform .25s ease,
    opacity .25s ease;
}
.service__arrow.icon-arrow::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;

  background-color: currentColor;

  -webkit-mask: url("/img/1247-arrow-right8.svg") no-repeat center / contain;
  mask: url("/img/1247-arrow-right8.svg") no-repeat center / contain;
}
.service--card:hover .service__arrow{
  color: var(--accent-2);
}


.hero__meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* HERO */

.hero{
  background: #fff;
  padding: clamp(48px, 6vw, 96px) 0;
}

.hero__inner{
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.hero__grid{
  position: relative;
  z-index: 1;
}

.hero .hero__title{ color: var(--brand-blue); }

.h2, .h3{ color: var(--text); }

.hero .h2, .hero .h3{ color: var(--brand-blue); }

.hero .hero__sub,
.hero p {
  color: var(--text-muted);
}


.hero .trust__item{
  color: rgba(10,10,24,.82);
}

.hero .meta-card{
  background: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.hero .meta-card__label{
  color: rgba(10,10,24,.62);
}

.hero .meta-card__value{
  color: rgba(10,10,24,.92);
}

.hero .btn--ghost{
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
}

.hero .btn--ghost:hover{
  background: var(--brand-blue);
  color: #fff;
}

.hero a:hover .icon-phone{
  color: #fff;
}

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

.hero__mediaBadge{
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(10px);
}


/* Responsive */

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

  .hero__media{
    min-height: 240px;
    order: 2;
  }

  .hero__content{
    order: 1;
  }
}

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

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

  .hero__mediaBadge{
    font-size: .92rem;
    padding: 9px 10px;
  }
}

.meta-card{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.meta-card__label{
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.meta-card__value{
  font-weight: 700;
  color: rgba(255,255,255,.90);
}

.cards{
  display: grid;
  gap: 12px;
}
.card{
  padding: 16px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.card__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(234,125,0,.16);
  border: 1px solid rgba(234,125,0,.22);
  margin-bottom: 10px;
}
.card__title{
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}
.card__text{ color: var(--muted); }

.service-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.service:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(234,125,0,.25);
}
.service__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(234,125,0,.14);
  border: 1px solid rgba(234,125,0,.22);
}
.service__title{ font-weight: 900; letter-spacing: -0.02em; }
.service__text{ color: var(--muted); font-size: .95rem; margin-top: 3px; }
.service__arrow{ color: rgba(234,125,0,.9); font-weight: 900; }

/* LEISTUNGEN */

.section#leistungen{
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  overflow: hidden;
}

.section#leistungen::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(19,135,196,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 35%, rgba(234,125,0,.10), transparent 65%);
  pointer-events: none;
}

.section#leistungen .section__head{
  position: relative;
  z-index: 1;
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.section__head--center{
  text-align: left;
  max-width: 860px;
  margin-inline: auto;
  margin-left: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system;
}

.section__head--center .h2{
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section__eyebrow{
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.section#leistungen .lead{
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.65;
}

.service-grid--cards{
  position: relative;
  z-index: 1;
  gap: 14px;
}

.service--card{
  padding: 18px 18px;
  border-radius: 20px;

  background:
    radial-gradient(700px 320px at 20% 0%, rgba(19,135,196,.10), transparent 55%),
    rgba(19,135,196,.04);

  border: 1px solid rgba(19,135,196,.14);

  box-shadow:
    0 14px 30px rgba(15,16,38,.08),
    inset 0 1px 0 rgba(255,255,255,.75);

  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.service--card:hover{
  transform: translateY(-6px);
  border-color: rgba(234,125,0,.22);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(234,125,0,.14), transparent 55%),
    rgba(19,135,196,.05);

  box-shadow:
    0 22px 55px rgba(15,16,38,.14),
    inset 0 1px 0 rgba(255,255,255,.78);
}

.section#leistungen .service__icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;

  background:
    linear-gradient(135deg, rgba(234,125,0,.22), rgba(255,154,42,.14));

  border: 1px solid rgba(234,125,0,.22);
  box-shadow: 0 10px 22px rgba(234,125,0,.12);

  font-size: 1.25rem;
  transition: transform .28s ease;
}

.service--card:hover .service__icon{
  transform: scale(1.08) rotate(-2deg);
}

.section#leistungen .service__arrow{
  color: rgba(234,125,0,.95);
  transform: translateX(0);
  transition: transform .25s ease, opacity .25s ease;
  opacity: .9;
}

.service--card:hover .service__arrow{
  transform: translateX(6px);
  opacity: 1;
}

.section#leistungen .service__title{
  font-weight: 750;
}

.section#leistungen .service__text{
  margin-top: 4px;
  line-height: 1.5;
}

.section__foot--actions{
  position: relative;
  z-index: 1;
  margin-top: clamp(18px, 3vw, 26px);

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: left;
  align-items: center;
}

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

@media (max-width: 640px){
  .section#leistungen{
    padding: 64px 0;
  }

  .service-grid--cards{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service--card{
    padding: 16px;
  }
}

.steps{
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}

.step__num{
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(234,125,0,.18);
  border: 1px solid rgba(234,125,0,.25);
  font-weight: 900;
  color: rgba(255,255,255,.95);
}

.step__title{ margin: 0 0 6px 0; letter-spacing: -0.02em; }
.step__text{ color: var(--muted); }

.checklist{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.checklist li{
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.86);
}

.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: .9rem;
  line-height: 1;
  background: rgba(234,125,0,.25);
  border: 1px solid rgba(234,125,0,.35);
  color: #fff;
}

.highlight{
  border-radius: 22px;
  border: 1px solid rgba(234,125,0,.22);
  background: radial-gradient(700px 340px at 30% 10%, rgba(234,125,0,.22), transparent 55%),
              rgba(255,255,255,.05);
  padding: 18px;
  box-shadow: var(--shadow);
}
.highlight__title{ color: rgba(234,125,0,.92); text-transform: uppercase; letter-spacing: .18em; font-size: .85rem; }
.highlight__big{ font-size: 1.7rem; font-weight: 950; margin: 10px 0 8px; letter-spacing: -0.02em; }
.highlight__text{ color: var(--text-on-white); margin-bottom: 12px; }
.highlight__small{ color: rgba(255,255,255,.78); margin-top: 12px; font-size: .95rem; }

/* Chips */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
}

/* CTA Section */
.cta{
  padding: clamp(54px, 6vw, 96px) 0;
}

.cta__box{
  border-radius: 26px;
  border: 1px solid rgba(15,16,38,.14);

  background: #fff;

  box-shadow:
    0 30px 80px rgba(15,16,38,.14);

  padding: clamp(18px, 2.2vw, 26px);

  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: center;
}

.cta__title{
  margin: 0 0 10px 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system !important;
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cta__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.cta__side{
  display: grid;
  justify-items: end;
}
.cta__badge{
  width: min(320px, 100%);
  padding: 20px;
  border-radius: 22px;
  background: rgba(19,135,196,0.08);
  border: 1px solid #12122B;
  box-shadow:
    0 16px 36px rgba(15,16,38,0.12);
  text-align: left;
}

.cta__badgeTop{
  color: var(--accent);      
  font-weight: 900;
  font-size: 1.35rem;
}

.cta__badgeMid{
  color: var(--brand-blue);   
  font-weight: 900;
  font-size: 1.25rem;
}

.cta__badgeBot{
  color: var(--brand-blue);
  opacity: .75;
  font-size: .95rem;
}


.cta__text{
  color: var(--muted-on-white);
  margin-bottom: 8px;
}

.cta__details{
  color: var(--muted-on-white);
}

.cta__details a{
  color: var(--brand-blue);
}

/* Footer */
.site-footer{
  padding: 42px 0 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(
      800px 400px at 10% 20%,
      rgba(255,255,255,.08),
      transparent 60%
    );
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.footer__brand{
  font-weight: 950;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer__title{
  font-weight: 900;
  margin-bottom: 10px;
}
.footer__text{ color: var(--muted); margin-bottom: 3px;}
.footer__contact{ margin-top: 12px; display: grid; gap: 6px; color: rgba(255,255,255,.86); }
.footer__tel{ font-weight: 950; color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer__links{ display: grid; gap: 10px; }
.footer__links a{
  color: rgba(255,255,255,.86);
  padding: 8px 10px;
  border-radius: 12px;
  border: 3px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 3px;
}
.footer__links a:hover{
  border-color: rgba(234,125,0,.22);
}

.footer__legal{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.78);
}
.footer__legal a{ text-decoration: underline; text-underline-offset: 4px; }

.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
}

.footer__links li + li{
  margin-top: 12px;
}

/* Sticky Call */
.sticky-call{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 90;

  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(234,125,0,.98), rgba(255,154,42,.94));
  color: #141427;
  font-weight: 950;
  box-shadow: 0 18px 50px rgba(234,125,0,.22);
}

.sticky-call__icon{
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  display: grid; place-items: center;
}

/* VERSICHERUNG */

.versicherung__content{
  border-radius: 26px;
  padding: clamp(18px, 2.6vw, 26px);

  background: rgba(19,135,196,.04);
  border: 1px solid rgba(19,135,196,.12);

  box-shadow: 0 18px 50px rgba(15,16,38,.06);
}

.checklist--alt li{
  color: rgba(15,16,38,.82);
}
.checklist--alt li::before{
  background: rgba(234,125,0,.14);
  border: 1px solid rgba(234,125,0,.22);
  color: rgba(234,125,0,.95);
}

.section--alt .btn--ghost{
  border-width: 2px;
}

/* Responsive */
@media (max-width: 980px){

  .media-card img{
    height: 200px;
  }
}

@media (max-width: 640px){
  .section#versicherung{
    padding: 64px 0;
  }

  .media-card img{
    height: 220px;
  }
}

/* Responsive */
@media (max-width: 980px){
  .section__grid{ grid-template-columns: 1fr; }
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ order: -1; }
  .hero__meta{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
  .cta__box{ grid-template-columns: 1fr; }
  .cta__side{ justify-items: start; }
}

@media (max-width: 720px){
  .sticky-call{ display: inline-flex; }
  .header__bar{ padding: 12px 0; }
  .brand__tag{ display: none; }
  .btn{ padding: 5px 14px; text-align: center; }
}

/* VERSICHERUNG */

.section#versicherung{
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}

.section#versicherung::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      800px 420px at 10% 20%,
      rgba(255,255,255,.10),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 90% 40%,
      rgba(234,125,0,.14),
      transparent 65%
    );
  pointer-events: none;
}

.section#versicherung .h2{
  color: #fff;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system !important;
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section#versicherung .lead{
  color: var(--muted);
}

.versicherung__box{
  position: relative;
  z-index: 1;

  max-width: 980px;
  margin: clamp(18px, 3vw, 28px) auto 0;

  border-radius: 28px;
  padding: clamp(20px, 3vw, 30px);

  background:
    radial-gradient(
      700px 380px at 10% 10%,
      rgba(255,255,255,.14),
      transparent 55%
    ),
    rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.18);

  box-shadow:
    0 30px 80px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.section#versicherung .checklist li{
  color: rgba(255,255,255,.88);
}

.section#versicherung .checklist li::before{
  background: rgba(234,125,0,.25);
  border: 1px solid rgba(234,125,0,.35);
  color: #fff;
}

/* Note */
.versicherung__note{
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  text-align: center;

  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );

  border: 1px solid rgba(234,125,0,.40);

  color: #fff;
  font-weight: 800;
  line-height: 1.5;
}

.versicherung__gallery{
  position: relative;
  z-index: 1;

  margin-top: clamp(22px, 4vw, 34px);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-wide{
  border-radius: 28px;
  overflow: hidden;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);

  box-shadow:
    0 24px 70px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);

  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.media-wide:hover{
  transform: translateY(-10px);
}

.media-wide img{
  width: 100%;
  height: clamp(220px, 18vw, 340px);
  object-fit: cover;
  display: block;

  transform: scale(1.02);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.media-wide:hover img{
  transform: scale(1.09);
}

/* ORANGE NOTFALLBOX */
.callout--orange{
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--accent-2)
  );
  border-radius: 30px;
  padding: clamp(22px, 3vw, 32px);

  box-shadow:
    0 30px 90px rgba(234,125,0,.35);
  margin-top: 80px;
}

.callout--orange *{
  color: #fff;
}

.callout__phone{
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 950;
}

.btn--dark{
  background: var(--brand-blue);
  color: #fff;

  border: 1px solid rgba(255,255,255,.22);

  box-shadow:
    0 14px 30px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.12);

  transition: transform .2s ease, box-shadow .2s ease;
}

.btn--dark:hover{
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.callout--orange .btn--ghostOnOrange{
  border: 2px solid rgba(255,255,255,.55);
}

.btn--ghostOnOrange:hover .btn--primary:hover .btn--full:hover{
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.btn--full:hover{
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.callout__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;

  margin-top: 22px;
  margin-bottom: 18px;
}

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

.section#versicherung .checklist li{
  padding-left: 30px;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 980px){
  .versicherung__gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* EINSATZGEBIET */

.section--einsatzgebiet{
  position: relative;
  background:
    radial-gradient(
      800px 400px at 10% 20%,
      rgba(255,255,255,.08),
      transparent 60%
    );
  padding: clamp(90px, 10vw, 130px) 0;
  overflow: hidden;
}

.einsatz-slope{
  position: relative;
  width: 120%;
  left: -10%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: skewY(-6deg);
  padding: clamp(70px, 9vw, 130px) 0;
  box-shadow: 0 30px 80px rgba(234,125,0,.35);
}

.einsatz-slope__inner{
  position: relative;
  width: 100%;
}

.einsatz-marquee{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.einsatzgebiet__titleWrap{
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto 26px;
  text-align: center;
}

.section__head--center .h2{
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system !important;
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.einsatzgebiet__title{
  margin: 0;
  text-align: center;
  transform: rotate(-1.2deg);
  font-weight: 950;
  color: #fff;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system !important;
  font-size: clamp(2.1rem, 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  transform: translateY(-6px);
  text-shadow: 0 10px 26px rgba(0,0,0,.28);
}

.einsatz-marquee{
  overflow: hidden;
  width: 100%;
}

.einsatz-marquee__track{
  display: inline-flex;   
  align-items: center;
  gap: 22px;
  transform: translateY(10px);
  width: max-content;
  padding: 14px 0;

  will-change: transform;
}

/* Chips */
.section--einsatzgebiet .chip{
  padding: 18px 34px;
  font-size: 1.05rem;
  font-weight: 850;

  border-radius: 999px;
  white-space: nowrap;

  background: rgba(255,255,255,.94);
  color: var(--brand-blue);
  border: 1px solid rgba(255,255,255,.65);

  transition: transform .25s ease;
}

.section--einsatzgebiet .chip:hover{
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 640px){
  .einsatz-slope{
    padding: 70px 0;
  }

  .einsatz-marquee__track{
    gap: 14px;
  }

  .section--einsatzgebiet .chip{
    padding: 14px 22px;
    font-size: .95rem;
  }
}

.section:not(.section--alt),
.section#warum,
.section#versicherung,
.section--einsatzgebiet{
  background: var(--bg-solid) !important;
}

.section::before,
.section#warum::before,
.section#leistungen::before,
.section#versicherung::before{
  display: none !important;
}

.section#warum .card:nth-child(1),
.section#warum .card:nth-child(2),
.section#warum .card:nth-child(3){
  transform: none !important;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .einsatz-marquee__track{
    transform: none !important;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html:focus-within { scroll-behavior: auto; }
  * { transition: none !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Headlines */
h1, h2, h3,
.h2, .h3,
.hero__title,
.cta__title{
  font-family: var(--font-head);
}

/* Fließtext */
body,
p,
.lead,
.card__text,
.service__text,
.hero__sub{
  font-family: var(--font-text);
}

@media (max-width: 720px){
  .header-cta{
    display: none;
  }
}

main > .section:first-child{
  padding-top: clamp(40px, 6vw, 80px) !important;
}

.page--no-hero main > section.section:first-of-type{
  padding-bottom: 50px !important;
}

/* Kontakt */

.page--kontakt .highlight{
  margin-bottom: 80px !important;
  margin-top: 60px !important;
}

.page--kontakt .service-grid--cards {
  margin-top: 20px;
}

.page--kontakt .section__head--center {
  text-align: left;
  margin-left: 0;
}

.page--faq .section__head--center {
  margin-bottom: 30px !important;
}

.page--kontakt .kontakt-icon{
  width: 22px;
  height: 22px;

  background-color: currentColor;

  display: block;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.page--kontakt .kontakt-icon--phone{
  -webkit-mask-image: url("/img/0288-phone-wave.svg");
  mask-image: url("/img/0288-phone-wave.svg");
}

.page--kontakt .kontakt-icon--mail{
  -webkit-mask-image: url("/img/0305-envelop.svg");
  mask-image: url("/img/0305-envelop.svg");
}

.page--kontakt .kontakt-icon--location{
  -webkit-mask-image: url("/img/0314-location2.svg");
  mask-image: url("/img/0314-location2.svg");
}

/* Impressum */
.page--impressum .section__head--center .h2 {
  text-align: left;
  margin-left: 0;
  margin-bottom: 80px;
}

.page--impressum .section__head--center{
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.page--faq .section__head--center{
  margin-bottom: 30px;
}
/* Datenschutz */
.page--datenschutz .section__head--center .h2 {
  text-align: left;
  margin-left: 0;
  margin-bottom: 80px;
}

.page--datenschutz .section__head--center{
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.page--datenschutz .checklist li{
  color: var(--muted-on-white);
}

.page--datenschutz .checklist li::before{
  content: "";
  
  width: 16px;
  height: 16px;

  position: absolute;
  left: 0;
  top: 0.25em;

  background-color: var(--accent);

  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;

  border: none;
  border-radius: 0;
}

.page--datenschutz .checklist{
  color: var(--accent);
}

/* Leckageortung */
.page--leckageortung .section__head--center .h2 {
  text-align: left;
  margin-left: 0;
  margin-bottom: 40px;
}

.page--leckageortung .section__head--center{
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.page--leckageortung .section__foot--actions{
  position: relative;
  z-index: 1;
  margin-top: clamp(18px, 3vw, 26px);

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: left;
  align-items: left;
}

.page--leckageortung section[aria-labelledby="leistungen-title"],
.page--leckageortung section[aria-labelledby="abschluss-title"]{
  background: #fff !important;
  color: var(--text-on-white);
}

.page--leckageortung .section[aria-labelledby="leistungen-title"] .h2,
.page--leckageortung section[aria-labelledby="abschluss-title"] .h2{
  color: var(--brand-blue);
}

.page--leckageortung .section[aria-labelledby="leistungen-title"] p,
.page--leckageortung section[aria-labelledby="abschluss-title"] p,
.page--leckageortung .section.leistungen .lead{
  color: var(--muted-on-white);
}

.page--leckageortung .section[aria-labelledby="leistungen-title"] .checklist li,
.page--leckageortung section[aria-labelledby="abschluss-title"] .checklist li{
  color: var(--muted-on-white);
}

.page--leckageortung .section[aria-labelledby="leistungen-title"] .checklist li::before{
  background: rgba(234,125,0,.14);
  border: 1px solid rgba(234,125,0,.22);
  color: var(--accent);
}

.page--leckageortung section[aria-labelledby="abschluss-title"] .highlight__big {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system !important;
  font-size: clamp(2.1rem, 0.75vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* LECKECKAGE */

.section--leak-signs {
  padding: clamp(80px, 10vw, 120px) 0;
}

.leak-signs {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

/* LEFT CONTENT */

.leak-signs__content .h2 {
  line-height: 1.1;
  margin-bottom: 20px;
}

.leak-signs__content .lead {
  max-width: 48ch;
}

/* GRID */

.leak-signs__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

/* CARD */

.leak-card {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 18px;
  border-radius: 20px;

  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(255,255,255,.14),
      transparent 55%
    ),
    rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);

  box-shadow:
    0 12px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.22);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease,
    background .35s ease;
}

.leak-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}

/* ICON */

.leak-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;

  background:
    linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.25));

  border: 1px solid rgba(255,255,255,.35);
  box-shadow:
    0 8px 22px rgba(234,125,0,.25),
    inset 0 1px 0 rgba(255,255,255,.35);

  flex-shrink: 0;
}

/* TEXT */

.leak-card__text {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

/* ICON MASKS */

.icon-water   { mask: url("/img/0314-location2.svg") no-repeat center / 22px; }
.icon-wall    { mask: url("/img/0288-phone-wave.svg") no-repeat center / 22px; }
.icon-sound   { mask: url("/img/0305-envelop.svg") no-repeat center / 22px; }
.icon-damage  { mask: url("/img/1247-arrow-right8.svg") no-repeat center / 22px; }
.icon-mold    { mask: url("/img/1139-checkmark4.svg") no-repeat center / 22px; }
.icon-file    { mask: url("/img/0305-envelop.svg") no-repeat center / 22px; }

.leak-card__icon {
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 22px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .leak-signs {
    grid-template-columns: 1fr;
  }

  .leak-signs__grid {
    grid-template-columns: 1fr;
  }
}

/* LEISTUNGEN – GALERIE ONLY (WHITE) */

.section--leistungen-galleryOnly{
  position: relative;
  padding: clamp(90px, 10vw, 130px) 0;
  background: #fff;
  color: var(--text-on-white);
}

/* Head */

.section--leistungen-galleryOnly .leistungenG__head{
  max-width: 900px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.section--leistungen-galleryOnly .leistungenG__head .h2{
  margin: 0 0 12px 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section--leistungen-galleryOnly .leistungenG__head .lead{
  color: var(--muted-on-white);
  margin: 0;
  max-width: 72ch;
}

/* Grid */

.section--leistungen-galleryOnly .leistungenG__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Card */

.section--leistungen-galleryOnly .leistungenG__card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;

  background: rgba(19,135,196,.04);
  border: 1px solid rgba(19,135,196,.14);

  box-shadow:
    0 18px 50px rgba(15,16,38,.10),
    inset 0 1px 0 rgba(255,255,255,.70);

  transform: translateY(0);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease;
}

/* Hover */

.section--leistungen-galleryOnly .leistungenG__card:hover{
  transform: translateY(-10px);
  border-color: rgba(234,125,0,.25);
  box-shadow:
    0 34px 90px rgba(15,16,38,.18),
    inset 0 1px 0 rgba(255,255,255,.80);
}

/* Media */

.section--leistungen-galleryOnly .leistungenG__media{
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(15,16,38,.06);
}

.section--leistungen-galleryOnly .leistungenG__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(18,18,43,.05),
      rgba(18,18,43,.55)
    );
  pointer-events: none;
}

.section--leistungen-galleryOnly .leistungenG__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1.05);
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
}

.section--leistungen-galleryOnly .leistungenG__card:hover .leistungenG__media img{
  transform: scale(1.14);
}

/* Body */

.section--leistungen-galleryOnly .leistungenG__body{
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 18px 18px;
}

.section--leistungen-galleryOnly .leistungenG__title{
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--brand-blue);
  font-weight: 600;
  font-family: var(--font-text);
}

/* Icon */

.section--leistungen-galleryOnly .leistungenG__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  flex-shrink: 0;

  background:
    linear-gradient(135deg, rgba(234,125,0,.28), rgba(255,154,42,.18));
  border: 1px solid rgba(234,125,0,.22);
  box-shadow:
    0 10px 22px rgba(234,125,0,.12),
    inset 0 1px 0 rgba(255,255,255,.55);

  position: relative;
}

.section--leistungen-galleryOnly .leistungenG__icon::after{
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--brand-blue);

  -webkit-mask: url("/img/1247-arrow-right8.svg") no-repeat center / 18px;
  mask: url("/img/1247-arrow-right8.svg") no-repeat center / 18px;

  opacity: .9;
  transform: translateX(0);
  transition: transform .35s ease, opacity .35s ease;
}

.section--leistungen-galleryOnly .leistungenG__card:hover .leistungenG__icon::after{
  transform: translateX(3px);
  opacity: 1;
}

/* Non-clickable: Cursor neutral */
.section--leistungen-galleryOnly .leistungenG__card{
  cursor: default;
}

/* Responsive */

@media (max-width: 980px){
  .section--leistungen-galleryOnly .leistungenG__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section--leistungen-galleryOnly .leistungenG__media{
    height: 210px;
  }
}

@media (max-width: 640px){
  .section--leistungen-galleryOnly{
    padding: 70px 0;
  }

  .section--leistungen-galleryOnly .leistungenG__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section--leistungen-galleryOnly .leistungenG__media{
    height: 220px;
  }

  .section--leistungen-galleryOnly .leistungenG__body{
    padding: 14px 16px 16px;
  }

  .section--leistungen-galleryOnly .leistungenG__title{
    font-size: 1rem;
  }
}

/* ABLAUF */

.section--ablaufPlus{
  position: relative;
  padding: clamp(10px, 10vw, 120px) 0;
  padding-top: 80px;
  padding-bottom: 10px;
}

.section--ablaufPlus::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 15% 20%, rgba(234,125,0,.10), transparent 60%),
    radial-gradient(900px 520px at 85% 60%, rgba(19,135,196,.10), transparent 65%);
  opacity: .9;
}

/* Head */
.section--ablaufPlus .ablaufPlus__head{
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.section--ablaufPlus .ablaufPlus__head .h2{
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 10px 0;
}

.section--ablaufPlus .ablaufPlus__head .lead{
  color: var(--muted);
  margin: 0;
  max-width: 72ch;
}

/* Steps Wrapper */
.section--ablaufPlus .ablaufPlus__steps{
  position: relative;
  z-index: 1;

  display: grid;
  gap: 14px;
}

/* Timeline Line */
.section--ablaufPlus .ablaufPlus__steps::before{
  content:"";
  position:absolute;
  left: 38px;              
  top: 10px;
  bottom: 10px;
  width: 2px;

  background: linear-gradient(
    180deg,
    rgba(234,125,0,.55),
    rgba(255,154,42,.10),
    rgba(255,255,255,.06)
  );

  border-radius: 99px;
  opacity: .9;
}

/* Step Card */
.section--ablaufPlus .ablaufPlus__steps .step{
  position: relative;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;

  padding: 18px 18px;
  border-radius: 22px;

  background:
    radial-gradient(700px 320px at 10% 10%, rgba(255,255,255,.12), transparent 55%),
    rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);

  box-shadow:
    0 14px 34px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.18);

  transform: translateY(0);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

/* Hover */
.section--ablaufPlus .ablaufPlus__steps .step:hover{
  transform: translateY(-8px);
  border-color: rgba(234,125,0,.22);

  background:
    radial-gradient(700px 320px at 10% 10%, rgba(255,255,255,.18), transparent 55%),
    rgba(255,255,255,.08);

  box-shadow:
    0 28px 70px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.section--ablaufPlus .ablaufPlus__steps .step__num{
  width: 52px;
  height: 52px;
  border-radius: 18px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(135deg, rgba(234,125,0,.30), rgba(255,154,42,.20));
  border: 1px solid rgba(255,255,255,.25);

  box-shadow:
    0 14px 30px rgba(234,125,0,.18),
    inset 0 1px 0 rgba(255,255,255,.25);

  font-weight: 950;
  color: #fff;

  position: relative;
}

.section--ablaufPlus .ablaufPlus__steps .step__num::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  opacity: .0; 
  transition: opacity .35s ease;
}

.section--ablaufPlus .ablaufPlus__steps .step:hover .step__num::after{
  opacity: .85;
}

/* Titel/Text */
.section--ablaufPlus .ablaufPlus__steps .step__title{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(255,255,255,.94);
  line-height: 1.25;
  font-family: var(--font-text);
}

.section--ablaufPlus .ablaufPlus__steps .step__text{
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 720px){
  .section--ablaufPlus .ablaufPlus__steps{
    padding-left: 0;
  }

  .section--ablaufPlus .ablaufPlus__steps::before{
    left: 26px;
  }

  .section--ablaufPlus .ablaufPlus__steps .step{
    padding: 16px;
    border-radius: 20px;
  }

  .section--ablaufPlus .ablaufPlus__steps .step__num{
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
}

@media (max-width: 520px){
  .section--ablaufPlus{
    padding: 70px 0;
  }

  .section--ablaufPlus .ablaufPlus__steps{
    gap: 12px;
  }

  .section--ablaufPlus .ablaufPlus__steps .step{
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .section--ablaufPlus .ablaufPlus__steps::before{
    display: none;
  }

  .section--ablaufPlus .ablaufPlus__steps .step__num{
    width: 44px;
    height: 44px;
  }
}

/* TRUST BLOCKS */

.section--trustBlocks{
  position: relative;
  padding: clamp(90px, 10vw, 130px) 0;
  background: var(--bg-solid);
  overflow: hidden;
}

/* dezenter Background */
.section--trustBlocks::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 10% 20%, rgba(234,125,0,.10), transparent 60%),
    radial-gradient(900px 520px at 90% 50%, rgba(19,135,196,.10), transparent 65%);
  pointer-events:none;
}

/* Head */

.section--trustBlocks .trustBlocks__head{
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.section--trustBlocks .trustBlocks__head .h2{
  margin: 0 0 12px 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section--trustBlocks .trustBlocks__head .lead{
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

/* Grid */

.section--trustBlocks .trustBlocks__grid{
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Block */

.section--trustBlocks .trustBlock{
  position: relative;
  padding: 26px;
  border-radius: 28px;

  background:
    radial-gradient(700px 380px at 10% 10%, rgba(255,255,255,.14), transparent 55%),
    rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);

  box-shadow:
    0 24px 60px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.22);

  transform: translateY(0);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    background .45s ease;
}

.section--trustBlocks .trustBlock:hover{
  transform: translateY(-10px);
  box-shadow:
    0 36px 90px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.28);
}

/* Icon */

.section--trustBlocks .trustBlock__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 18px;

  background:
    linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.25));

  box-shadow:
    0 10px 24px rgba(234,125,0,.22),
    inset 0 1px 0 rgba(255,255,255,.35);

  position: relative;
}

/* unterschiedliche Icons */
.trustBlock--insurance .trustBlock__icon{
  -webkit-mask: url("/img/0305-envelop.svg") no-repeat center / 26px;
  mask: url("/img/0305-envelop.svg") no-repeat center / 26px;
  background-color: #fff;
}

.trustBlock--region .trustBlock__icon{
  -webkit-mask: url("/img/0314-location2.svg") no-repeat center / 26px;
  mask: url("/img/0314-location2.svg") no-repeat center / 26px;
  background-color: #fff;
}

.trustBlock--why .trustBlock__icon{
  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / 26px;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / 26px;
  background-color: #fff;
}

/* Title */

.section--trustBlocks .trustBlock__title{
  margin: 0 0 12px 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
}

/* Text */

.section--trustBlocks .trustBlock__text{
  margin: 0;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
}

/* List */

.section--trustBlocks .trustBlock__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.section--trustBlocks .trustBlock__list li{
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.85);
}

.section--trustBlocks .trustBlock__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 16px;
  height: 16px;

  background-color: var(--accent);
  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
}

/* Responsive */

@media (max-width: 980px){
  .section--trustBlocks .trustBlocks__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .section--trustBlocks{
    padding: 70px 0;
  }

  .section--trustBlocks .trustBlocks__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section--trustBlocks .trustBlock{
    padding: 22px;
  }
}

/* CTA */

.section--finalCTA{
  position: relative;
  padding:
    clamp(90px, 10vw, 120px)
    0
    clamp(140px, 16vw, 20px);
  background: #fff;
  overflow: hidden;
}

/* CTA Container */

.section--finalCTA .finalCTA{
  max-width: 920px;
  margin-inline: auto;

  padding: clamp(26px, 4vw, 38px);
  border-radius: 36px;

  background:
  radial-gradient(
    600px 300px at 20% 10%,
    rgba(255,255,255,.12),
    transparent 55%
  ),
  rgba(19,135,196,.10);

  border: 1px solid rgba(234,125,0,.30);

  box-shadow:
    0 50px 120px rgba(234,125,0,.28),
    inset 0 1px 0 rgba(255,255,255,.95);

  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

/* Lead */

.section--finalCTA .finalCTA__lead{
  margin: 0;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--text-on-white);
  text-align: center;
}

.section--finalCTA .finalCTA__lead strong{
  font-weight: 900;
  color: var(--brand-blue);
}

/* Action */

.section--finalCTA .finalCTA__action{
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

/* Info */

.section--finalCTA .finalCTA__info{
  font-weight: 600;
  color: var(--text-muted);
}

/* Button */

.section--finalCTA .finalCTA__btn{
  max-width: 420px;
  font-size: 1.15rem;
  padding: 16px 22px;
  border-radius: 999px;

  box-shadow:
    0 20px 50px rgba(234,125,0,.40);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
}

.section--finalCTA .finalCTA__btn:hover{
  transform: translateY(-3px);
  box-shadow:
    0 28px 70px rgba(234,125,0,.48);
}

/* Responsive */

@media (max-width: 640px){
  .section--finalCTA{
    padding:
      70px
      0
      150px;
  }

  .section--finalCTA .finalCTA{
    padding: 22px;
    border-radius: 28px;
  }

  .section--finalCTA .finalCTA__lead{
    font-size: 1.05rem;
  }

  .section--finalCTA .finalCTA__btn{
    font-size: 1.05rem;
    padding: 14px 18px;
  }
}

body .section.section--finalCTA{
  background: #fff !important;
  color: var(--text-on-white) !important;
}

/* TV-INSPEKTION*/

.page--tv-inspektion .section--tvK{
  position: relative;
  padding: clamp(78px, 9vw, 120px) 0;
  overflow: hidden;
  background: var(--bg-main) !important;
}

/* Head */
.page--tv-inspektion .tvK__head{
  max-width: 860px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.page--tv-inspektion .tvK__head .h2{
  margin: 0 0 10px 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page--tv-inspektion .tvK__head .lead{
  margin: 0;
  max-width: 70ch;
  color: rgba(255,255,255,.78);
}

/* Grid */
.page--tv-inspektion .tvK__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 18px);
  align-items: stretch;
}

/* Card */
.page--tv-inspektion .tvK__card{
  position: relative;
  border-radius: 28px;
  padding: clamp(18px, 2.4vw, 28px);

  background:
    radial-gradient(700px 360px at 18% 0%, rgba(255,255,255,.14), transparent 55%),
    rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);

  box-shadow:
    0 22px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.18);

  transform: translateY(0) scale(1);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

.page--tv-inspektion .tvK__card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events: none;

  background: radial-gradient(520px 240px at 18% 0%, rgba(255,255,255,.18), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}

.page--tv-inspektion .tvK__card:hover{
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(234,125,0,.24);

  box-shadow:
    0 36px 95px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.22);

  background:
    radial-gradient(700px 360px at 18% 0%, rgba(255,255,255,.18), transparent 55%),
    rgba(255,255,255,.07);
}

.page--tv-inspektion .tvK__card:hover::after{
  opacity: 1;
}

/* Card Top */
.page--tv-inspektion .tvK__cardTop{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.page--tv-inspektion .tvK__title{
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.94);
}

/* Icon base */
.page--tv-inspektion .tvK__icon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  position: relative;

  background: linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.22));
  border: 1px solid rgba(255,255,255,.28);

  box-shadow:
    0 12px 28px rgba(234,125,0,.18),
    inset 0 1px 0 rgba(255,255,255,.28);

  transition: transform .35s ease;
}

.page--tv-inspektion .tvK__card:hover .tvK__icon{
  transform: rotate(-2deg) scale(1.06);
}

.page--tv-inspektion .tvK__icon::after{
  content:"";
  position:absolute;
  inset:0;
  background-color: #fff;
  opacity: .95;
}

/* Icons */
.page--tv-inspektion .tvK__icon--use::after{
  -webkit-mask: url("/img/0314-location2.svg") no-repeat center / 26px;
  mask: url("/img/0314-location2.svg") no-repeat center / 26px;
}

.page--tv-inspektion .tvK__icon--pro::after{
  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / 26px;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / 26px;
}

/* List */
.page--tv-inspektion .tvK__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page--tv-inspektion .tvK__list li{
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}

.page--tv-inspektion .tvK__list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;

  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
}

/* Farbvarianten pro Card */
.page--tv-inspektion .tvK__list--blue li::before{
  background-color: var(--accent);
}

.page--tv-inspektion .tvK__list--orange li::before{
  background-color: var(--accent);
}

/* Mini Teaser */
.page--tv-inspektion .tvK__mini{
  margin-top: clamp(14px, 2.6vw, 18px);
  border-radius: 24px;
  padding: clamp(16px, 2.2vw, 20px);

  background:
    radial-gradient(620px 260px at 15% 0%, rgba(255,255,255,.12), transparent 55%),
    rgba(255,255,255,.04);

  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 55px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.16);

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.page--tv-inspektion .tvK__miniLeft{
  display:flex;
  align-items:center;
  gap: 12px;
}

.page--tv-inspektion .tvK__miniIcon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  flex: 0 0 auto;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
}

.page--tv-inspektion .tvK__miniIcon::after{
  content:"";
  position:absolute;
  inset:0;
  background-color: var(--accent);

  -webkit-mask: url("/img/1247-arrow-right8.svg") no-repeat center / 18px;
  mask: url("/img/1247-arrow-right8.svg") no-repeat center / 18px;

  opacity: .95;
}

.page--tv-inspektion .tvK__miniText{
  margin: 0;
  color: rgba(255,255,255,.82);
}

.page--tv-inspektion .tvK__miniText strong{
  color: rgba(255,255,255,.95);
  font-weight: 950;
}

.page--tv-inspektion .tvK__miniRight{
  display: grid;
  justify-items: end;
}

.page--tv-inspektion .tvK__miniBtn{
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 980px){
  .page--tv-inspektion .tvK__grid{
    grid-template-columns: 1fr;
  }

  .page--tv-inspektion .tvK__mini{
    grid-template-columns: 1fr;
  }

  .page--tv-inspektion .tvK__miniRight{
    justify-items: start;
  }

  .page--tv-inspektion .tvK__miniBtn{
    width: 100%;
  }
}

@media (max-width: 640px){
  .page--tv-inspektion .section--tvK{
    padding: 70px 0;
  }

  .page--tv-inspektion .tvK__icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .page--tv-inspektion .tvK__card{
    padding: 18px;
    border-radius: 24px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page--tv-inspektion .tvK__card,
  .page--tv-inspektion .tvK__icon{
    transition: none !important;
  }
}

/* NOTDIENST WASSERSCHADEN */

.page--notdienst-wasserschaden section[aria-labelledby="leistungen-title"] .service-grid--cards{
  margin-top: clamp(22px, 3.2vw, 44px);
  gap: clamp(14px, 2.2vw, 18px);
}

/* Icon-Container*/
.page--notdienst-wasserschaden section[aria-labelledby="leistungen-title"] .service__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  position: relative;
  flex: 0 0 auto;

  background: linear-gradient(135deg, rgba(234,125,0,.26), rgba(255,154,42,.12));
  border: 1px solid rgba(234,125,0,.22);

  box-shadow:
    0 14px 34px rgba(234,125,0,.16),
    inset 0 1px 0 rgba(255,255,255,.55);

  transform: translateY(0) rotate(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.page--notdienst-wasserschaden section[aria-labelledby="leistungen-title"] .service--card:hover .service__icon{
  transform: translateY(-2px) rotate(-2deg) scale(1.04);
}

/* SVG-Mask-Icon */
.page--notdienst-wasserschaden section[aria-labelledby="leistungen-title"] .service__icon::after{
  content:"";
  position: absolute;
  inset: 0;
  background-color: var(--accent);
  opacity: .95;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 26px;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 26px;
}

.page--notdienst-wasserschaden .service__icon--phone::after{
  -webkit-mask-image: url("/img/0288-phone-wave.svg");
  mask-image: url("/img/0288-phone-wave.svg");
}

.page--notdienst-wasserschaden .service__icon--check::after{
  -webkit-mask-image: url("/img/1139-checkmark4.svg");
  mask-image: url("/img/1139-checkmark4.svg");
}

.page--notdienst-wasserschaden .service__icon--mail::after{
  -webkit-mask-image: url("/img/0305-envelop.svg");
  mask-image: url("/img/0305-envelop.svg");
}

/* Responsive */
@media (max-width: 640px){
  .page--notdienst-wasserschaden section[aria-labelledby="leistungen-title"] .service__icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .page--notdienst-wasserschaden section[aria-labelledby="leistungen-title"] .service__icon::after{
    -webkit-mask-size: 22px;
    mask-size: 22px;
  }
}

/* NOTDIENST WASSERSCHADEN */

.page--notdienst-wasserschaden .section--ablauf .steps{
  position: relative;
  display: grid;
  gap: clamp(14px, 2.2vw, 18px);
  margin-top: clamp(18px, 3vw, 28px);
  padding-left: 8px;
  margin-bottom: 40px;
}

/* Step Card Layout */
.page--notdienst-wasserschaden .section--ablauf .step{
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 14px;

  padding: clamp(16px, 2.2vw, 20px);
  border-radius: 22px;

  border: 1px solid transparent;
  background:
    radial-gradient(700px 240px at 14% 10%, rgba(255,255,255,.10), transparent 55%) padding-box,
    linear-gradient(135deg, rgba(234,125,0,.32), rgba(255,255,255,.10), rgba(19,135,196,.22)) border-box;

  box-shadow:
    0 18px 60px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);

  transform: translateY(0);
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease,
    background .35s ease;
}

.page--notdienst-wasserschaden .section--ablauf .step:hover{
  transform: translateY(-6px);
  box-shadow:
    0 28px 95px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.16);

  background:
    radial-gradient(700px 240px at 14% 10%, rgba(255,255,255,.14), transparent 55%) padding-box,
    linear-gradient(135deg, rgba(234,125,0,.46), rgba(255,255,255,.10), rgba(19,135,196,.30)) border-box;
}

.page--notdienst-wasserschaden .section--ablauf .step__num{
  width: 48px;
  height: 48px;
  border-radius: 16px;

  display: grid;
  place-items: center;

  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);

  background: linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.18));
  border: 1px solid rgba(234,125,0,.22);

  box-shadow:
    0 14px 34px rgba(234,125,0,.18),
    inset 0 1px 0 rgba(255,255,255,.22);

  position: relative;
  z-index: 1;
}

.page--notdienst-wasserschaden .section--ablauf .step__title{
  margin: 0 0 4px 0;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.page--notdienst-wasserschaden .section--ablauf .step__text{
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

.page--notdienst-wasserschaden .section--ablauf .step::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(520px 180px at 30% 0%, rgba(234,125,0,.16), transparent 60%);
  opacity: .0;
  transition: opacity .35s ease;
}
.page--notdienst-wasserschaden .section--ablauf .step:hover::after{
  opacity: 1;
}

/* Responsive */
@media (max-width: 860px){
  .page--notdienst-wasserschaden .section--ablauf .steps::before{
    left: 30px;
  }
  .page--notdienst-wasserschaden .section--ablauf .step{
    grid-template-columns: 64px 1fr;
  }
}

@media (max-width: 640px){
  .page--notdienst-wasserschaden .section--ablauf .steps{
    padding-left: 0;
  }

  .page--notdienst-wasserschaden .section--ablauf .steps::before{
    left: 24px;
  }

  .page--notdienst-wasserschaden .section--ablauf .step{
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .page--notdienst-wasserschaden .section--ablauf .step__num{
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page--notdienst-wasserschaden .section--ablauf .step,
  .page--notdienst-wasserschaden .section--ablauf .step::after{
    transition: none !important;
  }
}

/* NOTDIENST */

.page--notdienst-wasserschaden .cta .cta__box{
  grid-template-columns: 1fr !important;
  justify-items: center;

  max-width: 920px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 36px;

  background:
    radial-gradient(
      600px 300px at 20% 10%,
      rgba(255,255,255,.12),
      transparent 55%
    ),
    rgba(19,135,196,.10);

  border: 1px solid rgba(234,125,0,.30);

  box-shadow:
    0 50px 120px rgba(234,125,0,.28),
    inset 0 1px 0 rgba(255,255,255,.95);

  gap: clamp(18px, 3vw, 26px);
  text-align: center;
}

.page--notdienst-wasserschaden .cta .cta__box > div{
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.page--notdienst-wasserschaden .cta .cta__actions{
  justify-content: center;
}

.page--notdienst-wasserschaden .cta .cta__title{
  font-size: clamp(28px, 3.2vw, 21.6px) !important;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page--grabenfreie-sanierung .section--gfsOverview{
  position: relative;
  padding: clamp(78px, 9vw, 120px) 0;
  overflow: hidden;
}

.page--grabenfreie-sanierung .gfsOverview__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .95;

  background: var(--bg-solid) !important;
}

/* Head */
.page--grabenfreie-sanierung .gfsOverview__head{
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.page--grabenfreie-sanierung .gfsOverview__head .h2{
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* Grid */
.page--grabenfreie-sanierung .gfsOverview__grid{
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 18px);
  align-items: stretch;
}

/* Card */
.page--grabenfreie-sanierung .gfsCard{
  position: relative;
  border-radius: 28px;
  padding: clamp(18px, 2.4vw, 28px);

  background:
    radial-gradient(700px 360px at 18% 0%, rgba(255,255,255,.14), transparent 55%),
    rgba(255,255,255,.05);

  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);

  box-shadow:
    0 22px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.18);

  transform: translateY(0) scale(1);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease,
    border-color .45s ease,
    background .45s ease;
}

.page--grabenfreie-sanierung .gfsCard::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: inherit;
  pointer-events: none;

  background: radial-gradient(520px 240px at 18% 0%, rgba(255,255,255,.18), transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}

.page--grabenfreie-sanierung .gfsCard:hover{
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(234,125,0,.24);

  box-shadow:
    0 36px 95px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.22);

  background:
    radial-gradient(700px 360px at 18% 0%, rgba(255,255,255,.18), transparent 55%),
    rgba(255,255,255,.07);
}

.page--grabenfreie-sanierung .gfsCard:hover::after{
  opacity: 1;
}

/* Card Top */
.page--grabenfreie-sanierung .gfsCard__top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.page--grabenfreie-sanierung .gfsCard__title{
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.94);
}

/* Icon Base */
.page--grabenfreie-sanierung .gfsCard__icon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  position: relative;

  background: linear-gradient(135deg, rgba(234,125,0,.35), rgba(255,154,42,.22));
  border: 1px solid rgba(255,255,255,.28);

  box-shadow:
    0 12px 28px rgba(234,125,0,.18),
    inset 0 1px 0 rgba(255,255,255,.28);

  transition: transform .35s ease;
}

.page--grabenfreie-sanierung .gfsCard:hover .gfsCard__icon{
  transform: rotate(-2deg) scale(1.06);
}

.page--grabenfreie-sanierung .gfsCard__icon::after{
  content:"";
  position:absolute;
  inset:0;
  background-color: #fff;
  opacity: .95;
}

/* Icons */
.page--grabenfreie-sanierung .gfsCard__icon--proc::after{
  -webkit-mask: url("/img/0174-file-text2.svg") no-repeat center / 26px;
  mask: url("/img/0174-file-text2.svg") no-repeat center / 26px;
}

.page--grabenfreie-sanierung .gfsCard__icon--pro::after{
  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / 26px;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / 26px;
}

/* List */
.page--grabenfreie-sanierung .gfsCard__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page--grabenfreie-sanierung .gfsCard__list li{
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}

.page--grabenfreie-sanierung .gfsCard__list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;

  -webkit-mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;
  mask: url("/img/1139-checkmark4.svg") no-repeat center / contain;

  background-color: var(--accent);
}

/* Subtile Load-Animation */
@keyframes gfsIn{
  from{ opacity: 0; transform: translateY(18px) scale(.99); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.page--grabenfreie-sanierung .gfsCard{
  opacity: 0;
  animation: gfsIn .75s cubic-bezier(.2,.8,.2,1) forwards;
}

.page--grabenfreie-sanierung .gfsCard:nth-child(1){ animation-delay: .05s; }
.page--grabenfreie-sanierung .gfsCard:nth-child(2){ animation-delay: .12s; }

/* Responsive */
@media (max-width: 980px){
  .page--grabenfreie-sanierung .gfsOverview__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .page--grabenfreie-sanierung .section--gfsOverview{
    padding: 70px 0;
  }

  .page--grabenfreie-sanierung .gfsCard{
    padding: 18px;
    border-radius: 24px;
  }

  .page--grabenfreie-sanierung .gfsCard__icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page--grabenfreie-sanierung .gfsCard,
  .page--grabenfreie-sanierung .gfsCard__icon{
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}

/* VERSICHERUNG WASSERSCHADEN */

.page--versicherung-wasserschaden .section--vsWServices{
  position: relative;
  padding: clamp(78px, 9vw, 120px) 0;
  overflow: hidden;
  background: var(--bg-solid) !important;
}

.page--versicherung-wasserschaden .vsWServices__head{
  max-width: 880px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.page--versicherung-wasserschaden .vsWServices__head .h2{
  margin: 0 0 10px 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page--versicherung-wasserschaden .vsWServices__head .lead{
  margin: 0;
  max-width: 72ch;
  color: rgba(255,255,255,.78);
}

/* Bento Grid */
.page--versicherung-wasserschaden .vsWServices__grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2.2vw, 16px);
  align-items: stretch;
}

/* Kartenbasis */
.page--versicherung-wasserschaden .vsWService{
  grid-column: span 6;              
  grid-template-columns: auto 1fr;  
  min-height: 120px;

  position: relative;
  overflow: hidden;
}

.page--versicherung-wasserschaden .vsWService .service__icon{
  background:
    radial-gradient(240px 140px at 20% 0%, rgba(19,135,196,.22), transparent 60%),
    rgba(19,135,196,.10);
  border: 1px solid rgba(19,135,196,.28);
  box-shadow:
    0 14px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.16);
}

/* Typo */
.page--versicherung-wasserschaden .vsWService .service__title{
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page--versicherung-wasserschaden .vsWService .service__text{
  margin-top: 4px;
  color: rgba(255,255,255,.74);
}

@media (min-width: 1100px){
  .page--versicherung-wasserschaden .vsWService--a{ grid-column: 1 / span 7; }
  .page--versicherung-wasserschaden .vsWService--b{ grid-column: 8 / span 5; }
  .page--versicherung-wasserschaden .vsWService--c{ grid-column: 1 / span 5; }
  .page--versicherung-wasserschaden .vsWService--d{ grid-column: 6 / span 7; }
}

@media (max-width: 1099px){
  .page--versicherung-wasserschaden .vsWService{
    grid-column: span 6;
  }
}

@media (max-width: 640px){
  .page--versicherung-wasserschaden .section--vsWServices{
    padding: 70px 0;
  }

  .page--versicherung-wasserschaden .vsWServices__grid{
    grid-template-columns: 1fr;
  }

  .page--versicherung-wasserschaden .vsWService{
    grid-column: auto;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page--versicherung-wasserschaden .vsWService{
    transition: none !important;
  }
}

/* WASSERSCHADEN-SANIERUNG */

.page--wasserschaden-sanierung .wsHero{
  position: relative;
  overflow: hidden;
}

.page--wasserschaden-sanierung .wsHero::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(234,125,0,12), transparent 60%),
    radial-gradient(900px 520px at 88% 55%, rgba(19,135,196,12), transparent 65%),
    radial-gradient(520px 220px at 55% 0%, rgba(255,255,255,10), transparent 65%);
  opacity: .95;
}

.page--wasserschaden-sanierung .wsHero .container{
  position: relative;
  z-index: 1;
}

.page--wasserschaden-sanierung .wsHero__grid{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

.page--wasserschaden-sanierung .wsHero__eyebrow{
  margin: 0 0 10px 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,82);
}

.page--wasserschaden-sanierung .wsHero__title{
  margin: 0 0 14px 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system !important;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
}

.page--wasserschaden-sanierung .wsHero__lead{
  max-width: 74ch;
}

.page--wasserschaden-sanierung .wsHero__actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page--wasserschaden-sanierung .wsHero__trust{
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page--wasserschaden-sanierung .wsPill{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 999px;

  background:
    radial-gradient(420px 220px at 20% 0%, rgba(255,255,255,14), transparent 60%),
    rgba(255,255,255,06);

  border: 1px solid rgba(255,255,255,14);
  box-shadow: 0 14px 36px rgba(0,0,0,22);
  color: rgba(255,255,255,92);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page--wasserschaden-sanierung .wsPill__icon{
  width: 30px;
  height: 30px;
  border-radius: 12px;

  background:
    linear-gradient(135deg, rgba(234,125,0,30), rgba(255,154,42,16));
  border: 1px solid rgba(234,125,0,22);
  box-shadow:
    0 10px 22px rgba(234,125,0,14),
    inset 0 1px 0 rgba(255,255,255,28);

  position: relative;
  flex: 0 0 auto;
}

.page--wasserschaden-sanierung .wsPill__icon::after{
  content:"";
  position:absolute;
  inset: 0;
  background-color: var(--accent);
  opacity: .95;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 18px;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 18px;
}

.page--wasserschaden-sanierung .wsI-doc::after{
  -webkit-mask-image: url("/img/0305-envelop.svg");
  mask-image: url("/img/0305-envelop.svg");
}
.page--wasserschaden-sanierung .wsI-user::after{
  -webkit-mask-image: url("/img/1139-checkmark4.svg");
  mask-image: url("/img/1139-checkmark4.svg");
}
.page--wasserschaden-sanierung .wsI-tools::after{
  -webkit-mask-image: url("/img/1247-arrow-right8.svg");
  mask-image: url("/img/1247-arrow-right8.svg");
}

/* Right Card */
.page--wasserschaden-sanierung .wsHero__card{
  position: relative;
  border-radius: 34px;
  padding: clamp(16px, 2.6vw, 22px);

  background:
    radial-gradient(700px 280px at 20% 10%, rgba(255,255,255,14), transparent 55%),
    rgba(255,255,255,06);

  border: 1px solid rgba(255,255,255,16);
  backdrop-filter: blur(10px);

  box-shadow:
    0 26px 70px rgba(0,0,0,28),
    inset 0 1px 0 rgba(255,255,255,20);

  overflow: hidden;
}

.page--wasserschaden-sanierung .wsHero__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(520px 220px at 40% 0%, rgba(234,125,0,14), transparent 60%),
    radial-gradient(520px 220px at 95% 65%, rgba(19,135,196,12), transparent 60%);
  opacity: .95;
}

.page--wasserschaden-sanierung .wsHero__card > *{
  position: relative;
  z-index: 1;
}

.page--wasserschaden-sanierung .wsBadge{
  width: 100%;
  padding: 18px;
  border-radius: 24px;

  background: rgba(19,135,196,0.10);
  border: 1px solid rgba(19,135,196,0.28);
  box-shadow: 0 18px 44px rgba(15,16,38,0.16);
}

.page--wasserschaden-sanierung .wsBadge__top{
  color: var(--accent);
  font-weight: 950;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.page--wasserschaden-sanierung .wsBadge__mid{
  color: var(--brand-blue);
  font-weight: 950;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.page--wasserschaden-sanierung .wsBadge__bot{
  color: var(--brand-blue);
  opacity: .75;
  font-size: .95rem;
}

.page--wasserschaden-sanierung .wsHero__mini{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.page--wasserschaden-sanierung .wsMini{
  padding: 14px 14px;
  border-radius: 22px;

  background:
    radial-gradient(520px 220px at 14% 0%, rgba(255,255,255,12), transparent 60%),
    rgba(255,255,255,05);

  border: 1px solid rgba(255,255,255,12);
  box-shadow:
    0 16px 40px rgba(0,0,0,22),
    inset 0 1px 0 rgba(255,255,255,18);
}

.page--wasserschaden-sanierung .wsMini__k{
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,92);
}
.page--wasserschaden-sanierung .wsMini__v{
  margin-top: 2px;
  color: rgba(255,255,255,72);
}

.page--wasserschaden-sanierung .wsHero__call{
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.page--wasserschaden-sanierung .wsHero__hint{
  margin: 10px 0 0 0;
  color: rgba(255,255,255,70);
  line-height: 1.55;
}

/* SECTION 2 */
.page--wasserschaden-sanierung .section--ws-scope{
  position: relative;
  padding: clamp(90px, 10vw, 130px) 0;
  background: var(--bg-solid);
  overflow: hidden;
}

.page--wasserschaden-sanierung .section--ws-scope::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(19,135,196,12), transparent 60%),
    radial-gradient(900px 520px at 88% 55%, rgba(234,125,0,10), transparent 65%);
  opacity: .95;
}

.page--wasserschaden-sanierung .section--ws-scope .container{
  position: relative;
  z-index: 1;
}

.page--wasserschaden-sanierung .wsScope__top{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
}

.page--wasserschaden-sanierung .wsScope__grid{
  gap: 14px;
}

.page--wasserschaden-sanierung .wsServices__head{
  margin-top: clamp(34px, 6vw, 56px);
  max-width: 880px;
}

.page--wasserschaden-sanierung .wsServices__head .h2{
  margin: 0 0 10px 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.page--wasserschaden-sanierung .wsServices__head .lead{
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
}

.page--wasserschaden-sanierung .wsServices__grid{
  margin-top: clamp(18px, 3vw, 26px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2.2vw, 16px);
  align-items: stretch;
}

.page--wasserschaden-sanierung .wsService{
  grid-column: span 6;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;

  padding: clamp(16px, 2.4vw, 20px);
  border-radius: 28px;

  background:
    radial-gradient(700px 260px at 14% 0%, rgba(255,255,255,14), transparent 55%),
    rgba(255,255,255,05);

  border: 1px solid rgba(255,255,255,14);
  backdrop-filter: blur(10px);

  box-shadow:
    0 20px 56px rgba(0,0,0,22),
    inset 0 1px 0 rgba(255,255,255,18);

  transform: translateY(0);
  transition: transform .45s cubic-bezier(.2,8,2,1), box-shadow .45s ease, border-color .45s ease;
}

.page--wasserschaden-sanierung .wsService:hover{
  transform: translateY(-8px);
  border-color: rgba(234,125,0,22);
  box-shadow:
    0 34px 90px rgba(0,0,0,28),
    inset 0 1px 0 rgba(255,255,255,24);
}

.page--wasserschaden-sanierung .wsService__title{
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,94);
  line-height: 1.2;
}

.page--wasserschaden-sanierung .wsService__text{
  margin: 6px 0 0 0;
  color: var(--muted-on-white);
  line-height: 1.55;
}

.page--wasserschaden-sanierung .wsService__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  position: relative;
  flex: 0 0 auto;

  background: linear-gradient(135deg, rgba(234,125,0,26), rgba(255,154,42,12));
  border: 1px solid rgba(234,125,0,22);

  box-shadow:
    0 14px 34px rgba(234,125,0,16),
    inset 0 1px 0 rgba(255,255,255,55);

  transform: translateY(0) rotate(0);
  transition: transform .35s cubic-bezier(.2,8,2,1);
}

.page--wasserschaden-sanierung .wsService:hover .wsService__icon{
  transform: translateY(-2px) rotate(-2deg) scale(1.04);
}

.page--wasserschaden-sanierung .wsService__icon::after{
  content:"";
  position: absolute;
  inset: 0;
  background-color: var(--accent);
  opacity: .95;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 26px;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 26px;
}

/* Service Icon Masks */
.page--wasserschaden-sanierung .wsS-i-check::after{
  -webkit-mask-image: url("/img/1139-checkmark4.svg");
  mask-image: url("/img/1139-checkmark4.svg");
}
.page--wasserschaden-sanierung .wsS-i-pin::after{
  -webkit-mask-image: url("/img/0314-location2.svg");
  mask-image: url("/img/0314-location2.svg");
}
.page--wasserschaden-sanierung .wsS-i-tv::after{
  -webkit-mask-image: url("/img/1247-arrow-right8.svg");
  mask-image: url("/img/1247-arrow-right8.svg");
}
.page--wasserschaden-sanierung .wsS-i-bolt::after{
  -webkit-mask-image: url("/img/0288-phone-wave.svg");
  mask-image: url("/img/0288-phone-wave.svg");
}
.page--wasserschaden-sanierung .wsS-i-tools::after{
  -webkit-mask-image: url("/img/1247-arrow-right8.svg");
  mask-image: url("/img/1247-arrow-right8.svg");
}
.page--wasserschaden-sanierung .wsS-i-trenchless::after{
  -webkit-mask-image: url("/img/1247-arrow-right8.svg");
  mask-image: url("/img/1247-arrow-right8.svg");
}
.page--wasserschaden-sanierung .wsS-i-doc::after{
  -webkit-mask-image: url("/img/0305-envelop.svg");
  mask-image: url("/img/0305-envelop.svg");
}
.page--wasserschaden-sanierung .wsS-i-user::after{
  -webkit-mask-image: url("/img/1139-checkmark4.svg");
  mask-image: url("/img/1139-checkmark4.svg");
}

.page--wasserschaden-sanierung .wsServices__cta{
  margin-top: clamp(18px, 3vw, 26px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Leak-card icon masks (page-specific) */
.page--wasserschaden-sanierung .icon-ws-pipe  { mask: url("/img/0288-phone-wave.svg") no-repeat center / 22px; }
.page--wasserschaden-sanierung .icon-ws-wall  { mask: url("/img/0314-location2.svg") no-repeat center / 22px; }
.page--wasserschaden-sanierung .icon-ws-rain  { mask: url("/img/0305-envelop.svg") no-repeat center / 22px; }
.page--wasserschaden-sanierung .icon-ws-room  { mask: url("/img/1247-arrow-right8.svg") no-repeat center / 22px; }
.page--wasserschaden-sanierung .icon-ws-mold  { mask: url("/img/1139-checkmark4.svg") no-repeat center / 22px; }
.page--wasserschaden-sanierung .icon-ws-floor { mask: url("/img/0314-location2.svg") no-repeat center / 22px; }

.page--wasserschaden-sanierung .wsCta .cta__badge{
  border-color: rgba(234,125,0,22);
}

/* REVEAL (nur wenn JS aktiv) */
.page--wasserschaden-sanierung [data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,8,2,1);
  transition-delay: var(--d, 0ms);
}

.page--wasserschaden-sanierung .is-visible{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 980px){
  .page--wasserschaden-sanierung .wsHero__grid{
    grid-template-columns: 1fr;
  }

  .page--wasserschaden-sanierung .wsScope__top{
    grid-template-columns: 1fr;
  }

  .page--wasserschaden-sanierung .wsService{
    grid-column: span 12;
  }
}

@media (max-width: 640px){
  .page--wasserschaden-sanierung .wsService__icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .page--wasserschaden-sanierung .wsService__icon::after{
    -webkit-mask-size: 22px;
    mask-size: 22px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .page--wasserschaden-sanierung [data-reveal],
  .page--wasserschaden-sanierung .wsService,
  .page--wasserschaden-sanierung .wsService__icon{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* HERO reduziert */
.page--wasserschaden-sanierung .wsHero--simple {
  padding-bottom: clamp(60px, 8vw, 90px);
}

.page--wasserschaden-sanierung .wsHero--simple .wsHero__content {
  max-width: 860px;
}

/* Neue Action-Section */
.page--wasserschaden-sanierung .wsIntroActions {
  padding-top: 0;
}

.page--wasserschaden-sanierung .wsIntroActions__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 980px) {
  .page--wasserschaden-sanierung .wsIntroActions__grid {
    grid-template-columns: 1fr;
  }
}