/* ============================================
   SOMV PROJECT v3 — Grünauer-Style Stylesheet
   Marineblau + Rot + Weiß
   ============================================ */

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2547;
  --navy-deep: #081832;
  --red: #d6202a;
  --red-bright: #e53039;
  --red-dark: #a01620;
  --red-soft: #fce8ea;
  --red-pale: #fef5f6;

  --white: #ffffff;
  --cream: #faf8f5;
  --bg-warm: #f7f4ef;
  --gray-50: #f5f7fa;
  --gray-100: #eef1f6;
  --gray-200: #dde3ed;
  --gray-300: #c1cad8;
  --gray-500: #6b7a99;
  --gray-700: #4a5878;
  --gray-900: #0f2547;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(15, 37, 71, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 37, 71, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 37, 71, 0.12);
  --shadow-xl: 0 30px 80px rgba(15, 37, 71, 0.15);
  --shadow-red: 0 14px 40px -10px rgba(214, 32, 42, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ PROMO-BAR (Grünauer-Style) ============ */
.promobar {
  background: var(--red);
  color: white;
  padding: 0.7rem 0;
  font-size: 0.92rem;
  text-align: center;
  font-weight: 500;
}
.promobar a {
  text-decoration: underline;
  font-weight: 700;
  margin-left: 0.4rem;
}
.promobar a:hover { color: var(--red-soft); }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy-deep);
  color: white;
  font-size: 0.85rem;
  padding: 0.55rem 0;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar a { color: white; opacity: 0.85; transition: opacity 0.15s; }
.topbar a:hover { opacity: 1; color: var(--red); }
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-right { display: flex; gap: 1.25rem; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 60px; width: auto; }
.nav-links {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.nav-links > a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
  position: relative;
}
.nav-links > a:hover { background: var(--gray-100); color: var(--navy-dark); }
.nav-links > a.active { color: var(--red); }
.nav-links > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}
.mobile-toggle { display: none; background: none; border: none; padding: 0.5rem; color: var(--navy); }
.mobile-toggle svg { width: 28px; height: 28px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px rgba(214, 32, 42, 0.5);
}
.btn-secondary { background: var(--navy); color: white; }
.btn-secondary:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline {
  background: white;
  color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: white; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; }

/* ============================================
   HERO — Großes Bannerbild + geschwungene Shape + Illustration
   ============================================ */
.hero {
  position: relative;
  padding: 4rem 0 9rem;
  overflow: hidden;
  background: var(--cream);
}

/* Layer 1: Großes Hintergrundbild rechts (Foto Haus mit PV) */
.hero-bg-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background-image:
    linear-gradient(135deg, rgba(8, 24, 50, 0.4) 0%, rgba(26, 58, 107, 0.25) 50%, transparent 100%),
    url('https://www.somv-project.de/files/myfiles/images/photovoltaik-einfamilienhaus-offenburg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Layer 2: Geschwungene Form (wie Grünauers "Background Shape") */
.hero-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 70%, var(--red-pale) 100%);
  clip-path: polygon(0 0, 75% 0, 95% 50%, 75% 100%, 0 100%);
  z-index: 1;
}

/* Layer 3: Subtiles Pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(214, 32, 42, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(26, 58, 107, 0.08) 0%, transparent 25%);
  z-index: 2;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 580px;
}
.hero-content { max-width: 600px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}
.hero h1 .red-text { color: var(--red); }
.hero-sub {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 2.2rem;
  line-height: 1.55;
}
.hero-cta { margin-bottom: 2.5rem; }

/* Trust-Badges (Meisterbetrieb, IHK, ProvenExpert) */
.hero-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.1rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-icon.red { background: var(--red); }
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
}
.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Hero Illustration mit Haus + PV (rechte Seite) */
.hero-illu {
  position: relative;
  height: 540px;
}
.hero-illu-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.12) 0%, rgba(26, 58, 107, 0.06) 50%, transparent 80%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}
.hero-house-svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 580px;
  z-index: 2;
}
.hero-couple-img {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 50%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 3;
  border: 6px solid white;
}
.hero-rating {
  position: absolute;
  top: 8%;
  left: -5%;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-rating-stars {
  display: flex;
  gap: 0.1rem;
  color: #fbbf24;
}
.hero-rating-stars svg { width: 16px; height: 16px; fill: currentColor; }
.hero-rating-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.hero-rating-text {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

/* ============================================
   USP STRIP — 3 Spalten direkt unter Hero
   ============================================ */
.usp-strip {
  background: white;
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 5;
}
.usp-grid {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-top: 5px solid var(--red);
}
.usp-card {
  padding: 2.5rem 2rem;
  text-align: left;
  border-right: 1px solid var(--gray-100);
}
.usp-card:last-child { border-right: none; }
.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.usp-icon svg { width: 32px; height: 32px; }
.usp-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.usp-card p {
  font-size: 0.96rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============ SECTIONS BASIS ============ */
section { padding: 6rem 0; position: relative; }
.section-gray { background: var(--bg-warm); }
.section-cream { background: var(--cream); }
.section-navy {
  background: var(--navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-navy::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.section-navy > .container { position: relative; z-index: 1; }
.section-navy h2, .section-navy h3 { color: white; }
.section-navy .section-sub { color: rgba(255,255,255,0.8); }
.section-navy { padding: 6rem 0; }
.section-navy .stat-label { color: white; }
.section-navy .stat-desc { color: rgba(255,255,255,0.7); }
.section-navy .stat-block { padding: 2rem 1rem; }
.section-navy .stat-num { margin-bottom: 1rem; }

.section-header { max-width: 760px; margin-bottom: 3.5rem; }
.section-header.center { margin: 0 auto 3.5rem; text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
}
.section-header.center .section-tag { justify-content: center; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}
.section-navy .section-title { color: white; }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ============================================
   "SICHERE ZUKUNFT" — Bilder-Collage links, Liste rechts
   ============================================ */
.zukunft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.zukunft-images {
  position: relative;
  aspect-ratio: 1/1.05;
}
.zukunft-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.zukunft-img img { width: 100%; height: 100%; object-fit: cover; }
.zukunft-img-1 {
  top: 0; left: 0;
  width: 65%;
  aspect-ratio: 4/5;
  z-index: 1;
}
.zukunft-img-2 {
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 4/5;
  z-index: 2;
  border: 8px solid white;
}
.zukunft-img-3 {
  top: 50%; right: 5%;
  transform: translateY(-50%);
  width: 38%;
  aspect-ratio: 1;
  z-index: 3;
  border: 8px solid white;
  border-radius: 50%;
}
.zukunft-list { list-style: none; margin-top: 2rem; }
.zukunft-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.05rem;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.zukunft-list li > span:not(.zukunft-icon) {
  flex: 1;
  line-height: 1.55;
}
.zukunft-list li:last-child { border-bottom: none; }
.zukunft-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--red);
  color: white;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.zukunft-icon svg { width: 18px; height: 18px; }

/* ============================================
   STATS — 3 große Zahlen mit Dot-Wave-Trennern
   ============================================ */
.stats-section {
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  padding: 6rem 0;
}
.stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  text-align: center;
  align-items: center;
}
/* Stats ohne Dividers — z.B. PPA-Seite, Über-uns: 3 Spalten gleichmäßig */
.stats.no-dividers {
  grid-template-columns: repeat(3, 1fr) !important;
}
.stats.no-dividers .stat-block { max-width: 360px; margin: 0 auto; }
.stat-block { padding: 1rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  white-space: nowrap;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}
.stat-desc {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 280px;
  margin: 0 auto;
}
.stats-divider {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.stats-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.5;
}
.stats-divider span:nth-child(2) { opacity: 0.8; }
.stats-divider span:nth-child(3) { opacity: 1; }
.stats-divider span:nth-child(4) { opacity: 0.8; }
.stats-divider span:nth-child(5) { opacity: 0.5; }

/* ============================================
   BEISPIELRECHNUNG — Tabelle
   ============================================ */
.calc-question {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.calc-wrap {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.calc-table {
  width: 100%;
  border-collapse: collapse;
}
.calc-table th, .calc-table td {
  padding: 1.1rem 1.25rem;
  text-align: right;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.96rem;
}
.calc-table th:first-child, .calc-table td:first-child {
  text-align: left;
  color: var(--gray-700);
  font-weight: 500;
}
.calc-table thead th {
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 1.4rem 1.25rem;
  border-bottom: none;
  font-size: 0.95rem;
  line-height: 1.3;
}
.calc-table thead th:nth-child(4) { background: var(--red); }
.calc-table tbody tr:hover { background: var(--gray-50); }
.calc-highlight {
  font-weight: 700;
  color: var(--red);
}
.calc-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* ============================================
   TEAM-INTERVIEWS — Video-Karten
   ============================================ */
/* ============================================
   VIDEO SEKTION — Werbefilm Vertriebspartner
   ============================================ */
.team-section {
  background: white;
  padding: 6rem 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: var(--navy-deep);
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Roter Akzent-Rahmen */
.video-wrap::before {
  content: '';
  position: absolute;
  inset: -8px -8px auto auto;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--red);
  border-right: 4px solid var(--red);
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: -1;
}
.video-wrap::after {
  content: '';
  position: absolute;
  inset: auto auto -8px -8px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--red);
  border-left: 4px solid var(--red);
  border-radius: 0 0 0 var(--radius-lg);
  z-index: -1;
}
.video-content { max-width: 480px; }
.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--red-soft);
  color: var(--red-dark);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.video-tag svg { width: 14px; height: 14px; }
.video-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}
.video-content > p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.video-credit {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-warm);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.video-credit svg {
  width: 20px; height: 20px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.video-credit strong {
  color: var(--navy-dark);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .video-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-content { max-width: none; }
}
@media (max-width: 768px) {
  .video-wrap::before, .video-wrap::after { display: none; }
}

/* ============================================
   ANSPRECHPARTNER — 3 runde Portraits
   ============================================ */
.contacts-section { background: var(--bg-warm); padding: 6rem 0; }
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-person { text-align: center; }
.contact-portrait {
  width: 180px; height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 6px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--gray-200);
}
.contact-portrait img { width: 100%; height: 100%; object-fit: cover; }
.contact-person h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
}
.contact-person-role {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.contact-person-actions {
  display: flex; gap: 0.5rem; justify-content: center;
}
.contact-person-actions a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.contact-person-actions a:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.contact-person-actions svg { width: 18px; height: 18px; }

/* ============================================
   VISION — Werte als Karten + Banner unten
   ============================================ */
.vision-section { background: white; padding: 6rem 0 0; }
.vision-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.value-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.vision-banner {
  margin: 0 -1.5rem;
  position: relative;
  aspect-ratio: 21/8;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  color: white;
  overflow: hidden;
}
.vision-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(8, 24, 50, 0.7) 50%, rgba(8, 24, 50, 0.3) 100%);
}
.vision-banner-content { position: relative; z-index: 1; max-width: 580px; }
.vision-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.vision-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }

