/* ALMO Haustechnik – Landingpage Styles */

:root {
  /* Markenfarben aus dem Logo */
  --blau: #1a4da1;
  --blau-dunkel: #143b7a;
  --blau-hell: #eef3fb;
  --rot: #d62d23;        /* AA-konform: weiß auf Rot / Rot auf weiß = 4,9:1 (vorher #e63329 = 4,3:1) */
  --rot-dunkel: #c4271e;

  --text: #1b2430;
  --text-leise: #5b6675;
  --weiss: #ffffff;
  --grau: #f5f7fa;
  --grau-rand: #e3e8ef;

  --radius: 14px;
  --radius-gross: 22px;
  --schatten: 0 10px 30px rgba(20, 59, 122, 0.08);
  --schatten-stark: 0 18px 50px rgba(20, 59, 122, 0.16);
  --max: 1140px;
  --uebergang: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

/* ---------- Barrierefreiheit (WCAG 2.1 AA) ---------- */

/* Einheitlicher, gut sichtbarer Fokus-Indikator (2.4.7 Focus Visible) */
:focus-visible {
  outline: 3px solid var(--blau);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Auf dunklen Flächen heller Fokus-Ring, damit er sichtbar bleibt (1.4.11) */
.header .btn:focus-visible,
.hero :focus-visible,
.kontakt :focus-visible,
.lp-kontakt :focus-visible,
.footer :focus-visible,
.projekte-lightbox :focus-visible {
  outline-color: var(--weiss);
}

/* Bewegung reduzieren, wenn vom Nutzer gewünscht (Best Practice zu 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.section-kopf {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--text-leise);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--uebergang), box-shadow var(--uebergang),
    background var(--uebergang), color var(--uebergang);
}

.btn-primary {
  background: var(--rot);
  color: var(--weiss);
  box-shadow: 0 8px 20px rgba(230, 51, 41, 0.28);
}

.btn-primary:hover {
  background: var(--rot-dunkel);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost-dunkel {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-ghost-dunkel:hover {
  background: var(--grau);
  border-color: #9ca3af;
}

.btn-blau {
  background: var(--blau);
  color: var(--weiss);
  box-shadow: 0 8px 20px rgba(20, 59, 122, 0.25);
}

.btn-blau:hover {
  background: var(--blau-dunkel);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--grau-rand);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

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

.logo svg {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.97rem;
  transition: color var(--uebergang);
}

.nav a:hover {
  color: var(--blau);
}

.nav .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
}

/* Button in der Navigation behält weiße Schrift (sonst überschreibt .nav a) */
.nav a.btn-primary,
.nav a.btn-primary:hover {
  color: var(--weiss);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--uebergang);
}

.nav-toggle span + span {
  margin-top: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: -74px;
  background-image: url("../img/hero-section-bild.jpg");
  background-size: cover;
  background-position: 62% center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
}

.hero-verlauf {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    #fff 0%,
    #fff 30%,
    rgba(255, 255, 255, 0.97) 42%,
    rgba(255, 255, 255, 0.82) 54%,
    rgba(255, 255, 255, 0.22) 65%,
    transparent 74%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-inhalt {
  position: relative;
  z-index: 2;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 174px max(calc((100vw - var(--max)) / 2 + 24px), 24px) 60px;
}

.hero-text {
  max-width: clamp(340px, 60%, 680px);
  flex-shrink: 0;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rot);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-akzent {
  color: var(--rot);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-leise);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Teaser-Karten unterhalb der Buttons */
.hero-teaser {
  display: flex;
  margin-top: 40px;
  padding-top: 22px;
}

.hero-teaser-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding-right: 20px;
}

.hero-teaser-item:not(:first-child) {
  padding-left: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-teaser-item .stat-ikone {
  background: transparent;
  color: var(--blau-dunkel);
  width: auto;
  height: auto;
  min-width: unset;
  border-radius: 0;
  flex-shrink: 0;
}

.hero-teaser-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.hero-teaser-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-leise);
  line-height: 1.4;
}

