/* ============================================================
   style.css — waermepumpe-verkauf.de
   Modern Bold Design — thermondo inspired
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── CSS Variablen ─────────────────────────────────────────── */
:root {
  --primary:       #0c680c;
  --primary-dark:  #095209;
  --primary-light: #1a8a1a;
  --primary-pale:  #f0f7f0;
  --dark:          #111827;
  --dark-2:        #1F2937;
  --gray-700:      #374151;
  --gray-500:      #6B7280;
  --gray-300:      #D1D5DB;
  --gray-200:      #E5E7EB;
  --gray-100:      #F3F4F6;
  --gray-50:       #F9FAFB;
  --white:         #FFFFFF;
  --border:        #E5E7EB;
  --success:       #16A34A;
  --success-light: #DCFCE7;
  --error:         #DC2626;
  --amber:         #F59E0B;

  /* Legacy aliases (für andere Seiten) */
  --forest:      #111827;
  --sage:        #0c680c;
  --sage-light:  #1a8a1a;
  --mint:        #FED7AA;
  --mint-pale:   #f0f7f0;
  --cream:       #F9FAFB;
  --warm-white:  #F3F4F6;
  --linen:       #F3F4F6;
  --sand:        #E5E7EB;
  --bark:        #6B7280;
  --charcoal:    #111827;
  --slate:       #6B7280;
  --muted:       #9CA3AF;
  --border-col:  #E5E7EB;
  --amber-light: #FFF7ED;

  --f-display: 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  --container:   1200px;
  --nav-h:       72px;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-pill: 999px;
  --ease:        0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--primary-dark); }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--dark); font-family: var(--f-display); line-height: 1.15; }
h1 { font-size: clamp(32px, 5.5vw, 56px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 3vw, 26px); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 700; }
p  { color: var(--gray-500); line-height: 1.7; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.overline {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.mono { font-family: var(--f-mono); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  transition: all var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 0 var(--primary-dark);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 #a33200;
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 1px 0 var(--primary-dark); }

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
  padding: 12px 26px;
}
.btn-secondary:hover {
  border-color: var(--dark);
  color: var(--dark);
  background: var(--gray-50);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--gray-50);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 26px;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-hero {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: var(--radius);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--ease);
}
.card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img, .nav-logo svg { height: 34px; width: auto; }
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--ease);
  text-decoration: none;
}
.nav-links a:hover { color: var(--dark); background: var(--gray-100); }
.nav-links a.active { color: var(--primary); }

/* ── Nav Dropdown ────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-caret {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
/* küçük ok yukarı */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--dark);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.15s ease;
  background: none !important;
}
.nav-dropdown-item:hover { background: var(--gray-50) !important; }
.nav-dropdown-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-item span:not(.nav-dropdown-icon) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-dropdown-item strong {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}
.nav-dropdown-item small {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}
.nav-dropdown-cta {
  background: var(--primary-pale) !important;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary) !important;
  border-radius: 10px;
  padding: 12px;
}
.nav-dropdown-cta:hover { background: var(--primary) !important; color: white !important; }
.nav-dropdown-cta span { color: inherit; font-weight: 700; }

/* ── Mobile Nav Group ─────────────────────────────── */
.mobile-nav-group {
  border-left: 2px solid var(--primary-pale);
  padding-left: 12px;
  margin: 4px 0;
}
.mobile-nav-group-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding: 8px 0 4px;
}
.mobile-nav-sub {
  font-size: 14px !important;
  color: var(--gray-500) !important;
  padding: 8px 0 !important;
}
.mobile-nav-sub:hover { color: var(--primary) !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-phone:hover { color: var(--primary); background: var(--primary-pale); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--ease);
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--ease);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
  border: none;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
  text-decoration: none;
}
.mobile-nav-links a:hover { color: var(--primary); }

/* ── Hero — Vollbild-Hintergrundfoto ───────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* Hintergrundfoto-Ebene (var(--hero-bg) per inline style gesetzt) */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-color: var(--dark);
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
  z-index: 0;
}
.hero:hover .hero-bg-layer { transform: scale(1); }