/* ============================================
   REFERENZEN — Karten mit Hover-Effekt
   ============================================ */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ref-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.ref-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.ref-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ref-card:hover .ref-img img { transform: scale(1.06); }
.ref-body { padding: 1.5rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.ref-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.ref-body p {
  color: var(--gray-700);
  font-size: 0.94rem;
  margin-bottom: 1.25rem;
  flex: 1;
}
.ref-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ref-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--navy);
}
.ref-tag.tag-red { background: var(--red-soft); color: var(--red-dark); }

/* ============================================
   PROZESS — Horizontale Timeline mit Icons
   ============================================ */
.process-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, white 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.process-section::before, .process-section::after {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}
.process-section::before { top: 10%; left: 5%; }
.process-section::after { bottom: 15%; right: 8%; }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(to right, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}
.process-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.process-icon {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: white;
  border: 4px solid var(--red);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  position: relative;
  transition: all 0.3s;
}
.process-icon svg { width: 56px; height: 56px; }
.process-step:hover .process-icon {
  background: var(--red);
  color: white;
  transform: scale(1.05);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================
   FÖRDERUNGEN — lange Textsektion mit Sonnenstrahlen
   ============================================ */
.foerderung-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--red-pale) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.foerderung-rays {
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  opacity: 0.15;
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%, var(--red) 0deg 8deg, transparent 8deg 24deg);
  border-radius: 50%;
  transform: translate(30%, -30%);
  animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { to { transform: translate(30%, -30%) rotate(360deg); } }
.foerderung-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.foerderung-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 1rem;
}
.foerderung-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}
.foerderung-content > p {
  font-size: 1.08rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: left;
}
.foerderung-promise {
  background: white;
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.foerderung-promise strong { color: var(--red); font-family: var(--font-display); }
.foerderung-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================
   REVIEWS — Google-Bewertungen Grid
   ============================================ */
.reviews-section { background: white; padding: 6rem 0; }
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
}
.reviews-google-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.reviews-google-logo .g-blue { color: #4285F4; }
.reviews-google-logo .g-red { color: #EA4335; }
.reviews-google-logo .g-yellow { color: #FBBC05; }
.reviews-google-logo .g-green { color: #34A853; }
.reviews-rating-big {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.reviews-rating-text {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 0.95rem;
}
.review-stars {
  display: flex;
  gap: 0.1rem;
  color: #fbbf24;
  margin-top: 0.2rem;
}
.review-stars svg { width: 14px; height: 14px; fill: currentColor; }
.review-text {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================
   INTRO GRID (Two-Column-Layout für Unterseiten)
   ============================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-list { list-style: none; margin-top: 2rem; }
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  font-size: 1.02rem;
  color: var(--gray-900);
}
.intro-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-check svg { width: 14px; height: 14px; }

/* ============================================
   SERVICE CARDS (für Leistungen-Unterseite)
   ============================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.svc-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.svc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.svc-body p {
  color: var(--gray-700);
  font-size: 0.94rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 0.7rem; }

/* ============================================
   SVC BIG SECTION (für die große Bilder-Sektion auf der Startseite)
   ============================================ */
.svc-big-section { background: var(--bg-warm); padding: 6rem 0; }
.svc-big-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.svc-big-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
  transition: transform 0.3s;
  aspect-ratio: 4/3;
}
.svc-big-card:first-child {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.svc-big-card:hover { transform: translateY(-4px); }
.svc-big-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.svc-big-card:hover img { transform: scale(1.06); }
.svc-big-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-deep) 0%, rgba(8,24,50,0.4) 40%, transparent 70%);
}
.svc-big-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 1;
  color: white;
}
.svc-big-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: white;
}
.svc-big-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
  transition: gap 0.2s;
}
.svc-big-card:hover .svc-big-arrow { gap: 0.7rem; }

/* ============================================
   JOBS — Stellenanzeige
   ============================================ */
.job-section { background: white; padding: 6rem 0; }
.job-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.job-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.job-img img { width: 100%; height: 100%; object-fit: cover; }
.job-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.job-content > .section-tag { margin-bottom: 0.75rem; }
.job-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.job-content > p { color: var(--gray-700); font-size: 1rem; margin-bottom: 1.5rem; }
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.job-tag {
  padding: 0.45rem 1rem;
  background: white;
  color: var(--navy-dark);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
}

/* ============================================
   CTA BANNER vor Footer
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.3) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: white;
}
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 500px; }

/* ============================================
   KONTAKTFORMULAR + INFO
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-list { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.contact-info-item:hover { border-color: var(--red); transform: translateX(4px); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-info-value { font-size: 1.02rem; color: var(--navy-dark); font-weight: 500; line-height: 1.4; }
.contact-info-value a:hover { color: var(--red); }

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  color: var(--navy-dark);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--gray-50);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--navy-dark);
  transition: all 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--red);
  background: white;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: var(--gray-700); margin-bottom: 1.5rem;
}
.form-checkbox input { margin-top: 0.25rem; }

/* ============================================
   FOOTER mit dekorativen Elementen
   ============================================ */
footer {
  background: var(--navy-deep);
  color: white;
  padding: 5rem 0 1.5rem;
  position: relative;
  border-top: 4px solid var(--red);
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-30%, -30%);
}
footer > .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .nav-logo img {
  height: 64px;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
}
.footer-about {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: white;
}
.social-link:hover { background: var(--red); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a:hover { color: var(--red); }

/* ============ PAGE HEADER (Unterseiten) ============ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.18) 0%, transparent 60%);
  border-radius: 50%;
}
.page-header-inner { position: relative; z-index: 1; max-width: 800px; }
.breadcrumb {
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 14px; height: 14px; }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: white;
}
.page-header h1 .red-text { color: var(--red); }
.page-header-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.65;
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
}
.faq-toggle {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform 0.25s; }
.faq-item.open .faq-toggle { background: var(--red); color: white; }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem; }
.faq-answer p { color: var(--gray-700); line-height: 1.7; }

/* ============ RESPONSIVE ============ */
/* ============================================
   RESPONSIVE BREAKPOINTS
   Tablet: 1024px
   Mobile: 768px
   Klein: 480px
   ============================================ */

/* Tablet (≤ 1024px) — Layout wechselt auf einspaltig wo nötig */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }

  /* Topbar kompakter */
  .topbar { font-size: 0.8rem; }
  .topbar-left { gap: 1rem; }
  .topbar-right { gap: 1rem; }

  /* Hero einspaltig */
  .hero { padding: 3rem 0 7rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; min-height: auto; }
  .hero-illu { height: 380px; max-width: 480px; margin: 0 auto; }
  .hero-bg-photo { width: 100%; opacity: 0.4; }
  .hero-bg-shape {
    width: 100%;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(255,255,255,0.92) 60%, rgba(255,245,245,0.85) 100%);
    clip-path: none;
  }
  .hero h1 { font-size: clamp(2rem, 5vw, 3rem); }

  /* Alle 3-Spalten-Layouts → 2 Spalten */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  /* Service Big Section */
  .svc-big-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .svc-big-card:first-child { grid-row: auto; aspect-ratio: 16/10; grid-column: 1 / -1; }

  /* USP Strip */
  .usp-grid { grid-template-columns: 1fr; }
  .usp-card { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 2rem; }
  .usp-card:last-child { border-bottom: none; }

  /* Zukunft */
  .zukunft-grid { grid-template-columns: 1fr; gap: 3rem; }
  .zukunft-images { aspect-ratio: 4/3; max-width: 540px; margin: 0 auto; }

  /* Vision */
  .vision-intro { grid-template-columns: 1fr; gap: 2rem; }
  .vision-banner { padding: 0 2rem; aspect-ratio: 16/10; }

  /* Intro-Grid auf Unterseiten */
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-img { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }

  /* Stats nebeneinander aber ohne Trenner */
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .stats-divider { display: none; }

  /* Process Timeline 2 Spalten */
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .process-timeline::before { display: none; }

  /* Feature Band 2 Spalten */
  .feature-band-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Vision Box Stats */
  .vision-box-stats { grid-template-columns: repeat(3, 1fr); }

  /* Contact Grid */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Footer 2 Spalten */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Section Padding reduzieren */
  section { padding: 4.5rem 0; }
}