.hero-teaser-item .stat-ikone svg {
  width: 44px;
  height: 44px;
}

/* Schwebende Dienst-Karten */
.hero-karten-bereich {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 44%;
  z-index: 2;
  pointer-events: none;
}

.hdk {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 14px 22px;
  width: 265px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  pointer-events: auto;
}

/* Sanitär – leicht nach links, mittlere Tiefe */
.hdk--1 {
  top: 13%;
  left: 5%;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08), 0 1px 5px rgba(0, 0, 0, 0.04);
  transform: rotate(-1.2deg);
}

/* Heizung – weiter rechts, stärkster Schatten (Vordergrund) */
.hdk--2 {
  top: 43%;
  left: 22%;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.17), 0 6px 16px rgba(0, 0, 0, 0.09);
  transform: rotate(0.7deg);
}

/* Klima – wieder links, kleinster Schatten (Hintergrund) */
.hdk--3 {
  top: 68%;
  left: 4%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.03);
  transform: rotate(-0.5deg);
}

.hdk-ikone {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hdk-ikone--blau    { background: #DBEAFE; color: #2563EB; }
.hdk-ikone--rot     { background: #FEE2E2; color: #DC2626; }
.hdk-ikone--eisblau { background: #E0F2FE; color: #0284C7; }

.hdk strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.hdk span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-leise);
  line-height: 1.35;
}

/* Stats-Leiste */
.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--grau-rand);
  background: var(--weiss);
}

.hero-stats .stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  justify-content: center;
}

.hero-stats .stat:not(:last-child) {
  border-right: 1px solid var(--grau-rand);
}

.stat-ikone {
  width: 48px;
  height: 48px;
  background: #FEE2E2;
  color: var(--rot);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stats .stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-leise);
}

/* ---------- Leistungen ---------- */
.leistungen {
  background: var(--weiss);
}

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

.karte {
  background: var(--weiss);
  border: 1px solid var(--grau-rand);
  border-radius: var(--radius-gross);
  padding: 0;
  overflow: hidden;
  transition: transform var(--uebergang), box-shadow var(--uebergang),
    border-color var(--uebergang);
}

.karte:hover {
  transform: translateY(-6px);
  box-shadow: var(--schatten-stark);
  border-color: transparent;
}

.karte-bild {
  position: relative;
  height: 190px;
  background-size: cover;
  background-position: center;
}

.karte-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blau);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}

.karte-icon--rot {
  color: var(--rot);
}

.karte-icon svg {
  width: 26px;
  height: 26px;
}

.lp-service-icon svg {
  width: 28px;
  height: 28px;
}

.karte-inhalt {
  padding: 24px 28px 28px;
}

.karte-inhalt h3 {
  margin-bottom: 12px;
}

.karte ul {
  list-style: none;
  margin-top: 18px;
}

.karte li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: var(--text-leise);
  font-size: 0.96rem;
}

.karte li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rot);
}

/* ---------- Spezialisierungen ---------- */
.spezial {
  margin-top: 56px;
  padding: 36px 40px;
  border-radius: var(--radius-gross);
  background: #F6F7FB;
  text-align: center;
}

.spezial-titel {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--grau-rand);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--weiss);
  transition: border-color var(--uebergang), color var(--uebergang),
    background var(--uebergang), transform var(--uebergang);
}

.chips li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--rot);
  transition: color var(--uebergang);
}

.chips li:hover {
  border-color: var(--rot);
  color: var(--rot);
  transform: translateY(-2px);
}

/* ---------- Projekte / Referenzen (Foto-Karussell) ---------- */
.projekte {
  background: var(--grau);
}

.projekte-slider-wrap {
  position: relative;
  max-width: calc(var(--max) + 40px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.projekte-slider {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--grau-rand) transparent;
}
.projekte-slider::-webkit-scrollbar { height: 8px; }
.projekte-slider::-webkit-scrollbar-thumb {
  background: var(--grau-rand);
  border-radius: 999px;
}

.projekte-track {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 4px 4px 18px;
}

/* Kartenbreite: 3 gleichzeitig sichtbar (Lücken 2 × 20px abgezogen) */
.projekte-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  position: relative;
  height: 320px;
  border: 1px solid var(--grau-rand);
  border-radius: var(--radius-gross);
  overflow: hidden;
  background: var(--weiss);
  transition: transform var(--uebergang), box-shadow var(--uebergang), border-color var(--uebergang);
}

