/* =========================================================
   ki-lernarchitekt.de — Pilot-Stylesheet (Mai 2026)
   style-neu.css

   Wird nur von der Pilot-Seite (index-neu.php) geladen, damit
   die bestehende style.css unangetastet bleibt. Adaptiert das
   UI-Kit aus dem Claude-Design-Bundle (May 2026):
   - keine Wavy-Dividers, keine Gradienten in großen Flächen
   - schlichte Section-Bänder über --bg-alt / --bg-band
   - Cards: shadow statt border
   - Brand-Farbe #631832 + Navy-Akzent #173262
   - Mostra Nuova + Roboto Condensed (self-hosted)
   ========================================================= */
@import url('tokens.css');

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
section { position: relative; padding: var(--space-10) 0; }

.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: var(--r-sm);
  z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* =========================================================
   HEADER — sticky, white, hairline divider
   ========================================================= */
.as-header {
  position: sticky; top: 0; z-index: 3000;
  padding: 12px 0;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.as-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.as-logo { height: 52px; width: auto; display: block; }
.as-nav { display: flex; }
.as-nav > ul {
  display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; align-items: center;
}
.as-nav a:not(.btn) {
  color: var(--fg-strong); font-weight: 400; font-size: 15px;
  font-family: var(--font-body); line-height: 1; padding: 8px 0;
  cursor: pointer; letter-spacing: .005em;
  transition: color .25s ease;
}
.as-nav a:not(.btn):hover { color: var(--accent); }
.as-nav .nav-cta { margin-left: auto; }
.as-nav .nav-cta .btn { color: #fff; }
.as-nav .nav-cta .btn:hover { color: #fff; }
.as-nav .has-caret::after {
  content: '▾'; font-size: 9px; margin-left: 6px; opacity: .55;
}

/* Dropdown */
.as-nav .nav-item--dropdown { position: relative; }
.as-nav .dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0; margin: 8px 0 0;
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 3010;
}
.as-nav .nav-item--dropdown:hover .dropdown-menu,
.as-nav .nav-item--dropdown:focus-within .dropdown-menu,
.as-nav .nav-item--dropdown.is-open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.as-nav .dropdown-menu a {
  display: block; padding: 10px 18px; font-size: 14.5px;
}
.as-nav .dropdown-menu a:hover { background: var(--bg-alt); color: var(--accent); }
.as-nav .nav-link--highlight { color: var(--accent); font-weight: 700; }

/* Burger */
.nav-toggle {
  display: none; background: none; border: 0; padding: 6px; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle-bar {
  display: block; width: 26px; height: 2px; background: var(--fg-strong);
  margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 992px) {
  .nav-toggle { display: inline-flex; }
  .as-nav {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 28px 28px 80px;
    overflow-y: auto; transform: translateX(100%);
    transition: transform .3s ease;
    border-top: 1px solid var(--hairline);
  }
  .as-nav.is-active { transform: translateX(0); }
  .as-nav > ul { flex-direction: column; align-items: flex-start; gap: 6px; }
  .as-nav > ul > li { width: 100%; border-bottom: 1px solid var(--hairline); padding: 8px 0; }
  .as-nav > ul > li:last-child { border-bottom: none; }
  .as-nav .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 12px; margin: 6px 0 0;
  }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-md);
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px;
  letter-spacing: .01em; line-height: 1;
  text-align: center; text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s cubic-bezier(.2,.7,.2,1),
              background-color .25s ease,
              color .25s ease,
              border-color .25s ease;
  will-change: transform, box-shadow;
}
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(31,26,36,.06), 0 10px 24px rgba(99,24,50,.18);
}
.btn-primary:hover {
  background: var(--accent-hover); border-color: var(--accent-hover); color: #fff;
  box-shadow: 0 4px 10px rgba(31,26,36,.08), 0 18px 36px rgba(99,24,50,.26);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #fff; color: var(--fg-strong); border-color: var(--hairline);
  box-shadow: 0 1px 2px rgba(31,26,36,.04), 0 6px 16px rgba(31,26,36,.06);
}
.btn-secondary:hover {
  color: var(--accent); border-color: var(--accent-2);
  box-shadow: 0 2px 6px rgba(31,26,36,.06), 0 14px 30px rgba(31,26,36,.10);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--fg-strong); border-color: transparent;
  padding: 12px 4px; border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); }
