/* ═══════════════════════════════════════════════════════════════
   BA-MICROSITE · KARIM EL HAMDAOUI · V5 PREMIUM POLISH
   Design: Modern Institutional (A) + Executive Report (C)
   Fonts: Manrope (800/600) + Inter (400/500/600) — system fallback
═══════════════════════════════════════════════════════════════ */

/* ─── FONT FACES ─────────────────────────────────────────────── */
/* local() entfernt — verhindert Mischung mit system-installierten
   Variable-Font-Versionen (A-Glyph-Fix, 2026-07-23)            */
@font-face {
  font-family: 'Manrope';
  src: url('./assets/fonts/manrope-extrabold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
  font-synthesis: none;
}
@font-face {
  font-family: 'Manrope';
  src: url('./assets/fonts/manrope-semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
  font-synthesis: none;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  font-synthesis: none;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
  font-synthesis: none;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Farben */
  --bg:               #FFFFFF;
  --bg-alt:           #F4F6F9;
  --bg-navy-surface:  #EEF2F8;
  --bg-dark:          #1A3A5C;
  --text:             #0C1824;
  --text-muted:       #4A5F72;
  --text-light:       #7A90A4;
  --primary:          #1A3A5C;
  --accent:           #1F7E99;
  --accent-hover:     #166880;
  --accent-light:     #E8F4F8;
  --border:           #C8D6E4;
  --border-strong:    #A2B8CA;
  --status-bg:        #FDF5E6;
  --status-border:    #E8C87A;
  --status-text:      #7A5000;

  /* Typografie */
  --font-heading: 'Manrope', 'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter',   'Segoe UI Variable', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Abstände */
  --space-xs:  0.5rem;    /*  8px */
  --space-sm:  1rem;      /* 16px */
  --space-md:  1.75rem;   /* 28px */
  --space-lg:  2.75rem;   /* 44px */
  --space-xl:  4.5rem;    /* 72px */
  --space-2xl: 6.5rem;    /* 104px */
  --space-3xl: 9rem;      /* 144px */

  /* Layout */
  --max-width:      1280px;
  --max-width-wide: 1400px;
  --max-width-text:  800px;
  --container-pad:  clamp(20px, 4vw, 56px);
  --section-v:      var(--space-3xl);

  /* Radien */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;

  /* Schatten */
  --shadow-sm: 0 1px 4px rgba(12,24,36,0.06), 0 2px 8px rgba(12,24,36,0.04);
  --shadow-md: 0 4px 20px rgba(12,24,36,0.10), 0 1px 4px rgba(12,24,36,0.06);
  --shadow-lg: 0 8px 40px rgba(12,24,36,0.12), 0 2px 8px rgba(12,24,36,0.06);

  /* Transition */
  --trans: 0.22s ease;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.1875rem; /* 19px */
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--container-pad); }
.container--narrow { max-width: var(--max-width-text); }
.container--wide   { max-width: var(--max-width-wide); }

/* ─── FADE IN ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ─── TOP STRIP ──────────────────────────────────────────────── */
.top-strip {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.62);
  text-align: center;
  padding: 12px var(--container-pad);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 66px;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem; font-weight: 800;
  color: var(--primary); flex-shrink: 0;
  letter-spacing: -0.015em;
}
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); transition: color var(--trans);
}
.nav__links a:hover { color: var(--primary); }
.nav__download {
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600;
  color: #fff !important;
  background: var(--primary);
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--trans);
  white-space: nowrap; flex-shrink: 0;
}
.nav__download:hover { background: var(--accent) !important; color: #fff !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--trans); }

/* ─── CHAPTER LABEL ──────────────────────────────────────────── */
.chapter-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.875rem;
}
.chapter-label--light { color: rgba(255,255,255,0.5); }

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section--alt          { background: var(--bg-alt); }
.section--navy-surface { background: var(--bg-navy-surface); }
.section--dark         { background: var(--bg-dark); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--text); margin-bottom: 1rem;
}
.section--dark .section__title { color: #fff; }

.section__lead {
  font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  color: var(--text-muted);
  max-width: 700px; margin-bottom: var(--space-lg);
  line-height: 1.72;
}
.section__note {
  font-size: 0.9375rem; color: var(--text-light);
  font-style: italic; margin-top: var(--space-md);
  line-height: 1.65;
}

/* Strategic H2 differentiation */
#timeframe .section__title,
#weiterbildung .section__title {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
}
#entwicklung .section__title,
#zielrichtung .section__title,
#orientierung .section__title,
#kontakt .section__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600;
  padding: 14px 30px; border-radius: var(--radius);
  transition: var(--trans); cursor: pointer;
  text-decoration: none; white-space: nowrap; line-height: 1.3;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn--outline:hover { background: var(--accent-light); color: var(--accent-hover); }