.projekte-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-stark);
  border-color: transparent;
}

.projekte-bild-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.projekte-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projekte-slide:hover img {
  transform: scale(1.05);
}

.projekte-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.projekte-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--grau-rand);
  background: var(--weiss);
  color: var(--blau);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--schatten);
  transition: background var(--uebergang), transform var(--uebergang);
}
.projekte-nav svg { width: 20px; height: 20px; }
.projekte-nav:hover { background: var(--blau-hell); transform: scale(1.06); }

/* Tablet: 2 Karten sichtbar */
@media (max-width: 900px) {
  .projekte-slide { flex-basis: calc((100% - 20px) / 2); height: 280px; }
}

/* Mobil: 1 Karte plus Anschnitt der nächsten (signalisiert Scrollbarkeit) */
@media (max-width: 640px) {
  .projekte-slider-wrap { padding: 0 10px; gap: 6px; }
  .projekte-slide { flex-basis: 82%; height: 260px; }
  .projekte-nav { width: 36px; height: 36px; }
  .projekte-nav svg { width: 17px; height: 17px; }
}

/* Lightbox: Bild in voller Größe */
.projekte-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 14, 20, 0.92);
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.projekte-lightbox[hidden] { display: none; }
.projekte-lightbox:not([hidden]) { display: flex; }

#projekte-lightbox-bild {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.projekte-lightbox-schliessen,
.projekte-lightbox-nav {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--uebergang);
}
.projekte-lightbox-schliessen:hover,
.projekte-lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }

.projekte-lightbox-schliessen { top: 20px; right: 20px; }
.projekte-lightbox-nav svg,
.projekte-lightbox-schliessen svg { width: 22px; height: 22px; }
.projekte-lightbox-nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.projekte-lightbox-nav--next { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 680px) {
  .projekte-lightbox-nav { width: 40px; height: 40px; }
  .projekte-lightbox-nav--prev { left: 8px; }
  .projekte-lightbox-nav--next { right: 8px; }
}

/* ---------- Über uns ---------- */
/* ---------- Über uns ---------- */
.ueber {
  position: relative;
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
  min-height: 540px;
}

/* Hintergrundbild – rechts ausgerichtet, füllt die volle Section-Höhe */
.ueber-bg-foto {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  display: block;
}

/* Weißer Verlauf von links: Text liegt auf weißer Fläche,
   Übergang in Bild ohne harte Kante */
.ueber-verlauf {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 36%,
    rgba(255, 255, 255, 0.95) 44%,
    rgba(255, 255, 255, 0.60) 52%,
    rgba(255, 255, 255, 0) 62%
  );
  z-index: 1;
  pointer-events: none;
}

/* Inhalt: nur Text, liegt über Bild + Verlauf.
   Gleiche Achse wie .container (max-width + 24px Padding beidseitig). */
.ueber-inhalt {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Text auf weißer Fläche */
.ueber-text {
  flex: 0 0 auto;
  max-width: 560px;
}

.ueber-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 20px;
}

.ueber-text p {
  color: var(--text-leise);
  margin-bottom: 16px;
}

/* Trust-Punkte */
.merkmale {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-top: 28px;
}

.merkmal {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.merkmal-ikone {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blau);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.merkmal-ikone svg {
  width: 20px;
  height: 20px;
}

.merkmal strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.merkmal span {
  font-size: 0.9rem;
  color: var(--text-leise);
  line-height: 1.4;
}

/* Vertrauenskarte – absolut am rechten oberen Bildrand */
.ueber-vertrauenskarte {
  position: absolute;
  top: 80px;
  right: 72px;
  z-index: 3;
  width: 300px;
  background: linear-gradient(160deg, #1a4da1 0%, #0d2244 100%);
  border-radius: 20px;
  padding: 44px 32px;
  color: #fff;
  box-shadow: 0 24px 64px rgba(13, 34, 68, 0.40);
}

.uk-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  text-align: center;
  gap: 3px;
}

.uk-stern {
  font-size: 1.5rem;
  line-height: 1;
}

.uk-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.uk-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin: 0 0 24px;
}