/* Mobile (≤ 768px) — Alles einspaltig, Mobile-Nav */
@media (max-width: 768px) {
  /* Promobar kompakter */
  .promobar { font-size: 0.82rem; padding: 0.5rem 1rem; }
  .promobar a { display: inline-block; margin-left: 0.2rem; }

  /* Topbar nur noch Telefon */
  .topbar-left { font-size: 0.75rem; gap: 0.75rem; }
  .topbar-right { display: none; }

  /* Mobile Nav-Menü */
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 0.75rem;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav-links.mobile-open > a {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-links.mobile-open > a.active::after { display: none; }
  .mobile-toggle { display: block; }
  .nav-logo img { height: 44px; }
  .nav-inner { padding: 0.7rem 1rem; }

  /* Hero kompakter */
  .hero { padding: 2.5rem 0 5rem; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.15; }
  .hero-sub { font-size: 1.05rem; }
  .hero-illu { height: 320px; max-width: 400px; }
  .hero-house-svg { max-width: 400px; }
  .hero-rating { left: 0; top: 0; padding: 0.7rem 0.9rem; }
  .hero-rating-num { font-size: 1.15rem; }
  .hero-rating-text { font-size: 0.72rem; }
  .hero-rating-stars svg { width: 13px; height: 13px; }

  /* Hero CTA stack */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; justify-content: center; margin-left: 0 !important; }

  /* Hero Badges einspaltig */
  .hero-badges { gap: 0.75rem; }
  .hero-badge { width: 100%; }
  .hero-badge-text strong { font-size: 0.9rem; }
  .hero-badge-text span { font-size: 0.72rem; }

  /* USP */
  .usp-strip { padding: 3rem 0 2.5rem; }
  .usp-grid { padding: 0; border-radius: var(--radius-md); }

  /* Sections — alle 1-spaltig */
  .reviews-grid, .ref-grid, .team-grid, .contacts-grid,
  .values-grid, .svc-grid, .svc-big-grid { grid-template-columns: 1fr; }

  /* Stats Mobile - untereinander mit Trennern */
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-block { padding: 1.5rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-block:last-child { border-bottom: none; }
  .stats-section .stat-block { border-color: var(--gray-200); }

  /* Beispielrechnung Tabelle Mobile */
  .calc-table th, .calc-table td { padding: 0.6rem 0.4rem; font-size: 0.8rem; }
  .calc-table thead th { padding: 0.85rem 0.4rem; font-size: 0.78rem; line-height: 1.25; }

  /* Vision Banner */
  .vision-banner { padding: 0 1.5rem; aspect-ratio: 16/14; }
  .vision-box { padding: 1.5rem; }
  .vision-box-stats { grid-template-columns: 1fr; gap: 1rem; }

  /* Job Card */
  .job-card { grid-template-columns: 1fr; }
  .job-img { aspect-ratio: 16/10; }
  .job-content { padding: 2rem 1.5rem; }

  /* Process Timeline */
  .process-timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-icon { width: 100px; height: 100px; }
  .process-icon svg { width: 48px; height: 48px; }

  /* Contact Grid */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-card { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Feature Band einspaltig */
  .feature-band { padding: 2.5rem 0; }
  .feature-band-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* CTA Banner */
  .cta-banner { padding: 2.5rem 1.75rem; text-align: center; }
  .cta-inner { justify-content: center; flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Foerderung-Bereich */
  .foerderung-content > p { text-align: left; }
  .foerderung-cta { flex-direction: column; }
  .foerderung-cta .btn { width: 100%; justify-content: center; }

  /* Page Header */
  .page-header { padding: 3rem 0 3.5rem; }
  .page-header h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .page-header-lead { font-size: 1.05rem; }

  /* Reviews Header stack */
  .reviews-header { flex-direction: column; align-items: flex-start; }

  /* Section Padding kleiner */
  section { padding: 3.5rem 0; }

  /* Section Headers */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-sub { font-size: 1rem; }

  /* Info Highlight */
  .info-highlight { flex-direction: column; text-align: center; padding: 1.25rem; }
}

/* Klein (≤ 480px) — Feinschliff für sehr schmale Screens */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Topbar minimal */
  .topbar-inner { justify-content: center; }
  .topbar-left { gap: 0.6rem; flex-direction: column; align-items: center; text-align: center; }

  /* Hero noch kompakter */
  .hero h1 { font-size: 1.6rem; line-height: 1.2; }
  .hero-sub { font-size: 0.98rem; }
  .hero-illu { height: 260px; }

  /* Buttons */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.88rem; }

  /* USP/Service Padding */
  .usp-card { padding: 1.5rem; }
  .svc-body { padding: 1.25rem; }
  .ref-body { padding: 1.25rem; }

  /* Beispielrechnung — Tabelle scrollbar */
  .calc-wrap { overflow-x: auto; }
  .calc-table { min-width: 480px; }

  /* Footer Legal stack */
  .footer-legal { flex-direction: column; gap: 0.5rem; }

  /* Form Card */
  .form-card { padding: 1.25rem; }

  /* Process Icon kleiner */
  .process-icon { width: 88px; height: 88px; }
  .process-icon svg { width: 40px; height: 40px; }

  /* Contact Portrait */
  .contact-portrait { width: 140px; height: 140px; }
}

/* ============ ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ============================================
   ZUSATZ-INFOS NACH ZUKUNFT-SEKTION
   24/7-Service-Highlight + 4 Icon-Stichpunkte
   ============================================ */
.info-highlight {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-md);
  color: white;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.info-highlight-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-highlight-icon svg { width: 24px; height: 24px; }
.info-highlight-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.info-highlight-text span { font-size: 0.92rem; opacity: 0.9; }

/* ============================================
   VISION INTRO-BOX mit Zahlen
   ============================================ */
.vision-box {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  border-left: 4px solid var(--red);
  margin-top: 1.5rem;
}
.vision-box-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}
.vision-box-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.vision-box-stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: 0.4rem;
}

/* ============================================
   FEATURE-BAND — Banner mit Icons in Reihe
   ============================================ */
.feature-band {
  background: var(--navy-deep);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.feature-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}
.feature-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: white;
}
.feature-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--red);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; color: white; }
.feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature-text span { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.4; }

/* ============================================
   PPA ONSITE SEKTION (Leistungen-Seite)
   ============================================ */
.ppa-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-dark) 60%, #1a2950 100%);
  color: white;
  overflow: hidden;
}
.ppa-rays {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.ppa-section .container { position: relative; z-index: 1; }
.ppa-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ppa-content { max-width: 620px; }
.ppa-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: rgba(214, 32, 42, 0.18);
  border: 1px solid rgba(214, 32, 42, 0.4);
  color: #ffb3b8;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.ppa-tag svg { width: 14px; height: 14px; }
.ppa-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.25rem;
}
.ppa-highlight { color: var(--red); }
.ppa-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
}
.ppa-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.ppa-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.ppa-feature-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(214, 32, 42, 0.2);
  color: var(--red);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ppa-feature-icon svg { width: 22px; height: 22px; }
.ppa-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}
.ppa-feature span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.ppa-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ppa-cta .btn-outline {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.ppa-cta .btn-outline:hover {
  background: white;
  color: var(--navy-dark);
  border-color: white;
}
.ppa-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* PPA Visual Card rechts */
.ppa-visual { display: flex; justify-content: center; }
.ppa-card {
  background: white;
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border-top: 5px solid var(--red);
  position: relative;
}
.ppa-card-header { text-align: center; padding-bottom: 1.5rem; }
.ppa-card-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--red-soft);
  color: var(--red-dark);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.ppa-card-stat {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ppa-card-label {
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: 0.4rem;
}
.ppa-card-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0 -0.5rem;
}
.ppa-card-rows {
  padding: 1.25rem 0;
  display: grid;
  gap: 0.85rem;
}
.ppa-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}
.ppa-card-row span { color: var(--gray-700); }
.ppa-card-row strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 1rem;
}
.ppa-card-highlight { color: var(--red) !important; }
.ppa-card-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
  font-size: 0.74rem;
  color: var(--gray-500);
  text-align: center;
  font-style: italic;
}