/* Dunkles Overlay für Lesbarkeit */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,14,20,0.92) 0%,
    rgba(10,14,20,0.75) 45%,
    rgba(10,14,20,0.45) 100%
  );
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { padding: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12,104,12,0.15);
  border: 1px solid rgba(12,104,12,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #4aaa4a;
  margin-bottom: 24px;
}
.hero-badge svg { color: #4aaa4a; }
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.hero-trust-item svg { color: var(--primary); flex-shrink: 0; }
/* ── Hero Sidebar Card ─────────────────────────────────────── */
.hero-sidebar {
  display: flex;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-card-header svg { color: var(--primary); }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-card-stat {
  background: var(--primary-pale);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.hero-card-num {
  display: block;
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-card-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.hero-card-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.hero-card-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray-500);
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item strong { color: var(--primary); font-weight: 700; font-family: var(--f-mono); }
.hero-card-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* ── Logos / Trust Strip ───────────────────────────────────── */
.logos-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.logos-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.logos-strip-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  white-space: nowrap;
  flex-shrink: 0;
}
.logos-strip-items {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}
.logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -0.01em;
}
.logo-chip-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-500);
}

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-mono);
  font-size: 44px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--primary); }
.stat-label {
  font-size: 15px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--gray-500);
}
.section-header-left {
  margin-bottom: 48px;
}
.section-header-left h2 { margin-bottom: 12px; }

/* ── Vorteile ──────────────────────────────────────────────── */
.vorteile-section { background: var(--white); }
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vorteil-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.vorteil-card:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(12,104,12,0.08);
  transform: translateY(-3px);
}
.vorteil-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.vorteil-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--dark); }
.vorteil-card p { font-size: 15px; color: var(--gray-500); }

/* ── Prozess ───────────────────────────────────────────────── */
.prozess-section {
  background: var(--dark);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.prozess-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 100%, rgba(12,104,12,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.prozess-section .section-header h2 { color: var(--white); }
.prozess-section .section-header p { color: rgba(255,255,255,0.5); }
.prozess-section .section-header .overline { color: #4aaa4a; }

.prozess-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.prozess-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all var(--ease);
  overflow: hidden;
}
.prozess-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--ease);
}
.prozess-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(12,104,12,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.prozess-card:hover::before { opacity: 1; }

.prozess-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.prozess-card-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(12,104,12,0.4);
  flex-shrink: 0;
}
.prozess-card-arrow {
  color: rgba(255,255,255,0.2);
}
.prozess-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(12,104,12,0.12);
  border: 1px solid rgba(12,104,12,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}
.prozess-card-time {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 8px;
}
.prozess-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.prozess-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }

.prozess-cta { text-align: center; margin-top: 48px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Showcase (Wärmepumpen Teaser) ────────────────────────── */
.showcase-section { background: var(--white); }
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.showcase-item:last-child { border-bottom: none; }
.showcase-item.reverse { direction: rtl; }
.showcase-item.reverse > * { direction: ltr; }
.showcase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.showcase-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: var(--gray-300);
}
.showcase-content { }
.showcase-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.showcase-content h3 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 16px; }
.showcase-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.showcase-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.showcase-bullet-icon {
  width: 20px;
  height: 20px;
  background: var(--success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Förderung ─────────────────────────────────────────────── */
.foerderung-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.foerderung-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(12,104,12,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.foerderung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.foerderung-content .overline { color: #4aaa4a; }
.foerderung-content h2 { color: var(--white); margin-bottom: 16px; }
.foerderung-content > p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 17px; }
.foerderung-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.foerderung-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.foerderung-table tr:last-child { border-bottom: none; }
.foerderung-table td { padding: 14px 0; color: rgba(255,255,255,0.7); font-size: 15px; }
.foerderung-table td:last-child {
  text-align: right;
  font-family: var(--f-mono);
  color: #4aaa4a;
  font-weight: 600;
}
.foerderung-table .foerderung-total td {
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding-top: 20px;
}
.foerderung-table .foerderung-total td:last-child {
  color: var(--primary);
  font-size: 20px;
}
.foerderung-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 0; }
.foerderung-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foerderung-baustein {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all var(--ease);
}
.foerderung-baustein:hover {
  background: rgba(12,104,12,0.12);
  border-color: rgba(12,104,12,0.3);
}
.foerderung-baustein-info strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}
.foerderung-baustein-info span { font-size: 13px; color: rgba(255,255,255,0.45); }
.foerderung-baustein-pct {
  font-family: var(--f-mono);
  font-size: 30px;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}
.foerderung-baustein--total {
  background: rgba(12,104,12,0.15);
  border-color: rgba(12,104,12,0.4);
}
.foerderung-baustein--total .foerderung-baustein-pct {
  font-size: 36px;
  color: #4aaa4a;
}

/* ── WP Typen ──────────────────────────────────────────────── */
.wp-typen-section { background: var(--gray-50); }
.wp-typen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.wp-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--ease);
}
.wp-type-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(12,104,12,0.1);
  transform: translateY(-3px);
}
.wp-type-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
}
.wp-type-card .tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.wp-type-card h3 { font-size: 19px; color: var(--dark); }
.wp-type-card p { font-size: 14px; color: var(--gray-500); flex: 1; }
.wp-type-card .link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.wp-type-card .link-arrow:hover { color: var(--primary-dark); }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { background: var(--white); border-top: 1px solid var(--border); }
.testimonials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.trustpilot-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.trustpilot-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
}
.trustpilot-badge-text strong { display: block; font-size: 15px; color: var(--dark); }
.trustpilot-badge-text span { font-size: 13px; color: var(--gray-500); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--ease);
}
.testimonial-card:hover {
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 500;
}
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author { font-size: 14px; font-weight: 700; color: var(--dark); }
.testimonial-location { font-size: 13px; color: var(--gray-500); }

/* ── Referenz-Galerie ─────────────────────────────────────── */
.galerie-section {
  padding: 96px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.galerie-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}
.galerie-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.galerie-item:hover img { transform: scale(1.04); }
.galerie-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,60,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease;
}
.galerie-item:hover .galerie-item-overlay { background: rgba(26,60,42,0.35); }
.galerie-item-overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.galerie-item:hover .galerie-item-overlay svg { opacity: 1; transform: scale(1); }
@media (max-width: 768px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .galerie-item--wide { grid-column: span 2; grid-row: span 1; }
  .galerie-section { padding: 64px 0; }
}

/* ── Blog Teaser ───────────────────────────────────────────── */
.blog-section { background: var(--gray-50); border-top: 1px solid var(--border); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
}
.blog-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.blog-card p { font-size: 14px; color: var(--gray-500); flex: 1; margin-bottom: 16px; }
.blog-card .link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.blog-all { text-align: center; margin-top: 40px; }

/* ── CTA Final ─────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════
   ÜBER UNS PAGE
══════════════════════════════════════════════════ */

/* Hero */
.ueber-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ueber-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--ueber-hero-bg);
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
  transition: transform 8s ease;
  z-index: 0;
}
.ueber-hero:hover::before { transform: scale(1); }
.ueber-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,20,15,0.88) 0%, rgba(10,20,15,0.6) 55%, rgba(10,20,15,0.3) 100%);
  z-index: 1;
}
.ueber-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
}
.ueber-hero-content h1 { color: var(--white); margin-bottom: 20px; }
.ueber-hero-content p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 520px; line-height: 1.7; }
.ueber-hero-content .overline { margin-bottom: 16px; }
.ueber-hero-stats {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  backdrop-filter: blur(8px);
}
.ueber-stat-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ueber-stat-item:nth-child(1),
.ueber-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
.ueber-stat-item:nth-child(1),
.ueber-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ueber-stat-val {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--white);
  line-height: 1;
}
.ueber-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Mission */
.ueber-mission-section { padding: 96px 0; background: var(--white); }
.ueber-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ueber-mission-text h2 { margin-bottom: 20px; }
.ueber-mission-text p { color: var(--gray-500); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.ueber-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ueber-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}
.ueber-zitat-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
  position: relative;
}
.ueber-quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0.5;
}
.ueber-zitat-card blockquote {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--dark);
  line-height: 1.6;
  margin: 0 0 28px;
  font-style: italic;
}
.ueber-zitat-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ueber-zitat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ueber-zitat-author strong { font-size: 14px; font-weight: 700; display: block; }
.ueber-zitat-author small { font-size: 12px; color: var(--gray-400); }
.ueber-mission-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}
.ueber-mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ueber-mission-img:hover img { transform: scale(1.04); }
.ueber-mission-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(10,20,15,0.85);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