.ueber-vertrauenskarte h3 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.ueber-vertrauenskarte p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ---------- Ablauf ---------- */
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
  counter-reset: schritt;
  position: relative;
}

.ablauf-grid::before {
  content: '';
  position: absolute;
  top: calc(200px + 28px + 28px); /* foto + margin + halber Kreis */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--grau-rand);
  z-index: 0;
}

.schritt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.schritt-foto {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}

.schritt .nummer {
  counter-increment: schritt;
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blau-hell);
  color: var(--blau);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid var(--weiss);
  box-shadow: 0 0 0 2px var(--grau-rand);
}

.schritt .nummer::before {
  content: counter(schritt);
}

.schritt h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.schritt p {
  font-size: 0.93rem;
  color: var(--text-leise);
  text-wrap: balance;
}

.ablauf-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ---------- Einsatzgebiet ---------- */
.gebiet {
  background: var(--weiss);
}

.orte {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.orte li {
  background: var(--blau-hell);
  color: var(--blau);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #dbe6f7;
}

.orte li.orte-mehr {
  background: transparent;
  border-style: dashed;
  color: var(--text-leise);
}

/* Verlinkte Orts-Chips */
.orte li.ort-mit-link {
  padding: 0;
  transition: background var(--uebergang), border-color var(--uebergang);
}
.orte li.ort-mit-link a {
  display: block;
  padding: 10px 20px;
  color: var(--blau);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}
.orte li.ort-mit-link:hover {
  background: var(--blau);
  border-color: var(--blau);
}
.orte li.ort-mit-link:hover a {
  color: var(--weiss);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--grau);
}

.faq-liste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--grau-rand);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  background: var(--weiss);
  transition: box-shadow var(--uebergang), border-color var(--uebergang);
}

.faq-item[open] {
  box-shadow: var(--schatten);
  border-color: transparent;
  border-left-color: var(--rot);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.faq-frage {
  flex: 1;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--blau);
  transition: transform var(--uebergang);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--rot);
}