/* PPA-Highlight-Karte in der Services-Grid */
.svc-card-highlight {
  border-color: var(--red) !important;
  position: relative;
  box-shadow: 0 0 0 1px var(--red), var(--shadow-md);
}
.svc-card-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  z-index: 2;
}
.svc-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--red);
  color: white;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  width: max-content;
}

@media (max-width: 1024px) {
  .ppa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ppa-content { max-width: none; }
  .ppa-visual { order: -1; }
  .ppa-card { max-width: 420px; }
}
@media (max-width: 768px) {
  .ppa-section { padding: 4rem 0; }
  .ppa-features { grid-template-columns: 1fr; gap: 1rem; }
  .ppa-cta { flex-direction: column; align-items: stretch; }
  .ppa-cta .btn { width: 100%; justify-content: center; }
  .ppa-card { padding: 1.5rem; }
  .ppa-card-stat { font-size: 2rem; }
}

/* ============================================
   PPA UNTERSEITE — Benefits Grid & Prozess-Liste
   ============================================ */
.ppa-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ppa-benefit {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  transition: all 0.25s;
}
.ppa-benefit:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ppa-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.ppa-benefit-icon svg { width: 26px; height: 26px; }
.ppa-benefit h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.ppa-benefit p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Prozess-Liste */
.ppa-process-list {
  display: grid;
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}
.ppa-process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  align-items: start;
  transition: all 0.2s;
}
.ppa-process-item:hover {
  border-color: var(--red);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.ppa-process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  min-width: 50px;
}
.ppa-process-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.ppa-process-content p {
  color: var(--gray-700);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.ppa-process-time {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ppa-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ppa-benefits-grid { grid-template-columns: 1fr; }
  .ppa-process-item { padding: 1.5rem; grid-template-columns: 1fr; gap: 0.5rem; }
  .ppa-process-num { font-size: 1.3rem; }
}

/* ============================================
   BLOG — Übersicht & Article
   ============================================ */

/* Meta-Zeile (Kategorie, Datum, Lesezeit) */
.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}
.blog-category {
  padding: 0.3rem 0.8rem;
  background: var(--red-soft);
  color: var(--red-dark);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-date::before {
  content: '📅';
  margin-right: 0.35rem;
  opacity: 0.7;
}
.blog-readtime::before {
  content: '⏱';
  margin-right: 0.35rem;
  opacity: 0.7;
}
.page-header .blog-meta { color: rgba(255,255,255,0.85); }
.page-header .blog-category { background: rgba(214, 32, 42, 0.25); color: #ffcdd1; }

/* Featured Article (großer Hero-Artikel oben) */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  color: inherit;
  text-decoration: none;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.blog-featured-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.05); }
.blog-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--red);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-featured-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}
.blog-featured-content p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.blog-read-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s;
  display: inline-flex;
  gap: 0.4rem;
}
.blog-featured:hover .blog-read-link,
.blog-card:hover .blog-read-link { gap: 0.7rem; }

/* Blog-Grid (Karten) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
  margin-bottom: 0.85rem;
}
.blog-card-body p {
  color: var(--gray-700);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Blog-Artikel-Seite */
.blog-article { padding: 4rem 0 6rem; }
.blog-article-img {
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  box-shadow: var(--shadow-md);
}
.blog-article-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.blog-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.07rem;
  line-height: 1.75;
  color: var(--gray-900);
}
.blog-content > p {
  margin-bottom: 1.5rem;
}
.blog-lead {
  font-size: 1.25rem !important;
  line-height: 1.55 !important;
  color: var(--gray-700);
  font-weight: 400;
  margin-bottom: 2.5rem !important;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.blog-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
  margin: 3rem 0 1rem;
  line-height: 1.2;
}
.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.blog-content strong { color: var(--navy-dark); font-weight: 700; }
.blog-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
  padding-left: 0;
}
.blog-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  line-height: 1.65;
}
.blog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
ol.blog-list { counter-reset: blog-counter; }
ol.blog-list li::before {
  background: transparent;
  width: auto;
  height: auto;
  top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  counter-increment: blog-counter;
  content: counter(blog-counter) ".";
}
.blog-callout {
  background: var(--bg-warm);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1rem;
  line-height: 1.65;
}
.blog-callout strong { display: block; margin-bottom: 0.3rem; color: var(--red); font-family: var(--font-display); }

.blog-inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}
.blog-inline-cta h3 {
  font-family: var(--font-display);
  color: white !important;
  font-size: 1.4rem !important;
  margin: 0 0 0.5rem !important;
}
.blog-inline-cta p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.blog-inline-cta .btn-outline {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.2);
}
.blog-inline-cta .btn-outline:hover {
  background: white;
  color: var(--navy-dark);
  border-color: white;
}

@media (max-width: 1024px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 2rem 2rem 2.5rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-img { aspect-ratio: 16/10; }
  .blog-content { font-size: 1rem; }
  .blog-lead { font-size: 1.1rem !important; }
  .blog-content h2 { font-size: 1.4rem; }
  .blog-inline-cta { padding: 1.75rem; }
}

/* ============================================
   PPA VIDEO SECTION — Hochformat-Video Side-by-Side
   ============================================ */
.ppa-video-section {
  padding: 6rem 0;
  background: white;
}
.ppa-video-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
}
.ppa-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 9/16;
  background: var(--navy-deep);
}
.ppa-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Roter Akzent oben rechts */
.ppa-video-wrap::after {
  content: '';
  position: absolute;
  inset: -6px -6px auto auto;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) 0 0;
  z-index: -1;
}
.ppa-video-content { max-width: 580px; }

@media (max-width: 900px) {
  .ppa-video-grid { grid-template-columns: 1fr; gap: 2.5rem; justify-items: center; }
  .ppa-video-wrap { max-width: 320px; width: 100%; }
  .ppa-video-content { max-width: none; text-align: center; }
  .ppa-video-content .zukunft-list li { text-align: left; }
}

/* ============================================
   MOBILE OPTIMIZATIONS — Final Polish
   ============================================ */

/* Touch-Targets allgemein auf Mobile: min. 44x44px nach Apple/Google */
@media (max-width: 768px) {
  /* Alle Links und Buttons mit minimaler Tap-Größe */
  .nav-links.mobile-open > a,
  .footer-col a,
  .topbar a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Buttons leicht größere Padding für besser tippbar */
  .btn { min-height: 48px; padding: 0.95rem 1.5rem; }
  .btn-sm { min-height: 44px; padding: 0.7rem 1.25rem; }

  /* Mobile-Toggle größer für Touch */
  .mobile-toggle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-toggle svg { width: 26px; height: 26px; }

  /* Form-Inputs auf Mobile größer (sonst zoomt iOS rein) */
  input, textarea, select {
    font-size: 16px !important;
    min-height: 48px;
    padding: 0.9rem 1rem;
  }
  textarea { min-height: 120px; }

  /* Hero-Buttons Stack mit voller Breite, gute Tap-Targets */
  .hero-cta { gap: 0.9rem; }

  /* Promobar lesbarer + verbergbar */
  .promobar {
    font-size: 0.78rem;
    padding: 0.55rem 1rem;
    line-height: 1.4;
    text-align: center;
  }
  .promobar a { display: inline; margin-left: 0.3rem; text-decoration: underline; }

  /* Hero-Rating verkleinert auf Mobile */
  .hero-rating {
    padding: 0.55rem 0.75rem;
    top: 0.5rem;
    left: 0.5rem;
  }
  .hero-rating-num { font-size: 1rem; }
  .hero-rating-stars svg { width: 11px; height: 11px; }

  /* Hero-Badges schöner gestapelt */
  .hero-badges {
    margin-top: 1.5rem;
    gap: 0.6rem;
  }
  .hero-badge {
    width: 100%;
    background: white;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
  }
}

/* ============================================
   TABELLEN AUF MOBILE — Card-Layout statt Scroll
   ============================================ */
@media (max-width: 600px) {
  .calc-wrap {
    overflow-x: visible;
    margin: 0 -1rem;
  }
  .calc-table {
    min-width: 0 !important;
    display: block;
  }
  .calc-table thead { display: none; }
  .calc-table tbody { display: block; }
  .calc-table tr {
    display: block;
    background: white;
    border-radius: var(--radius-md);
    margin: 0 1rem 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
  }
  .calc-table tr:hover { background: white; }
  .calc-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
  }
  .calc-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy-dark);
  }
  .calc-table td:last-child { border-bottom: none; }
  /* Pseudo-Header für jede Zelle: Anzeigen, was die Spalte war */
  .calc-table td:not(:first-child)::before {
    content: attr(data-label);
    font-size: 0.72rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: auto;
    font-weight: 500;
  }
}

/* ============================================
   PPA-SEITE MOBILE-FIXES
   ============================================ */
