/* =============================================
   MS FUSSBODENHEIZUNG — MAIN CSS
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* === VARIABLES === */
:root {
  --red:        #CC1F1F;
  --red-dark:   #A81818;
  --red-alpha:  rgba(204,31,31,.12);
  --blue:       #1A5DAD;
  --ink:        #1A1A1A;
  --ink2:       #3D3A33;
  --muted:      #9A9590;
  --border:     rgba(20,18,14,.1);
  --page:       #F5F3EF;
  --surface:    #EDEAE4;
  --surface2:   #E6E2DA;
  --white:      #FFFFFF;
  --font-d:     'Anton', 'Arial Black', sans-serif;
  --font-b:     'DM Sans', system-ui, sans-serif;
  --r2:         8px;
  --r4:         12px;
  --r8:         18px;
  --shadow-sm:  0 2px 12px rgba(20,18,14,.06);
  --shadow-md:  0 8px 40px rgba(20,18,14,.10);
  --shadow-lg:  0 20px 60px rgba(20,18,14,.14);
  --section-pad: 110px 0;
}

/* === BASE === */
body {
  font-family: var(--font-b);
  background: var(--page);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-family: var(--font-d); line-height: 1.1; letter-spacing: .03em; text-wrap: balance; }
p { overflow-wrap: break-word; word-wrap: break-word; }
h1 { font-size: clamp(38px, 5.5vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p  { font-weight: 300; color: var(--ink2); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media(max-width:767px){ .container { padding: 0 20px; } }

/* =============================================
   NAVIGATION
   ============================================= */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#mainNav.scrolled {
  background: rgba(245,243,239,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 48px;
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; }
#nav-logo {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 1px 5px rgba(0,0,0,0.55));
}
#footer-logo {
  height: 54px; width: auto; display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(0.75);
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--red); border-radius: 2px; transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
#mainNav.scrolled .nav-links a { color: var(--ink2); }
#mainNav.scrolled .nav-links a:hover, #mainNav.scrolled .nav-links a.active { color: var(--ink); }

/* Nav CTA */
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 22px; border-radius: 50px;
  background: var(--red); color: #fff;
  transition: background .3s, transform .2s, box-shadow .3s;
  border: none; cursor: pointer;
}
.nav-cta:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(204,31,31,.35);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: background .4s, transform .3s, opacity .3s;
}
#mainNav.scrolled .nav-burger span { background: var(--ink); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--page); z-index: 490; padding: 100px 32px 40px;
  flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-d); font-size: 32px; letter-spacing: .04em;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .nav-cta-mobile {
  margin-top: 24px; text-align: center; display: block;
  background: var(--red); color: #fff; padding: 16px; border-radius: var(--r4);
  font-family: var(--font-d); font-size: 20px; letter-spacing: .04em;
}

@media(max-width:900px){
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #mainNav { padding: 18px 20px; }
  #mainNav.scrolled { padding: 12px 20px; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px;
  background: var(--red); color: #fff;
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  transition: background .3s, transform .2s, box-shadow .3s;
  border: none; cursor: pointer; text-decoration: none;
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 28px rgba(204,31,31,.35);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px;
  background: transparent; color: #fff;
  font-family: var(--font-b); font-size: 15px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.4);
  transition: border-color .3s, background .3s, transform .2s;
  cursor: pointer; text-decoration: none;
}
.btn-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  background: transparent; color: var(--red);
  font-family: var(--font-b); font-size: 15px; font-weight: 600;
  border: 2px solid var(--red);
  transition: background .3s, color .3s, transform .2s;
  cursor: pointer; text-decoration: none;
}
.btn-outline:hover {
  background: var(--red); color: #fff; transform: translateY(-2px);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal   { opacity:0; transform:translateY(44px); }
.reveal-l { opacity:0; transform:translateX(-50px); }
.reveal-r { opacity:0; transform:translateX(50px); }
.reveal-s { opacity:0; transform:scale(.93); }
@media(prefers-reduced-motion:reduce){
  .reveal,.reveal-l,.reveal-r,.reveal-s { opacity:1 !important; transform:none !important; }
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--page);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
#pre-logo { width: 260px; max-width: 72vw; height: auto; object-fit: contain; }
#pre-bar {
  width: 200px; height: 2px;
  background: rgba(20,18,14,.12); border-radius: 2px; overflow: hidden;
}
#pre-bar-fill {
  height: 100%; width: 100%;
  background: var(--red); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
}

