/* ══════════════════════════════════════════════
   PontemPro Custom CSS
   Source of truth: homepage_preview.html
   ══════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --primary:       #D85E43;
  --primary-dark:  #bf4e35;
  --primary-light: #fdf0ec;
  --secondary:     #004F5A;
  --secondary-dark:#003740;
  --secondary-light:#DCF1F3;
  --dark:          #182628;
  --mint:          #DCF1F3;

  --gray-50:  #f8fafa;
  --gray-100: #f4f8f8;
  --gray-200: #e6eeef;
  --gray-300: #c5d5d7;
  --gray-500: #6e8f92;
  --gray-700: #3a5457;
  --gray-900: #182628;
  --text:     #2d4244;

  --radius-sm: 6px;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-xs: 0 1px 3px rgba(0,79,90,0.06);
  --shadow:    0 2px 8px rgba(0,79,90,0.07);
  --shadow-md: 0 4px 16px rgba(0,79,90,0.10);
  --shadow-lg: 0 8px 32px rgba(0,79,90,0.12);
  --shadow-hover: 0 8px 24px rgba(0,79,90,0.14);

  --blue:       var(--secondary);
  --blue-dark:  var(--secondary-dark);
  --blue-light: var(--secondary-light);
  --green:      var(--primary);

  --transition: 200ms ease;
  --nav-height: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { text-decoration: none; color: var(--primary); }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; color: var(--gray-900); letter-spacing: -0.02em; }
h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.25; color: var(--gray-900); margin-bottom: 1rem; letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
p { margin-bottom: 0.9rem; color: var(--gray-700); max-width: 65ch; }
ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
li { margin-bottom: 0.35rem; color: var(--gray-700); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
#main-content { overflow-x: hidden; width: 100%; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-100); }

/* ── FOCUS VISIBLE ── */
*:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════════════
   NAV — Floating pill
══════════════════════════════════════ */
nav,
.pp-nav {
  position: fixed;
  top: 12px; left: 16px; right: 16px;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0,40,48,0.10);
  border: 1px solid rgba(0,79,90,0.06);
}
.nav-inner { display: flex; align-items: center; height: 56px; padding: 0 24px; gap: 0; }
.nav-logo {
  font-size: 1.4rem; font-weight: 900; color: var(--secondary);
  margin-right: 40px; letter-spacing: -1px; white-space: nowrap;
  cursor: pointer;
}
.nav-logo span { color: var(--primary); }
.nav-logo-wrap { margin-right: 40px; display: flex; align-items: center; text-decoration: none; }
.nav-logo-wrap a { text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.nav-items { display: flex; gap: 4px; flex: 1; list-style: none; padding: 0; margin: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; padding: 8px 14px; font-size: 0.88rem; font-weight: 600;
  color: var(--gray-700); border-radius: var(--radius-sm); cursor: pointer;
  white-space: nowrap; transition: background var(--transition), color var(--transition);
  min-height: 44px; align-items: center; text-decoration: none;
}
.nav-link:hover, .nav-link.active { background: var(--mint); color: var(--secondary); }
.mega {
  display: none; position: absolute; top: 100%; left: 0;
  width: 680px; background: #fff;
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 16px 24px 24px;
  padding-top: 16px; /* visual gap via padding so hover area stays connected */
  grid-template-columns: repeat(3, 1fr); gap: 8px; z-index: 200;
}
/* Invisible bridge fills the gap between nav-link bottom and mega panel */
.mega::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-item:hover .mega { display: grid; }
.mega-item {
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 0.84rem; color: var(--gray-700); cursor: pointer;
  transition: background var(--transition); text-decoration: none;
}
.mega-item:hover { background: var(--mint); color: var(--secondary); }
.mega-item strong { display: block; font-size: 0.88rem; color: var(--gray-900); margin-bottom: 2px; }
.nav-actions { display: flex; gap: 8px; margin-left: auto; }

/* WordPress custom-logo image sizing */
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 40px; width: auto; }