@media (max-width: 768px) {
  /* PPA Section Mobile padding */
  .ppa-section { padding: 4rem 0; }
  .ppa-content h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .ppa-lead { font-size: 1rem; }
  .ppa-feature strong { font-size: 0.95rem; }
  .ppa-feature span { font-size: 0.82rem; }
  .ppa-card { padding: 1.5rem 1.25rem; }
  .ppa-card-stat { font-size: 1.8rem; }

  /* PPA-Benefits-Grid Mobile */
  .ppa-benefits-grid { gap: 0.85rem; }
  .ppa-benefit { padding: 1.5rem 1.25rem; }
  .ppa-benefit h3 { font-size: 1.05rem; }
  .ppa-benefit p { font-size: 0.88rem; }
  .ppa-benefit-icon { width: 44px; height: 44px; }
  .ppa-benefit-icon svg { width: 22px; height: 22px; }
}

/* ============================================
   PAGE HEADER MOBILE
   ============================================ */
@media (max-width: 768px) {
  .page-header {
    padding: 2.5rem 0 3rem;
  }
  .page-header h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.15;
  }
  .breadcrumb { font-size: 0.78rem; flex-wrap: wrap; }
  .breadcrumb svg { width: 12px; height: 12px; }
}

/* ============================================
   BLOG MOBILE
   ============================================ */
@media (max-width: 768px) {
  .blog-featured-content h2 { font-size: 1.3rem; }
  .blog-content { padding: 0 0.25rem; }
  .blog-article { padding: 2.5rem 0 4rem; }
  .blog-article-img { margin-bottom: 2rem; }
  .blog-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
  .blog-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
  .blog-inline-cta h3 { font-size: 1.2rem !important; }
  .blog-callout { padding: 1.25rem; font-size: 0.95rem; }
  .blog-meta { gap: 0.65rem; font-size: 0.78rem; }
  .blog-meta .blog-category { padding: 0.25rem 0.65rem; font-size: 0.72rem; }
}

/* ============================================
   FOOTER MOBILE — kompakter
   ============================================ */
@media (max-width: 600px) {
  footer { padding: 2.5rem 0 1.5rem; }
  .footer-col h4 {
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-col ul li { padding: 0.3rem 0; }
  .footer-contact-item { margin-bottom: 1rem; }
  .footer-socials { gap: 0.6rem; }
  .social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================
   ALLGEMEINE TYPOGRAPHIE-FIXES MOBILE
   ============================================ */
@media (max-width: 480px) {
  body { font-size: 16px; }
  h1, .section-title { word-break: break-word; hyphens: auto; }

  /* Container hat schon padding 1rem, hier nur Hero etwas mehr Luft */
  .hero-content { padding: 0 0.25rem; }

  /* Section-Tags lesbarer */
  .section-tag { font-size: 0.78rem; letter-spacing: 0.08em; }

  /* Containers für lange Texte */
  p { word-wrap: break-word; }
}

/* ============================================
   PROMO-BAR komplett verbergen auf XS
   ============================================ */
@media (max-width: 400px) {
  .promobar { padding: 0.45rem 0.75rem; font-size: 0.72rem; }
}

/* ============================================
   PERFORMANCE: Pictures lazy-loading-Hint
   ============================================ */
img[loading="lazy"] { background: var(--gray-100); }

/* Touch-Action: Scrolling smoothe */
html { scroll-behavior: smooth; }

/* Focus-Indikatoren für Tastatur-Navigation (Accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ============================================ */
.legal-section {
  padding: 4rem 0 6rem;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-900);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.2;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin: 2rem 0 0.5rem;
  letter-spacing: -0.01em;
}
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 0; list-style: none; margin: 1rem 0; }
.legal-content ul li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  line-height: 1.6;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.legal-content a { color: var(--red-dark); text-decoration: underline; word-break: break-word; }
.legal-content a:hover { color: var(--red); }
.legal-content strong { color: var(--navy-dark); font-weight: 700; }
.legal-meta {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 0.9rem;
  font-style: italic;
}

/* AGB Download-Karte */
.agb-download-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-warm);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  flex-wrap: wrap;
}
.agb-download-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agb-download-icon svg { width: 28px; height: 28px; }
.agb-download-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 200px;
}
.agb-download-info strong { color: var(--navy-dark); font-size: 1rem; }
.agb-download-info span { color: var(--gray-500); font-size: 0.85rem; }

@media (max-width: 600px) {
  .legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.85rem; }
  .legal-content h3 { font-size: 1.05rem; }
  .agb-download-card { padding: 1.25rem; }
  .agb-download-card .btn { width: 100%; text-align: center; }
}

/* ============================================
   REVIEWS — Echte Bewertung + Trust-Karte
   ============================================ */
.reviews-grid-real {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}
.review-card-featured {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative;
}
.review-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(214, 32, 42, 0.03) 100%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.review-avatar-google {
  width: 48px !important;
  height: 48px !important;
  background: white !important;
  border: 1px solid var(--gray-200);
  padding: 6px;
  color: white;
}
.review-avatar-google svg { width: 100%; height: 100%; }
.review-source {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.reviews-trust-card {
  background: var(--navy);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.reviews-trust-card h3 {
  font-family: var(--font-display);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}
.reviews-trust-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.reviews-trust-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.reviews-trust-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.reviews-trust-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(2px);
}

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

/* ============================================
   COOKIE-HINWEIS — dezent unten rechts
   ============================================ */
.cookie-notice {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  font-size: 0.9rem;
  line-height: 1.5;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cookie-notice.show {
  transform: translateY(0);
}
.cookie-notice-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.cookie-notice-header svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex-shrink: 0;
}
.cookie-notice-body {
  color: var(--gray-700);
  font-size: 0.85rem;
  line-height: 1.55;
}
.cookie-notice-body a {
  color: var(--red-dark);
  text-decoration: underline;
}
.cookie-notice-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.cookie-notice-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.cookie-notice-btn-primary {
  background: var(--red);
  color: white;
}
.cookie-notice-btn-primary:hover { background: var(--red-dark); }
.cookie-notice-btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}
.cookie-notice-btn-secondary:hover {
  background: var(--gray-50);
  color: var(--navy-dark);
}

@media (max-width: 600px) {
  .cookie-notice {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    padding: 1rem 1.25rem;
  }
  .cookie-notice-body { font-size: 0.82rem; }
}

/* ============================================
   STICKY MOBILE CTA — fix unten auf Mobile
   ============================================ */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--navy);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    border-top: 2px solid var(--red);
  }
  .mobile-sticky-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.7rem 0.3rem 0.85rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.15;
    transition: background 0.2s;
    min-height: 60px;
  }
  .mobile-sticky-cta a:active { background: var(--navy-dark); }
  .mobile-sticky-cta a.primary {
    background: var(--red);
  }
  .mobile-sticky-cta a.primary:active { background: var(--red-dark); }
  .mobile-sticky-cta svg {
    width: 22px;
    height: 22px;
    margin-bottom: 0.1rem;
  }

  /* Body-Padding unten, damit Inhalt nicht von CTA verdeckt wird */
  body { padding-bottom: 66px; }

  /* Cookie-Notice darüber, damit nicht überlappt */
  .cookie-notice { bottom: 76px; }
}

/* ============================================
   PPA SCHNELL-RECHNER
   ============================================ */
.ppa-calculator-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.ppa-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.ppa-calc-inputs {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ppa-calc-input-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.ppa-calc-slider-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ppa-calc-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.ppa-calc-help {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.45rem;
  line-height: 1.5;
}

/* Slider Styling */
.ppa-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--red) 0%, var(--red) 50%, var(--gray-200) 50%, var(--gray-200) 100%);
  outline: none;
  cursor: pointer;
}
.ppa-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(214, 32, 42, 0.4);
  transition: transform 0.15s;
}
.ppa-calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.ppa-calc-slider::-webkit-slider-thumb:active { transform: scale(1.2); }
.ppa-calc-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(214, 32, 42, 0.4);
}

.ppa-calc-results {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.ppa-calc-results::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ppa-calc-headline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}
.ppa-calc-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ppa-calc-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.ppa-calc-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ppa-calc-stat-big .ppa-calc-stat-num {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: white;
  background: linear-gradient(135deg, #fff 0%, #ffcdd1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ppa-calc-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ppa-calc-stat-row .ppa-calc-stat-num { font-size: 1.5rem; }

.ppa-calc-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .ppa-calc { grid-template-columns: 1fr; }
  .ppa-calc-inputs, .ppa-calc-results { padding: 1.75rem; }
  .ppa-calc-stat-row { gap: 1rem; }
}
@media (max-width: 480px) {
  .ppa-calc-stat-row { grid-template-columns: 1fr; }
  .ppa-calculator-section { padding: 4rem 0; }
}

/* ============================================
   AUSZEICHNUNGEN / ZERTIFIZIERUNGEN
   ============================================ */
.awards-section {
  padding: 5rem 0;
  background: white;
}

/* ============================================
   AWARDS / AUSZEICHNUNGEN — siehe Definition weiter unten
   ============================================ */
.awards-disclaimer {
  text-align: center;
  color: var(--gray-700);
  font-size: 0.92rem;
  margin-top: 1.5rem;
}
.awards-disclaimer a { color: var(--red-dark); text-decoration: underline; }

/* ============================================
   REFERENZ-KARTEN — Stats-Zeile
   ============================================ */
.ref-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.ref-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}
.ref-stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ref-stat span {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 480px) {
  .ref-stat strong { font-size: 0.9rem; }
  .ref-stat span { font-size: 0.65rem; }
}