.btn-ghost-dark {
  background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.btn-ghost-dark:hover {
  background: #fff; color: var(--fg-strong); border-color: #fff; transform: translateY(-2px);
}
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* =========================================================
   HERO
   ========================================================= */
.as-hero {
  position: relative;
  padding: clamp(110px, 12vw, 150px) 0;
  color: #fff;
  text-align: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.as-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,26,36,.55), rgba(31,26,36,.40));
  z-index: 0;
}
.as-hero > .container { position: relative; z-index: 2; }
.as-hero h1 {
  margin: 0 0 18px; max-width: 880px; color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--t-display-1); line-height: 1.10; letter-spacing: -.005em;
}
.as-hero p {
  margin: 0 0 28px; max-width: 880px; color: #fff;
  font-size: var(--t-lead); line-height: 1.55; font-weight: 400; opacity: .96;
}
.as-hero .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================================================
   SECTION TITLES
   ========================================================= */
.section-title {
  margin: 0 0 14px; text-align: center;
  font-family: var(--font-display); font-weight: 700; color: var(--fg-strong);
  font-size: var(--t-h2); line-height: 1.2;
}
.section-subtitle {
  text-align: center; max-width: 760px; margin: 0 auto 50px;
  color: var(--fg-mute); line-height: 1.65; font-size: 17px;
}
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: .10em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}

/* =========================================================
   CARD — shadow not border
   ========================================================= */
.card {
  background: #fff; padding: 26px; border-radius: var(--r-lg);
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(31,26,36,.04), 0 8px 24px rgba(31,26,36,.06);
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s cubic-bezier(.2,.7,.2,1);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(31,26,36,.06), 0 18px 40px rgba(31,26,36,.10);
}
.card h3 {
  margin: 0 0 10px; font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; color: var(--fg-strong);
}
.card p { margin: 0; line-height: 1.6; color: var(--fg); font-size: 15.5px; }

/* =========================================================
   AUTHORITY BAR
   ========================================================= */
.authority-bar {
  background: var(--bg-alt); padding: 26px 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.authority-bar .label-text {
  font-size: 13.5px; color: var(--fg-mute); text-align: center;
  width: 100%; margin-bottom: 14px; letter-spacing: .02em;
}
.authority-bar .brand-row {
  display: flex; flex-wrap: wrap; gap: 28px;
  align-items: center; justify-content: center;
}
.authority-bar .brand {
  display: flex; align-items: center; justify-content: center;
}
.authority-bar .brand img {
  height: 36px; max-width: 140px; object-fit: contain;
  filter: grayscale(100%); opacity: .6;
  transition: filter .28s ease, opacity .28s ease;
}
.authority-bar .brand img:hover { filter: none; opacity: 1; }
.authority-bar .brand img.is-icon { height: 30px; max-width: 64px; }
.authority-bar .brand img.is-wide-low { height: 46px; max-width: 200px; }
.authority-bar .authority-international,
.authority-bar .authority-note {
  margin-top: 14px; max-width: 980px;
  font-size: 14px; line-height: 1.55; color: var(--fg-mute);
  text-align: center;
}
.authority-bar .authority-note { color: var(--fg); font-size: 15px; }

/* =========================================================
   AUTHORITY FACTS
   ========================================================= */
.facts-section { padding: var(--space-9) 0 var(--space-8); background: var(--bg-alt); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.fact {
  padding: 30px 26px; border-radius: var(--r-lg); background: #fff;
  box-shadow: 0 1px 2px rgba(31,26,36,.04), 0 6px 18px rgba(31,26,36,.05);
  text-align: left;
  transition: box-shadow .35s ease, transform .35s ease;
  display: flex; flex-direction: column;
  min-height: 200px;
}
.fact:hover {
  box-shadow: 0 2px 6px rgba(31,26,36,.06), 0 16px 36px rgba(31,26,36,.10);
  transform: translateY(-3px);
}
.fact h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--accent); margin: 0 0 6px;
}
.fact p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--fg); }
@media (max-width: 900px) {
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 560px) {
  .facts-grid { grid-template-columns: 1fr; }
  .fact { min-height: 0; padding: 24px 22px; }
}