/* Nav fallback — if wp_nav_menu outputs <li> instead of walker divs */
.nav-items > li { position: relative; list-style: none; }
.nav-items > li > a {
  display: flex; padding: 8px 14px; font-size: 0.88rem; font-weight: 600;
  color: var(--gray-700); border-radius: var(--radius-sm); cursor: pointer;
  white-space: nowrap; transition: background var(--transition), color var(--transition);
  min-height: 44px; align-items: center; text-decoration: none;
}
.nav-items > li > a:hover,
.nav-items > li.current-menu-item > a { background: var(--mint); color: var(--secondary); }
.nav-items ul.sub-menu { list-style: none; padding: 0; margin: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none; transition: all var(--transition);
  min-height: 44px; font-family: inherit;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; box-shadow: 0 4px 12px rgba(216,94,67,0.3); }
.btn-outline { background: #fff; color: var(--secondary); border: 2px solid var(--secondary); }
.btn-outline:hover { background: var(--mint); color: var(--secondary); }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-white { background: #fff; color: var(--secondary); }
.btn-white:hover { background: var(--gray-100); color: var(--secondary); box-shadow: 0 4px 16px rgba(255,255,255,0.25); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* Frosted glass effect for CTA white button */
.cta-banner .btn-white {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-banner .btn-white:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 10px; margin-left: auto;
  background: none; border: none; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--secondary); border-radius: 2px;
  transition: all 250ms ease;
}
.nav-mobile-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-mobile-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   TOPBAR (WordPress-specific)
══════════════════════════════════════ */
.pp-topbar {
  background: var(--secondary-dark, #003740);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 6px 0;
}
.pp-topbar-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}
.pp-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 200ms ease;
}
.pp-topbar-item:hover { color: #fff; }
.pp-topbar-item svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   HERO — Split: photo 55% / teal 45%
══════════════════════════════════════ */
.hero-home {
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  margin-top: 80px; /* account for floating nav */
}
.hero-photo {
  overflow: hidden;
  min-height: 560px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.hero-right {
  background: var(--secondary);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 48px 48px;
}
.hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 16px; border-radius: 24px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px; width: fit-content;
}
.hero-home h1 {
  font-size: 1.75rem; font-weight: 800;
  line-height: 1.25; color: #fff;
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 0.93rem; color: rgba(255,255,255,0.78);
  margin-bottom: 20px; max-width: 65ch;
}
.hero-usps { list-style: none; padding: 0; margin-bottom: 24px; }
.hero-usps li {
  color: rgba(255,255,255,0.9); font-size: 0.88rem;
  margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px;
}
.hero-usps li .check-icon {
  width: 18px; height: 18px; min-width: 18px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.hero-usps li .check-icon svg { width: 10px; height: 10px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-right .btn-outline {
  border-color: rgba(255,255,255,0.5); color: #fff; background: transparent;
}
.hero-right .btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: #fff;
}
.hero-trust { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 8px 14px;
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  transition: background var(--transition);
}
.trust-badge:hover { background: rgba(255,255,255,0.14); }
.trust-badge-icon {
  width: 28px; height: 28px; min-width: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); border-radius: 6px;
}
.trust-badge-icon svg { width: 16px; height: 16px; }
.trust-badge-label { font-size: 0.74rem; font-weight: 700; color: #fff; line-height: 1.2; }
.trust-badge-sub { font-size: 0.64rem; color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--primary); padding: 32px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item {
  padding: 8px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.25);
}
.stat-num {
  font-size: 2.2rem; font-weight: 900; color: #fff;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.85); margin-top: 6px; }

/* ══════════════════════════════════════
   OFFERING CARDS
══════════════════════════════════════ */
.offerings { padding: 80px 0; background: #fff; }
.offerings-header { text-align: center; margin-bottom: 48px; }
.offerings-header h2 { margin-bottom: 8px; }
.offerings-header p { color: var(--gray-500); max-width: 540px; margin: 0 auto; font-size: 1rem; }
.offering-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.offering-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 32px 24px; display: flex; flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gray-300);
  cursor: pointer;
  position: relative;
}
.offering-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-300);
  text-decoration: none;
}
.offering-card.coral  { border-top-color: var(--primary); }
.offering-card.teal   { border-top-color: var(--secondary); }
.offering-card.mint   { border-top-color: #17a589; }
.offering-card.amber  { border-top-color: #d68910; }

.offering-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.offering-icon-wrap svg { width: 24px; height: 24px; }
.offering-card.coral .offering-icon-wrap  { background: var(--primary-light); color: var(--primary); }
.offering-card.teal .offering-icon-wrap   { background: var(--mint); color: var(--secondary); }
.offering-card.mint .offering-icon-wrap   { background: #e8f8f5; color: #17a589; }
.offering-card.amber .offering-icon-wrap  { background: #fef5e7; color: #d68910; }

.offering-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.offering-card > p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 16px; flex: 1; }
.offering-usps { list-style: none; padding: 0; margin-bottom: 20px; }
.offering-usps li {
  font-size: 0.82rem; color: var(--gray-700);
  padding-left: 22px; position: relative; margin-bottom: 6px;
  display: flex; align-items: flex-start;
}
.offering-usps li .check-sm {
  position: absolute; left: 0; top: 2px;
  width: 14px; height: 14px;
}
.offering-card.coral .offering-usps li .check-sm { color: var(--primary); }
.offering-card.teal .offering-usps li .check-sm  { color: var(--secondary); }
.offering-card.mint .offering-usps li .check-sm  { color: #17a589; }
.offering-card.amber .offering-usps li .check-sm { color: #d68910; }

.offering-link {
  font-size: 0.85rem; font-weight: 700; margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
}
.offering-card.coral .offering-link  { color: var(--primary); }
.offering-card.teal .offering-link   { color: var(--secondary); }
.offering-card.mint .offering-link   { color: #17a589; }
.offering-card.amber .offering-link  { color: #d68910; }

/* ══════════════════════════════════════
   FEATURED COURSES
══════════════════════════════════════ */
.course-zone { background: var(--gray-100); padding: 80px 0; }
.course-zone-header { text-align: center; margin-bottom: 32px; }
.course-zone-header h2 { margin-bottom: 8px; }
.course-zone-header p { color: var(--gray-500); max-width: 540px; margin: 0 auto; font-size: 1rem; }
.course-search-bar {
  display: flex; max-width: 600px; margin: 0 auto 24px;
  box-shadow: var(--shadow-md); border-radius: var(--radius);
  overflow: hidden; background: #fff; border: 2px solid var(--secondary);
}
.course-search-bar input {
  flex: 1; border: none; padding: 14px 18px; font-size: 0.95rem;
  color: var(--gray-900); outline: none; background: transparent;
  font-family: inherit; min-width: 0; min-height: 44px;
}
.course-search-bar input::placeholder { color: var(--gray-500); }
.course-search-bar button {
  background: var(--primary); color: #fff; border: none;
  padding: 14px 24px; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: background var(--transition); min-height: 44px;
}
.course-search-bar button:hover { background: var(--primary-dark); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 18px; border-radius: 24px; font-size: 0.84rem;
  font-weight: 600; border: 1.5px solid var(--gray-300);
  background: #fff; color: var(--gray-700); cursor: pointer;
  transition: all var(--transition); white-space: nowrap; min-height: 44px;
}
.chip:hover { border-color: var(--secondary); color: var(--secondary); box-shadow: var(--shadow-xs); }
.chip.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.chip-count { border-radius: 10px; padding: 1px 7px; font-size: 0.72rem; }
.chip.active .chip-count { background: rgba(255,255,255,0.25); }
.chip:not(.active) .chip-count { background: var(--gray-200); color: var(--gray-500); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card {
  background: #fff; border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gray-300);
  position: relative;
}
.course-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-hover); border-left-color: var(--secondary); }
.course-type-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 20px; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 12px; width: fit-content;
}
.badge-umschulung { background: var(--primary-light); color: var(--primary); }
.badge-weiterbildung { background: var(--mint); color: var(--secondary); }
.badge-coaching { background: #e8f8f5; color: #17a589; }
.course-card h3 { font-size: 0.97rem; margin-bottom: 6px; line-height: 1.35; }
.course-card h3 a { color: var(--gray-900); cursor: pointer; }
.course-card h3 a:hover { color: var(--secondary); }
.course-card-meta { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 16px; flex: 1; }
.card-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-bottom: 16px; padding: 12px; background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.card-fact label { color: var(--gray-500); font-size: 0.7rem; display: block; }
.card-fact span { font-weight: 600; color: var(--gray-900); font-size: 0.8rem; display: block; }
.price-badge {
  background: var(--primary-light); color: var(--primary);
  font-size: 0.82rem; font-weight: 700; padding: 5px 12px;
  border-radius: var(--radius-sm); display: inline-block; margin-bottom: 14px;
}
.course-card .btn { width: 100%; justify-content: center; }
.courses-more { text-align: center; margin-top: 40px; }

/* ══════════════════════════════════════
   ZIELGRUPPEN
══════════════════════════════════════ */
.zielgruppen { padding: 80px 0; background: #fff; }
.zielgruppen h2 { text-align: center; margin-bottom: 8px; }
.zielgruppen-sub { text-align: center; color: var(--gray-500); max-width: 540px; margin: 0 auto 48px; font-size: 1rem; }
.ziel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ziel-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow var(--transition), border-color var(--transition);
  border-left: 4px solid var(--secondary);
  cursor: pointer;
}
.ziel-card:hover { box-shadow: var(--shadow-hover); border-color: var(--secondary); }
.ziel-icon-wrap {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius); background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
}
.ziel-icon-wrap svg { width: 22px; height: 22px; }
.ziel-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
.ziel-card p { font-size: 0.84rem; color: var(--gray-500); margin-bottom: 8px; }
.ziel-card a { font-size: 0.84rem; color: var(--secondary); font-weight: 600; cursor: pointer; text-decoration: none; }
.ziel-card a:hover { color: var(--primary); }

/* ══════════════════════════════════════
   FOERDERUNG TEASER
══════════════════════════════════════ */
.foerderung-teaser { background: var(--secondary); padding: 80px 0; }
.foerderung-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.foerderung-text h2 { color: #fff; }
.foerderung-text p { color: rgba(255,255,255,0.8); max-width: 65ch; }
.foerderung-text .btn-white { margin-top: 8px; }
.foerderung-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fcard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md); padding: 20px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.fcard:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.fcard-icon-wrap {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.10); display: flex;
  align-items: center; justify-content: center; margin-bottom: 12px;
}
.fcard-icon-wrap svg { width: 18px; height: 18px; color: rgba(255,255,255,0.85); }
.fcard h3 { font-size: 0.88rem; color: #fff; margin-bottom: 4px; }
.fcard p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { padding: 80px 0; background: var(--gray-100); }
.testimonials h2 { text-align: center; margin-bottom: 8px; }
.testimonials-sub { text-align: center; color: var(--gray-500); margin-bottom: 48px; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.quote-icon {
  color: var(--primary-light); margin-bottom: 12px; display: block;
}
.quote-icon svg { width: 32px; height: 32px; }
.stars { display: flex; gap: 2px; margin-bottom: 12px; }
.stars svg { width: 16px; height: 16px; color: #f5a623; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mint); display: flex; align-items: center;
  justify-content: center; font-weight: 800; color: var(--secondary);
  font-size: 0.88rem; flex-shrink: 0;
  border: 2px solid var(--gray-200);
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--gray-900); }
.author-course { font-size: 0.78rem; color: var(--gray-500); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { padding: 80px 0; background: #fff; }
.faq-section h2 { text-align: center; margin-bottom: 8px; }
.faq-sub { text-align: center; color: var(--gray-500); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-q {
  padding: 20px 24px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; background: #fff; min-height: 44px;
  transition: background var(--transition), color var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--gray-50); color: var(--secondary); }
.faq-chevron {
  width: 20px; height: 20px; min-width: 20px;
  transition: transform 300ms ease;
  color: var(--gray-500);
}
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-700);
  display: none; background: #fff; line-height: 1.7;
}
/* FAQ toggle indicator — for FAQ questions without SVG chevron */
.faq-q:not(:has(.faq-chevron))::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--gray-500); flex-shrink: 0;
}
.faq-q.open:not(:has(.faq-chevron))::after { content: '\2212'; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  padding: 80px 0; text-align: center; color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer,
.pp-footer { background: var(--secondary-dark); padding: 64px 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-col h4 {
  color: #fff; font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 16px; font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: color var(--transition); cursor: pointer;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; justify-content: space-between;
  font-size: 0.8rem; background: rgba(0,0,0,0.1);
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center;
  transition: background var(--transition); color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.footer-social a:hover { background: rgba(255,255,255,0.16); color: #fff; }
.footer-social a svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════
   BREADCRUMB (taxonomy pages)
══════════════════════════════════════ */
.breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 80px;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--secondary); text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ══════════════════════════════════════
   H1 SECTION (category hub pages)
══════════════════════════════════════ */
.pp-h1-section {
  background: #fff;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--gray-200);
}
.pp-h1-section h1 { font-size: 1.85rem; margin-bottom: 10px; }
.pp-h1-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.meta-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
}
.meta-badge-blue  { background: var(--mint); color: var(--secondary); }
.meta-badge-green { background: var(--primary-light); color: var(--primary); }
.meta-badge-orange { background: #fff4e6; color: #c45e00; }

/* ══════════════════════════════════════
   COURSE LIST (horizontal card layout — taxonomy pages)
══════════════════════════════════════ */
.pp-course-list-zone { background: var(--gray-100); padding: 48px 0 80px; }
.pp-course-list-zone .course-zone-header { text-align: left; margin-bottom: 20px; }
.pp-course-list-zone .course-search-bar { max-width: 100%; margin-bottom: 16px; }
.pp-course-list-zone .chip-row { justify-content: flex-start; }

.course-list { display: flex; flex-direction: column; gap: 16px; }

/* Override: in list layout course-card is horizontal */
.course-list .course-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  flex-direction: unset;
  border-left: 4px solid var(--secondary);
}
.course-list .course-card:hover { border-left-color: var(--primary); }

.course-card-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 8px;
  background: var(--primary-light); color: var(--primary);
}
.course-card-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.course-card-title a { color: var(--gray-900); text-decoration: none; }
.course-card-title a:hover { color: var(--secondary); }
.course-card-sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 12px; }
.key-facts { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.key-fact-item { display: flex; flex-direction: column; }
.key-fact-label { color: var(--gray-500); font-size: 0.75rem; display: block; }
.key-fact-value { font-weight: 600; color: var(--gray-900); font-size: 0.85rem; display: block; }
.course-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { padding: 3px 9px; border-radius: 20px; font-size: 0.75rem; background: var(--gray-200); color: var(--gray-700); }
.course-card-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; min-width: 160px; }
.next-start { font-size: 0.78rem; color: var(--gray-500); text-align: right; }
.next-start strong { color: var(--gray-900); display: block; font-size: 0.9rem; }
.course-list .price-badge { text-align: center; }

.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; flex-wrap: wrap; gap: 10px;
}
.results-count { font-size: 0.9rem; color: var(--gray-500); }
.results-count strong { color: var(--gray-900); }
.results-sort { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray-700); }
.results-sort select {
  border: 1.5px solid var(--gray-300); border-radius: 6px;
  padding: 6px 10px; font-size: 0.85rem; font-family: inherit;
}

/* ── START DATES TABLE ── */
.start-dates-block { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; overflow-x: auto; box-shadow: var(--shadow); margin-top: 24px; }
.start-dates-header { padding: 16px 20px; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.start-dates-header h3 { font-size: 0.95rem; margin: 0; }
.start-dates-block table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.start-dates-block thead th { background: var(--secondary); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; font-size: 0.82rem; }
.start-dates-block tbody tr:nth-child(even) { background: var(--gray-100); }
.start-dates-block tbody td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); vertical-align: middle; }
.td-spots { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; background: var(--primary-light); color: var(--primary); }
.td-spots.low { background: #fde8e8; color: #c0392b; }
.td-spots.medium { background: #fff4e6; color: #c45e00; }

/* ── TOC ── */
.toc-section { background: #fff; padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.toc-inner { background: var(--secondary-light); border: 1.5px solid rgba(0,79,90,0.15); border-radius: 12px; padding: 24px 28px; }
.toc-title { font-size: 0.9rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; }
.toc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px; list-style: none; padding: 0; }
.toc-list li a { font-size: 0.88rem; color: var(--secondary); font-weight: 500; }
.toc-list li a:hover { text-decoration: underline; }
.toc-num { color: var(--gray-500); margin-right: 6px; font-size: 0.8rem; }

/* ── EDITORIAL CONTENT LAYOUT ── */
.content-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 80px; min-width: 0; }
.sidebar-cta-box { background: var(--secondary); border-radius: 12px; padding: 24px; color: #fff; margin-bottom: 20px; }
.sidebar-cta-box h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.sidebar-cta-box p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 16px; }
.sidebar-facts { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 20px; }
.sidebar-facts h3 { font-size: 0.88rem; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.sidebar-fact-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.85rem; }
.sidebar-fact-row:last-child { border-bottom: none; }
.sidebar-fact-label { color: var(--gray-500); }
.sidebar-fact-value { font-weight: 700; color: var(--gray-900); }

/* ── SECTION BLOCKS (editorial) ── */
.section-anchor { padding-top: 80px; margin-top: -80px; }
.section-block { margin-bottom: 56px; }
.section-block h2 { font-size: 1.6rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-200); }
.section-block h3 { font-size: 1.05rem; color: var(--secondary); margin-top: 20px; margin-bottom: 8px; }
.bullets-styled { list-style: none; padding: 0; }
.bullets-styled li { padding-left: 22px; position: relative; margin-bottom: 7px; color: var(--gray-700); }
.bullets-styled li::before { content: '\2192'; position: absolute; left: 0; color: var(--secondary); font-weight: 700; }

