/* ============================================================
   KUBES Academy — Main Stylesheet
   ============================================================ */

:root {
  --k-green:      #4dad32;
  --k-green-dark: #3d9427;
  --k-dark:       #012b27;
  --k-dark2:      #01201c;
  --k-footer:     #212121;
  --k-white:      #ffffff;
  --k-light:      #f4f4f4;
  --k-text:       #222222;
  --k-muted:      #666666;
  --k-border:     #e0e0e0;
  --max-w:        1200px;
  --section-pad:  5rem 2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--k-text);
  background: var(--k-white);
  overflow-x: hidden;
}

/* ── STICKY NAV ─────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--k-white);
  border-bottom: 1px solid var(--k-border);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark { width: 26px; height: 26px; }
.nav-logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--k-text);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--k-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}
/* WP Nav Menu: Desktop-Liste */
.nav-main-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0; padding: 0;
}
.nav-main-list > li > a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--k-text);
  text-decoration: none;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 70px;
  transition: color 0.2s;
}
.nav-main-list > li > a:hover,
.nav-main-list > li.current-menu-item > a,
.nav-main-list > li.current-menu-ancestor > a { color: var(--k-green); }

/* WP Sub-Menu Dropdown — CSS hover, kein JS nötig */
.nav-main-list .menu-item-has-children {
  position: relative;
}
.nav-main-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--k-dark);
  min-width: 220px;
  z-index: 999;
  padding: 6px 0;
  border-top: 2px solid var(--k-green);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  list-style: none;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}
.nav-main-list .menu-item-has-children:hover > .sub-menu,
.nav-main-list .menu-item-has-children:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.nav-main-list .sub-menu li a {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.55rem 1.2rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-main-list .sub-menu li a:hover {
  color: var(--k-white);
  background: rgba(77,173,50,.15);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-util {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--k-text);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-util:hover { opacity: 0.6; }
.nav-arrow { font-size: 0.7rem; }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--k-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-nav {
  display: none;
  background: var(--k-white);
  border-top: 1px solid var(--k-border);
  padding: 1rem 2rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--k-text);
  text-decoration: none;
  border-bottom: 1px solid var(--k-border);
  transition: color 0.15s;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover { color: var(--k-green); }

/* ── KUB MUSTER HELPER ───────────────────────────────────── */
.hero-muster,
.experte-muster,
.inhouse-muster,
.cta-muster,
.footer-muster {
  position: absolute;
  inset: 0;
  background-image: url('../img/KUB_Muster_negativ-g-0.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.hero-muster {
  left: 35%;
  opacity: 0.12;
}
.experte-muster {
  left: 40%;
  opacity: 0.08;
}
.inhouse-muster {
  inset: 0;
  background-image: url('../img/KUB_Muster_negativ-g-10.svg');
  background-size: cover;
  opacity: 0.2;
}
.cta-muster {
  left: 40%;
  opacity: 0.1;
}
.footer-muster {
  opacity: 0.06;
  background-image: url('../img/KUB_Muster_negativ-g-0.svg');
  background-size: 65% auto;
  background-position: right top;
  background-repeat: no-repeat;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--k-dark);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: 70px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-green);
  margin-bottom: 1rem;
  display: block;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--k-white);
  max-width: 720px;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--k-green);
  flex-shrink: 0;
}
.video-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 2;
}
.video-play {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.video-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent rgba(255,255,255,0.35);
  margin-left: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-circle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--k-white);
  transition: gap 0.2s;
}
.btn-circle:hover { gap: 1.1rem; }
.btn-circle .circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--k-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 300;
  transition: background 0.2s;
}
.btn-circle:hover .circle { background: var(--k-green-dark); }

.btn-fill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--k-white);
  background: var(--k-green);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-fill:hover { background: var(--k-green-dark); color: var(--k-white); }

/* ── NI STRIP ────────────────────────────────────────────── */
.ni-strip {
  background: var(--k-light);
  border-bottom: 1px solid var(--k-border);
  padding: 1.1rem 2rem;
}
.ni-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ni-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-muted);
}
.ni-items {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  flex-wrap: wrap;
}
.ni-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--k-text);
  opacity: 0.7;
}
.ni-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--k-green);
  flex-shrink: 0;
}

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-green);
  margin-bottom: 0.8rem;
  display: block;
}
.section-eyebrow.light { color: rgba(77,173,50,0.85); }
.section-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--k-text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section-title.white { color: var(--k-white); }
.section-lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--k-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* ── KURSE INTRO SPLIT ───────────────────────────────────── */
#kurse { background: var(--k-white); }
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 0;
  border-bottom: 1px solid var(--k-border);
  margin-bottom: 4rem;
}
.intro-split-left .section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--k-green);
  margin: 0;
}
.intro-split-right p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--k-muted);
  margin-bottom: 1.5rem;
}