/* ============================================
   PPA-TEASER auf Startseite
   ============================================ */
.ppa-teaser-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.ppa-teaser-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ppa-teaser {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  color: white;
}
.ppa-teaser-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: white;
  margin: 0.75rem 0 1.25rem;
}
.red-text-light { color: #ff8a8e; }
.ppa-teaser-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 580px;
}
.ppa-teaser-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ppa-teaser-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1rem;
}
.ppa-teaser-list svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  background: rgba(214, 32, 42, 0.18);
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}
.ppa-teaser-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-outline-light:hover {
  background: white;
  color: var(--navy-dark);
  border-color: white;
}

.ppa-teaser-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
}
.ppa-teaser-big {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  color: white;
}
.ppa-teaser-big-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #ff8a8e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ppa-teaser-big-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.ppa-teaser-vs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.ppa-teaser-strike {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ppa-teaser-strike span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}
.ppa-teaser-strike small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .ppa-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .ppa-teaser-stats { padding: 2rem 1.5rem; }
}
@media (max-width: 768px) {
  .ppa-teaser-section { padding: 4rem 0; }
  .ppa-teaser-list li { font-size: 0.95rem; }
}

/* ============================================
   WHATSAPP / KONTAKT FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 1.5rem;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem 0.8rem 1rem;
  background: #25D366;
  color: white;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  background: #1ebe5d;
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: white;
  flex-shrink: 0;
}
.whatsapp-float-text {
  display: none;
}
@media (min-width: 1024px) {
  .whatsapp-float-text {
    display: inline;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 1rem;
    padding: 0.75rem;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ============================================
   QUICK-CHECK (Microconversion)
   ============================================ */
.quickcheck-section {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.quickcheck-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quickcheck-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy-dark);
  margin: 0.75rem 0 1.25rem;
}
.quickcheck-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.quickcheck-box {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.qc-step {
  display: none;
}
.qc-step.active {
  display: block;
  animation: qcFadeIn 0.3s ease-out;
}
@keyframes qcFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.qc-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.qc-progress span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-200);
  transition: background 0.3s;
}
/* Active step und alles davor wird rot */
.qc-step[data-step="1"] .qc-progress span:nth-child(1) { background: var(--red); }
.qc-step[data-step="2"] .qc-progress span:nth-child(1),
.qc-step[data-step="2"] .qc-progress span:nth-child(2) { background: var(--red); }
.qc-step[data-step="3"] .qc-progress span { background: var(--red); }

.qc-question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.qc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.qc-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-warm);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: all 0.18s;
  color: var(--navy-dark);
}
.qc-option:hover {
  border-color: var(--red);
  background: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.qc-option svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}
.qc-emoji { font-size: 1.4rem; line-height: 1; }
.qc-option strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
}
.qc-option span {
  font-size: 0.9rem;
  font-weight: 500;
}
.qc-option strong + span {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* Result */
.qc-step[data-step="result"] {
  text-align: center;
  padding: 1rem 0;
}
.qc-result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.qc-result-icon.warning { background: #f0a500; }
.qc-result-icon.info { background: var(--navy); }
.qc-result-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.qc-result-text {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.qc-result-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .quickcheck-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .quickcheck-box { padding: 1.75rem; }
}
@media (max-width: 600px) {
  .quickcheck-section { padding: 4rem 0; }
  .qc-options { grid-template-columns: 1fr; }
  .qc-question { font-size: 1.15rem; }
}

/* ============================================
   AWARDS / AUSZEICHNUNGEN — 3-Spalten-Grid
   ============================================ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.award-card {
  background: white;
  padding: 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: all 0.2s;
}
.award-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-soft);
}
.award-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-icon svg { width: 100%; height: 100%; }
.award-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.award-content strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 0.98rem;
  line-height: 1.25;
}
.award-content span {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .awards-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .award-card { padding: 1.1rem 1.25rem; }
}

/* ============================================
   LOKALE LANDINGPAGES (Regionen)
   ============================================ */
.local-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  padding: 4rem 0 5rem;
}
.local-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.local-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.local-content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.local-content strong { color: var(--navy-dark); }
.local-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.local-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.55;
  color: var(--gray-700);
}
.local-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}
.local-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.local-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.local-card {
  background: var(--bg-warm);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.local-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 0.75rem;
}
.local-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.local-card-dark {
  background: var(--navy);
  color: white;
  border-color: transparent;
}
.local-card-dark h3, .local-card-dark p { color: white; }
.local-card-dark p { color: rgba(255, 255, 255, 0.8); }
.local-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: var(--navy-dark);
  font-size: 0.92rem;
}
.local-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.local-contact-item a {
  color: var(--navy-dark);
  text-decoration: none;
  font-weight: 600;
}
.local-contact-item a:hover { color: var(--red); }
.local-region-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.local-region-list a {
  color: var(--navy-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.local-region-list a::before { content: '→'; color: var(--red); }
.local-region-list a:hover { color: var(--red); }

@media (max-width: 900px) {
  .local-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON (Desktop+Tablet)
   Auf Mobile dezent neben Sticky-CTA
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 997;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: whatsapp-pulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: whatsapp-ring 2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }
}
@keyframes whatsapp-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip neben Button */
.whatsapp-float-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: white;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float-label::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; }

/* Auf Mobile: kleiner und nach oben über die CTA-Leiste */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 1rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float-label { display: none; }
  /* Cookie-Notice noch weiter hoch wegen WhatsApp */
  .cookie-notice { bottom: 140px; }
}

/* Bald verfügbar Blog-Cards */
.blog-card-coming {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px dashed var(--gray-300);
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
}
.blog-card-coming:hover { transform: none; box-shadow: none; }
.blog-card-coming-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gray-700);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.blog-card-coming .blog-card-img { filter: grayscale(0.4); }
.blog-card-coming .blog-read-link { display: none; }

/* ============================================
   QUICK LEAD — 3-Schritt-Funnel
   ============================================ */
.quicklead {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #fff 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem 3rem 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.quicklead-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.quicklead-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
  line-height: 1.15;
  margin: 0.75rem 0 1rem;
}
.quicklead-header p {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* Steps */
.quicklead-step {
  display: none;
  animation: fadeInUp 0.4s ease-out;
}
.quicklead-step.quicklead-step-active {
  display: block;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.quicklead-step-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.quicklead-step-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

/* Options (Schritt 1) */
.quicklead-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.quicklead-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.quicklead-option:hover {
  border-color: var(--red-soft);
  transform: translateY(-2px);
}
.quicklead-option:has(input:checked) {
  border-color: var(--red);
  background: var(--red-soft);
}
.quicklead-option input { display: none; }
.quicklead-option-icon {
  font-size: 2rem;
  line-height: 1;
}
.quicklead-option-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-dark);
  line-height: 1.3;
}

/* Inputs (Schritt 2 + 3) */
.quicklead-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quicklead-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1.5;
}
.quicklead-checkbox input { margin-top: 3px; flex-shrink: 0; }
.quicklead-checkbox a { color: var(--red-dark); text-decoration: underline; }

/* Actions */
.quicklead-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}
.quicklead-progress {
  display: flex;
  gap: 0.5rem;
}
.quicklead-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all 0.3s;
}
.quicklead-progress-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

@media (max-width: 700px) {
  .quicklead { padding: 2rem 1.5rem; }
  .quicklead-options { grid-template-columns: 1fr; }
  .quicklead-option { flex-direction: row; padding: 1rem 1.25rem; }
  .quicklead-option-icon { font-size: 1.5rem; }
  .quicklead-input-row { grid-template-columns: 1fr; }
  .quicklead-actions { flex-direction: column-reverse; }
  .quicklead-actions .btn { width: 100%; justify-content: center; }
  .quicklead-progress { order: -1; }
}

/* ============================================
   VORHER-NACHHER-SLIDER
   ============================================ */