/* =========================================================
   AUDIENCE SPLIT
   ========================================================= */
.audience-split {
  background: var(--bg-alt);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.split-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px;
}
.split-card {
  padding: 32px; border-radius: var(--r-lg); display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s cubic-bezier(.2,.7,.2,1);
}
.split-card.corporate {
  background: var(--bg-dark); color: #fff;
  box-shadow: 0 1px 2px rgba(31,26,36,.06), 0 16px 38px rgba(31,26,36,.18);
}
.split-card.corporate h3 { color: #fff; }
.split-card.education {
  background: #fff; color: var(--fg);
  box-shadow: 0 1px 2px rgba(31,26,36,.04), 0 10px 28px rgba(31,26,36,.08);
}
.split-card.education h3 { color: var(--accent); }
.split-card:hover { transform: translateY(-3px); }
.split-card.corporate:hover {
  box-shadow: 0 2px 6px rgba(31,26,36,.08), 0 22px 46px rgba(31,26,36,.22);
}
.split-card.education:hover {
  box-shadow: 0 2px 6px rgba(31,26,36,.06), 0 18px 38px rgba(31,26,36,.12);
}
.split-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  margin: 0 0 12px; line-height: 1.15;
}
.split-card p {
  margin: 0 0 18px; line-height: 1.6; flex-grow: 1; font-size: 15.5px;
}
.split-card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  font-size: 14.5px; line-height: 1.9;
}
.split-card.corporate ul { color: rgba(255,255,255,.88); }
.split-card.education ul { color: var(--fg); }
.split-card .btn {
  align-self: flex-start;
}
.split-card.corporate .btn {
  background: #fff; color: var(--bg-dark); border-color: #fff;
}
.split-card.corporate .btn:hover { background: var(--as-paper); color: var(--bg-dark); }

/* =========================================================
   USP GRID + REASONS
   ========================================================= */
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
}

.kdid-icon-badge {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--as-brand-tint); border: none;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: all var(--t-base);
}
.kdid-icon-badge svg {
  width: 20px; height: 20px; stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.card:hover .kdid-icon-badge { background: var(--accent); }
.card:hover .kdid-icon-badge svg { stroke: #fff; }

/* =========================================================
   FUNDING TEASER — soft brand tint, no gradient
   ========================================================= */
.funding-teaser {
  background: var(--as-brand-tint);
  padding: 60px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.funding-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 28px; align-items: center;
}
.funding-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: stretch;
}

/* =========================================================
   MODULE CARDS
   ========================================================= */
.module-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px;
}
.module-card ul {
  padding-left: 18px; margin: 12px 0 18px; line-height: 1.7; color: var(--fg);
  font-size: 15px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: flex-start;
}
.about-portrait {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: 0 2px 6px rgba(31,26,36,.06), 0 18px 40px rgba(31,26,36,.12);
}
.about-content p {
  font-size: 17px; line-height: 1.7; margin: 0 0 16px; color: var(--fg);
}
.about-list { list-style: none; padding: 0; margin: 0 0 22px; }
.about-list li {
  padding: 14px 0; border-bottom: 1px solid var(--hairline);
}
.about-list li:last-child { border-bottom: none; }
.about-list strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  color: var(--fg-strong); margin-bottom: 4px; font-size: 16px;
}
.about-list span { font-size: 14.5px; color: var(--fg-mute); line-height: 1.6; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  background: var(--bg-dark); color: #fff;
  padding: var(--space-10) 0;
}
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: rgba(255,255,255,.78); }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 24px;
  margin: 0 0 14px;
}
.contact-info p { color: rgba(255,255,255,.84); margin: 8px 0; }
.contact-info a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); }
.contact-info a:hover { text-decoration-color: #fff; color: #fff; }
.contact-info .note {
  margin-top: 18px; padding: 16px; background: rgba(255,255,255,.06);
  border-radius: var(--r-lg); font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.82);
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; margin-bottom: 6px; font-weight: 500;
  color: rgba(255,255,255,.88); font-size: 13.5px; letter-spacing: .02em;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px; border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #fff;
  font-size: 15px; font-family: var(--font-body);
  transition: border-color .25s ease, background-color .25s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.10);
}
.form-group-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: rgba(255,255,255,.88); margin-bottom: 16px;
}
.form-group-checkbox input { margin-top: 3px; accent-color: var(--accent); }
.form-group-checkbox a { color: #fff; text-decoration: underline; }
.form-submit-btn {
  width: 100%; font-size: 15px; border: none;
  background: var(--accent); color: #fff; padding: 14px;
  border-radius: var(--r-md);
}
.form-submit-btn:hover { background: var(--accent-hover); }

/* =========================================================
   FOOTER
   ========================================================= */
.as-footer {
  position: relative; text-align: center;
  background: var(--bg-dark); color: rgba(255,255,255,.78);
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.as-footer p { margin: 6px 0; }
.as-footer .footer-nav { margin: 16px 0 8px; }
.as-footer .footer-nav a {
  margin: 0 12px; color: rgba(255,255,255,.78);
  text-decoration: none; font-size: 14px;
}
.as-footer .footer-nav a:hover { color: #fff; }
.as-footer .footer-authority { max-width: 720px; margin: 18px auto 14px; }
.as-footer .footer-authority-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap;
}
.as-footer .footer-authority-logos img {
  height: 32px; filter: brightness(0) invert(1); opacity: .85;
}
.as-footer .footer-authority p {
  font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.7);
  margin-top: 12px;
}
.as-footer .linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.78); margin: 14px 0;
}
.as-footer .linkedin svg { width: 22px; height: 22px; fill: currentColor; }