.btn--outline-light {
  background: transparent; color: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.4);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn--lg { font-size: 1.125rem; padding: 16px 36px; }
.btn--sm { font-size: 0.9375rem; padding: 10px 22px; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - 44px - 66px);
  display: flex; align-items: center;
  padding: var(--space-2xl) 0;
  background: var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--container-pad); width: 100%;
}
.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text); margin-bottom: var(--space-md);
  overflow-wrap: break-word;
}
.hero__headline span { display: block; }
.hero__divider {
  width: 60px; height: 3px;
  background: var(--accent); border-radius: 2px;
  margin-bottom: var(--space-md);
}
.hero__sub {
  font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  color: var(--text-muted); line-height: 1.72;
  max-width: 540px; margin-bottom: var(--space-lg);
}
.hero__primary-download { margin-bottom: var(--space-md); }
.hero__secondary {
  display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap;
}
.hero__secondary-link {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--trans); padding: 4px 0;
}
.hero__secondary-link:hover { color: var(--primary); }
.hero__secondary-link::after { content: '→'; font-size: 1.1em; }
.hero__meta {
  margin-top: var(--space-lg);
  font-size: 0.9375rem; color: var(--text-light);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.hero__img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ─── STEPS (VERTICAL) ───────────────────────────────────────── */
.steps-vertical {
  position: relative; display: flex; flex-direction: column;
  margin-top: var(--space-lg);
}
.steps-vertical::before {
  content: ''; position: absolute;
  left: 28px; top: 60px; bottom: 0;
  width: 1px; background: var(--border);
}
.step-v {
  display: grid; grid-template-columns: 58px 1fr;
  gap: var(--space-md); padding-bottom: var(--space-xl);
}
.step-v:last-child { padding-bottom: 0; }
.step-v__num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 800; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-v__content { padding-top: 14px; }
.step-v__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 10px; letter-spacing: -0.012em;
}
.step-v__text {
  font-size: 1.0625rem; color: var(--text-muted); line-height: 1.72;
}

/* ─── TIMEFRAME GALERIE ──────────────────────────────────────── */
.tf-intro {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.018em; line-height: 1.2;
  margin-bottom: var(--space-lg);
}
.tf-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}
.tf-main-img img {
  width: 100%; display: block;
  max-height: 560px; object-fit: cover; object-position: top;
}
.tf-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm); margin-bottom: var(--space-lg);
}
.tf-gallery-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative;
}
.tf-gallery-item img {
  width: 100%; display: block;
  height: 200px; object-fit: cover; object-position: top;
  transition: transform 0.3s ease;
}
.tf-gallery-item:hover img { transform: scale(1.02); }
.tf-gallery-item figcaption {
  padding: 9px 12px;
  font-size: 0.875rem; color: var(--text-muted);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  line-height: 1.4;
}
.tf-competences {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-lg);
}
.tf-tag {
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 500;
  color: var(--primary);
  padding: 7px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.tf-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--accent); padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans), border-color var(--trans);
}
.tf-link:hover { color: var(--primary); border-color: var(--primary); }
.tf-link::after { content: '→'; font-size: 1.1em; }
.tf-link--placeholder { color: var(--text-light); font-style: italic; cursor: default; }
.tf-link--placeholder::after { content: ''; }