/* Werte */
.ueber-werte-section { padding: 96px 0; background: var(--gray-50); }
.ueber-werte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.ueber-wert-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ueber-wert-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.ueber-wert-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.ueber-wert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ueber-wert-card:hover .ueber-wert-img img { transform: scale(1.06); }
.ueber-wert-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,20,15,0.3) 100%);
}
.ueber-wert-body {
  padding: 28px;
}
.ueber-wert-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ueber-wert-body h3 { font-size: 20px; margin-bottom: 10px; }
.ueber-wert-body p { color: var(--gray-500); font-size: 15px; line-height: 1.7; margin: 0; }

/* Projekte Fotoband */
.ueber-projekte-section { padding: 96px 0 0; }
.ueber-fotoband {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 400px;
  margin-top: 48px;
}
.ueber-foto-item {
  position: relative;
  overflow: hidden;
}
.ueber-foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ueber-foto-item:hover img { transform: scale(1.06); }
.ueber-foto-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(10,20,10,0.88), transparent);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}
.ueber-foto-item:hover .ueber-foto-caption { transform: translateY(0); }
.ueber-foto-caption span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
.ueber-foto-caption strong { font-size: 15px; font-weight: 700; }

/* Timeline */
.ueber-timeline-section { padding: 96px 0; background: var(--white); }
.ueber-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}
.ueber-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.ueber-tl-item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 40px;
  position: relative;
}
.ueber-tl-item:last-child { margin-bottom: 0; }
.ueber-tl-year {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  padding-top: 2px;
  text-align: right;
}
.ueber-tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ueber-tl-content strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 6px; color: var(--dark); }
.ueber-tl-content p { color: var(--gray-500); font-size: 15px; line-height: 1.7; margin: 0; }

@media (max-width: 1024px) {
  .ueber-hero-inner { grid-template-columns: 1fr; }
  .ueber-hero-stats { grid-template-columns: repeat(4, 1fr); }
  .ueber-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .ueber-werte-grid { grid-template-columns: 1fr; }
  .ueber-fotoband { grid-template-columns: 1fr; height: auto; }
  .ueber-foto-item { height: 260px; }
}
@media (max-width: 768px) {
  .ueber-hero-inner { padding: 64px 0; }
  .ueber-hero-stats { grid-template-columns: 1fr 1fr; }
  .ueber-timeline { padding-left: 0; }
  .ueber-timeline::before { left: 68px; }
}

/* ═══════════════════════════════════════════════ */