.ba-slider-section {
  padding: 5rem 0;
}
.ba-slider {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 2rem;
  aspect-ratio: 2/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
}
.ba-slider-before,
.ba-slider-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-slider-before svg,
.ba-slider-after svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ba-slider-after {
  clip-path: inset(0 0 0 50%);
  transition: none;
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  z-index: 3;
}
.ba-label-left { left: 1rem; }
.ba-label-right { right: 1rem; }

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0;
}
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 100%;
  cursor: ew-resize;
}
.ba-range::-moz-range-thumb {
  width: 50px;
  height: 100%;
  cursor: ew-resize;
  border: none;
  background: transparent;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.ba-handle svg {
  position: relative;
  width: 24px;
  height: 24px;
  color: var(--navy-dark);
  display: block;
  margin: calc(50% - 12px) auto 0;
  z-index: 1;
}

.ba-result-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.ba-result-item {
  background: var(--bg-warm);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.ba-result-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 600px) {
  .ba-result-info { grid-template-columns: 1fr; gap: 0.6rem; }
  .ba-result-item { padding: 0.85rem; }
  .ba-result-item strong { font-size: 1.15rem; }
  .ba-slider { aspect-ratio: 4/3; }
  .ba-label { font-size: 0.72rem; padding: 0.35rem 0.75rem; }
}

/* ============================================
   REGIONEN-LANDINGPAGES
   ============================================ */
.region-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.region-intro-lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.region-intro-body {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.region-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.region-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--navy-dark);
}
.region-features-icon {
  width: 28px;
  height: 28px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.region-features-icon svg { width: 16px; height: 16px; }

.region-stats-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.region-stat-block {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}
.region-stat-block:last-of-type { border-bottom: none; }
.region-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.region-stat-label {
  font-size: 0.9rem;
  color: var(--gray-700);
}
.region-stat-quote {
  background: var(--bg-warm);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.55;
  border-left: 3px solid var(--red);
  margin: 0;
}

@media (max-width: 900px) {
  .region-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .region-stats-card { padding: 1.5rem; }
}

/* ============================================
   ★★★ MOBILE LAYOUT FIXES (v4.1) ★★★
   Behebt diverse Layout-Probleme im Mobile-View
   ============================================ */

/* 1. Globaler Schutz gegen horizontales Scrollen */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
* {
  max-width: 100%;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* 2. Process-Steps Text-Beschneidung beheben */
@media (max-width: 768px) {
  .process-step p {
    max-width: 100% !important;  /* statt 240px */
    padding: 0 0.5rem;
  }
  .process-timeline {
    padding: 0 0.5rem;
  }
}

/* 3. Hero-Badges auf Mobile sauber stapeln (3 Badges full-width) */
@media (max-width: 768px) {
  .hero-badges {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    width: 100%;
  }
  .hero-badge {
    width: 100% !important;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .hero-badge-text {
    flex: 1;
    min-width: 0;
  }
  .hero-badge-text strong {
    font-size: 1rem;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-badge-text span {
    font-size: 0.8rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 4. Feature-Band: Garantiert einspaltig auf Mobile, kein Scroll */
@media (max-width: 768px) {
  .feature-band-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .feature-item {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .feature-text {
    flex: 1;
    min-width: 0;
  }
  .feature-text strong {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .feature-text span {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

/* 5. Hero-Visual-Höhe auf Mobile anpassen */
@media (max-width: 768px) {
  .hero-illu {
    height: auto;
    min-height: 0;
    display: none;  /* Hero-Illustration auf Mobile ausblenden */
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    min-height: 0;
    gap: 0;
  }
  .hero {
    padding: 2rem 0 3rem;
  }
  .hero-content {
    max-width: 100%;
  }
}

/* 6. Container-Padding auf XS-Mobile leicht anpassen */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* 7. Lange Wörter, die brechen sollten (Buttons & Text) */
@media (max-width: 600px) {
  h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: keep-all;
  }
}

/* 8. Quick-Lead-Funnel Mobile: Buttons sollten passen */
@media (max-width: 600px) {
  .quicklead-actions {
    gap: 0.6rem;
  }
  .quicklead-actions .btn {
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
  }
}

/* 9. Tables in Legal-Pages keine Probleme */
.legal-content table, .legal-content pre {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* 10. PPA-Calculator Sliders nicht überlaufen lassen */
@media (max-width: 600px) {
  .ppa-calc-inputs, .ppa-calc-results {
    padding: 1.5rem 1.25rem;
  }
  .ppa-calc-slider {
    width: 100%;
    box-sizing: border-box;
  }
}

/* 11. Spezielle Abdichtung gegen Footer-Spalten-Überlauf */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 12. Mobile Sticky CTA: WhatsApp Button positions nicht überlagern */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 78px !important;
    right: 0.85rem !important;
    width: 50px !important;
    height: 50px !important;
  }
  .whatsapp-float svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* ============================================
   RELATED ARTICLES (Blog-Cross-Linking)
   ============================================ */
.related-articles {
  margin: 4rem 0 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}
.related-articles-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.5rem 1.4rem;
  background: var(--bg-warm);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
}
.related-card:hover {
  background: white;
  border-color: var(--red-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.related-card-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
}
.related-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}
.related-card p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.related-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 0.4rem;
}
.related-card:hover .related-card-link {
  color: var(--red-dark);
}

@media (max-width: 900px) {
  .related-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .related-articles-grid { grid-template-columns: 1fr; gap: 1rem; }
  .related-articles { margin: 3rem 0 1rem; padding-top: 2rem; }
}

/* ============================================
   REFERENZEN — AGGREGAT-STATS
   ============================================ */
.ref-aggregate {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.ref-aggregate::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.ref-aggregate-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.ref-aggregate-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ref-aggregate-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #ffcdd1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ref-aggregate-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .ref-aggregate-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (max-width: 480px) {
  .ref-aggregate { padding: 2.5rem 0; }
  .ref-aggregate-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
  .ref-aggregate-num { font-size: 1.7rem; }
  .ref-aggregate-label { font-size: 0.8rem; }
}

/* ============================================
   ★★★ PRINT STYLESHEET ★★★
   Optimiert für A4-Druck und PDF-Export
   ============================================ */
@media print {
  /* ============ Reset für Druck ============ */
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-print-color-adjust: economy;
    print-color-adjust: economy;
  }

  /* Body: Weiße Seite, schwarze Schrift, kein Ballast */
  html, body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
    line-height: 1.5;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Container: Volle Breite, keine Begrenzung */
  .container,
  .nav-inner,
  .topbar-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ============ Elemente, die NICHT gedruckt werden ============ */
  .promobar,
  .topbar,
  .nav,
  .mobile-toggle,
  .mobile-sticky-cta,
  .whatsapp-float,
  .cookie-notice,
  .nav-links,
  .btn,
  button,
  video,
  .hero-illu,
  .hero-rating,
  .ba-slider-section,
  .ppa-calculator-section,
  .ppa-calc,
  .quicklead,
  .reviews-trust-card,
  .footer-socials,
  .social-link,
  .footer-bottom,
  .cta-banner,
  .related-articles,
  .blog-inline-cta,
  iframe,
  .form-card,
  #contact-form,
  #quicklead-form {
    display: none !important;
  }

  /* ============ Druck-Header (oben auf jeder Seite) ============ */
  body::before {
    content: "SOMV Project Consulting GmbH · Land-Au 8, 94469 Deggendorf · Tel. +49 991 38314070 · info@somv-project.de";
    display: block;
    width: 100%;
    padding: 8mm 10mm 4mm;
    border-bottom: 1.5pt solid #000;
    font-size: 9pt;
    font-weight: 600;
    margin-bottom: 6mm;
    text-align: center;
  }

  /* ============ Hauptinhalt ============ */
  main,
  section,
  article,
  .page-header,
  .blog-article,
  .legal-section {
    padding: 4mm 10mm !important;
    margin: 0 !important;
    background: none !important;
    /* page-break-inside: avoid; — NICHT auf große Container, das verschluckt Inhalt */
  }

  /* Erste H1 = Seitentitel groß */
  h1, .page-header h1 {
    font-size: 22pt !important;
    margin: 0 0 4mm !important;
    page-break-after: avoid;
    color: #000 !important;
    font-weight: 700;
  }
  h1 .red-text,
  h1 span {
    color: #000 !important;
  }

  /* Überschriften: nie alleine, immer mit Folgeinhalt */
  h2, h3, h4 {
    page-break-after: avoid;
    page-break-inside: avoid;
    color: #000 !important;
    margin-top: 8mm !important;
    margin-bottom: 3mm !important;
  }
  h2 {
    font-size: 14pt !important;
    border-bottom: 0.5pt solid #999;
    padding-bottom: 2mm;
  }
  h3 { font-size: 12pt !important; }
  h4 { font-size: 11pt !important; }

  /* ============ Listen, Absätze, Bilder ============ */
  p, li {
    orphans: 3;
    widows: 3;
    page-break-inside: avoid;
    font-size: 11pt;
    line-height: 1.5;
  }
  ul, ol {
    page-break-inside: avoid;
    margin: 3mm 0 3mm 6mm;
  }
  li { margin-bottom: 1mm; }

  /* Bilder kleiner halten + nicht über Seitenrand */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  /* Hero-Inhalt komprimiert */
  .hero {
    padding: 0 !important;
    background: none !important;
    min-height: 0 !important;
  }
  .hero-inner {
    display: block !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
  .hero-content {
    max-width: 100% !important;
  }
  .hero-sub {
    font-size: 11pt !important;
    margin-bottom: 4mm !important;
  }
  .hero-badges {
    display: none !important;  /* die werden ohne Animation hässlich */
  }
  .hero-cta { display: none !important; }

  /* Page-Header */
  .page-header {
    padding: 4mm 10mm !important;
  }
  .page-header-lead {
    font-size: 11pt !important;
  }
  .breadcrumb { display: none !important; }

  /* ============ Tabellen ============ */
  table {
    border-collapse: collapse;
    width: 100% !important;
    page-break-inside: auto;
    margin: 4mm 0;
  }
  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  thead { display: table-header-group; }
  tbody { display: table-row-group; }
  th, td {
    border: 0.5pt solid #999 !important;
    padding: 2mm 3mm !important;
    text-align: left;
    font-size: 10pt;
  }
  th {
    background: #f0f0f0 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    font-weight: 700;
  }

  /* ============ Links: URL hinter dem Linktext zeigen ============ */
  a {
    color: #000 !important;
    text-decoration: underline;
  }
  /* URLs hinter externen Links anzeigen */
  a[href^="http"]:not([href*="somv-project.de"])::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
    word-break: break-all;
  }
  /* E-Mail und Telefon expandieren */
  a[href^="mailto:"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
  }
  a[href^="tel:"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555 !important;
  }
  /* Logos und Bilder-Links nicht expandieren */
  a.nav-logo::after,
  .related-card::after,
  .blog-card::after {
    content: none !important;
  }

  /* ============ Counter: statisch zeigen (Animation läuft nicht) ============ */
  [data-counter] {
    /* Falls Animation nicht gelaufen ist, fallback auf Original-Text */
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    background: none !important;
  }

  /* Stat-Blocks bei Druck einfach hintereinander */
  .stats,
  .ref-aggregate-grid,
  .feature-band-grid,
  .blog-grid,
  .ref-grid,
  .ref-stats,
  .vision-box-stats {
    display: block !important;
    page-break-inside: avoid;
  }
  .stat-block,
  .ref-aggregate-stat,
  .feature-item,
  .vision-box-stat,
  .ref-card {
    padding: 2mm 0 !important;
    margin: 0 0 3mm !important;
    border: none !important;
    background: none !important;
    page-break-inside: avoid;
  }
  .stat-num,
  .ref-aggregate-num {
    font-size: 13pt !important;
    font-weight: 700;
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
    margin-bottom: 1mm;
  }
  .stat-label,
  .ref-aggregate-label {
    font-size: 10pt !important;
    color: #555 !important;
    margin-bottom: 1mm;
  }
  .stat-desc {
    font-size: 9pt !important;
    color: #555 !important;
  }

  /* Referenz-Karten kompakt */
  .ref-card {
    border-bottom: 0.5pt solid #ccc !important;
    padding-bottom: 4mm !important;
  }
  .ref-img,
  .blog-card-img,
  .blog-featured-img {
    display: none !important;
  }

  /* ============ Footer ============ */
  footer {
    border-top: 1pt solid #999;
    padding: 4mm 10mm !important;
    margin-top: 8mm;
    background: none !important;
    color: #000 !important;
    page-break-before: avoid;
  }
  .footer-grid {
    display: block !important;
  }
  .footer-col {
    margin-bottom: 4mm;
  }
  .footer-col h4 {
    color: #000 !important;
    border-bottom: 0.5pt solid #999;
    padding-bottom: 1mm;
    margin-bottom: 2mm;
  }
  .footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer-col ul li {
    display: inline;
    margin-right: 4mm;
    font-size: 9pt;
  }
  .footer-col ul li::after {
    content: " · ";
    color: #999;
  }
  .footer-col ul li:last-child::after { content: ""; }
  .footer-about {
    font-size: 9pt;
    color: #555 !important;
  }
  .footer-contact-item {
    font-size: 10pt;
    margin-bottom: 2mm;
  }
  .footer-contact-item svg { display: none; }

  /* ============ Legal-Pages: optimiert für Druck ============ */
  .legal-content {
    max-width: 100% !important;
    font-size: 10.5pt !important;
    line-height: 1.55 !important;
  }
  .legal-content h2 {
    font-size: 13pt !important;
    margin-top: 6mm !important;
    border-bottom: 0.5pt solid #999;
  }
  .legal-content h3 {
    font-size: 11pt !important;
    margin-top: 4mm !important;
  }
  .legal-content p {
    margin-bottom: 2mm;
  }
  .legal-content ul li {
    padding-left: 4mm !important;
  }
  .legal-content ul li::before {
    background: #000 !important;
  }

  /* AGB-Download-Karte: einfacher Hinweis statt Button */
  .agb-download-card {
    border: 0.5pt solid #999 !important;
    padding: 3mm !important;
    margin: 3mm 0 !important;
  }
  .agb-download-icon { display: none !important; }
  .agb-download-info strong { font-size: 10pt !important; }

  /* ============ Blog-Artikel im Druck ============ */
  .blog-lead {
    font-size: 12pt !important;
    font-style: italic;
    margin-bottom: 4mm !important;
    padding: 3mm;
    border-left: 2pt solid #000;
  }
  .blog-content {
    max-width: 100% !important;
  }
  .blog-meta {
    font-size: 9pt;
    color: #555 !important;
    margin-bottom: 3mm;
  }
  .blog-category {
    border: 0.5pt solid #999;
    padding: 0.5mm 2mm;
    margin-right: 2mm;
  }
  .blog-callout {
    border: 0.5pt solid #000 !important;
    padding: 3mm !important;
    margin: 4mm 0 !important;
    font-size: 10.5pt;
  }
  .blog-list {
    margin: 3mm 0 3mm 6mm !important;
  }
  .blog-list li {
    padding: 0 !important;
  }
  .blog-list li::before {
    display: none !important;
  }

  /* ============ FAQ Print: alle Antworten ausklappen ============ */
  .faq-item {
    page-break-inside: avoid;
    margin-bottom: 3mm !important;
    padding: 2mm 0 !important;
    border-bottom: 0.3pt solid #ccc !important;
  }
  .faq-question {
    font-weight: 700;
    font-size: 11pt !important;
    padding: 1mm 0 !important;
    background: none !important;
    cursor: default;
  }
  .faq-toggle { display: none !important; }
  .faq-answer {
    max-height: none !important;
    display: block !important;
    padding: 1mm 0 !important;
    font-size: 10.5pt;
  }
  .faq-answer p { margin-bottom: 1mm; }

  /* ============ Regionen-Seiten ============ */
  .region-intro-grid {
    display: block !important;
  }
  .region-stats-card {
    border: 0.5pt solid #999 !important;
    padding: 3mm !important;
    margin-top: 4mm;
  }
  .region-features li {
    padding-left: 4mm;
  }
  .region-features-icon { display: none !important; }

  /* ============ Awards-Sektion bei Druck einfacher ============ */
  .awards-grid {
    display: block !important;
  }
  .award-card {
    border: none !important;
    border-bottom: 0.3pt solid #ccc !important;
    padding: 2mm 0 !important;
    margin: 0 !important;
  }
  .award-icon { display: none !important; }

  /* Reviews-Sektion bei Druck */
  .reviews-grid-real {
    display: block !important;
  }
  .review-card-featured {
    border: 0.5pt solid #999 !important;
    padding: 3mm !important;
    margin: 3mm 0;
  }
  .review-stars svg {
    width: 10pt;
    height: 10pt;
  }

  /* ============ Seitenränder ============ */
  @page {
    size: A4 portrait;
    margin: 12mm 0;
  }
  @page :first {
    margin-top: 8mm;
  }
}

/* ============================================
   Print-Button auf Legal-Pages
   ============================================ */
.print-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-warm);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin: 1.5rem 0 2.5rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  flex-wrap: wrap;
}
.print-bar-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.print-bar-info svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 0.55rem 1rem;
  color: var(--navy-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.print-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.print-btn svg {
  width: 16px;
  height: 16px;
}

@media print {
  .print-bar { display: none !important; }
}

@media (max-width: 600px) {
  .print-bar { font-size: 0.82rem; padding: 0.85rem 1rem; }
}

/* ============================================
   NEWSLETTER-FORMULAR
   ============================================ */
.newsletter-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  color: white;
  padding: 3rem 3rem 2.5rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214, 32, 42, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.newsletter-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--red);
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(214, 32, 42, 0.35);
}
.newsletter-icon svg { width: 28px; height: 28px; }
.newsletter-text { flex: 1; min-width: 0; }
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 580px;
}

.newsletter-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-form-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.2s;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--red);
}
.newsletter-btn {
  padding: 1rem 1.75rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.newsletter-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.newsletter-consent a {
  color: white;
  text-decoration: underline;
}
.newsletter-consent a:hover {
  color: #ffcdd1;
}

.newsletter-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}
.newsletter-status.success {
  background: rgba(40, 167, 69, 0.15);
  color: #b4f0c2;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.newsletter-status.error {
  background: rgba(220, 53, 69, 0.15);
  color: #ffc1c8;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

@media (max-width: 700px) {
  .newsletter-box { padding: 2rem 1.5rem; }
  .newsletter-content { flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
  .newsletter-icon { width: 48px; height: 48px; }
  .newsletter-icon svg { width: 24px; height: 24px; }
  .newsletter-form-row { flex-direction: column; gap: 0.6rem; }
  .newsletter-btn { width: 100%; padding: 0.95rem; }
  .newsletter-input { padding: 0.95rem 1.1rem; }
}

/* ============================================
   SKIP-LINK (Accessibility)
   "Zum Hauptinhalt springen" für Screen-Reader/Keyboard-User
   ============================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy-dark);
  color: white;
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

@media print {
  .skip-link { display: none !important; }
}