/* ─── TIMEFRAME VIDEO-GALERIE ────────────────────────────────── */
.tf-video-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm); margin-bottom: var(--space-lg);
}
.tf-video-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; cursor: pointer;
}
.tf-video-item::after {
  content: '▶';
  position: absolute;
  top: calc(50% - 28px); left: calc(50% - 28px);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,0,0,0.42);
  color: rgba(255,255,255,0.92);
  font-size: 18px; line-height: 56px; text-align: center;
  text-indent: 4px;
  pointer-events: none;
  transition: background var(--trans);
}
.tf-video-item:hover::after { background: rgba(0,0,0,0.64); }
.tf-video-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.tf-video-thumb {
  width: 100%; display: block;
  height: 260px; object-fit: cover; object-position: center;
  pointer-events: none;
}
.tf-video-item figcaption {
  padding: 9px 12px;
  font-size: 0.875rem; color: var(--text-muted);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  line-height: 1.4;
}

/* ─── TIMEFRAME PREMIUM HIERARCHY ────────────────────────────── */
.tf-group-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.tf-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.018em; line-height: 1.2;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}
.tf-campaign {
  display: grid; grid-template-columns: 5fr 3fr;
  gap: var(--space-md); margin-bottom: var(--space-lg);
  align-items: start;
}
.tf-campaign-item {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.tf-campaign-item img {
  width: 100%; display: block;
  height: 320px; object-fit: cover; object-position: top;
}
.tf-campaign-item figcaption {
  padding: 9px 12px;
  font-size: 0.875rem; color: var(--text-muted);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  line-height: 1.4;
}
.tf-video-featured {
  position: relative; cursor: pointer;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}
.tf-video-featured::after {
  content: '▶';
  position: absolute;
  top: calc(50% - 36px); left: calc(50% - 36px);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.95);
  font-size: 26px; line-height: 72px; text-align: center;
  text-indent: 5px;
  pointer-events: none;
  transition: background var(--trans);
}
.tf-video-featured:hover::after { background: rgba(0,0,0,0.66); }
.tf-video-featured:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.tf-video-featured__thumb {
  width: 100%; display: block;
  height: 420px; object-fit: cover; object-position: center;
  pointer-events: none;
}
.tf-video-featured figcaption {
  padding: 10px 14px;
  font-size: 0.875rem; color: var(--text-muted);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  line-height: 1.4;
}
.tf-video-secondary {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-sm); margin-bottom: var(--space-lg);
}

/* ─── CREATIVE ENGINE ────────────────────────────────────────── */
.ce__header {
  display: flex; align-items: flex-start;
  gap: var(--space-md); flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
.status-badge {
  display: inline-flex; align-items: center;
  padding: 6px 16px;
  background: var(--status-bg);
  color: var(--status-text);
  border: 1px solid var(--status-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 600; line-height: 1.4;
  align-self: center; flex-shrink: 0;
}
.ce-gallery {
  display: grid; grid-template-columns: 5fr 3fr;
  gap: var(--space-md); margin-bottom: var(--space-md);
}
.ce-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.ce-main-img img {
  width: 100%; display: block;
  max-height: 460px; object-fit: cover; object-position: top;
}
.ce-main-img figcaption, .ce-detail-img figcaption {
  padding: 10px 14px;
  font-size: 0.875rem; color: var(--text-muted);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  line-height: 1.45;
}
.ce-detail-img {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.ce-detail-img img {
  width: 100%; display: block;
  max-height: 320px; object-fit: cover; object-position: top;
}
.process-chain {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-md);
}
.process-chain__step {
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600; color: var(--text);
  padding: 7px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.process-chain__arrow { color: var(--accent); font-size: 18px; font-weight: 700; }

/* CE on dark background */
.section--dark .section__lead { color: rgba(255,255,255,0.72); }
.section--dark .chapter-label { color: rgba(255,255,255,0.5); }
.section--dark .section__note { color: rgba(255,255,255,0.45); }
.section--dark .ce__header { flex-wrap: wrap; }
.section--dark .status-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.24);
}
.section--dark .ce-main-img,
.section--dark .ce-detail-img {
  border-color: rgba(255,255,255,0.14);
}
.section--dark .ce-main-img figcaption,
.section--dark .ce-detail-img figcaption {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.62);
  border-color: rgba(255,255,255,0.1);
}
.section--dark .process-chain {
  border-color: rgba(255,255,255,0.14);
}
.section--dark .process-chain__step {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
}
.ce-benefit {
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-lg);
  line-height: 1.55;
}
.ce-gallery-wide { grid-template-columns: 7fr 3fr; }

