/*
Theme Name: dasFördermittelbüro Child
Theme URI: https://www.dasfoerdermittelbuero.de
Description: Child Theme dasFördermittelbüro — Rossmann Beratung GmbH
Author: dasFördermittelbüro
Template: hello-elementor
Version: 3.0.0
Text Domain: dfmb-child
*/

/* =============================================
   CI VARIABLEN
   ============================================= */
:root {
  --dunkelblau: #121d31;
  --blau: #2858a5;
  --blaugrau: #476EAD;
  --hellblau: #91d3e9;
  --grau: #656C77;
  --dunkelgrau: #3A414E;
  --weiss: #F0FCFF;
  --font-head: 'Nunito Sans', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --max-width: 1140px;
  --header-height: 100px;
}

/* =============================================
   BASIS
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dunkelgrau);
  background: rgba(40,88,165,0.12);
  line-height: 1.7;
  margin: 0;
  padding-top: var(--header-height);
}

img { max-width: 100%; height: auto; }
a { color: var(--blau); text-decoration: none; transition: color 0.2s; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--weiss);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(28px, 4vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); padding-bottom: 12px; border-bottom: 2px solid rgba(145,211,233,0.2); display: inline-block; }
h3 { font-size: clamp(18px, 2.5vw, 24px); }

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

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary { background: var(--hellblau); color: var(--dunkelblau); }
.btn-primary:hover { background: #a8dcee; color: var(--dunkelblau); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blau); border: 2px solid var(--blau); }
.btn-outline:hover { background: var(--blau); color: #fff; }

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

/* TOPBAR */
.header-topbar {
  background: #0d1625;
  border-bottom: 1px solid rgba(145,211,233,0.08);
  display: none;
}

@media (min-width: 1024px) {
  .header-topbar { display: block; }
}

.header-topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left { display: flex; align-items: center; gap: 20px; }

.topbar-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(240,252,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.topbar-item:hover { color: var(--hellblau); }
.topbar-item svg { color: var(--hellblau); flex-shrink: 0; }

.topbar-right { display: flex; align-items: center; gap: 8px; }

.topbar-social {
  width: 24px; height: 24px;
  border: 1px solid rgba(145,211,233,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,252,255,0.67); transition: all 0.2s;
}
.topbar-social:hover { border-color: var(--hellblau); color: var(--hellblau); }

/* HAUPTNAVIGATION */
.header-main {
  background: var(--dunkelblau);
  border-bottom: 1px solid rgba(145,211,233,0.1);
}

.header-main-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo { flex-shrink: 0; display: flex; align-items: center; }
.header-logo img { height: 38px; width: auto; }

/* DESKTOP NAV */
.desktop-nav { flex: 1; display: none; justify-content: center; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-list { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 500;
  color: rgba(240,252,255,0.8);
  padding: 8px 13px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--weiss); background: rgba(255,255,255,0.07); }

.nav-chevron { transition: transform 0.2s; opacity: 0.5; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a2840;
  border: 1px solid rgba(145,211,233,0.15);
  border-radius: 0 0 8px 8px;
  padding: 12px 0 8px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  min-width: 220px;
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  transition-delay: 0s;
  transform: translateY(0);
}

/* Bridge: unsichtbarer Bereich der die Lücke zwischen Nav und Dropdown überbrückt */
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

/* Schließen verzögern damit Maus Zeit hat hinzufahren */
.has-dropdown .dropdown {
  transition-delay: 0.18s;
}
.has-dropdown:hover .dropdown {
  transition-delay: 0s;
}

/* Mega-Dropdown für Unsere Kunden */
.dropdown-mega {
  min-width: 720px;
}

.dropdown-mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8px 0;
}

.dropdown-col {
  padding: 4px 0;
  border-right: 1px solid rgba(145,211,233,0.08);
}
.dropdown-col:last-child { border-right: none; }

.dropdown-col-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px; font-weight: 800;
  color: #F0FCFF;
  letter-spacing: 0;
  padding: 10px 14px 8px;
  display: block;
  border-bottom: 1px solid rgba(145,211,233,0.12);
  margin-bottom: 4px;
}

.dropdown-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 13px; color: rgba(240,252,255,0.7);
  text-decoration: none; transition: all 0.15s;
  white-space: nowrap;
}
.dropdown-link:hover { color: var(--weiss); background: rgba(145,211,233,0.07); }
.dropdown-divider { height: 1px; background: rgba(145,211,233,0.08); margin: 4px 0; }
.dropdown-all { color: var(--hellblau); font-size: 11px; padding: 5px 14px; display: block; font-weight: 500; }

/* CTA + HAMBURGER */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-header-cta {
  display: none;
  background: var(--hellblau); color: var(--dunkelblau);
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; padding: 9px 18px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-header-cta:hover { background: #a8dcee; color: var(--dunkelblau); transform: translateY(-1px); }
@media (min-width: 768px) { .btn-header-cta { display: inline-block; } }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--weiss); border-radius: 2px; transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: var(--header-height); left: 0; right: 0; bottom: 0;
  background: var(--dunkelblau);
  overflow-y: auto; z-index: 999; padding: 16px 0;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav-inner { max-width: 480px; margin: 0 auto; padding: 0 24px; }
.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list > li { border-bottom: 1px solid rgba(145,211,233,0.08); }

.mobile-parent-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  color: rgba(240,252,255,0.85); cursor: pointer;
}
.mobile-parent-btn span { font-size: 18px; color: var(--hellblau); }