.cta-final {
  background: var(--primary);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { color: var(--white); margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 520px; margin: 0 auto 36px; }
.cta-final-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  line-height: 1.65;
  margin-top: 8px;
}
.footer-badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.footer-col h5 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--gray-50);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-pale) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 18px; max-width: 600px; color: var(--gray-500); }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--border); }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: 500;
}
.alert-success { background: var(--success-light); color: var(--success); border: 1px solid #86efac; }
.alert-error { background: #FEE2E2; color: var(--error); border: 1px solid #fca5a5; }

/* ── Form Elements ─────────────────────────────────────────── */
.form-control {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12,104,12,0.12);
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-hint {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ── Radio Pill (foerderrechner, wizard) ───────────────────── */
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill input[type="radio"] { display: none; }
.radio-pill label {
  display: inline-block;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
  color: var(--gray-700);
  margin: 0;
  user-select: none;
}
.radio-pill label:hover { border-color: var(--gray-300); background: var(--gray-50); }
.radio-pill input:checked + label {
  border-color: var(--primary);
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 600;
}

/* ── Toggle ────────────────────────────────────────────────── */
.toggle-group { display: flex; align-items: center; gap: 12px; }
.toggle { position: relative; width: 44px; height: 24px; display: block; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--ease);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  left: 3px;
  top: 3px;
  transition: transform var(--ease);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-label { font-size: 14px; color: var(--gray-500); font-weight: 500; }

/* ── Slider ────────────────────────────────────────────────── */
.slider-group input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  background: var(--gray-200);
}
.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(12,104,12,0.4);
  cursor: pointer;
}
.slider-current {
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.slider-value {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ── Pump Type Cards Grid ──────────────────────────────────── */
.pump-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pump-type-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.pump-type-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(12,104,12,0.1);
  transform: translateY(-2px);
}
.pump-type-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pump-type-info {
  flex: 1;
  min-width: 0;
}
.pump-type-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.pump-type-info span {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}
.pump-type-cop {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pump-type-arrow {
  color: var(--gray-300);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.pump-type-card:hover .pump-type-arrow {
  color: var(--primary);
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .pump-types-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pump-types-grid { grid-template-columns: 1fr; }
}

/* ── Hero Countdown Strip ──────────────────────────────────── */
.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #FCD34D;
  margin-bottom: 16px;
  animation: countdown-pulse 3s ease-in-out infinite;
}
.hero-countdown-icon { font-size: 14px; line-height: 1; }
.hero-countdown-text strong { color: #FDE68A; font-variant-numeric: tabular-nums; }
@keyframes countdown-pulse {
  0%, 100% { border-color: rgba(245,158,11,0.35); }
  50%       { border-color: rgba(245,158,11,0.65); }
}

/* ── Hero Animated Stats ───────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-stat-item {
  flex: 1;
  text-align: center;
  padding: 4px 12px;
}
.hero-stat-value {
  display: block;
  font-family: var(--f-mono);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero-stats { padding: 16px 12px; }
  .hero-stat-sep { display: none; }
  .hero-stat-item { padding: 4px 6px; }
  .hero-stat-value { font-size: 18px; }
  .hero-stat-label { font-size: 10px; }
}

/* ── Hero PLZ Form ─────────────────────────────────────────── */
.hero-plz-form { margin-top: 16px; }
.hero-plz-inner {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-plz-form:focus-within .hero-plz-inner {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.hero-plz-inner.has-error { border-color: #FCA5A5; }
.hero-plz-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  flex: 1;
  color: rgba(255,255,255,0.45);
}
.hero-plz-field input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  width: 100%;
  padding: 14px 0;
}
.hero-plz-field input::placeholder { color: rgba(255,255,255,0.35); font-weight: 400; }
.hero-plz-btn {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  padding: 14px 22px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-plz-error {
  font-size: 13px;
  color: #FCA5A5;
  margin-top: 8px;
  margin-left: 20px;
  min-height: 18px;
  font-weight: 500;
}
.hero-plz-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  margin-left: 20px;
}
@media (max-width: 500px) {
  .hero-plz-inner { flex-direction: column; border-radius: var(--radius-lg); overflow: visible; gap: 8px; padding: 8px; background: rgba(255,255,255,0.08); }
  .hero-plz-field { border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md); padding: 0 14px; }
  .hero-plz-btn { width: 100%; border-radius: var(--radius-md); justify-content: center; }
}

/* ── Partner Logos Section ─────────────────────────────────── */
.partners-section {
  padding: 56px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.partners-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.partners-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.partners-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 140px;
}
.partner-logo-item:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(12,104,12,0.08);
}
.partner-logo-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s;
}
.partner-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.partner-logo-placeholder {
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
  border-style: dashed;
  background: transparent;
}
.partner-logo-placeholder span {
  font-size: 11px;
  color: var(--gray-300);
  font-weight: 500;
}
@media (max-width: 600px) {
  .partners-track { gap: 8px; }
  .partner-logo-item { padding: 12px 18px; min-width: 110px; }
  .partner-logo-item img { max-height: 32px; }
}

/* ── FAQ Page ──────────────────────────────────────────────── */
.page-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.faq-hero-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.faq-hero-stat {
  text-align: center;
}
.faq-hero-stat-val {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: var(--f-mono);
}
.faq-hero-stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* FAQ Nav Tabs */
.faq-nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 10;
}
.faq-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 0;
}
.faq-nav::-webkit-scrollbar { display: none; }
.faq-nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.faq-nav-btn:hover {
  background: var(--gray-50);
  color: var(--dark);
}
.faq-nav-btn.active {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

/* FAQ Layout */
.faq-section { padding: 56px 0 80px; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.faq-main { display: flex; flex-direction: column; gap: 48px; }

/* FAQ Group */
.faq-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-group-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.faq-group-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(12,104,12,0.08);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.faq-question span { flex: 1; }
.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.open .faq-chevron {
  background: var(--primary-pale);
  color: var(--primary);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-500);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0 20px;
  margin-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}

/* FAQ Sidebar */
.faq-sidebar { position: sticky; top: 140px; display: flex; flex-direction: column; }
.faq-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.faq-sidebar-card--light {
  background: var(--gray-50);
}
.faq-sidebar-card--green {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.faq-sidebar-card--green h4 { color: white; margin-bottom: 8px; font-size: 16px; }
.faq-sidebar-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.faq-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-sidebar-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.faq-sidebar-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.faq-sidebar-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.faq-sidebar-links a {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.faq-sidebar-links a:hover { color: var(--primary-dark); }

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; flex-direction: row; gap: 12px; flex-wrap: wrap; }
  .faq-sidebar-card { flex: 1; min-width: 240px; }
  .faq-hero-stats { gap: 20px; }
  .faq-hero-stat-val { font-size: 24px; }
}
@media (max-width: 600px) {
  .page-hero-inner { flex-direction: column; gap: 24px; }
  .faq-sidebar { flex-direction: column; }
  .faq-nav-btn { font-size: 13px; padding: 7px 14px; }
}

/* ── Ablauf Timeline ───────────────────────────────────────── */
.ablauf-timeline {
  max-width: 760px;
  margin: 64px auto 0;
}
.ablauf-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 28px;
  margin-bottom: 0;
}
.ablauf-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ablauf-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ablauf-line {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: var(--border);
  margin: 6px 0;
}
.ablauf-content {
  padding-bottom: 48px;
}
.ablauf-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 12px;
}
.ablauf-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 12px;
}
.ablauf-zeit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 12px;
  border-radius: 999px;
}
@media (max-width: 600px) {
  .ablauf-step { grid-template-columns: 44px 1fr; gap: 0 16px; }
  .ablauf-num { width: 40px; height: 40px; font-size: 16px; }
  .ablauf-content h3 { font-size: 17px; }
}