/* ─── ZIELRICHTUNG ───────────────────────────────────────────── */
.target-central {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: var(--primary);
  letter-spacing: -0.025em; line-height: 1.12;
  margin-bottom: var(--space-lg);
}
.target-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: var(--space-lg);
}
.target-field {
  padding: var(--space-md) var(--space-md) var(--space-md) 0;
  border-top: 2px solid var(--border);
}
.target-field--primary { border-top-color: var(--primary); }
.target-field h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.012em;
}
.target-field p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.65;
}

/* ─── WEITERBILDUNG ──────────────────────────────────────────── */
.wb-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--primary);
  line-height: 1.18; letter-spacing: -0.022em;
  margin-bottom: var(--space-xl);
  max-width: 740px;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-strong);
}
.wb-grid {
  display: grid; grid-template-columns: 5fr 1fr 5fr;
  gap: var(--space-lg); align-items: start;
  margin-bottom: var(--space-xl);
}
.wb-col h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  padding-bottom: 8px; border-bottom: 2px solid var(--primary);
}
.wb-list { display: flex; flex-direction: column; }
.wb-list li {
  font-size: 1.0625rem; color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.wb-list li:last-child { border-bottom: none; }
.wb-transition {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: 52px; gap: 8px;
}
.wb-arrow-line {
  width: 1px; height: 56px; background: var(--accent-hover);
  position: relative;
}
.wb-arrow-icon {
  font-size: 1.5rem; color: var(--accent); font-weight: 700; line-height: 1;
}
.wb-conclusion {
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  color: var(--text); font-style: italic; line-height: 1.72; margin: 0;
}

/* ─── WEITERBILDUNGS-KURSE ───────────────────────────────────── */
.wb-courses {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-strong);
}
.wb-courses__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.018em; margin-bottom: var(--space-lg);
}
.wb-courses__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); margin-bottom: var(--space-lg);
}
.wb-course {
  padding: var(--space-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.wb-course--primary {
  border-color: var(--primary); border-width: 2px;
  background: var(--bg-alt);
}
.wb-course__rank {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); display: block;
}
.wb-course--primary .wb-course__rank { color: var(--primary); }
.wb-course__name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 800; color: var(--text);
  line-height: 1.3; letter-spacing: -0.01em;
}
.wb-course__meta { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.wb-course__meta > div { display: flex; gap: 8px; align-items: baseline; }
.wb-course__meta dt {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600;
  color: var(--text-light); min-width: 76px; flex-shrink: 0;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.wb-course__meta dd {
  font-size: 0.9375rem; color: var(--text); line-height: 1.5;
}
.wb-course__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  padding: 10px 0; border-top: 1px solid var(--border);
  margin-top: auto; transition: color var(--trans);
}
.wb-course__link:hover { color: var(--primary); }
.wb-course__link::after { content: '↗'; font-size: 0.85em; }
.wb-courses__note {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.72; padding: var(--space-md) var(--space-lg);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); border-left: 4px solid var(--accent-light);
}

@media (max-width: 768px) {
  .wb-courses__grid { grid-template-columns: 1fr; }
}