/* Pipe animation overlay */
#pipes-svg {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; display: none;
  overflow: visible;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,18,14,.82) 0%,
    rgba(20,18,14,.55) 55%,
    rgba(20,18,14,.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
  background: rgba(204,31,31,.12);
  border: 1px solid rgba(204,31,31,.25);
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}
.hero-title {
  color: #fff; margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-title span { color: var(--red); }
.hero-hl {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero-hl::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 4px;
  background: var(--red);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
}
.hero-hl.animate::after {
  animation: hlUnderline 1.4s cubic-bezier(.65,.05,.36,1) forwards;
}
@keyframes hlUnderline {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust strip */
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(20,18,14,.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: stretch;
}
.trust-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(204,31,31,.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.trust-label { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.trust-sub   { font-size: 11px; color: rgba(255,255,255,.55); }

@media(max-width:767px){
  /* keep absolute positioning — just stack vertically */
  .hero-trust { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 13px 24px; }
  .trust-item:last-child { border-bottom: none; }
  /* extra bottom padding so hero content isn't hidden behind the trust strip */
  #hero { padding-bottom: 320px; }
  .hero-content { padding-top: 60px; }
}

/* =============================================
   SUB-HERO (inner pages)
   ============================================= */
.sub-hero {
  position: relative; padding: 160px 0 80px;
  background: var(--ink); overflow: hidden;
}
.sub-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.sub-hero-content { position: relative; z-index: 2; }
.sub-hero h1 { color: #fff; margin-bottom: 12px; }
.sub-hero p  { color: rgba(255,255,255,.65); font-size: 17px; }
.breadcrumb  {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.breadcrumb span { color: var(--red); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: var(--section-pad); }
.section-alt { background: var(--surface); }
.section-dark { background: var(--ink); }

.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { max-width: 560px; font-size: 16px; line-height: 1.75; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white); border-radius: var(--r8);
  padding: 36px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.svc-card-icon {
  width: 52px; height: 52px; border-radius: var(--r4);
  background: var(--red-alpha);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-card-icon svg { width: 26px; height: 26px; }
.svc-card h3 { margin-bottom: 10px; font-size: 20px; }
.svc-card p  { font-size: 14px; line-height: 1.75; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: var(--red); transition: gap .2s;
}
.svc-card-link:hover { gap: 10px; }

/* Service card divider row */
.svc-divider-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 0;
}
.svc-divider-row::before,
.svc-divider-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.svc-divider-row span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

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

/* =============================================
   BENEFITS — GLASSMORPHISM CARDS
   ============================================= */
.section-benefits {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
}
/* Farbige Blobs hinter den Karten — sorgen dafür, dass der Glas-Effekt überhaupt sichtbar wird */
.section-benefits::before,
.section-benefits::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.section-benefits::before {
  width: 480px; height: 480px;
  top: -120px; left: -100px;
  background: radial-gradient(circle, rgba(204,31,31,0.45), rgba(204,31,31,0) 70%);
}
.section-benefits::after {
  width: 520px; height: 520px;
  bottom: -160px; right: -120px;
  background: radial-gradient(circle, rgba(255,140,90,0.38), rgba(255,140,90,0) 70%);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.benefit-glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.18) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--r8);
  padding: 44px 40px;
  box-shadow:
    0 18px 50px rgba(204, 31, 31, 0.14),
    0 2px 8px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(204, 31, 31, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.benefit-glass:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 60px rgba(204, 31, 31, 0.20),
    0 2px 8px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(204, 31, 31, 0.10);
}
.benefit-glass-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(204, 31, 31, 0.1);
  border: 1px solid rgba(204, 31, 31, 0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 22px;
}
.benefit-glass h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 14px;
  color: var(--ink);
}
.benefit-glass p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink2);
  font-weight: 300;
}
@media(max-width:700px){
  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .benefit-glass { padding: 36px 28px; }
}

/* =============================================
   PROCESS — Vertikale Timeline
   ============================================= */
.process-timeline {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
}

/* Vertikale Linie links */
.proc-line-track {
  position: absolute;
  left: 25px; top: 26px; bottom: 26px;
  width: 6px; border-radius: 3px;
  background: rgba(204,31,31,.10);
  z-index: 0;
}
.proc-line-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--red); border-radius: 3px;
}
.proc-line-fill::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px; background: rgba(255,255,255,.42);
}