.faq-ikone {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-ikone--rot    { background: #FEE2E2; color: #DC2626; }
.faq-ikone--blau   { background: #DBEAFE; color: #2563EB; }
.faq-ikone--gruen  { background: #D1FAE5; color: #059669; }
.faq-ikone--orange { background: #FFEDD5; color: #EA580C; }
.faq-ikone--lila   { background: #EDE9FE; color: #7C3AED; }

.faq-antwort {
  padding: 0 20px 20px calc(20px + 44px + 14px);
}

.faq-antwort p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-leise);
  line-height: 1.65;
}

/* FAQ CTA-Bar */
.faq-cta {
  margin-top: 14px;
  background: var(--weiss);
  border: 1px solid var(--grau-rand);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-cta-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-cta-ikone {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #DBEAFE;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-cta-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.faq-cta-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-leise);
}

.faq-cta-aktionen {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-ghost-blau {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--grau-rand);
  background: var(--weiss);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color var(--uebergang), color var(--uebergang);
  white-space: nowrap;
}

.btn-ghost-blau:hover {
  border-color: var(--blau);
  color: var(--blau);
}

@media (max-width: 900px) {
  .faq-liste { grid-template-columns: 1fr; }
  .faq-cta { flex-direction: column; align-items: flex-start; }
  .faq-cta-aktionen { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .faq-antwort { padding-left: 20px; }
}

/* ---------- Kontakt ---------- */
.kontakt {
  background: var(--grau);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.kontakt-info h2 {
  margin-bottom: 18px;
}

.kontakt-info > p {
  margin-bottom: 30px;
}

.info-zeile {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.info-zeile .ico {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--weiss);
  border: 1px solid var(--grau-rand);
  color: var(--blau);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-zeile .ico svg {
  width: 22px;
  height: 22px;
}

.info-zeile strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-zeile a,
.info-zeile span {
  color: var(--text-leise);
  font-size: 1.05rem;
}

.info-zeile a:hover {
  color: var(--blau);
}

/* Formular */
.formular {
  background: var(--weiss);
  border: 1px solid var(--grau-rand);
  border-radius: var(--radius-gross);
  padding: 38px;
  box-shadow: var(--schatten);
}

.feld {
  margin-bottom: 18px;
}

.feld-reihe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feld label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.feld input,
.feld textarea,
.feld select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--grau-rand);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--weiss);
  transition: border-color var(--uebergang), box-shadow var(--uebergang);
}

/* Select: native Darstellung (v. a. Safari) zurücksetzen + eigener Pfeil */
.feld select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a4da1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.feld input:focus,
.feld textarea:focus,
.feld select:focus {
  outline: none;
  border-color: var(--blau);
  box-shadow: 0 0 0 3px rgba(26, 77, 161, 0.12);
}

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

.formular .btn {
  width: 100%;
  justify-content: center;
}

.dsgvo {
  font-size: 0.82rem;
  color: var(--text-leise);
  margin-top: 14px;
  text-align: center;
}

/* Honeypot versteckt */
.hp {
  position: absolute;
  left: -9999px;
}

.hinweis {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hinweis-ok {
  background: #e7f6ec;
  color: #1b7a3d;
  border: 1px solid #b8e6c6;
}

.hinweis-fehler {
  background: #fdeceb;
  color: var(--rot-dunkel);
  border: 1px solid #f6c9c6;
}

/* ---------- Rechtstexte (Impressum, Datenschutz, Barrierefreiheit) ---------- */
.rechtstext {
  padding: 64px 0 96px;
}

.rechtstext-inhalt {
  max-width: 760px;
}

.rechtstext-inhalt h1 {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.rechtstext-inhalt > p:first-of-type {
  font-size: 1.05rem;
}

.rechtstext-inhalt h2 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--grau-rand);
}

.rechtstext-inhalt h3 {
  font-size: 1.1rem;
  margin-top: 30px;
}

.rechtstext-inhalt p {
  color: var(--text);
  line-height: 1.75;
  margin-top: 14px;
}

.rechtstext-inhalt ul {
  margin: 14px 0;
  padding-left: 22px;
}

.rechtstext-inhalt li {
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 8px;
}

.rechtstext-inhalt a {
  color: var(--blau);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.rechtstext-inhalt a:hover {
  text-decoration: none;
}

.rechtstext-datum {
  margin-top: 48px;
  color: var(--text-leise);
  font-size: 0.9rem;
}

/* Webdesign-Credit (Impressum): Abstand zum Fließtext, dezente Trennlinie.
   imprint.js hängt die beiden Logos als <img> mit inline gesetzter Höhe
   (90px / 75px) an – display:flex + gap sorgt für einen Mindestabstand
   auch im Umbruch (die eigenen inline-block-Styles des Skripts geben
   dafür sonst nichts her). */
#webdesign-credit {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--grau-rand);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
}

/* Logos auf Mobil verkleinern (überschreibt die von imprint.js inline
   gesetzte Höhe, daher !important). */
@media (max-width: 480px) {
  #webdesign-credit .credit-link.crbd img { height: 60px !important; }
  #webdesign-credit .credit-link.biw img { height: 50px !important; }
}

/* ---------- WhatsApp-Button ---------- */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-btn svg {
  width: 30px;
  height: 30px;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

@media (max-width: 680px) {
  .wa-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .wa-btn svg { width: 26px; height: 26px; }
}

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--grau-rand);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  padding: 18px 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner--verbergen {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-innen {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--text-leise);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--blau);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-aktionen {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 10px 20px;
}

body.cookie-sichtbar .wa-btn {
  bottom: 96px;
}

@media (max-width: 680px) {
  .cookie-banner-innen {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-banner-aktionen {
    flex-direction: column;
    gap: 8px;
  }

  body.cookie-sichtbar .wa-btn {
    display: none;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 64px;
  margin-bottom: 40px;
}

.footer .logo svg {
  height: 40px;
}

.footer-marke p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: color var(--uebergang);
}

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

.footer-einsatzgebiete ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
}

.footer-kontakt-zeile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-kontakt-zeile a {
  white-space: nowrap;
}

.footer-kontakt-zeile svg {
  opacity: 0.55;
  flex-shrink: 0;
}

.footer-unten {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .karten,
  .ablauf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ablauf-grid::before {
    display: none;
  }

  /* Über uns: Bild + Effekte ausblenden, Karte wieder im Fluss */
  .ueber-bg-foto,
  .ueber-verlauf {
    display: none;
  }

  .ueber-text {
    max-width: none;
  }

  .ueber-vertrauenskarte {
    position: static;
    width: auto;
    max-width: none;
    margin: 40px 24px 0;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 680px) {
  section {
    padding: 64px 0;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--grau-rand);
    padding: 12px 24px 24px;
    box-shadow: var(--schatten);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }

  .nav.offen {
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--grau-rand);
  }

  .nav .btn {
    margin-top: 14px;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .ueber {
    padding: 64px 0;
    min-height: auto;
  }

  .karten,
  .ablauf-grid,
  .merkmale,
  .feld-reihe,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ablauf-grid {
    row-gap: 48px;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-marke .logo {
    justify-content: flex-start;
  }

  .footer-kontakt-zeile {
    justify-content: flex-start;
  }

  .footer-marke p {
    margin: 16px 0 0;
  }

  .footer-unten {
    text-align: left;
    justify-content: flex-start;
  }

  .hero-inhalt {
    min-height: 420px;
    padding: 154px max(calc((100vw - var(--max)) / 2 + 24px), 24px) 52px;
  }

  .hero-karten-bereich {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--grau-rand);
  }

  .hero-stats .stat {
    justify-content: flex-start;
    padding: 20px 24px;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    background-position: 88% center;
  }

  .hero-verlauf {
    background: linear-gradient(100deg, #fff 0%, #fff 58%, rgba(255,255,255,0.88) 72%, rgba(255,255,255,0.30) 86%, transparent 100%);
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-teaser {
    flex-direction: column;
    margin-top: 28px;
    padding-top: 0;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .hero-teaser-item {
    flex: none;
    padding: 12px 0;
    padding-right: 0;
  }

  .hero-teaser-item:not(:first-child) {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .hero-teaser-item .stat-ikone svg {
    width: 32px;
    height: 32px;
  }
}

/* ===================================================================
   Landingpage-Styles (Ortsseiten)
   =================================================================== */

/* Solid header: Landingpages starten nicht mit dunklem Hero-Bild */
.lp-body .header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--grau-rand);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ---------- Breadcrumb ---------- */
.lp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-leise);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.lp-breadcrumb a {
  color: var(--text-leise);
  transition: color var(--uebergang);
}
.lp-breadcrumb a:hover { color: var(--blau); }
.lp-breadcrumb-sep { color: var(--grau-rand); user-select: none; }
.lp-breadcrumb-current { color: var(--text); font-weight: 500; }

/* ---------- LP Hero ---------- */
.lp-hero {
  background: linear-gradient(140deg, var(--blau-hell) 0%, #f5f8ff 60%, #fff 100%);
  border-bottom: 1px solid #dbe6f7;
  padding: 72px 0 80px;
}
.lp-hero .eyebrow { color: var(--blau); }
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 12px 0 22px;
}
.lp-hero-intro {
  font-size: 1.08rem;
  color: var(--text-leise);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.lp-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.lp-hero-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.lp-hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.lp-hero-badge svg { color: var(--blau); flex-shrink: 0; }

/* ---------- LP Leistungen ---------- */
.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.lp-service-card {
  background: var(--weiss);
  border: 1px solid var(--grau-rand);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--schatten);
}
.lp-service-icon {
  width: 48px;
  height: 48px;
  background: var(--blau-hell);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blau);
}
.lp-service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.lp-service-card p  { font-size: 0.93rem; }
.lp-service-card ul { list-style: none; margin-top: 14px; }
.lp-service-card li {
  font-size: 0.9rem;
  color: var(--text-leise);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-service-card li::before {
  content: '✓';
  color: #184691;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-service-card--heizung .lp-service-icon { background: #FFEED6; }
.lp-service-card--heizung li::before { color: #FA3703; }

/* ---------- LP Erreichbarkeit ---------- */
.lp-erreichbarkeit { background: var(--grau); }
.lp-erreich-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.lp-dist-badge {
  background: var(--blau);
  color: var(--weiss);
  border-radius: var(--radius-gross);
  padding: 32px 40px;
  text-align: center;
  min-width: 160px;
}
.lp-dist-zahl {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--weiss);
}
.lp-dist-einheit {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}
.lp-erreich-text h2 { margin-bottom: 16px; }
.lp-erreich-text p  { max-width: 520px; }

/* ---------- LP Kontakt ---------- */
.lp-kontakt { background: var(--blau); }
.lp-kontakt .eyebrow { color: rgba(255, 255, 255, 0.85); } /* AA: 0.65 war nur 4,4:1 */
.lp-kontakt h2 { color: var(--weiss); }
.lp-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: start;
}
.lp-kontakt-info > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.lp-kontakt-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--weiss);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: opacity var(--uebergang);
}
.lp-kontakt-tel:hover { opacity: 0.85; color: var(--weiss); }
.lp-kontakt-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.lp-kontakt-zeile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
}
.lp-kontakt-zeile svg { flex-shrink: 0; color: rgba(255, 255, 255, 0.5); }
.lp-kontakt-zeile a { color: rgba(255, 255, 255, 0.75); }
.lp-kontakt-zeile a:hover { color: var(--weiss); }
.lp-form {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  padding: 40px;
  box-shadow: var(--schatten-stark);
}
.lp-form h3 { margin-bottom: 24px; }
.lp-feld { margin-bottom: 16px; }
.lp-feld label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.lp-feld input,
.lp-feld textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--grau-rand);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.lp-feld input:focus,
.lp-feld textarea:focus {
  outline: none;
  border-color: var(--blau);
  box-shadow: 0 0 0 3px rgba(26, 77, 161, 0.1);
}
.lp-feld textarea { resize: vertical; min-height: 110px; }
.lp-hinweis {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.93rem;
}
.lp-hinweis-ok     { background: #D1FAE5; color: #065F46; }
.lp-hinweis-fehler { background: #FEE2E2; color: #991B1B; }
.lp-dsgvo {
  font-size: 0.78rem;
  color: var(--text-leise);
  margin-top: 10px;
}

/* ---------- LP Related ---------- */
.lp-related { padding: 56px 0; background: var(--grau); }
.lp-related .section-kopf { margin-bottom: 28px; }
.lp-related-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lp-related-links li a {
  display: inline-block;
  background: var(--weiss);
  color: var(--blau);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid #dbe6f7;
  transition: background var(--uebergang), color var(--uebergang), border-color var(--uebergang);
}
.lp-related-links li a:hover {
  background: var(--blau);
  color: var(--weiss);
  border-color: var(--blau);
}

/* ---------- LP Responsive ---------- */
@media (max-width: 900px) {
  .lp-service-grid   { grid-template-columns: 1fr 1fr; }
  .lp-erreich-grid   { grid-template-columns: 1fr; gap: 32px; }
  .lp-kontakt-grid   { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .lp-hero           { padding: 48px 0 56px; }
  .lp-service-grid   { grid-template-columns: 1fr; }
  .lp-hero-badges    { gap: 16px; flex-direction: column; }
  .lp-form           { padding: 28px 20px; }
  .lp-kontakt-tel    { font-size: 1.3rem; }
}