/* ─── WEITERBILDUNG JOURNEY (PREMIUM) ────────────────────────── */
.wb-journey {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-md); align-items: start;
  padding: var(--space-xl);
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}
.wb-journey__phase { padding: var(--space-sm) 0; }
.wb-journey__phase-label {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.wb-journey__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 800; color: var(--text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.012em; line-height: 1.25;
}
.wb-journey__arrow {
  display: flex; align-items: flex-start;
  padding-top: 48px;
  font-size: 1.5rem; color: var(--accent); font-weight: 700;
}
.wb-primary {
  padding: var(--space-xl);
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}
.wb-primary__badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.wb-primary__provider {
  font-size: 0.9375rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.wb-primary__title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.018em; line-height: 1.2;
  margin-bottom: var(--space-md);
}
.wb-primary__meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-md);
}
.wb-primary__meta-item {}
.wb-primary__meta-label {
  display: block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light); margin-bottom: 4px;
}
.wb-primary__meta-value {
  font-size: 0.9375rem; color: var(--text); font-weight: 500;
}
.wb-alternatives {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-md); margin-bottom: var(--space-lg);
}
.wb-alt {
  padding: var(--space-md);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 10px;
}
.wb-alt__badge {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light);
}
.wb-alt__provider {
  font-size: 0.875rem; color: var(--text-muted); font-weight: 500;
}
.wb-alt__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.01em; line-height: 1.3;
}
.wb-alt__meta {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.55;
}
.wb-alt__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.9375rem; font-weight: 600;
  color: var(--accent); margin-top: auto;
  padding-top: 10px; border-top: 1px solid var(--border);
  transition: color var(--trans);
}
.wb-alt__link:hover { color: var(--primary); }
.wb-alt__link::after { content: '↗'; font-size: 0.85em; }

/* ─── ORIENTIERUNG ───────────────────────────────────────────── */
.orientation-layout {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: var(--space-xl); align-items: start;
  margin-top: var(--space-lg);
}
.orient-lead {
  font-size: 1.1875rem; color: var(--text-muted);
  line-height: 1.72; margin-bottom: var(--space-lg);
}
.orient-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-lg); }
.orient-check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.0625rem; color: var(--text); line-height: 1.6;
}
.orient-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.orient-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--accent); margin-bottom: var(--space-md);
  padding: 12px 24px; border: 2px solid var(--accent);
  border-radius: var(--radius); transition: var(--trans);
}
.orient-link:hover { background: var(--accent-light); color: var(--accent-hover); }
.orient-link::after { content: '↗'; font-size: 0.9em; }
.orient-platforms {
  font-size: 0.9375rem; color: var(--text-light); line-height: 1.9;
  padding-top: var(--space-md); border-top: 1px solid var(--border);
}
.orient-openness {
  font-size: 1rem; color: var(--text-muted);
  margin-top: var(--space-sm); line-height: 1.65;
}
.orientation-img figure {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.orientation-img img { width: 100%; display: block; }
.orientation-img figcaption {
  padding: 10px 14px; font-size: 0.875rem; color: var(--text-muted);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ─── FÖRDERZIEL ─────────────────────────────────────────────── */
.foerderziel__main {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -0.022em;
  margin-bottom: var(--space-md);
}
.foerderziel__sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.72; margin-bottom: var(--space-md); max-width: 620px;
}
.foerderziel__note {
  font-size: 1rem; color: rgba(255,255,255,0.48);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); line-height: 1.68; max-width: 620px;
}
.foerderziel__closing {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.62);
  font-style: italic; line-height: 1.72;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius); max-width: 680px;
}