/* ── COMPARE TABLE ── */
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.compare-table th { background: var(--secondary); color: #fff; padding: 10px 14px; text-align: left; font-size: 0.88rem; }
.compare-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); font-size: 0.88rem; color: var(--gray-700); vertical-align: top; }
.compare-table tr:nth-child(even) td { background: var(--gray-100); }

/* ── STEP PROCESS ── */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.step-num { width: 44px; height: 44px; background: var(--secondary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.step-content h3 { margin-top: 10px; }

/* ── FOERDERUNG CARDS ── */
.foerderung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.foerderung-card { border: 2px solid var(--gray-200); border-radius: 10px; padding: 18px; }
.foerderung-card h3 { font-size: 0.95rem; color: var(--secondary); margin-bottom: 10px; }
.foerderung-card .f-meta { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.f-row { display: flex; gap: 8px; font-size: 0.8rem; }
.f-key { color: var(--gray-500); min-width: 80px; }
.f-val { font-weight: 600; color: var(--gray-900); }
.premium-box { background: var(--primary-light); border: 2px solid var(--primary); border-radius: 10px; padding: 18px 20px; margin: 20px 0; }
.premium-box h3 { color: var(--primary); font-size: 0.95rem; }

/* ── ZIEL-CARD override inside editorial content (taxonomy page) ── */
.section-block .ziel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.section-block .ziel-card {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: 10px;
  padding: 18px; text-align: center;
  display: block; border-left: 1.5px solid var(--gray-200);
  cursor: default;
}
.section-block .ziel-card:hover { box-shadow: var(--shadow); }
.section-block .ziel-card h3 { font-size: 0.92rem; margin-bottom: 6px; color: var(--gray-900); }
.section-block .ziel-card p { font-size: 0.82rem; color: var(--gray-500); margin: 0; max-width: none; }
.section-block .ziel-card a { font-size: 0.8rem; color: var(--secondary); display: block; margin-top: 8px; }

/* ── VORTEILE GRID ── */
.vorteile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 20px 0; }
.vorteil-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 20px; }
.vorteil-icon { font-size: 1.8rem; margin-bottom: 10px; }
.vorteil-card h3 { font-size: 0.92rem; margin-bottom: 6px; }
.vorteil-card p { font-size: 0.83rem; color: var(--gray-500); margin: 0; }

/* ── COACHING TEASER ── */
.coaching-teaser { background: var(--gray-100); padding: 48px 0; border-top: 2px solid var(--gray-200); }
.coaching-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.coaching-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 12px; padding: 24px; }
.coaching-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.coaching-card p { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 16px; }