.mobile-sub { list-style: none; margin: 0 0 8px 16px; padding: 0; }
.mobile-sub[hidden] { display: none; }
.mobile-sub-label {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 800;
  color: #F0FCFF;
  padding: 12px 0 6px;
  display: block;
  border-bottom: 1px solid rgba(145,211,233,0.15);
  margin-bottom: 4px;
  margin-top: 8px;
}
.mobile-sub a {
  display: block; padding: 7px 0 7px 12px;
  font-size: 13px; color: rgba(240,252,255,0.55); text-decoration: none;
  border-left: 2px solid rgba(145,211,233,0.15);
}
.mobile-sub a:hover { color: var(--weiss); border-left-color: #91d3e9; }
.mobile-link {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 500;
  color: rgba(240,252,255,0.85); text-decoration: none;
}
.mobile-contact { padding: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-contact a { font-size: 13px; color: rgba(240,252,255,0.72); text-decoration: none; }
.mobile-cta {
  display: block; text-align: center;
  background: var(--hellblau); color: var(--dunkelblau);
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px; padding: 14px; border-radius: 4px;
  text-decoration: none; margin: 16px 0;
}

/* =============================================
   TRUST BAR (Footer)
   ============================================= */
.trust-bar {
  background: #0d1625;
  padding: 24px 40px;
  border-top: 1px solid rgba(145,211,233,0.08);
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 8px; padding: 10px 18px; height: 68px;
}
.cert-logo-img { height: 46px; width: auto; object-fit: contain; display: block; }
.cert-logo-round { height: 56px !important; width: 56px !important; border-radius: 50%; padding: 3px !important; }

.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(145,211,233,0.08);
  border: 1px solid rgba(145,211,233,0.18);
  border-radius: 4px; padding: 5px 12px;
  font-size: 11px; color: rgba(240,252,255,0.6);
  font-family: var(--font-body); font-weight: 500;
}

.trust-logo {
  height: 28px; width: auto; opacity: 0.65;
  filter: grayscale(20%); transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--dunkelblau);
  color: rgba(240,252,255,0.7);
  padding: 48px 24px 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(145,211,233,0.08);
}

.footer-logo img { height: 30px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(240,252,255,0.67); line-height: 1.6; margin-bottom: 18px; }

.footer-contact a {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(240,252,255,0.72);
  margin-bottom: 7px; text-decoration: none; transition: color 0.2s;
}
.footer-contact a:hover { color: var(--hellblau); }

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 30px; height: 30px;
  border: 1px solid rgba(145,211,233,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(240,252,255,0.62); font-size: 13px; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--hellblau); color: var(--hellblau); }

.footer-col h4 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: rgba(240,252,255,0.62); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 12px; color: rgba(240,252,255,0.72); transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--hellblau); }

.footer-col-spacer { margin-top: 20px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 0 24px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

.footer-copy { font-size: 11px; color: rgba(240,252,255,0.47); }

.footer-legal { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { font-size: 11px; color: rgba(240,252,255,0.47); transition: color 0.2s; }
.footer-legal a:hover { color: var(--hellblau); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   STARTSEITE — Alle Sections
   ============================================= */

/* HERO */
.hero {
  background: var(--dunkelblau);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1020 0%, #1a2d50 100%);
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(145,211,233,0.15);
  border: 1px solid rgba(145,211,233,0.3);
  color: var(--hellblau);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 3px; margin-bottom: 24px;
}
.hero h1 { color: var(--weiss); margin-bottom: 20px; }
.hero h1 span { color: var(--hellblau); }
.hero-sub {
  font-size: 18px; color: rgba(240,252,255,0.82);
  max-width: 580px; margin-bottom: 36px; line-height: 1.65;
}
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(145,211,233,0.15);
  border-radius: 6px; max-width: 500px;
}
.hero-stat .val {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  color: var(--hellblau); display: block; line-height: 1;
}
.hero-stat .lbl { font-size: 12px; color: rgba(240,252,255,0.72); margin-top: 5px; display: block; }

/* LOGOS / ZERTIFIKATE */
.logos-section {
  background: #f0f4fa;
  padding: 22px 24px;
  border-bottom: 1px solid #dde3ec;
}
.logos-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.logos-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grau); flex-shrink: 0;
}
.cert-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(240,252,255,0.85);
  border: 1px solid rgba(145,211,233,0.2); border-radius: 4px;
  padding: 5px 12px; background: rgba(40,88,165,0.15); font-weight: 500;
}
.cert-badge svg { color: var(--blau); flex-shrink: 0; }

/* SECTION ALLGEMEIN */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blau);
  display: block; margin-bottom: 10px;
}
.section-label--light { color: var(--hellblau); }
section { padding: 80px 24px; }
.section--dark { background: var(--dunkelblau); color: var(--weiss); }
.section--dark h2 { color: var(--weiss); }
.section--light { background: #f4f7fb; color: #1a2333; }
.section--light h2, .section--light h3, .section--light h4 { color: #0a1628 !important; }
.section--light p, .section--light li, .section--light span:not(.section-label) { color: #2d3748; }

/* FÜR WEN */
.fuerwen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 44px;
}
.fuerwen-card {
  background: rgba(40,88,165,0.12);
  border: 1px solid rgba(145,211,233,0.15);
  border-radius: 8px; padding: 28px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fuerwen-card:hover {
  border-color: var(--blaugrau);
  box-shadow: 0 4px 20px rgba(18,29,49,0.08);
}
.fuerwen-icon {
  width: 46px; height: 46px;
  background: #eef3fb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.fuerwen-icon svg { color: var(--blau); }
.fuerwen-card h3 { font-size: 17px; color: #F0FCFF; margin-bottom: 10px; }
.fuerwen-card p { font-size: 15px; color: rgba(240,252,255,0.85); line-height: 1.65; margin-bottom: 14px; }
.fuerwen-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 4px; }
.fuerwen-tag {
  font-size: 11px; background: rgba(40,88,165,0.2);
  border: 1px solid rgba(145,211,233,0.2);
  color: rgba(145,211,233,0.95) !important; padding: 3px 9px; border-radius: 4px;
}
.fuerwen-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: var(--blau);
  margin-top: 14px; text-decoration: none;
}
.fuerwen-link:hover { color: var(--blaugrau); }

/* METRIKEN */
.metriken-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 44px;
}
.metrik {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(145,211,233,0.12);
}
.metrik:last-child { border-right: none; }
.metrik-val {
  font-family: var(--font-head); font-size: 44px; font-weight: 800;
  color: var(--hellblau); display: block; line-height: 1; margin-bottom: 8px;
}
.metrik-lbl { font-size: 14px; color: rgba(240,252,255,0.7); }
.metrik-sub { font-size: 12px; color: rgba(240,252,255,0.60); margin-top: 4px; }

/* PROGRAMME */
.programme-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 44px;
}
.programm-card {
  border: 1px solid rgba(145,211,233,0.15); border-radius: 8px; padding: 22px;
  transition: all 0.2s; text-decoration: none;
  display: block; color: rgba(240,252,255,0.85);
  background: rgba(40,88,165,0.10);
}
.programm-card:hover {
  border-color: var(--blau);
  box-shadow: 0 4px 20px rgba(40,88,165,0.1);
  transform: translateY(-2px);
}
.programm-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  background: #eef3fb; color: var(--blau);
  padding: 3px 10px; border-radius: 3px; margin-bottom: 10px;
}
.programm-card h3 { font-size: 16px; color: #F0FCFF; margin-bottom: 8px; }
.programm-card p { font-size: 15px; color: rgba(240,252,255,0.80); line-height: 1.6; margin-bottom: 12px; }
.programm-quote {
  font-size: 22px; font-weight: 800; color: var(--blau);
  font-family: var(--font-head);
}

/* PROZESS */
.prozess-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 44px;
}
.prozess-step {
  padding: 28px 22px;
  border-right: 1px solid rgba(145,211,233,0.12);
}
.prozess-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-head); font-size: 48px; font-weight: 800;
  color: rgba(145,211,233,0.65) !important; line-height: 1; margin-bottom: 14px;
}
.prozess-step h3 { font-size: 15px; font-weight: 700; color: #F0FCFF !important; margin-bottom: 8px; }
.prozess-step p { font-size: 15px; color: rgba(240,252,255,0.78); line-height: 1.65; }

/* ÜBER DANIEL */
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: center;
  max-width: var(--max-width); margin: 0 auto;
}
.ueber-img {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 3/4; background: #dde4ee;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--grau); text-align: center; padding: 24px;
}
.ueber-zitat {
  font-family: var(--font-body); font-style: italic;
  font-size: 19px; color: var(--blaugrau);
  border-left: 4px solid var(--hellblau);
  padding-left: 20px; margin: 22px 0; line-height: 1.55;
}
.ueber-credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.ueber-cred {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(240,252,255,0.85);
}
.ueber-cred::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blau); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