/* ─── DOWNLOADS ──────────────────────────────────────────────── */
.download-primary {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--bg-dark);
  border-radius: var(--radius-lg); margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.download-primary__label {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 6px; display: block;
}
.download-primary__title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.015em;
}
.download-primary__desc {
  font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.62; max-width: 460px;
}
.download-primary__size {
  font-size: 0.875rem; color: rgba(255,255,255,0.38); margin-top: 6px;
}
.download-secondary { margin-top: var(--space-sm); }
.download-row {
  display: flex; align-items: center; gap: var(--space-md);
  padding: 20px 0; border-bottom: 1px solid var(--border);
  color: var(--text); text-decoration: none; transition: color var(--trans);
}
.download-row:first-child { border-top: 1px solid var(--border); }
.download-row:hover { color: var(--accent); }
.download-row:hover .download-row__arrow { transform: translateX(4px); }
.download-row__icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.download-row__info { flex: 1; min-width: 0; }
.download-row__name { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 600; display: block; }
.download-row__meta-inline {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 2px;
}
.download-row__meta-inline span:first-child {
  font-size: 0.9375rem; color: var(--text-muted);
}
.download-row__meta-inline span:last-child {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase;
}
.download-row__desc { font-size: 1rem; color: var(--text-muted); flex: 2; }
.download-row__meta { font-size: 0.9375rem; color: var(--text-light); white-space: nowrap; }
.download-row__arrow { color: var(--accent); font-weight: 700; font-size: 1.25rem; transition: transform var(--trans); }

/* ─── KONTAKT ────────────────────────────────────────────────── */
.contact { display: flex; flex-direction: column; margin-top: var(--space-lg); }
.contact__item {
  display: flex; gap: var(--space-lg); align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact__item:first-child { padding-top: 0; }
.contact__item:last-child { border-bottom: none; }
.contact__label {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light); width: 130px; flex-shrink: 0;
}
.contact__value { font-size: 1.0625rem; color: var(--text); }
.contact__value a { color: var(--accent); }
.contact__value a:hover { color: var(--accent-hover); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: var(--space-md) 0;
  background: var(--bg-dark); color: rgba(255,255,255,0.32); font-size: 0.875rem;
}
.footer .container { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════════ */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9000;
  display: none; align-items: center; justify-content: center;
}
.lb-overlay--open { display: flex; }

.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,12,24,0.93);
  animation: lb-fade 0.22s ease forwards;
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lb-no-motion .lb-backdrop { animation: none; }

.lb-container {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  max-width: min(96vw, 1320px); max-height: 92svh;
  padding: 0 4px;
  animation: lb-up 0.26s ease forwards;
}
@keyframes lb-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.lb-no-motion .lb-container { animation: none; }

.lb-figure {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  max-width: min(92vw, 1260px); max-height: 90svh;
}
.lb-img {
  object-fit: contain;
  max-width: 100%; max-height: calc(90svh - 52px);
  border-radius: var(--radius); display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lb-caption {
  font-family: var(--font-body); font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  text-align: center; max-width: 680px; line-height: 1.5;
}
.lb-close {
  position: absolute; top: -12px; right: -12px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans); z-index: 2;
}
.lb-close:hover { background: rgba(255,255,255,0.26); }
.lb-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lb-prev, .lb-next {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--trans);
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.24); }
.lb-prev:focus-visible, .lb-next:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Lightbox gallery triggers */
[data-lightbox] {
  cursor: zoom-in;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
[data-lightbox]:hover { opacity: 0.88; }
[data-lightbox]:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════════════════════════════════ */
.vm-overlay {
  position: fixed; inset: 0; z-index: 9100;
  display: none; align-items: center; justify-content: center;
}
.vm-overlay--open { display: flex; }
.vm-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,12,24,0.95);
  animation: lb-fade 0.22s ease forwards;
}
.vm-no-motion .vm-backdrop { animation: none; }
.vm-container {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  max-width: min(92vw, 460px); max-height: 94svh;
  animation: lb-up 0.26s ease forwards;
}
.vm-no-motion .vm-container { animation: none; }
.vm-video {
  width: 100%; border-radius: var(--radius);
  max-height: calc(94svh - 72px);
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  display: block;
}
.vm-close {
  position: absolute; top: -12px; right: -12px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.14); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background var(--trans);
}
.vm-close:hover { background: rgba(255,255,255,0.28); }
.vm-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.vm-caption {
  font-family: var(--font-body); font-size: 0.9375rem;
  color: rgba(255,255,255,0.65); text-align: center;
  line-height: 1.5; max-width: 380px;
}