/* ── LERNPFADE ───────────────────────────────────────────── */
.lp-group { margin-bottom: 0; }
.lp-group-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.lp-group-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.lp-group-icon {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lv-gi { background: rgba(1,43,39,0.08); color: var(--k-dark); }
.ts-gi { background: rgba(77,173,50,0.12); color: var(--k-green-dark); }
.lp-group-title {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-text);
  white-space: nowrap;
}
.lp-group-count {
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-muted);
  white-space: nowrap;
}
.lp-group-line {
  flex: 1;
  height: 1px;
  background: var(--k-border);
}
.lp-grid {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
.lp-card {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--k-border);
  border-radius: 10px;
  padding: 1.2rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--k-white);
  transition: box-shadow 0.2s, transform 0.18s;
}
.lp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 1;
}
.lv-card { border-top: 3px solid var(--k-dark); }
.ts-card { border-top: 3px solid var(--k-green); }
.lp-step-num {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.05;
  color: var(--k-text);
}
.lp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.lp-level { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.lv-level { color: var(--k-dark); }
.ts-level { color: var(--k-green-dark); }
.lp-ni-badge {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-muted);
  border: 1px solid var(--k-border);
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
}
.lp-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--k-text);
  margin-bottom: 0.45rem;
}
.lp-desc {
  font-size: 0.8rem;
  color: var(--k-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.7rem;
  flex: 1;
}
.lp-bullets { list-style: none; margin-bottom: 0.85rem; }
.lp-bullets li {
  font-size: 0.75rem;
  color: var(--k-muted);
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--k-border);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-bullets li:last-child { border-bottom: none; }
.lp-bullets li::before {
  content: '›';
  color: var(--k-green);
  font-size: 0.9rem;
  flex-shrink: 0;
  font-weight: 700;
}
.lp-card-foot {
  padding-top: 0.7rem;
  border-top: 1px solid var(--k-border);
  margin-top: auto;
}
/* lp-btn now replaced by btn-circle – kept for legacy fallback */
.lp-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--k-white);
  background: var(--k-green);
  padding: 0.42rem 0.9rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s;
}
.lp-btn:hover { background: var(--k-green-dark); }

/* btn-circle dark variant — for use on white/light backgrounds */
.btn-circle-dark {
  color: var(--k-text);
}
.btn-circle-dark:hover { color: var(--k-text); }
.lp-connector { display: none; }

/* ── KURSPREISE ──────────────────────────────────────────── */
.lp-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.5rem 0 0.8rem;
}
.ka-price-amt {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--k-dark);
  letter-spacing: -0.01em;
}
.ka-price-tax {
  font-size: 0.68rem;
  color: var(--k-muted);
  font-weight: 400;
}
.termine-table .ka-price-el { white-space: nowrap; }
.termine-table .ka-price-amt { font-size: 0.82rem; display: block; }
.termine-table .ka-price-tax { font-size: 0.68rem; display: block; color: var(--k-muted); }