/* ── Förderrechner Seite ───────────────────────────────────── */
.page-hero-rechner { padding: 80px 0; }
.rechner-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.rechner-section { padding: 80px 0 64px; }
.rechner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 0; }
.rechner-inputs-card, .rechner-result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.rechner-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.rechner-field { margin-bottom: 24px; }
.rechner-field:last-child { margin-bottom: 0; }
.rechner-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.result-donut-center { display: flex; justify-content: center; margin-bottom: 24px; }
.donut-chart { position: relative; width: 200px; height: 200px; }
.donut-chart svg { transform: rotate(-90deg); }
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donut-center .big {
  font-family: var(--f-mono);
  font-size: 40px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.donut-center .small { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.result-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 15px; }
.result-table tr { border-bottom: 1px solid var(--border); }
.result-table tr:last-child { border-bottom: none; }
.result-table td { padding: 12px 0; color: var(--dark); }
.result-table td:last-child { text-align: right; font-family: var(--f-mono); font-weight: 600; }
.result-table .result-zuschuss-row td { color: var(--success); }
.result-table .total td { padding-top: 16px; font-size: 17px; color: var(--primary); font-weight: 700; }
.rechner-note { font-size: 12px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
.rechner-cta-btn { width: 100%; justify-content: center; }

/* ── Baustein Live ─────────────────────────────────────────── */
.rechner-bausteine {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.rechner-bausteine-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.bausteine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.baustein-live {
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.4s ease;
  opacity: 0.45;
}
.baustein-live.active {
  opacity: 1;
  background: var(--primary-pale);
  border-color: var(--primary);
}
.baustein-live-pct {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.baustein-live-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.baustein-live-info span { font-size: 12px; color: var(--gray-500); line-height: 1.4; display: block; }
.baustein-live-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  background: var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 3px 8px;
  align-self: flex-start;
  transition: all 0.4s ease;
}
.baustein-live.active .baustein-live-badge { background: var(--primary); color: var(--white); }
.baustein-live-badge--always { background: var(--success); color: var(--white); }

/* ── Rechner Info ──────────────────────────────────────────── */
.rechner-info-section { background: var(--gray-50); border-top: 1px solid var(--border); padding: 80px 0; }
.rechner-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.rechner-info-card { padding: 28px 24px; }
.rechner-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}
.rechner-info-card h4 { margin-bottom: 8px; font-size: 16px; }
.rechner-info-card p { font-size: 14px; }

/* ── Tabellen ──────────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 15px;
}
.compare-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  background: var(--gray-100);
  border-bottom: 2px solid var(--border);
  color: var(--dark);
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-50); }

/* ── Förderung Bausteine (foerderung.php) ──────────────────── */
.foerderung-bausteine {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}
.baustein {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background var(--ease);
}
.baustein:hover { background: var(--gray-50); }
.baustein:last-child { border-bottom: none; background: var(--primary-pale); }
.baustein-info strong { display: block; font-size: 15px; margin-bottom: 2px; color: var(--dark); }
.baustein-info span { font-size: 14px; color: var(--gray-500); }
.baustein-pct { font-family: var(--f-mono); font-size: 28px; font-weight: 600; color: var(--primary); }

/* ── Admin card (kept for admin) ───────────────────────────── */
.tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.link-arrow:hover { color: var(--primary-dark); }

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-500); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-sidebar { justify-content: flex-start; }
  .hero-card { max-width: 480px; }
  .prozess-steps { grid-template-columns: repeat(2, 1fr); }
  .vorteile-grid { grid-template-columns: 1fr 1fr; }
  .prozess-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .prozess-steps::before { display: none; }
  .showcase-item, .showcase-item.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .foerderung-grid { grid-template-columns: 1fr; gap: 48px; }
  .wp-typen-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .rechner-grid { grid-template-columns: 1fr; }
  .bausteine-grid { grid-template-columns: repeat(2, 1fr); }
  .rechner-info-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .stat-item:nth-child(even) { border-right: none; }
}