/* ─── MOBILE NAV ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg); padding: 16px var(--container-pad);
    border-bottom: 1px solid var(--border); gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav__burger { display: flex; }
}

/* ─── RESPONSIVE 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-v: var(--space-2xl); }
  .hero__inner { grid-template-columns: 1fr 400px; gap: var(--space-lg); }
  .ce-gallery, .ce-gallery-wide  { grid-template-columns: 1fr; }
  .ce-detail-img img { max-height: 260px; }
  .download-primary { padding: var(--space-lg); }
  .tf-campaign { grid-template-columns: 1fr; }
  .wb-journey { grid-template-columns: 1fr; }
  .wb-journey__arrow { padding-top: 0; transform: rotate(90deg); }
  .wb-primary__meta { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE 768px ───────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-v: var(--space-xl);
    font-size: 1.0625rem;
  }
  .top-strip { font-size: 0.625rem; letter-spacing: 0.06em; padding: 10px 16px; }
  .hero { min-height: auto; padding: var(--space-xl) 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { order: -1; }
  .hero__img { aspect-ratio: 3/2; max-height: 300px; object-position: top; }
  .hero__headline { font-size: clamp(2.8rem, 8vw, 3.8rem); }
  .steps-vertical::before { left: 24px; top: 56px; }
  .step-v__num { width: 50px; height: 50px; }
  .tf-gallery { grid-template-columns: 1fr 1fr; }
  .tf-video-row { grid-template-columns: 1fr 1fr; }
  .tf-video-secondary { grid-template-columns: 1fr; }
  .tf-video-featured__thumb { height: 300px; }
  .wb-grid    { grid-template-columns: 1fr; }
  .wb-transition { flex-direction: row; padding-top: 0; align-items: center; }
  .wb-arrow-line { width: 40px; height: 1px; }
  .wb-arrow-icon { font-size: 1.25rem; }
  .wb-conclusion { padding: var(--space-md) var(--space-lg); }
  .wb-journey { grid-template-columns: 1fr; }
  .wb-journey__arrow { display: none; }
  .wb-alternatives { grid-template-columns: 1fr; }
  .wb-primary__meta { grid-template-columns: 1fr; }
  .orientation-layout { grid-template-columns: 1fr; }
  .target-fields { grid-template-columns: 1fr; }
  .download-primary { flex-direction: column; align-items: flex-start; }
  .download-row { flex-wrap: wrap; }
  .download-row__desc { display: none; }
  .lb-prev, .lb-next { width: 40px; height: 40px; }
}

/* ─── RESPONSIVE 480px ───────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__headline { font-size: clamp(2.4rem, 9vw, 3rem); }
  .hero__secondary { flex-direction: column; align-items: flex-start; gap: 12px; }
  .tf-gallery { grid-template-columns: 1fr; }
  .tf-video-row { grid-template-columns: 1fr; }
  .tf-video-featured__thumb { height: 240px; }
  .target-fields { grid-template-columns: 1fr; }
  .download-primary { padding: var(--space-md); }
  .wb-primary__meta { grid-template-columns: 1fr; }
  .btn--lg { font-size: 1rem; padding: 14px 24px; }
  .lb-container { padding: 0 2px; gap: 6px; }
  .lb-prev, .lb-next { width: 36px; height: 36px; }
}

/* ─── RESPONSIVE 320px ───────────────────────────────────────── */
@media (max-width: 340px) {
  :root { --container-pad: 16px; }
  .nav__inner { padding: 0 16px; }
  .hero__headline { font-size: 2.2rem; }
  .section__title { font-size: 2rem; }
}