/* ── TERMINE ─────────────────────────────────────────────── */
#termine { background: var(--k-light); }
.termine-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--k-white);
  border: 1px solid var(--k-border);
}
.termine-table thead { background: var(--k-dark); }
.termine-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0.9rem 1.1rem;
  text-align: left;
}
.termine-table tbody tr {
  border-bottom: 1px solid var(--k-border);
  transition: background 0.12s;
}
.termine-table tbody tr:last-child { border-bottom: none; }
.termine-table tbody tr:hover { background: var(--k-light); }
.termine-table tbody td {
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--k-text);
  vertical-align: middle;
}
.kurs-pill {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}
.pill-lv  { background: rgba(1,43,39,0.08);   color: var(--k-dark); }
.pill-ts  { background: rgba(77,173,50,0.12); color: var(--k-green-dark); }
.pill-wfl { background: rgba(0,100,180,0.10); color: #005a9e; }
.status-ok { font-size: 0.72rem; font-weight: 600; color: #2a7a4f; }
.status-low { font-size: 0.72rem; font-weight: 600; color: #a06010; }
.btn-course {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-text);
  border: 1px solid var(--k-border);
  padding: 0.35rem 0.8rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-course:hover {
  background: var(--k-green);
  color: var(--k-white);
  border-color: var(--k-green);
}
.btn-course.accent {
  background: var(--k-green);
  color: var(--k-white);
  border-color: var(--k-green);
}
.btn-course.accent:hover {
  background: var(--k-green-dark);
  border-color: var(--k-green-dark);
}
.btn-course--disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.status-out { font-size: 0.72rem; font-weight: 600; color: #c0392b; }
.ka-no-dates { color: var(--k-muted); font-size: 0.95rem; padding: 1.5rem 0; }

/* ── EXPERTE ─────────────────────────────────────────────── */
#experte {
  background: var(--k-dark);
  position: relative;
  overflow: hidden;
}
#experte .section-inner { position: relative; z-index: 1; }
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.expert-portrait-wrap { position: relative; }
.expert-portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.expert-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.expert-badge {
  position: absolute;
  top: 1.2rem;
  right: -0.8rem;
  background: var(--k-green);
  color: var(--k-white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  z-index: 2;
}
.expert-champion {
  position: absolute;
  bottom: 1.2rem;
  left: -0.8rem;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.expert-champion-badge {
  width: 90px;
  height: auto;
  display: block;
}
.expert-name {
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  color: var(--k-white);
  line-height: 1.0;
  margin-bottom: 0.3rem;
}
.expert-role {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.expert-bio {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}
.expert-bio strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.cred-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.cred-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.cred-list li::before {
  content: '›';
  color: var(--k-green);
  font-weight: 700;
  flex-shrink: 0;
}
.expert-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-weight: 700;
  font-size: 2rem;
  color: var(--k-white);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.stat-num span { color: var(--k-green); }
.stat-label {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ── INHOUSE ─────────────────────────────────────────────── */
#inhouse { background: var(--k-white); }
.inhouse-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.inhouse-features { list-style: none; margin-bottom: 2rem; }
.inhouse-features li {
  display: flex;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--k-border);
}
.inhouse-features li:last-child { border-bottom: none; }
.feat-icon {
  width: 30px;
  height: 30px;
  background: rgba(77,173,50,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  border-radius: 2px;
}
.feat-text h4 {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--k-text);
  margin-bottom: 0.2rem;
}
.feat-text p {
  font-size: 0.8rem;
  color: var(--k-muted);
  line-height: 1.55;
  font-weight: 300;
}
.inhouse-visual {
  background: var(--k-dark);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.inhouse-quote { position: relative; z-index: 1; }
.inhouse-quote p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.inhouse-quote p strong {
  color: var(--k-white);
  font-weight: 700;
  font-style: normal;
}
.inhouse-quote-author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--k-green);
}

/* ── FAQ ─────────────────────────────────────────────────── */
#faq { background: var(--k-light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.faq-item {
  background: var(--k-white);
  border: 1px solid var(--k-border);
}
.faq-question {
  width: 100%;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--k-text);
  padding: 1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.12s;
  gap: 0.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { background: var(--k-light); }
.faq-toggle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--k-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--k-green);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, border-color 0.2s;
  font-family: monospace;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--k-green);
  color: var(--k-white);
  border-color: var(--k-green);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 1.2rem;
  font-size: 0.83rem;
  color: var(--k-muted);
  line-height: 1.75;
  font-weight: 300;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.2rem 1rem;
}

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--k-dark);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--k-white);
  line-height: 1.2;
}
.cta-strip h2 span {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* ── KUBES PARENT BADGE ──────────────────────────────────── */
.kubes-strip {
  background: var(--k-light);
  border-top: 1px solid var(--k-border);
  border-bottom: 1px solid var(--k-border);
  padding: 2.5rem 2rem;
}
.kubes-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.kubes-strip-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--k-muted);
}
.kubes-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border: 1px solid var(--k-border);
  padding: 0.75rem 1.3rem;
  background: var(--k-white);
  transition: border-color 0.2s;
}
.kubes-badge:hover { border-color: var(--k-green); }
.kubes-badge-mark { width: 28px; height: 28px; flex-shrink: 0; }
.kubes-badge-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--k-text);
  text-transform: uppercase;
  display: block;
  line-height: 1.1;
}
.kubes-badge-sub { font-size: 0.62rem; color: var(--k-muted); font-weight: 300; }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--k-footer);
  padding: 4rem 2rem 0;
  position: relative;
  overflow: hidden;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo-mark { width: 22px; height: 22px; flex-shrink: 0; }
.footer-logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-white);
}
.footer-logo-name span { font-weight: 300; opacity: 0.6; }
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.footer-badge {
  height: 54px;
  width: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
}
.footer-badge:hover { opacity: 1; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--k-green);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--k-white); }
.footer-contact p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
  font-weight: 300;
}
.footer-contact a { color: var(--k-green); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.18); }
.footer-bottom a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE TEMPLATE ───────────────────────────────────────── */
.page-content {
  padding: 8rem 2rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-content h1 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 2rem;
  color: var(--k-text);
}
.page-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--k-text);
  max-width: 720px;
}

/* ── 404 PAGE ────────────────────────────────────────────── */
.page-404 {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}
.error-404-wrap {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 0;
}
.error-404-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: var(--k-green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.error-404-wrap h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.error-404-msg {
  color: var(--k-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { transition: opacity 0.55s ease, transform 0.55s ease; }
body.js-ready .reveal { opacity: 0; transform: translateY(18px); }
body.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .expert-grid,
  .inhouse-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cred-list { grid-template-columns: 1fr; }
  .lp-grid { flex-direction: column; gap: 0.5rem; }
  .lp-connector { width: auto; height: 22px; transform: rotate(90deg); }
  .expert-badge { right: 0; }
  .expert-champion { left: 0; }
  .intro-split { grid-template-columns: 1fr; gap: 1rem; padding: 2.5rem 0; }
}
@media (max-width: 640px) {
  .nav-main { display: none; }
  .nav-util { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  :root { --section-pad: 3.5rem 1.2rem; }
  .termine-table { font-size: 0.78rem; }
  .termine-table thead th,
  .termine-table tbody td { padding: 0.6rem 0.7rem; }
  .hero-trust { gap: 1rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