/* ── Foto-Band ─────────────────────────────────────── */
.fotoband-section {
  padding: 0;
  overflow: hidden;
}
.fotoband-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}
.fotoband-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.fotoband-item {
  position: relative;
  overflow: hidden;
}
.fotoband-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.fotoband-item:hover img {
  transform: scale(1.04);
}
.fotoband-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, transparent 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(4px);
  transition: transform 0.3s ease;
}
.fotoband-item:hover .fotoband-caption {
  transform: translateY(0);
}
.fotoband-caption span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.fotoband-caption strong {
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.fotoband-main .fotoband-caption {
  padding: 28px 32px;
}
.fotoband-main .fotoband-caption span { font-size: 13px; }
.fotoband-main .fotoband-caption strong { font-size: 17px; }

@media (max-width: 768px) {
  .fotoband-grid { grid-template-columns: 1fr; height: auto; }
  .fotoband-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fotoband-main { height: 260px; }
  .fotoband-side .fotoband-item { height: 180px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-cta .btn:not(:last-child) { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 60px 0; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; }
  .hero-trust { gap: 16px; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .prozess-steps { grid-template-columns: 1fr; }
  .wp-typen-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .foerderung-bausteine .baustein { padding: 14px 18px; }
  .logos-strip-items { justify-content: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-final-group { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .wp-typen-grid { grid-template-columns: 1fr; }
  .bausteine-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rechner-info-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