/* =========================================================
   MODAL
   ========================================================= */
.as-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(31,26,36,.65);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.as-modal.is-open { display: flex; }
.as-modal__dialog {
  position: relative; max-width: 720px; width: 100%; max-height: 90vh; overflow: auto;
  padding: 36px; background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 4px 12px rgba(31,26,36,.10), 0 32px 64px rgba(31,26,36,.20);
}
.as-modal__close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 26px; cursor: pointer;
  color: var(--as-mute); transition: color .2s ease;
  width: 36px; height: 36px; line-height: 1;
}
.as-modal__close:hover { color: var(--accent); }
.as-modal__dialog h2 {
  margin: 0 0 8px; font-family: var(--font-display); font-weight: 700;
  color: var(--fg-strong); font-size: 30px; line-height: 1.2;
}
.as-modal__dialog h3 {
  margin: 22px 0 8px; padding-bottom: 6px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-display); font-weight: 700; color: var(--accent);
  font-size: 17px; letter-spacing: .005em;
}
.as-modal__dialog ul {
  padding-left: 18px; line-height: 1.75; list-style: '✓  '; color: var(--fg);
}
body.modal-open { overflow: hidden; }

/* =========================================================
   PODCAST TEASER (klein, optional)
   ========================================================= */
.podcast-teaser-section { padding: 40px 0; background: var(--bg-alt); }
.podcast-teaser {
  display: flex; align-items: center; gap: 20px; padding: 20px;
  flex-wrap: wrap; background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 1px 2px rgba(31,26,36,.04), 0 6px 16px rgba(31,26,36,.06);
}
.podcast-teaser img.cover {
  width: 72px; height: 72px; object-fit: cover; border-radius: var(--r-md);
  flex-shrink: 0;
}
.podcast-teaser h4 {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  color: var(--fg-strong); font-size: 18px;
}
.podcast-teaser p {
  margin: 4px 0 0; font-size: 14.5px; color: var(--fg-mute); line-height: 1.5;
}