/* Jede Zeile: Kreis links + Text rechts */
.proc-item {
  display: flex; align-items: flex-start; gap: 28px;
  margin-bottom: 52px; position: relative;
}
.proc-item:last-child { margin-bottom: 0; }

/* Nummerierter Kreis */
.proc-num {
  flex-shrink: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 16px; color: var(--muted);
  position: relative; z-index: 1;
  transition: background .35s, border-color .35s, color .35s, box-shadow .35s;
}
.proc-item.active .proc-num {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 0 0 7px rgba(204,31,31,.12);
}

/* Text rechts */
.proc-content { padding-top: 11px; }
.proc-content h3 { font-size: 19px; margin-bottom: 8px; }
.proc-content p   { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r4); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(204,31,31,.6) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
}

@media(max-width:900px){ .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .gallery-grid { grid-template-columns: 1fr; } }

/* =============================================
   STATS
   ============================================= */
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--r8); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-item {
  background: var(--white); text-align: center;
  padding: 48px 24px;
}
.stat-num {
  font-family: var(--font-d); font-size: clamp(40px,5vw,64px);
  color: var(--red); line-height: 1; display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}

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

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--red);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; position: relative; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 36px; position: relative; }
.cta-banner .btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px;
  background: #fff; color: var(--red);
  font-size: 15px; font-weight: 700;
  transition: transform .2s, box-shadow .3s;
  position: relative;
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

/* =============================================
   REVIEWS / BEWERTUNGEN
   ============================================= */