/* ══════════════════════════════════════
   TABLET — 1024px
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-items { gap: 0; }
  .nav-link { padding: 8px 10px; font-size: 0.84rem; }
  .nav-actions .btn:first-child { display: none; }
  .hero-home { grid-template-columns: 50% 50%; }
  .hero-photo { min-height: 420px; }
  .hero-right { padding: 36px 32px; }
  .hero-home h1 { font-size: 1.5rem; }
  .offering-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ziel-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr 240px; gap: 32px; }
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   MOBILE — 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-height: 56px; }
  nav, .pp-nav { top: 8px; left: 8px; right: 8px; }
  .nav-inner { height: 48px; padding: 0 16px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  .nav-hamburger { display: flex; }
  .nav-items {
    display: none; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: #fff; border-bottom: 2px solid var(--gray-200);
    padding: 16px 24px; gap: 4px; z-index: 99;
    box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .nav-items.open { display: flex; }
  .nav-inner { position: relative; }
  .nav-actions { display: none; }
  .nav-link { padding: 12px 8px; border-radius: 0; border-bottom: 1px solid var(--gray-200); }
  .mega { display: none !important; }
  .hero-home { grid-template-columns: 1fr; margin-top: 72px; }
  .hero-photo { min-height: 260px; }
  .hero-right { padding: 32px 24px; }
  .hero-home h1 { font-size: 1.5rem; }
  .hero-trust { gap: 6px; }
  .trust-badge { padding: 6px 10px; }
  .offering-grid { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: 1fr; }
  .chip-row { justify-content: flex-start; }
  .ziel-grid { grid-template-columns: 1fr; }
  .ziel-card { flex-direction: row; }
  .foerderung-teaser-inner { grid-template-columns: 1fr; gap: 32px; }
  .foerderung-cards { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 48px 0; }
  .offerings, .zielgruppen, .faq-section { padding: 48px 0; }
  .course-zone, .testimonials, .foerderung-teaser { padding: 48px 0; }
  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .card-facts { grid-template-columns: repeat(3, 1fr); }
  /* Hero — stack vertically */
  .hero-home { grid-template-columns: 1fr; }
  .hero-photo { min-height: 280px; max-height: 320px; }
  .hero-photo img { object-position: center 20%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 8px; }
  .trust-badge { min-width: auto; flex: 1; justify-content: center; }
  /* H1 section */
  .pp-h1-section h1 { font-size: 1.4rem; }
  .pp-h1-meta { gap: 8px; }
  /* Course zone */
  .course-search-bar { flex-direction: column; border-radius: 10px; }
  .course-search-bar input { border-radius: 8px 8px 0 0; border-bottom: 1px solid var(--gray-200); }
  .course-search-bar button { border-radius: 0 0 8px 8px; text-align: center; }
  .chip-row { gap: 6px; }
  .chip { font-size: 0.78rem; padding: 6px 12px; }
  .course-list .course-card { grid-template-columns: 1fr; gap: 12px; }
  .course-card-right { flex-direction: row; align-items: center; flex-wrap: wrap; min-width: auto; }
  .key-facts { gap: 10px; }
  /* Start dates table — horizontal scroll */
  .start-dates-block { overflow-x: auto; }
  .start-dates-block table { min-width: 560px; }
  /* TOC */
  .toc-list { grid-template-columns: 1fr; }
  .toc-section { padding: 24px 0; }
  /* Content layout — single column */
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { display: none; }
  /* Steps */
  .step { grid-template-columns: 36px 1fr; gap: 12px; }
  .step-num { width: 36px; height: 36px; font-size: 0.95rem; }
  /* Förderung */
  .foerderung-grid { grid-template-columns: 1fr; }
  /* Zielgruppen */
  .ziel-grid { grid-template-columns: repeat(2, 1fr); }
  .section-block .ziel-grid { grid-template-columns: repeat(2, 1fr); }
  .section-block .ziel-card { display: block; }
  /* Vorteile */
  .vorteile-grid { grid-template-columns: 1fr; }
  /* Compare table — horizontal scroll */
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 480px; }
  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.9rem; }
  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }
  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 14px 16px; }
  /* Coaching */
  .coaching-inner { grid-template-columns: 1fr; }
  /* Breadcrumb */
  .breadcrumb { margin-top: 64px; }
}

/* ══════════════════════════════════════
   SMALL MOBILE — 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.2rem; }
  .hero-photo { min-height: 220px; max-height: 260px; }
  .hero-right { padding: 24px 20px; }
  .hero-home h1 { font-size: 1.3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .ziel-grid { grid-template-columns: 1fr; }
  .section-block .ziel-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }
  .offerings, .zielgruppen, .faq-section { padding: 32px 0; }
  .course-zone, .testimonials, .foerderung-teaser { padding: 32px 0; }
  .cta-banner { padding: 32px 0; }
  .chip { font-size: 0.74rem; padding: 5px 10px; }
  .trust-badge-icon { display: none; }
  .hero-trust { flex-wrap: wrap; }
  .trust-badge { flex: 1 1 calc(50% - 8px); }
}