/* GARANTIE */
.garantie-section {
  background: var(--blau); color: var(--weiss);
  padding: 56px 24px; text-align: center;
}
.garantie-section h2 { color: var(--weiss); margin-bottom: 14px; }
.garantie-section p {
  font-size: 17px; color: rgba(240,252,255,0.9);
  max-width: 580px; margin: 0 auto 30px;
}

/* FINAL CTA */
.cta-section {
  background: var(--dunkelblau); text-align: center; padding: 96px 24px;
}
.cta-section h2 { color: var(--weiss); margin-bottom: 14px; }
.cta-section p {
  font-size: 17px; color: rgba(240,252,255,0.72);
  max-width: 540px; margin: 0 auto 36px;
}

/* BUTTONS */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 15px; padding: 13px 26px; border-radius: 4px;
  text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--hellblau); color: var(--dunkelblau); }
.btn-primary:hover { background: #a8dcee; transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: var(--weiss);
  border: 2px solid rgba(240,252,255,0.62); margin-left: 10px;
}
.btn-outline-white:hover { border-color: var(--weiss); }
.btn-outline-blue {
  background: transparent; color: var(--blau);
  border: 2px solid var(--blau); padding: 10px 22px; font-size: 14px;
}
.btn-outline-blue:hover { background: var(--blau); color: #fff; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .fuerwen-grid { grid-template-columns: 1fr; }
  .metriken-grid { grid-template-columns: repeat(2, 1fr); }
  .programme-grid { grid-template-columns: 1fr 1fr; }
  .prozess-steps { grid-template-columns: 1fr 1fr; }
  .ueber-grid { grid-template-columns: 1fr; }
  .metrik { border-right: none; border-bottom: 1px solid rgba(145,211,233,0.12); }
  .metrik:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .programme-grid { grid-template-columns: 1fr; }
  .prozess-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .btn-outline-white { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
  .metriken-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   BLOG
   ============================================= */

/* BLOG HERO */
.blog-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3d 100%);
  padding: 80px 40px 60px;
  border-bottom: 1px solid rgba(145,211,233,0.1);
}
.blog-hero h1 { color: #F0FCFF; margin-bottom: 12px; }
.blog-hero p { color: rgba(240,252,255,0.65); font-size: 17px; max-width: 560px; margin-bottom: 32px; }

/* KATEGORIEFILTER */
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 7px 18px; border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(145,211,233,0.2);
  color: rgba(240,252,255,0.6);
  transition: all 0.2s;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: rgba(145,211,233,0.12);
  border-color: rgba(145,211,233,0.5);
  color: #91d3e9;
}

/* BLOG GRID */
.blog-archive { padding: 64px 40px; background: #0a1628; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px; margin: 0 auto;
}

/* BLOG KARTE */
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(145,211,233,0.1);
  border-radius: 12px; padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: all 0.22s; position: relative; overflow: hidden;
}
.blog-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #2858a5, #91d3e9);
  opacity: 0;
  transition: opacity 0.2s;
}
.blog-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(145,211,233,0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.25);
}
.blog-card:hover::before { opacity: 1; }

.blog-card-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600;
  color: #91d3e9; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 12px;
}
.blog-card-cat a { color: #91d3e9; text-decoration: none; }

.blog-card-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px; font-weight: 800; line-height: 1.3;
  margin-bottom: 12px; flex: 0;
}
.blog-card-title a { color: #F0FCFF; text-decoration: none; }
.blog-card-title a:hover { color: #91d3e9; }

.blog-card-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; color: rgba(240,252,255,0.57);
  display: flex; gap: 12px; margin-bottom: 14px;
}

.blog-card-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; color: rgba(240,252,255,0.58);
  line-height: 1.68; flex: 1; margin-bottom: 20px;
}

.blog-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 600;
  color: #91d3e9; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 8px; }

/* EINZEL-ARTIKEL */
.single-post-wrap {
  max-width: 800px; margin: 0 auto;
  padding: 64px 40px;
  background: #0a1628;
}
.single-post-header { margin-bottom: 40px; }
.single-post-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; color: #91d3e9;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block; margin-bottom: 14px;
}
.single-post-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800; color: #F0FCFF;
  line-height: 1.2; margin-bottom: 16px;
}
.single-post-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; color: rgba(240,252,255,0.62);
  display: flex; gap: 16px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(145,211,233,0.1);
  margin-bottom: 36px;
}

/* ARTIKEL INHALT */
.single-post-content h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #F0FCFF; margin-top: 40px; margin-bottom: 14px;
}
.single-post-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; color: rgba(240,252,255,0.85);
  line-height: 1.8; margin-bottom: 20px;
}