.reviews-strip {
  background: var(--surface); padding: 64px 0; text-align: center;
}
.review-cta-box {
  max-width: 560px; margin: 0 auto;
  background: var(--white); border-radius: var(--r8);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stars { color: #F5A623; display: flex; gap: 4px; justify-content: center; margin-bottom: 16px; }
.review-cta-box h3 { margin-bottom: 10px; font-size: 22px; }
.review-cta-box p  { font-size: 14px; margin-bottom: 24px; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 50px;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 600;
  transition: background .3s, transform .2s;
}
.btn-google:hover { background: var(--ink2); transform: translateY(-2px); }

/* =============================================
   LEISTUNGEN PAGE — DETAIL CARDS
   ============================================= */
.lsv-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 80px;
}
.lsv-detail:nth-child(odd) .lsv-text { order: 1; }
.lsv-detail:nth-child(odd) .lsv-img  { order: 2; }
.lsv-img {
  border-radius: var(--r8); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
}
.lsv-img img { width: 100%; height: 100%; object-fit: cover; }
.lsv-text .section-label { display: block; }
.lsv-text h2 { margin-bottom: 16px; }
.lsv-text p  { margin-bottom: 20px; }
.lsv-bullets { margin-bottom: 28px; }
.lsv-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink2); margin-bottom: 10px;
}
.lsv-bullets li::before {
  content: '✓'; color: var(--red); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

@media(max-width:800px){
  .lsv-detail { grid-template-columns: 1fr; gap: 32px; }
  .lsv-detail:nth-child(odd) .lsv-text { order: 2; }
  .lsv-detail:nth-child(odd) .lsv-img  { order: 1; }
}

/* Vorteile grid */
.vorteile-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.vorteil-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); padding: 28px 24px;
  border-radius: var(--r4); border: 1px solid var(--border);
}
.vorteil-icon {
  width: 46px; height: 46px; border-radius: var(--r2);
  background: var(--red-alpha); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.vorteil-item h4 { font-size: 16px; margin-bottom: 6px; }
.vorteil-item p  { font-size: 13px; }
@media(max-width:600px){ .vorteile-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: var(--font-b); font-size: 16px; font-weight: 600;
  color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .3s, transform .3s;
}
.faq-item.open .faq-icon { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--ink2); line-height: 1.8;
  transition: max-height .4s ease, padding .4s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* =============================================
   ÜBER UNS
   ============================================= */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img {
  border-radius: var(--r8); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img img { width: 100%; display: block; }
.about-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--red); color: #fff; border-radius: var(--r4);
  padding: 14px 18px; box-shadow: var(--shadow-md);
}
.about-badge .ab-num {
  font-family: var(--font-d); font-size: 28px; display: block; line-height: 1;
}
.about-badge .ab-txt { font-size: 11px; font-weight: 500; letter-spacing: .1em; opacity: .85; }
.about-text .section-label { display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.about-vals {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.av-item {
  text-align: center; padding: 22px 14px;
  background: var(--surface); border-radius: var(--r4);
}
.av-icon { margin-bottom: 10px; color: var(--red); display: flex; align-items: center; justify-content: center; }
.av-item h4 { font-size: 14px; letter-spacing: .02em; }

@media(max-width:800px){
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-vals { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .av-item { padding: 18px 8px; aspect-ratio: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .av-item h4 { font-size: 12px; }
  .av-icon svg { width: 22px; height: 22px; }
  /* Salah-Badge mobil kompakter & in die Karte gerückt */
  .about-badge { bottom: 16px; left: 16px; padding: 10px 14px; }
  .about-badge .ab-num { font-size: 22px; }
  .about-badge .ab-txt { font-size: 10px; }
  .about-img { max-width: 280px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .about-img img { width: 100%; height: 100%; object-fit: cover !important; object-position: center 20%; }
}

/* =============================================
   KONTAKT FORMULAR
   ============================================= */
.contact-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px; align-items: start;
}
.contact-form-wrap {
  background: var(--white); border-radius: var(--r8);
  padding: 44px 48px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r2);
  font-family: var(--font-b); font-size: 14px; color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,31,31,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  padding: 16px 0 10px; border-top: 1px solid var(--border);
  margin-top: 8px; margin-bottom: 4px;
}
.form-radio-group {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.radio-option {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r2);
  border: 1.5px solid var(--border); cursor: pointer;
  font-size: 13px; font-weight: 500; transition: border-color .2s, background .2s;
}
.radio-option input { display: none; }
.radio-option.selected,
.radio-option:has(input:checked) {
  border-color: var(--red); background: var(--red-alpha);
}
.form-submit {
  margin-top: 24px; width: 100%; padding: 16px;
  border-radius: var(--r4); background: var(--red); color: #fff;
  font-family: var(--font-b); font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; letter-spacing: .02em;
  transition: background .3s, transform .2s, box-shadow .3s;
}
.form-submit:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,31,31,.3);
}

/* Contact info sidebar */
.contact-info { position: sticky; top: 120px; }
.contact-card {
  background: var(--white); border-radius: var(--r8);
  padding: 36px 30px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.contact-card h3 { font-size: 20px; margin-bottom: 22px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.contact-row:last-child { margin-bottom: 0; }
.ci-icon {
  width: 40px; height: 40px; border-radius: var(--r2);
  background: var(--red-alpha); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.ci-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ci-val { font-size: 15px; font-weight: 600; color: var(--ink); }
.ci-val a { color: inherit; transition: color .2s; }
.ci-val a:hover { color: var(--red); }

@media(max-width:900px){
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--ink);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
#footer-logo { width: 180px; opacity: .9; }
.footer-logo-text {
  margin-top: 14px; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.6); margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,.6); display:flex; align-items:center; }
.footer-contact-item svg { color: rgba(255,255,255,.5); flex-shrink:0; }
.footer-contact-item a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,.3);
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-baltify {
  font-size: 11px; color: rgba(255,255,255,.22);
  text-decoration: none; letter-spacing: .04em;
  transition: color .2s;
}
.footer-baltify:hover { color: rgba(255,255,255,.6); }
.footer-baltify span { color: rgba(255,255,255,.38); }

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--dark);
  margin: 2.5rem 0 .75rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.5rem 0 .4rem;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul {
  margin: .5rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.legal-content a { color: var(--red); text-decoration: underline; }
.legal-content a:hover { opacity: .8; }

@media(max-width:800px){
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width:500px){
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* =============================================
   UTILITIES
   ============================================= */
.text-red { color: var(--red); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* =============================================
   FUNNEL
   ============================================= */
.funnel-progress-bar-wrap {
  height: 5px; background: var(--border); border-radius: 3px;
  margin-bottom: 10px; overflow: hidden;
}
.funnel-progress-fill {
  height: 100%; background: var(--red); border-radius: 3px;
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.funnel-step-indicator {
  font-size: 12px; color: var(--muted); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 32px;
}
.funnel-step-indicator strong { color: var(--red); }

.funnel-step { display: none; }
.funnel-step.active { display: block; animation: fSlideIn .28s ease; }
@keyframes fSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.funnel-step > h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px; line-height: 1.3;
}
.funnel-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 22px;
}

/* — Bundesland grid — */
.bl-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px;
  margin-bottom: 4px;
}
.bl-btn {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r2); padding: 12px 8px;
  font-size: 12px; font-weight: 500; color: var(--ink2);
  cursor: pointer; transition: all .16s; text-align: center;
  line-height: 1.3; font-family: var(--font-b);
}
.bl-btn:hover { border-color: var(--red); color: var(--red); background: var(--red-alpha); }
.bl-btn.selected { border-color: var(--red); background: var(--red-alpha); color: var(--red); font-weight: 700; }