/* =========================================================
   COOKIE CONSENT — Token-adaptiert aus style.css
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: min(460px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(31,26,36,.15);
  padding: 22px 24px;
  z-index: 5000;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h2 {
  margin: 0 0 8px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; color: var(--fg-strong);
}
.cookie-banner p {
  margin: 0 0 16px; font-size: 14.5px; line-height: 1.55;
  color: var(--fg);
}
.cookie-banner a {
  color: var(--accent); text-decoration: underline;
}
.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cookie-banner__actions .btn { padding: 9px 14px; font-size: 13.5px; }

.cookie-preferences {
  position: fixed; inset: 0;
  background: rgba(31,26,36,.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: none; z-index: 5100; padding: 20px;
}
.cookie-preferences.is-open {
  display: flex; align-items: center; justify-content: center;
}
.cookie-preferences__dialog {
  background: #fff; max-width: 640px; width: 100%;
  border-radius: var(--r-lg); padding: 30px;
  position: relative; max-height: 90vh; overflow: auto;
  box-shadow: 0 20px 50px rgba(31,26,36,.22);
}
.cookie-preferences__dialog h2 {
  margin: 0 0 6px; font-family: var(--font-display); color: var(--fg-strong);
}
.cookie-preferences__dialog p {
  color: var(--fg); line-height: 1.6;
}
.cookie-preferences__close {
  position: absolute; top: 14px; right: 18px;
  border: none; background: transparent;
  font-size: 28px; cursor: pointer;
  color: var(--as-mute); width: 36px; height: 36px; line-height: 1;
}
.cookie-preferences__close:hover { color: var(--accent); }
.cookie-pref {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--hairline);
}
.cookie-pref h3 {
  margin: 0 0 4px; font-family: var(--font-display);
  font-weight: 700; font-size: 17px; color: var(--fg-strong);
}
.cookie-pref p {
  margin: 0; color: var(--fg-mute); font-size: 14.5px;
}
.cookie-toggle { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle span {
  position: absolute; inset: 0; border-radius: 999px;
  background: #d6d3da; transition: background-color .25s ease;
  cursor: pointer;
}
.cookie-toggle span::after {
  content: ''; position: absolute;
  height: 20px; width: 20px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%;
  transition: transform .25s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.cookie-toggle input:checked + span { background: var(--accent); }
.cookie-toggle input:checked + span::after { transform: translateX(20px); }
.cookie-preferences__actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}

/* =========================================================
   PEPP — editorial Authority (Mai 2026)
   Kinetik, Marquee, Spotlight, Section-Nummern, Floating CTA
   ========================================================= */

/* ----- Scroll-Reveal -----------------------------------*/
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1),
              transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- HERO: editorial display -----------------------*/
.as-hero {
  /* Atmosphärischer Brand-Mesh hinter dem Bild */
  background-color: var(--bg-dark);
}
.as-hero::before {
  /* Mesh-Overlay aus zwei radialen Gradienten:
     dunkel oben, Brand-Maroon-Kern unten links */
  background:
    radial-gradient(60% 50% at 80% 110%, rgba(99,24,50,.55), transparent 70%),
    radial-gradient(50% 40% at 10% -10%, rgba(23,50,98,.45), transparent 65%),
    linear-gradient(180deg, rgba(31,26,36,.45), rgba(31,26,36,.62));
}
.as-hero .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin: 0 0 24px;
}
.as-hero h1 {
  font-family: var(--font-deco);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: .98;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 6px;
  max-width: 1100px;
}
.as-hero h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(22px);
  animation: as-word-in .9s cubic-bezier(.2,.7,.2,1) forwards;
  margin-right: .18em;
}
.as-hero h1 .word:nth-child(1) { animation-delay: .15s; }
.as-hero h1 .word:nth-child(2) { animation-delay: .35s; }
.as-hero h1 .word:nth-child(3) {
  animation-delay: .55s;
  color: #fff;
  /* Letztes Wort dekorativ Outline */
  -webkit-text-stroke: 1px rgba(255,255,255,.85);
  color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  .as-hero h1 .word { opacity: 1; transform: none; animation: none; }
}
@keyframes as-word-in {
  to { opacity: 1; transform: translateY(0); }
}
.as-hero .hero-lead {
  font-family: var(--font-body); font-size: var(--t-lead);
  line-height: 1.55; max-width: 760px;
  margin: 22px 0 32px; color: rgba(255,255,255,.94);
}
.as-hero .hero-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 26px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 13px; letter-spacing: .04em;
}
.as-hero .hero-meta span {
  display: inline-flex; align-items: center; gap: 8px;
}
.as-hero .hero-meta span::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ----- Section number eyebrow (editorial) -----------*/
.section--numbered { position: relative; overflow: hidden; }
.section-number {
  position: absolute; right: clamp(-20px, 2vw, 40px); top: -10px;
  font-family: var(--font-deco);
  font-weight: 400; font-size: clamp(180px, 28vw, 360px);
  line-height: .85;
  color: var(--as-line-soft);
  opacity: .85;
  pointer-events: none; user-select: none;
  z-index: 0;
  letter-spacing: -.02em;
}
.section--numbered > .container { position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 auto 22px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--accent);
}
.section-label.is-center { display: flex; justify-content: center; }