/* BLOG CTA BOX */
.blog-cta-box {
  background: rgba(40,88,165,0.15);
  border: 1px solid rgba(145,211,233,0.2);
  border-radius: 12px; padding: 28px;
  margin-top: 48px; text-align: center;
}
.blog-cta-box h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px; color: #F0FCFF; margin-bottom: 10px;
}
.blog-cta-box p {
  font-size: 14px; color: rgba(240,252,255,0.65); margin-bottom: 20px;
}

/* AUTOR BOX */
.blog-author-box {
  display: flex; gap: 16px; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(145,211,233,0.1);
  border-radius: 10px; padding: 20px 24px;
  margin-top: 48px;
}
.blog-author-img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.blog-author-name {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700; font-size: 15px; color: #F0FCFF;
}
.blog-author-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; color: rgba(240,252,255,0.67);
}

/* RESPONSIVE BLOG */
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-archive { padding: 40px 20px; }
  .blog-hero { padding: 60px 20px 40px; }
  .single-post-wrap { padding: 40px 20px; }
}

/* FAQ BLOG */
.blog-faq { margin-top: 52px; border-top: 1px solid rgba(145,211,233,0.1); padding-top: 40px; }
.blog-faq h2 { color: #F0FCFF; font-size: 22px; margin-bottom: 24px; }
.faq-item {
  border: 1px solid rgba(145,211,233,0.1);
  border-radius: 10px; padding: 20px 24px;
  margin-bottom: 12px; cursor: pointer;
  transition: all 0.2s;
  background: rgba(255,255,255,0.03);
}
.faq-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(145,211,233,0.25); }
.faq-item h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #91d3e9; margin: 0 0 10px;
}
.faq-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; color: rgba(240,252,255,0.65);
  line-height: 1.68; margin: 0;
}

/* FEATURED IMAGE */
.post-thumbnail {
  width: 100%; max-height: 420px;
  object-fit: cover; border-radius: 12px;
  margin-bottom: 36px; display: block;
}