/* — Icon cards (Gebäudetyp) — */
.icon-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 8px;
}
.icon-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r3); padding: 26px 12px 20px;
  text-align: center; cursor: pointer; transition: all .2s;
}
.icon-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.icon-card.selected { border-color: var(--red); background: var(--red-alpha); }
.ic-icon { margin-bottom: 11px; display: flex; align-items: center; justify-content: center; }
.ic-label { font-size: 12px; font-weight: 600; color: var(--ink2); line-height: 1.35; }
.icon-card.selected .ic-label { color: var(--red); }

/* — Photo cards (Bodenart) — */
.photo-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 8px;
}
.photo-card {
  border: 2px solid var(--border); border-radius: var(--r3);
  overflow: hidden; cursor: pointer; transition: all .2s;
}
.photo-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.photo-card.selected { border-color: var(--red); }
.photo-card.selected .pc-label { background: var(--red); color: #fff; }
.pc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.pc-unknown {
  width: 100%; aspect-ratio: 4/3; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--muted);
}
.pc-label {
  padding: 9px 8px; text-align: center; font-size: 11.5px; font-weight: 600;
  color: var(--ink2); background: var(--surface2);
  transition: background .18s, color .18s; line-height: 1.3;
}

/* — Funnel navigation — */
.funnel-nav {
  display: flex; align-items: center; gap: 12px; margin-top: 26px;
}
.funnel-back {
  background: none; border: none; color: var(--muted); font-size: 13px;
  cursor: pointer; padding: 0; transition: color .18s;
  display: flex; align-items: center; gap: 5px; font-family: var(--font-b);
}
.funnel-back:hover { color: var(--ink); }
.funnel-next-btn {
  margin-left: auto; background: var(--red); color: #fff;
  border: none; border-radius: var(--r2); padding: 13px 30px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: opacity .18s; font-family: var(--font-b);
}
.funnel-next-btn:hover { opacity: .87; }

/* — Thank you screen — */
.funnel-thanks { text-align: center; padding: 40px 16px 24px; }
.thanks-check {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(42,122,42,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: #2a7a2a;
}
.funnel-thanks h3 { font-size: 24px; margin-bottom: 10px; }
.funnel-thanks p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }
.thanks-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* — Responsive — */
@media (max-width: 640px) {
  .bl-grid { grid-template-columns: repeat(3, 1fr); }
  .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .photo-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 28px 22px; }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.call-float {
  position: fixed; bottom: 98px; right: 28px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(204,31,31,.4);
  text-decoration: none; transition: transform .22s, box-shadow .22s;
}
.call-float:hover {
  transform: scale(1.11) translateY(-2px);
  box-shadow: 0 8px 32px rgba(204,31,31,.55);
  color: #fff;
}

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.45);
  text-decoration: none; transition: transform .22s, box-shadow .22s;
}
.wa-float:hover {
  transform: scale(1.11) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
  color: #fff;
}
.wa-float svg { flex-shrink: 0; }
/* subtle pulse ring */
.wa-float::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,.35);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.9); opacity: .7; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}