/* ----- Marquee Authority Logos -----------------------*/
.authority-bar { overflow: hidden; }
.marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* defensive: alles wird horizontal angeordnet, egal was darüber gestylt ist */
.authority-bar .marquee,
.marquee {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 56px;
  width: max-content;
  min-width: 100%;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  animation: as-marquee 38s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.authority-bar .marquee > .brand,
.marquee > .brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.marquee .brand img {
  height: 38px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(100%); opacity: .65;
  transition: filter .25s ease, opacity .25s ease;
}
.marquee .brand:hover img { filter: none; opacity: 1; }
.marquee .brand img.is-icon { height: 30px; max-width: 64px; }
.marquee .brand img.is-wide-low { height: 48px; max-width: 200px; }
@keyframes as-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
    justify-content: center;
    flex-wrap: wrap !important;
    width: 100%;
  }
}

/* ----- Spotlight Cards (mouse-tracked glow) ---------*/
.card.spot {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.card.spot::before {
  content: '';
  position: absolute; inset: -1px;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    var(--as-brand-08), transparent 60%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.card.spot:hover::before { opacity: 1; }
.card.spot > * { position: relative; z-index: 1; }

/* ----- KPI Counter --------------------------------*/
.fact .kpi {
  display: block;
  font-family: var(--font-deco);
  font-weight: 400; font-size: clamp(34px, 4vw, 48px);
  color: var(--accent);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -.005em;
}
.fact .kpi-label {
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fg-strong); margin: 0;
}
.fact .kpi-sub {
  margin-top: 6px; font-size: 13.5px; color: var(--fg-mute); line-height: 1.45;
}

/* ----- Floating Termin-Pill -----------------------*/
.floating-cta {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 4000;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 16px;
  background: var(--accent); color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 28px rgba(99,24,50,.30), 0 2px 6px rgba(31,26,36,.12);
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  text-decoration: none;
  transform: translateY(120px); opacity: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .35s ease, background-color .25s ease;
  border: none; cursor: pointer;
}
.floating-cta.is-on {
  transform: translateY(0); opacity: 1;
}
.floating-cta:hover { background: var(--accent-hover); color: #fff; }
.floating-cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: as-pulse 1.8s infinite;
}
.floating-cta .close {
  background: rgba(255,255,255,.18);
  border: none; color: #fff; cursor: pointer;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; padding: 0;
  margin-left: 4px; transition: background .2s ease;
}
.floating-cta .close:hover { background: rgba(255,255,255,.35); }
@keyframes as-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta .dot { animation: none; }
  .floating-cta { transition: opacity .25s ease; transform: none; }
}
/* Floating CTA versteckt sich, wenn Cookie-Banner sichtbar ist
   oder ein Modal offen ist */
body:has(.cookie-banner.is-visible) .floating-cta,
body.modal-open .floating-cta { opacity: 0; pointer-events: none; }
@media (max-width: 480px) {
  .floating-cta { right: 12px; bottom: 12px; padding: 10px 14px; font-size: 13px; }
  .floating-cta .close { display: none; }
}

/* ----- Magnetic CTA (Animations-Target via JS) ------*/
.btn-magnetic {
  --mag-x: 0px; --mag-y: 0px;
  transform: translate(var(--mag-x), var(--mag-y));
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background-color .25s ease, box-shadow .25s ease;
}
@media (prefers-reduced-motion: reduce) {
  .btn-magnetic { transform: none !important; }
}

/* ----- Split-Card Pepp: Inline-Eyebrow + Akzent ----*/
.split-card .as-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.split-card.corporate .as-tag { color: rgba(255,255,255,.78); }
.split-card.education .as-tag { color: var(--accent); }
.split-card .as-tag::before {
  content: ''; width: 22px; height: 1px;
  background: currentColor;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .funding-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .as-hero { padding: clamp(90px, 14vw, 130px) 0; }
}