/* RECHTLICHE SEITEN — CI konform */
.legal-page { background: #0a1628; min-height: 80vh; padding: 80px 40px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-title {
  font-family: 'Nunito Sans', sans-serif; font-size: 38px; font-weight: 800;
  color: #F0FCFF; margin-bottom: 52px; padding-bottom: 24px;
  border-bottom: 2px solid #2858a5;
}
.legal-section { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(40,88,165,0.2); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: 'Nunito Sans', sans-serif; font-size: 18px; font-weight: 800;
  color: #91d3e9; margin-bottom: 14px; margin-top: 0;
  display: flex; align-items: center; gap: 10px;
}
.legal-section h2::before {
  content: ''; width: 3px; height: 18px; background: #2858a5;
  border-radius: 2px; flex-shrink: 0;
}
.legal-section p {
  font-family: 'Montserrat', sans-serif; font-size: 16px;
  color: #F0FCFF; opacity: 0.88; line-height: 1.9; margin-bottom: 14px;
}
.legal-section a { color: #91d3e9; text-decoration: none; font-weight: 500; }
.legal-section a:hover { color: #F0FCFF; text-decoration: underline; }
.legal-section strong { color: #F0FCFF; opacity: 1; font-weight: 600; }
@media (max-width: 768px) { .legal-page { padding: 52px 20px; } .legal-title { font-size: 28px; } }

/* KONTAKT */
.kontakt-hero { padding: 80px 40px 64px; }
.kontakt-hero h1 { color: #F0FCFF; margin-bottom: 14px; font-size: clamp(28px, 4vw, 44px); }
.kontakt-hero p { font-size: 17px; color: rgba(240,252,255,0.65); max-width: 560px; line-height: 1.7; }
.kontakt-section { padding: 72px 40px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; max-width: 1140px; margin: 0 auto; }
.kontakt-info h2 { color: #F0FCFF; margin-bottom: 28px; font-size: 22px; font-family: 'Nunito Sans', sans-serif; font-weight: 800; }
.kontakt-termin h2 { color: #F0FCFF; margin-bottom: 12px; font-size: 22px; font-family: 'Nunito Sans', sans-serif; font-weight: 800; }
.kontakt-termin > p { color: rgba(240,252,255,0.65); font-size: 15px; margin-bottom: 24px; line-height: 1.65; }
.kontakt-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.kontakt-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(40,88,165,0.2); border: 1px solid rgba(40,88,165,0.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.kontakt-icon svg { color: #91d3e9; }
.kontakt-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; color: rgba(240,252,255,0.57); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; display: block; }
.kontakt-value { display: block; font-family: 'Montserrat', sans-serif; font-size: 16px; color: rgba(240,252,255,0.88); text-decoration: none; line-height: 1.6; }
.kontakt-value:hover { color: #91d3e9; }
span.kontakt-value { color: rgba(240,252,255,0.72); }
.kontakt-social-row { display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.kontakt-social-btn { display: inline-flex; align-items: center; gap: 7px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600; color: rgba(240,252,255,0.6); border: 1px solid rgba(145,211,233,0.15); border-radius: 6px; padding: 8px 14px; text-decoration: none; transition: all 0.2s; }
.kontakt-social-btn svg { color: #91d3e9; }
.kontakt-social-btn:hover { background: rgba(145,211,233,0.08); border-color: rgba(145,211,233,0.35); color: #F0FCFF; }
.kontakt-termin-info { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(145,211,233,0.1); }
.kontakt-termin-item { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: rgba(240,252,255,0.65); }
.kontakt-termin-item svg { color: #91d3e9; flex-shrink: 0; }

/* KONTAKT CI-Farben */
.kontakt-hero { background: linear-gradient(135deg, #0a1628 0%, #121d31 100%); }
.kontakt-hero h1 { color: #F0FCFF; font-family: 'Nunito Sans', sans-serif; font-weight: 800; }
.kontakt-hero p { color: rgba(240,252,255,0.78); }
.kontakt-info h2 { color: #F0FCFF; }
.kontakt-termin h2 { color: #F0FCFF; }
.kontakt-label { color: #91d3e9; font-weight: 600; }
.kontakt-value { color: #F0FCFF; font-size: 15px; }
a.kontakt-value { color: #F0FCFF; }
a.kontakt-value:hover { color: #91d3e9; }
span.kontakt-value { color: rgba(240,252,255,0.82); }
.kontakt-termin > p { color: rgba(240,252,255,0.75); }
.kontakt-termin-item { color: rgba(240,252,255,0.75); }
.kontakt-map-section { background: #0a1628; }
.kontakt-map-wrap { max-width: 100%; overflow: hidden; border-top: 1px solid rgba(145,211,233,0.08); }
.kontakt-map-wrap iframe { filter: invert(90%) hue-rotate(180deg); opacity: 0.85; display: block; }
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; gap: 40px; } .kontakt-section { padding: 52px 20px; } .kontakt-hero { padding: 60px 20px 40px; } }

/* PROGRAMMSEITEN */
.prog-hero { padding: 80px 40px; }
.prog-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; max-width: 1140px; margin: 0 auto; align-items: start; }
.prog-hero-badge { font-size: 10px; font-weight: 600; color: #91d3e9; text-transform: uppercase; letter-spacing: 0.12em; display: block; margin-bottom: 12px; }
.prog-hero h1 { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: clamp(38px, 5vw, 58px); color: #F0FCFF; margin-bottom: 12px; border-bottom: 3px solid rgba(145,211,233,0.3); padding-bottom: 16px; }
.prog-hero-full { font-size: 14px; color: rgba(240,252,255,0.67); margin-bottom: 18px; }
.prog-hero-sub { font-size: 18px; color: rgba(240,252,255,0.82); line-height: 1.72; max-width: 560px; margin-bottom: 36px; }
.prog-hero-stats { display: flex; gap: 28px; margin-bottom: 36px; }
.prog-stat-val { font-family: 'Nunito Sans', sans-serif; font-size: 24px; font-weight: 800; color: #91d3e9; display: block; }
.prog-stat-lbl { font-size: 11px; color: rgba(240,252,255,0.62); margin-top: 4px; }

.prog-info-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(145,211,233,0.12); border-radius: 12px; padding: 24px; }
.prog-info-row, .prog-info-item { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.prog-info-row:last-child, .prog-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.prog-info-row:first-child, .prog-info-item:first-child { padding-top: 0; }
.prog-info-label { font-size: 10px; font-weight: 600; color: rgba(240,252,255,0.57); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.prog-info-val { font-size: 15px; color: rgba(240,252,255,0.88); }

/* MODUL GRID */
.modul-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.modul-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(145,211,233,0.1); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; transition: all 0.2s; }
.modul-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(145,211,233,0.25); transform: translateY(-2px); }
.modul-card--featured { border-color: rgba(145,211,233,0.3); background: rgba(145,211,233,0.05); }
.modul-num { font-family: 'Nunito Sans', sans-serif; font-size: 40px; font-weight: 800; color: rgba(145,211,233,0.65) !important; line-height: 1; margin-bottom: 12px; }
.modul-card h3 { font-size: 16px; color: #F0FCFF; margin-bottom: 8px; }
.modul-tag { font-size: 13px; font-weight: 600; color: #91d3e9; background: rgba(40,88,165,0.2); border: 1px solid rgba(40,88,165,0.3); padding: 4px 12px; border-radius: 4px; display: inline-block; margin-bottom: 14px; }
.modul-tag--highlight { background: rgba(145,211,233,0.15); border-color: rgba(145,211,233,0.3); }
.modul-card p { font-size: 15px; color: rgba(240,252,255,0.78); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.modul-quote { font-family: 'Nunito Sans', sans-serif; font-size: 20px; font-weight: 800; background: linear-gradient(135deg, #91d3e9, #5ab8d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* FÖRDER-TABELLE */
.foerder-table-wrap { margin-top: 40px; overflow-x: auto; }
.foerder-table { width: 100%; border-collapse: collapse; }
.foerder-table th { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; color: rgba(240,252,255,0.67); text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 16px; border-bottom: 1px solid rgba(145,211,233,0.15); text-align: left; }
.foerder-table td { font-family: 'Montserrat', sans-serif; font-size: 15px; color: rgba(240,252,255,0.82); padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.foerder-table tr:last-child td { border-bottom: none; }
.foerder-table tr:hover td { background: rgba(255,255,255,0.02); }
.foerder-table td:first-child { color: #F0FCFF; }
.table-note { font-size: 12px; color: rgba(240,252,255,0.57); margin-top: 16px; }

/* PRAXIS GRID */
.praxis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.praxis-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(145,211,233,0.1); border-radius: 10px; padding: 22px 18px; }
.praxis-betrag { font-family: 'Nunito Sans', sans-serif; font-size: 28px; font-weight: 800; background: linear-gradient(135deg, #91d3e9, #5ab8d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.praxis-info { font-size: 12px; color: rgba(240,252,255,0.55); line-height: 1.65; }

@media (max-width: 1024px) {
  .prog-hero-inner { grid-template-columns: 1fr; }
  .prog-hero-box { display: none; }
  .modul-grid { grid-template-columns: 1fr 1fr; }
  .praxis-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .modul-grid { grid-template-columns: 1fr; }
  .praxis-grid { grid-template-columns: 1fr 1fr; }
  .prog-hero-stats { flex-direction: column; gap: 16px; }
}

/* MODUL DETAIL */
.modul-detail {
  background: #0d1826;
  border: 1px solid rgba(145,211,233,0.14);
  border-radius: 14px; margin-bottom: 20px;
  overflow: hidden; transition: all 0.2s;
}
.modul-detail:hover { border-color: rgba(145,211,233,0.22); }
.modul-detail--featured {
  border-color: rgba(145,211,233,0.25);
  background: rgba(145,211,233,0.04);
}
.modul-detail-header {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px; border-bottom: 1px solid rgba(145,211,233,0.08);
}
.modul-detail-num {
  font-family: 'Nunito Sans', sans-serif; font-size: 36px; font-weight: 800;
  color: rgba(145,211,233,0.65) !important; line-height: 1; flex-shrink: 0; width: 52px;
}
.modul-detail-header h3 {
  font-family: 'Nunito Sans', sans-serif; font-size: 18px; font-weight: 800;
  color: #F0FCFF; margin: 0 0 8px;
}
.modul-detail-quote {
  font-family: 'Nunito Sans', sans-serif; font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, #91d3e9, #5ab8d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-left: auto; flex-shrink: 0; white-space: nowrap;
}
.modul-detail-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 0;
}
.modul-detail-col {
  padding: 24px 28px;
}
.modul-detail-col:first-child { border-right: 1px solid rgba(145,211,233,0.06); }
.modul-detail-col h4 {
  font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 700;
  color: #91d3e9; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em;
}
.modul-detail-col p {
  font-family: 'Montserrat', sans-serif; font-size: 16px;
  color: rgba(240,252,255,0.82); line-height: 1.75; margin-bottom: 14px;
}
.modul-detail-col p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .modul-detail-body { grid-template-columns: 1fr; }
  .modul-detail-col:first-child { border-right: none; border-bottom: 1px solid rgba(145,211,233,0.06); }
  .modul-detail-header { flex-wrap: wrap; }
  .modul-detail-quote { margin-left: 0; }
}

/* FAQ ACCORDION */
.faq-item {
  border: 1px solid rgba(145,211,233,0.1);
  border-radius: 10px; margin-bottom: 10px;
  background: rgba(255,255,255,0.03); overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(145,211,233,0.3); background: rgba(40,88,165,0.08); }
.faq-item.open { border-color: rgba(145,211,233,0.35); background: rgba(40,88,165,0.15); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; background: transparent; border: none;
  cursor: pointer; text-align: left;
  font-family: 'Nunito Sans', sans-serif; font-size: 17px; font-weight: 800;
  color: #F0FCFF; line-height: 1.3; transition: color 0.2s;
}
.faq-q:hover { color: #91d3e9; }
.faq-item.open .faq-q { color: #91d3e9; }

.faq-icon {
  font-size: 22px; font-weight: 300; color: #91d3e9;
  flex-shrink: 0; transition: transform 0.25s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 22px 20px;
}
.faq-a p {
  font-family: 'Montserrat', sans-serif; font-size: 16px;
  color: rgba(240,252,255,0.82); line-height: 1.8; margin: 0;
  border-top: 1px solid rgba(145,211,233,0.1); padding-top: 16px;
}

/* MODUL PRAXISFALL BOX */
.modul-praxisfall {
  background: rgba(40,88,165,0.15);
  border: 1px solid rgba(40,88,165,0.3);
  border-left: 3px solid #2858a5;
  border-radius: 8px; padding: 16px 18px; margin-top: 16px;
}
.modul-praxisfall-label {
  font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700;
  color: #91d3e9; text-transform: uppercase; letter-spacing: 0.12em;
  display: block; margin-bottom: 8px;
}
.modul-praxisfall p {
  font-family: 'Montserrat', sans-serif; font-size: 15px;
  color: rgba(240,252,255,0.88); line-height: 1.7; margin: 0;
}

/* === MOBILE TYPOGRAPHY FIX — Best Practice 16px minimum === */
@media (max-width: 768px) {
  body { font-size: 16px; }

  /* Alle Fließtexte auf Mobile mindestens 15px */
  p, li, td, .modul-card p, .modul-detail-col p,
  .prozess-step p, .faq-a p, .programm-card p,
  .praxis-info, .modul-praxisfall p,
  .legal-section p, .single-post-content p { font-size: 15px !important; line-height: 1.75 !important; }

  /* Labels und Tags — von 10/11px auf 12px */
  .prog-hero-badge, .modul-tag, .prog-info-label,
  .kontakt-label, .hero-stat .lbl, .prog-stat-lbl { font-size: 12px !important; }

  /* Tabellen-Zellen lesbar */
  .foerder-table td { font-size: 14px !important; padding: 12px !important; }
  .foerder-table th { font-size: 12px !important; }

  /* Farben aufhellen — gedämpfte Texte auf Mobile besser lesbar */
  .modul-card p, .prozess-step p { color: rgba(240,252,255,0.82) !important; }
  .faq-a p { color: rgba(240,252,255,0.85) !important; }
  .prog-hero-sub { color: rgba(240,252,255,0.85) !important; }

  /* FAQ-Frage größer */
  .faq-q { font-size: 15px !important; line-height: 1.4 !important; }

  /* Stat-Labels */
  .metrik-lbl { font-size: 14px !important; }
  .metrik-sub { font-size: 13px !important; }

  /* Kontakt */
  .kontakt-value { font-size: 16px !important; }
}

/* Bookings Widget — weißer Container passend zum iFrame */
.termin-widget-wrap {
  background: rgba(40,88,165,0.12)fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  margin: 0 auto;
  max-width: 960px;
}
.termin-widget-header {
  background: rgba(40,88,165,0.12)fff;
  padding: 28px 32px 0;
  border-bottom: none;
}
.termin-widget-header h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #121d31;
  margin: 0 0 6px;
}
.termin-widget-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(18,29,49,0.55);
  margin: 0 0 0;
}
.termin-widget-container {
  background: rgba(40,88,165,0.12)fff;
}

/* CI-Override: Keine roten oder pinken Farben */
.faq-item.open,
.faq-item.open .faq-q,
.faq-q:focus,
.faq-item:focus-within {
  background: rgba(40,88,165,0.15) !important;
  border-color: rgba(145,211,233,0.35) !important;
  color: #F0FCFF !important;
  outline: none !important;
}
.faq-item.open .faq-q {
  color: #91d3e9 !important;
}
/* Hello Elementor / WordPress Focus-Ring überschreiben */
*:focus { outline-color: #91d3e9 !important; }
a:focus, button:focus { outline-color: #91d3e9 !important; }

/* Modul-Nummern deutlich sichtbarer */
.modul-detail-num { color: rgba(145,211,233,0.6) !important; }

/* Section-H2 mit Linie */
.section--dark h2 {
  font-size: clamp(26px, 3.5vw, 40px) !important;
  padding-bottom: 14px !important;
  border-bottom: 2px solid rgba(145,211,233,0.25) !important;
  display: inline-block !important;
  color: #F0FCFF !important;
}

/* Modul-Header H3 größer */
.modul-detail-header h3 {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #F0FCFF !important;
}

/* Modul-Detail Überschriften (Was wird gefördert etc.) */
.modul-detail-col h4 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #91d3e9 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 10px !important;
}

/* Modul-Tag größer */
.modul-tag {
  font-size: 13px !important;
  padding: 5px 12px !important;
}

/* Widget größer */
.termin-widget-container iframe,
.termin-widget-container > div {
  min-height: 820px !important;
}

/* Globale Aufhellung — alle Texte gut lesbar */
.section--dark p,
.modul-detail-col p, .modul-card p,
.prozess-step p, .prog-hero-sub,
.faq-a p, .modul-praxisfall p {
  color: rgba(240,252,255,0.95) !important;
}

/* Labels und Untertitel */
.prog-hero-badge, .section-label,
.prog-info-label, .kontakt-label,
.modul-tag, .prog-stat-lbl,
.hero-stat .lbl, .metrik-sub {
  color: rgba(240,252,255,0.72) !important;
}

/* Prozess-Nummern gut sichtbar */
.prozess-num, .modul-detail-num {
  color: rgba(145,211,233,0.55) !important;
}

/* H2 Section-Überschriften */
.section--dark h2, .section--dark h3 {
  color: #F0FCFF !important;
}
/* section--light Überschriften bleiben dunkel — durch globales .section--light h2 oben gesetzt */

/* Stat-Labels unter Kennzahlen */
.prog-stat-lbl, .hero-stat .lbl,
.metrik-lbl, .metrik-sub {
  color: rgba(240,252,255,0.75) !important;
}

/* Scroll-to-top Button */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: rgba(40,88,165,0.85);
  border: 1px solid rgba(145,211,233,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s;
  backdrop-filter: blur(8px);
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover {
  background: rgba(40,88,165,1);
  border-color: rgba(145,211,233,0.6);
}
#scroll-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #91d3e9;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  #scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* Prozess-Nummern und Modul-Nummern — absoluter Override */
.prozess-step > .prozess-num,
.prozess-num,
.modul-detail-num,
.modul-num {
  color: rgba(145,211,233,0.70) !important;
}

/* Prozess-Nummern Startseite — erzwingen */
.prozess-step .prozess-num,
div.prozess-num,
span.prozess-num {
  color: rgba(145,211,233,0.70) !important;
}

/* ===== EEW SEITE — RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Hero */
  .prog-hero { padding: 48px 16px 40px; }
  .prog-hero-inner { flex-direction: column; gap: 28px; }
  .prog-hero h1 { font-size: clamp(28px, 7vw, 38px) !important; padding-bottom: 12px; }
  .prog-hero-sub { font-size: 16px !important; }
  .prog-hero-stats { gap: 16px; flex-wrap: wrap; }
  .prog-stat-box { min-width: 100px; }
  .prog-info-box { width: 100%; box-sizing: border-box; }

  /* Modul-Schnellübersicht */
  .modul-nav-grid,
  [style*="grid-template-columns:repeat(auto-fit,minmax(280px"] {
    grid-template-columns: 1fr !important;
  }

  /* Modul-Detail */
  .modul-detail-header { flex-direction: column; gap: 8px; }
  .modul-detail-body { grid-template-columns: 1fr !important; }
  .modul-detail-num { font-size: 28px !important; }
  .modul-detail-header h3 { font-size: 18px !important; }

  /* Förder-Tabelle scrollbar */
  .foerder-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .foerder-table { min-width: 480px; }
  .foerder-table td, .foerder-table th { padding: 10px 12px !important; font-size: 14px !important; }

  /* Prozess-Steps */
  .prozess-grid { grid-template-columns: 1fr !important; }
  .prozess-step { border-right: none !important; border-bottom: 1px solid rgba(145,211,233,0.08); padding: 20px 16px !important; }

  /* Praxis-Grid */
  .praxis-grid { grid-template-columns: 1fr !important; }

  /* FAQ */
  .faq-q { font-size: 15px !important; padding: 16px !important; line-height: 1.5 !important; }
  .faq-a { padding: 0 16px 16px !important; }

  /* CTA Section */
  .cta-section { padding: 48px 16px !important; }
  .cta-section h2 { font-size: 24px !important; }

  /* Termin Widget */
  .termin-widget-wrap { border-radius: 8px; }
  .termin-widget-header { padding: 20px 16px 0 !important; }

  /* Breadcrumb */
  nav[aria-label="Breadcrumb"] { padding: 8px 16px !important; }

  /* Sections allgemein */
  .section--dark, .section--light { padding: 48px 16px !important; }
  .container { padding: 0 16px !important; }
}

@media (max-width: 480px) {
  .prog-hero h1 { font-size: 26px !important; }
  .prog-hero-stats { grid-template-columns: repeat(2, 1fr) !important; display: grid !important; }
  .modul-tag { font-size: 12px !important; }
  .foerder-table td { font-size: 13px !important; }
  
  /* Modul-Nummer auf Mobile kleiner */
  .modul-detail-num { font-size: 24px !important; width: 36px !important; }
  
  /* Definitons-Box */
  [style*="background:rgba(40,88,165,0.1)"] { padding: 16px !important; }
  [style*="background:rgba(40,88,165,0.1)"] p { font-size: 15px !important; }
}

/* ===== ALLE PROGRAMMSEITEN — RESPONSIVE ===== */
@media (max-width: 768px) {

  /* Hero allgemein */
  .prog-hero { padding: 44px 16px 36px !important; }
  .prog-hero h1 { font-size: clamp(24px, 6.5vw, 36px) !important; padding-bottom: 12px; }
  .prog-hero-sub { font-size: 15px !important; }
  .prog-hero-stats { gap: 12px; flex-wrap: wrap; }
  .prog-stat-box { min-width: 90px; }
  .prog-info-box { width: 100%; box-sizing: border-box; margin-top: 24px; }
  .prog-hero-inner { flex-direction: column !important; gap: 24px; }

  /* Sections */
  .section--dark, .section--light { padding: 44px 16px !important; }
  .container { padding: 0 !important; }

  /* Alle Grids auf 1 Spalte */
  [style*="grid-template-columns:repeat(auto-fit,minmax(280px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(auto-fit,minmax(260px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(auto-fit,minmax(240px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(auto-fit,minmax(300px"] { grid-template-columns: 1fr !important; }

  /* Tabellen scrollbar */
  .foerder-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Prozess */
  .prozess-grid { grid-template-columns: 1fr !important; }
  .prozess-step { border-right: none !important; border-bottom: 1px solid rgba(145,211,233,0.08); padding: 20px 0 !important; }

  /* Info-Box im Hero */
  [style*="background:rgba(255,255,255,0.05);border:1px solid rgba(145,211,233,0.15);border-radius:12px"] {
    padding: 16px !important;
  }

  /* Praxis-Cases */
  [style*="praxis-betrag"] { font-size: 22px !important; }

  /* Definitions-Block */
  [style*="background:rgba(40,88,165,0.1)"] p { font-size: 15px !important; }

  /* FAQ */
  .faq-q { font-size: 15px !important; padding: 14px 16px !important; }
  .faq-a { padding: 0 16px 14px !important; }

  /* CTA */
  .cta-section { padding: 44px 16px !important; }
  .cta-section .btn-outline { margin-left: 0 !important; margin-top: 12px; }

  /* Buttons nebeneinander → untereinander auf kleinen Screens */
  .cta-section a { display: block !important; text-align: center; margin: 0 0 12px !important; }
  .cta-section a.btn-primary { margin-bottom: 12px !important; }
}

@media (max-width: 480px) {
  .prog-hero h1 { font-size: 22px !important; }
  .prog-hero-stats { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; }
  .prog-stat-val { font-size: 22px !important; }
  .foerder-table td, .foerder-table th { font-size: 13px !important; padding: 9px 10px !important; }
  .section-label { font-size: 10px !important; }
  h2 { font-size: clamp(20px, 5.5vw, 28px) !important; }
}

/* =============================================
   SECTION FARBREGELN — konsolidiert v3.2
   ============================================= */

/* section--dark: alles weiß/hell */
.section--dark { color: #F0FCFF; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #F0FCFF !important; }
.section--dark p, .section--dark li { color: rgba(240,252,255,0.88) !important; }
.section--dark .section-label { color: #91d3e9 !important; }

/* section--light: alles dunkel */
.section--light { color: #1a2333; }
.section--light h2, .section--light h3, .section--light h4 { color: #0a1628 !important; }
.section--light p, .section--light li { color: #2d3748; }
.section--light .section-label { color: #2858a5 !important; }

/* BODY OVERFLOW */
body { overflow-x: hidden; }

/* TOUCH TARGETS */
.btn, button, .hamburger, .faq-q, .mobile-nav a { min-height: 44px; }
.btn { display: inline-flex; align-items: center; justify-content: center; }

/* HERO MOBILE */
@media (max-width: 768px) {
  .hero { min-height: 60vh !important; }
  .hero-btns { flex-direction: column !important; gap: 10px !important; }
  .hero-btns .btn, .hero-btns a { width: 100% !important; text-align: center; margin-left: 0 !important; }
}
@media (max-width: 480px) {
  .hero { min-height: auto !important; padding: 72px 16px 48px !important; }
}

/* TABELLEN SCROLLBAR */
@media (max-width: 768px) {
  .foerder-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .foerder-table { min-width: 520px; }
}

/* =============================================
   KONTEXTFIXES v3.3 — alle Seiten
   ============================================= */

/* modul-detail immer dunkel */
.section--light .modul-detail { background: #0d1826 !important; }
.modul-detail-header h3 { color: #F0FCFF !important; font-size: 20px !important; }
.modul-detail-num { color: rgba(145,211,233,0.75) !important; }
.modul-detail-quote { color: #91d3e9 !important; font-weight: 800; }
.modul-detail-col h4 { color: #91d3e9 !important; }
.modul-detail-col p { color: rgba(240,252,255,0.88) !important; font-size: 15px !important; }
.modul-detail-col li { color: rgba(240,252,255,0.85) !important; }
.modul-tag { color: #91d3e9 !important; background: rgba(40,88,165,0.2) !important; border: 1px solid rgba(145,211,233,0.15) !important; }
.modul-detail-body { background: rgba(255,255,255,0.02); }

/* fuerwen-card p inline override */
.fuerwen-card p { color: rgba(240,252,255,0.88) !important; }

/* fuerwen-link Farbe */
.fuerwen-link { color: #91d3e9 !important; }
.fuerwen-link:hover { color: #F0FCFF !important; }

/* section--light h2: höchste Spezifizität */
.section--light .container h2 { color: #0a1628 !important; }
.section--light .container p { color: #2d3748; }

/* GRW und andere: dark-section Links nicht dunkelblau */
.section--dark a:not(.btn):not([class*="cta"]) { color: rgba(145,211,233,0.9); }

/* prog-hero Stats */
.prog-stat-val { color: #F0FCFF !important; }
.prog-stat-lbl { color: rgba(240,252,255,0.72) !important; }

/* Tabellen immer lesbar */
.foerder-table { background: rgba(255,255,255,0.03); }
.foerder-table th { color: rgba(145,211,233,0.9) !important; background: rgba(40,88,165,0.15) !important; }
.foerder-table td { color: rgba(240,252,255,0.85) !important; }
.foerder-table tr:nth-child(even) td { background: rgba(255,255,255,0.02) !important; }

/* praxis-karten */
.praxis-betrag { color: #91d3e9 !important; font-size: 26px !important; font-weight: 800 !important; }

/* referenz-cards */
.referenz-card h3 { color: #F0FCFF !important; }
.referenz-card p { color: rgba(240,252,255,0.82) !important; }

/* Breadcrumb */
.breadcrumb-wrap { color: rgba(240,252,255,0.6) !important; }
.breadcrumb-wrap a { color: rgba(145,211,233,0.8) !important; }
.breadcrumb-sep { color: rgba(240,252,255,0.3) !important; }

/* FAQ auf Programmseiten */
.faq-q { color: #F0FCFF !important; font-size: 16px !important; }
.faq-a p { color: rgba(240,252,255,0.85) !important; }

/* CTA Section immer sichtbar */
.cta-section h2 { color: #F0FCFF !important; }
.cta-section p { color: rgba(240,252,255,0.85) !important; }

/* Version: 3.1.5 */

/* MODUL-DETAIL: immer weiße Texte — höchste Spezifizität */
.section--light .modul-detail .modul-detail-col p,
.section--light .modul-detail .modul-detail-col li,
.modul-detail .modul-detail-col p,
.modul-detail .modul-detail-col li { color: rgba(240,252,255,0.88) !important; }

.section--light .modul-detail .modul-detail-col h4,
.modul-detail .modul-detail-col h4 { color: #91d3e9 !important; }

.section--light .modul-detail .modul-detail-header h3,
.modul-detail .modul-detail-header h3 { color: #F0FCFF !important; }

.section--light .modul-praxisfall,
.modul-praxisfall { 
  background: rgba(40,88,165,0.2) !important; 
  border: 1px solid rgba(145,211,233,0.2) !important;
}
.modul-praxisfall p, 
.section--light .modul-praxisfall p { color: rgba(240,252,255,0.88) !important; }
.modul-praxisfall strong,
.section--light .modul-praxisfall strong { color: #91d3e9 !important; }
/* Version 3.1.3 */
