/* ═══════════════════════════════════════════════════════════════
   MMA Base — Globales Stylesheet
   Gemeinsam genutzt von index.html, impressum.html,
   datenschutz.html und agb.html
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   FONTS — lokal selbst-gehostet (woff2, latin)
   Keine externen Requests → DSGVO-konform & schneller
═══════════════════════════════════════ */
/* Montserrat — Headings (--font-h) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-v31-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/montserrat-v31-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/montserrat-v31-latin-900.woff2') format('woff2');
}
/* Inter — Body (--font-b) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

    /* ═══════════════════════════════════════
   TOKENS — MMA Base Design System
═══════════════════════════════════════ */
    :root {
      --bg: #FFFFFF;
      --bg-2: #FAFAFA;
      --bg-card: #F4F4F4;
      --bg-el: #EFEFEF;

      /* Neon accent */
      --neon: #d2f509;
      --neon-dk: #9ab307;
      --neon-pale: rgba(210, 245, 9, 0.15);

      /* Text */
      --text-1: #0A0A0A;
      --text-2: #555555;
      --text-3: #888888;

      /* Borders */
      --border: #EAEAEA;
      --border-2: #DDDDDD;

      --white-true: #FFFFFF;
      --font-h: 'Montserrat', sans-serif;
      --font-b: 'Inter', sans-serif;
    }

    /* ─── RESET ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
      /* Verhindert horizontales Scrollen auf Mobil (iOS Safari):
         overflow-x am Body allein reicht dort nicht – das html-Element
         muss überbreite (bewusst geklippte) Elemente wie den Hero-
         Hintergrundtext und den Ticker ebenfalls am Root klippen. */
      overflow-x: hidden;
    }

    body {
      background: var(--bg);
      color: var(--text-1);
      font-family: var(--font-b);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
    }

    /* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: 72px;
      display: flex;
      align-items: center;
      padding: 0 56px;
      transition: background .3s, border-color .3s, box-shadow .3s;
    }

    /* Default state: over dark hero → white text */
    .nav-logo {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: 1.25rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--white-true);
      transition: color .3s;
    }

    .nav-logo .logo-light {
      font-weight: 300;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      margin-left: auto;
      align-items: center;
    }

    .nav-link {
      font-family: var(--font-h);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      transition: color .2s;
    }

    .nav-link:hover {
      color: var(--white-true);
    }

    /* Primary CTA in nav — always neon bg + black text */
    .nav-cta {
      margin-left: 24px;
      background: var(--neon);
      color: #0A0A0A;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 11px 22px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background .18s, transform .18s;
    }

    .nav-cta:hover {
      background: var(--neon-dk);
      transform: translateY(-1px);
    }

    /* Scrolled state: white bg → dark text */
    .nav.scrolled {
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
    }

    .nav.scrolled .nav-logo {
      color: var(--text-1);
    }

    .nav.scrolled .nav-link {
      color: var(--text-2);
    }

    .nav.scrolled .nav-link:hover {
      color: var(--text-1);
    }

    /* Burger */
    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      background: none;
      border: none;
      padding: 8px;
    }

    .nav-burger span {
      width: 24px;
      height: 2px;
      background: var(--white-true);
      transition: all .3s;
      display: block;
      transform-origin: center;
    }

    .nav.scrolled .nav-burger span {
      background: var(--text-1);
    }

    /* Burger → X animation */
    .nav-burger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-burger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Keep burger white when menu is open (over dark overlay) */
    .nav-burger.active span {
      background: var(--white-true);
    }

    /* Mobile menu overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 199;
      background: rgba(10, 10, 10, .97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 100px 20px 40px;
      gap: 24px;
      overflow-y: auto;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: var(--font-h);
      font-size: 1.15rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--white-true);
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--neon);
    }

    .mobile-menu-close {
      position: absolute;
      top: 24px;
      right: 28px;
      background: none;
      border: none;
      color: var(--white-true);
      font-size: 2rem;
      cursor: pointer;
    }

    /* ═══════════════════════════════════════
   BUTTONS — Unified CTA System
═══════════════════════════════════════ */
    .btn-primary {
      background: var(--neon);
      color: #0A0A0A;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: 2px solid var(--neon);
      border-radius: 6px;
      cursor: pointer;
      transition: all .18s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: var(--neon-dk);
      border-color: var(--neon-dk);
      transform: translateY(-1px);
    }

    /* Secondary on dark bg */
    .btn-secondary {
      background: transparent;
      color: var(--white-true);
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: 2px solid rgba(255, 255, 255, .35);
      border-radius: 6px;
      cursor: pointer;
      transition: all .18s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary:hover {
      border-color: var(--white-true);
      background: rgba(255, 255, 255, .08);
    }

    /* Secondary on light bg */
    .btn-secondary-light {
      background: transparent;
      color: var(--text-1);
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 16px 32px;
      border: 2px solid rgba(10, 10, 10, .2);
      border-radius: 6px;
      cursor: pointer;
      transition: all .18s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary-light:hover {
      border-color: var(--text-1);
      background: rgba(10, 10, 10, .04);
    }

    /* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      display: flex;
      align-items: flex-end;
      padding: 0 56px 100px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: #0A0A0A;
      z-index: 0;
    }

    .hero-bg video {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
    }

    .hero-bg .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 10, 10, .4) 0%, rgba(10, 10, 10, .2) 40%, rgba(10, 10, 10, .7) 80%, #0A0A0A 100%);
    }

    .hero-bg-text {
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-h);
      font-weight: 900;
      font-size: clamp(12rem, 20vw, 22rem);
      text-transform: uppercase;
      letter-spacing: -.05em;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 760px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--neon);
      margin-bottom: 24px;
    }

    .hero-kicker::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--neon);
    }

    .hero-h1 {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: clamp(3.2rem, 7vw, 6.5rem);
      text-transform: uppercase;
      letter-spacing: -.03em;
      line-height: .9;
      margin-bottom: 28px;
      color: var(--white-true);
    }

    .hero-h1 .outline {
      -webkit-text-stroke: 2px var(--white-true);
      color: transparent;
    }

    .hero-h1 .accent {
      color: var(--neon);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .8);
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-microcopy {
      margin-top: 20px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .6);
      letter-spacing: .04em;
      font-weight: 500;
    }

    /* Ticker styles */
    .hero-ticker {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: var(--neon);
      color: #0A0A0A;
      overflow: hidden;
      white-space: nowrap;
      padding: 14px 0;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      z-index: 10;
      display: block;
    }

    .ticker-content {
      display: flex;
      width: max-content;
      animation: ticker 60s linear infinite;
    }

    .hero-ticker:hover .ticker-content {
      animation-play-state: paused;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 24px;
      padding-right: 24px;
      flex-shrink: 0;
    }

    .ticker-dot {
      width: 6px;
      height: 6px;
      background: #0A0A0A;
      border-radius: 50%;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      right: 56px;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .hero-scroll-line {
      width: 1px;
      height: 64px;
      background: linear-gradient(var(--neon), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }

    .hero-scroll-label {
      font-family: var(--font-h);
      font-size: .55rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      writing-mode: vertical-rl;
    }

    @keyframes scrollLine {

      0%,
      100% {
        opacity: .4;
        transform: scaleY(1);
      }

      50% {
        opacity: 1;
        transform: scaleY(.6) translateY(20px);
      }
    }

    /* (Removed static Hero Banner in favor of the animated hero-ticker) */

    /* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
    .section {
      padding: 100px 56px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-kicker {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--text-1);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-kicker::before {
      content: '';
      width: 24px;
      height: 3px;
      background: var(--neon);
      border-radius: 2px;
    }

    .section-title {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 3.5rem);
      text-transform: uppercase;
      letter-spacing: -.03em;
      line-height: .95;
      margin-bottom: 16px;
      color: var(--text-1);
    }

    .section-sub {
      font-size: .95rem;
      color: var(--text-2);
      max-width: 560px;
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════
   DISZIPLINEN — Carousel
═══════════════════════════════════════ */
    .disciplines-wrap {
      background: var(--bg-2);
    }

    /* Header row with title + nav arrows */
    .disc-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 48px;
    }

    .disc-nav {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .disc-nav-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid var(--neon);
      background: var(--neon);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s ease;
    }

    .disc-nav-btn:hover {
      border-color: var(--neon-dk);
      background: var(--neon-dk);
    }

    .disc-nav-btn svg {
      width: 18px;
      height: 18px;
      stroke: #0A0A0A;
      stroke-width: 2.5;
      fill: none;
      transition: stroke .2s;
    }

    .disc-nav-btn:hover svg {
      stroke: #0A0A0A;
    }

    .disc-nav-btn.disabled {
      opacity: .35;
      pointer-events: none;
    }

    /* Carousel track */
    .disciplines-carousel {
      position: relative;
    }

    .disciplines-grid {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 4px;
      cursor: grab;
    }

    .disciplines-grid:active {
      cursor: grabbing;
    }

    .disciplines-grid::-webkit-scrollbar {
      display: none;
    }

    .disc-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 3/4;
      min-width: 280px;
      flex: 0 0 calc((100% - 80px) / 5);
      background: #1a1a1a;
      scroll-snap-align: start;
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .disc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    }

    /* Card background image placeholder */
    .disc-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .4s ease;
    }

    .disc-card:hover .disc-card-bg {
      transform: scale(1.05);
    }

    /* Gradient overlay - dark at bottom */
    .disc-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .75) 100%);
      z-index: 1;
    }

    .disc-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 24px;
      display: flex;
      flex-direction: column;
    }

    .disc-title-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      width: 100%;
    }

    .disc-desc {
      font-size: .85rem;
      color: rgba(255, 255, 255, .8);
      line-height: 1.5;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height .4s ease, opacity .3s ease, margin-top .3s ease;
    }

    .disc-card:hover .disc-desc {
      max-height: 120px;
      opacity: 1;
      margin-top: 14px;
    }

    .disc-title {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 1.15rem;
      text-transform: uppercase;
      letter-spacing: .01em;
      line-height: 1.2;
      color: var(--white-true);
    }

    .disc-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--neon);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform .2s ease, background .2s ease;
    }

    .disc-arrow svg {
      width: 16px;
      height: 16px;
      stroke: #0A0A0A;
      stroke-width: 2.5;
      fill: none;
    }

    .disc-card:hover .disc-arrow {
      transform: scale(1.1);
      background: var(--neon-dk);
    }

    /* Extra text row below carousel */
    .disc-extra {
      margin-top: 28px;
      font-size: .9rem;
      color: var(--text-2);
      text-align: center;
    }

    .disc-extra strong {
      color: var(--text-1);
    }

    /* ═══════════════════════════════════════
   ÜBER PHILIPP
═══════════════════════════════════════ */
    .philipp-wrap {
      background: var(--bg-card);
      padding: 100px 0;
    }

    .philipp-grid {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .philipp-img {
      width: 100%;
      max-width: 440px;
      margin: 0 auto;
      aspect-ratio: 3/4;
      background: var(--bg-el);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .philipp-img svg {
      width: 64px;
      height: 64px;
      fill: var(--text-3);
    }

    .philipp-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 4px;
    }

    .philipp-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      color: var(--text-2);
      font-size: .95rem;
      line-height: 1.5;
    }

    .philipp-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--neon);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .philipp-check svg {
      width: 12px;
      height: 12px;
      stroke: #0A0A0A;
      stroke-width: 3;
      fill: none;
    }

    .philipp-private {
      margin-top: 32px;
      padding: 20px 24px;
      border: 1px solid var(--border);
      background: var(--bg);
      border-radius: 12px;
    }

    .philipp-private strong {
      color: var(--text-1);
      font-family: var(--font-h);
      font-size: .95rem;
    }

    .philipp-private p {
      margin-top: 6px;
      font-size: .85rem;
      color: var(--text-3);
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════
   USP
═══════════════════════════════════════ */
    .usp-wrap {
      background: var(--bg);
      padding: 100px 0;
    }

    .usp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 56px;
    }

    .usp-card {
      padding: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .usp-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    }

    .usp-icon {
      width: 48px;
      height: 48px;
      background: var(--text-1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .usp-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--neon);
      stroke-width: 1.8;
      fill: none;
    }

    .usp-card h3 {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 1.05rem;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: var(--text-1);
    }

    .usp-card p {
      color: var(--text-2);
      font-size: .85rem;
      line-height: 1.65;
    }

    /* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
    .contact-wrap {
      background: var(--bg-2);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-left {
      padding-top: 8px;
    }

    .contact-info-block {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-info-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: var(--text-1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-info-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--neon);
      fill: none;
      stroke-width: 1.8;
    }

    .contact-info-label {
      font-family: var(--font-h);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 4px;
    }

    .contact-info-val {
      font-size: .9rem;
      color: var(--text-2);
    }

    .contact-info-val a {
      color: var(--text-2);
      transition: color .2s;
    }

    .contact-info-val a:hover {
      color: var(--text-1);
    }

    /* FORM */
    .contact-form-wrap {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
    }

    .form-header {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: 1.4rem;
      text-transform: uppercase;
      letter-spacing: -.02em;
      padding: 32px 32px 0;
      color: var(--text-1);
    }

    .form-desc {
      color: var(--text-2);
      font-size: .9rem;
      padding: 8px 32px 0;
    }

    .form-progress {
      display: none;
      padding: 20px 32px 0;
    }

    .form-progress-top {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      font-size: .72rem;
      color: var(--text-3);
      font-family: var(--font-h);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .form-progress-bar {
      width: 100%;
      height: 4px;
      background: var(--border);
      border-radius: 2px;
      overflow: hidden;
    }

    .form-progress-fill {
      height: 100%;
      width: 33%;
      background: var(--neon);
      border-radius: 2px;
      transition: width .3s ease;
    }

    .form-body {
      padding: 24px 32px 32px;
    }

    /* Tile buttons for multi-step */
    .multistep-tiles {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .tile-btn {
      background: var(--bg);
      border: 2px solid var(--border);
      color: var(--text-1);
      padding: 18px 24px;
      text-align: left;
      cursor: pointer;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .02em;
      border-radius: 12px;
      transition: all .2s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .tile-btn::after {
      content: '→';
      font-size: 1.1rem;
      color: var(--text-3);
      transition: color .2s, transform .2s;
    }

    .tile-btn:hover {
      border-color: var(--neon);
      background: var(--neon-pale);
    }

    .tile-btn:hover::after {
      color: var(--text-1);
      transform: translateX(4px);
    }

    .form-label {
      font-family: var(--font-h);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 14px;
      display: block;
    }

    .form-input {
      background: var(--bg-2);
      border: 2px solid var(--border);
      color: var(--text-1);
      font-family: var(--font-b);
      font-size: 16px;
      /* Prevents iOS auto-zoom */
      padding: 14px 18px;
      border-radius: 10px;
      outline: none;
      transition: border-color .2s;
      width: 100%;
    }

    .form-input::placeholder {
      color: var(--text-3);
    }

    .form-input:focus {
      border-color: var(--neon);
    }

    .form-name-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    @media (max-width: 640px) {
      .form-name-row {
        grid-template-columns: 1fr;
      }
    }

    .form-select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 18px center;
      padding-right: 44px;
      cursor: pointer;
    }

    .form-select:invalid {
      color: var(--text-3);
    }

    .form-select option {
      color: var(--text-1);
      background: var(--bg-2);
    }

    .form-textarea {
      resize: vertical;
      min-height: 110px;
      font-family: var(--font-b);
      line-height: 1.5;
    }

    .form-submit {
      width: 100%;
      margin-top: 8px;
      background: var(--neon);
      color: #0A0A0A;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 18px 40px;
      border: 2px solid var(--neon);
      border-radius: 10px;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .form-submit:hover {
      background: var(--neon-dk);
      border-color: var(--neon-dk);
    }

    .form-back-btn {
      display: none;
      width: 100%;
      margin-top: 12px;
      background: transparent;
      color: var(--text-2);
      font-family: var(--font-h);
      font-weight: 600;
      font-size: .78rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 14px;
      border: 2px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      transition: all .2s;
      text-align: center;
    }

    .form-back-btn:hover {
      border-color: var(--text-2);
      color: var(--text-1);
    }

    .form-step {
      display: none;
    }

    .form-step.active {
      display: block;
    }

    /* ═══════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════ */
    .whatsapp-fab {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 150;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--neon);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(210, 245, 9, .35);
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .whatsapp-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(210, 245, 9, .45);
    }

    .whatsapp-fab svg {
      width: 28px;
      height: 28px;
      fill: #0A0A0A;
    }

    .whatsapp-fab-tooltip {
      position: absolute;
      right: 72px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--text-1);
      color: var(--white-true);
      font-family: var(--font-h);
      font-size: .7rem;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    .whatsapp-fab:hover .whatsapp-fab-tooltip {
      opacity: 1;
    }

    /* ═══════════════════════════════════════
   CTA BLOCKS (zwischen Sections)
═══════════════════════════════════════ */
    .cta-block {
      padding: 80px 0;
    }

    .cta-block-light {
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .cta-block-dark {
      background: var(--text-1);
      color: var(--white-true);
    }

    .cta-block-inner {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 56px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .cta-block .section-kicker {
      justify-content: center;
    }

    .section-kicker-dark {
      color: var(--white-true);
    }

    .cta-block-title {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      text-transform: uppercase;
      letter-spacing: -.02em;
      line-height: 1;
      color: var(--text-1);
      margin: 0;
    }

    .cta-block-title-dark {
      color: var(--white-true);
    }

    .cta-block-text {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--text-2);
      max-width: 560px;
      margin: 0;
    }

    .cta-block-text-dark {
      color: rgba(255, 255, 255, .75);
    }

    .cta-block-microcopy {
      margin-top: 4px;
      font-size: .78rem;
      color: var(--text-3);
      letter-spacing: .04em;
    }

    .cta-block-microcopy-dark {
      color: rgba(255, 255, 255, .5);
    }

    /* ═══════════════════════════════════════
   LAYOUT GRID HELPER (universal content rail)
═══════════════════════════════════════ */
    .layout-inner,
    .usp-head,
    .audience-head,
    .audience-grid,
    .process-head,
    .process-grid,
    .founding-inner,
    .faq-head,
    .faq-list-wrap {
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 56px;
      padding-right: 56px;
    }

    .usp-head {
      margin-bottom: 48px;
    }

    .audience-head,
    .process-head,
    .faq-head {
      margin-bottom: 48px;
    }

    @media (min-width: 1025px) {
      .faq-head {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    .audience-head .section-sub,
    .process-head .section-sub-dark,
    .faq-head .section-sub {
      max-width: 640px;
    }

    /* ═══════════════════════════════════════
   AUDIENCE GRID (Für wen ist MMA Base geeignet?)
═══════════════════════════════════════ */
    .audience-wrap {
      background: var(--bg);
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 1024px) {
      .audience-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .audience-grid {
        grid-template-columns: 1fr;
      }
    }

    .audience-card {
      padding: 32px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      display: flex;
      flex-direction: column;
    }

    .audience-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
      border-color: var(--neon);
    }

    .audience-icon {
      width: 48px;
      height: 48px;
      background: var(--text-1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--neon);
    }

    .audience-icon svg {
      width: 22px;
      height: 22px;
    }

    .audience-card h3 {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 1.05rem;
      text-transform: uppercase;
      margin-bottom: 12px;
      color: var(--text-1);
      letter-spacing: -.01em;
    }

    .audience-card p {
      color: var(--text-2);
      font-size: .9rem;
      line-height: 1.65;
      margin-bottom: 22px;
      flex-grow: 1;
    }

    .audience-link {
      background: transparent;
      color: var(--text-1);
      border: none;
      padding: 0;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .04em;
      cursor: pointer;
      text-align: left;
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap .2s;
      position: relative;
    }

    .audience-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--neon);
      transition: width 0.3s ease;
    }

    .audience-link-arrow {
      color: currentColor;
      font-weight: 900;
      transition: transform .2s;
      display: inline-block;
    }

    .audience-link:hover {
      gap: 12px;
    }

    .audience-link:hover::after {
      width: 100%;
    }

    .audience-card:hover .audience-link-arrow {
      transform: translateX(3px);
    }

    /* ═══════════════════════════════════════
   PROCESS STEPS (So läuft dein Probetraining ab)
═══════════════════════════════════════ */
    .process-wrap {
      background: var(--text-1);
      color: var(--white-true);
      padding: 100px 0;
    }

    .section-title-dark {
      color: var(--white-true);
    }

    .section-sub-dark {
      color: rgba(255, 255, 255, .7);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

    .process-step {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 16px;
      padding: 32px 28px;
      position: relative;
      transition: border-color .2s, background .2s;
    }

    .process-step:hover {
      border-color: var(--neon);
      background: rgba(255, 255, 255, .06);
    }

    .process-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--neon);
      color: var(--text-1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-h);
      font-weight: 900;
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .process-step h3 {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: -.01em;
      color: var(--white-true);
      margin-bottom: 10px;
    }

    .process-step p {
      color: rgba(255, 255, 255, .7);
      font-size: .88rem;
      line-height: 1.6;
    }

    .process-cta {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-top: 24px;
    }

    .process-microcopy {
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .04em;
      margin: 0;
    }

    /* ═══════════════════════════════════════
   FOUNDING MEMBER / EARLY BIRD
═══════════════════════════════════════ */
    .founding-wrap {
      background: var(--text-1);
      color: var(--white-true);
      padding: 100px 0;
    }

    .founding-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .founding-text-col {
      display: flex;
      flex-direction: column;
      gap: 18px;
      align-items: flex-start;
    }

    .founding-badge {
      display: inline-block;
      background: var(--neon);
      color: var(--text-1);
      font-family: var(--font-h);
      font-weight: 800;
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: 20px;
    }

    .founding-text {
      font-size: 1rem;
      line-height: 1.65;
      color: rgba(255, 255, 255, .75);
      max-width: 520px;
      margin: 0;
    }

    .founding-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .founding-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .founding-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 1rem;
      color: var(--white-true);
      line-height: 1.4;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .founding-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .founding-check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--neon);
      color: var(--text-1);
      font-weight: 900;
      font-size: .85rem;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .founding-microcopy {
      font-size: .78rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .04em;
      margin: 0;
    }

    /* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
    .faq-wrap {
      background: var(--bg);
      padding: 100px 0;
      border-top: 1px solid var(--border);
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0;
      transition: border-color .2s, box-shadow .2s;
    }

    .faq-item[open] {
      border-color: var(--neon);
      box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 28px;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .98rem;
      color: var(--text-1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--text-1);
      color: var(--neon);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: transform .2s;
    }

    .faq-item[open] .faq-icon {
      transform: rotate(45deg);
    }

    .faq-item p {
      padding: 0 28px 24px;
      color: var(--text-2);
      font-size: .92rem;
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 1024px) {
      .founding-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 640px) {

      .audience-wrap,
      .process-wrap,
      .founding-wrap,
      .faq-wrap,
      .usp-wrap,
      .philipp-wrap {
        padding-top: 64px;
        padding-bottom: 64px;
      }

      .layout-inner,
      .usp-head,
      .usp-grid,
      .audience-head,
      .audience-grid,
      .process-head,
      .process-grid,
      .founding-inner,
      .faq-head,
      .faq-list-wrap,
      .philipp-grid {
        padding-left: 20px;
        padding-right: 20px;
      }

      .faq-item summary {
        padding: 18px 20px;
        font-size: .92rem;
      }

      .faq-item p {
        padding: 0 20px 20px;
      }

      .founding-cta-row,
      .process-cta {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ═══════════════════════════════════════
   FORM EXTENSIONS (Lead-Funnel)
═══════════════════════════════════════ */
    .form-label-hint {
      font-weight: 500;
      font-size: .65rem;
      color: var(--text-3);
      letter-spacing: .04em;
      text-transform: none;
      margin-left: 4px;
    }

    .multistep-tiles.multistep-tiles-multi {
      grid-template-columns: 1fr 1fr;
    }

    .tile-btn-multi {
      position: relative;
      padding-right: 48px;
    }

    .tile-btn-multi::after {
      content: '';
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      border: 2px solid var(--border-2);
      border-radius: 4px;
      background: var(--bg);
      transition: all .15s;
    }

    .tile-btn-multi:hover::after {
      border-color: var(--neon);
    }

    .tile-btn-multi.selected {
      border-color: var(--neon);
      background: var(--neon-pale);
    }

    .tile-btn-multi.selected::after {
      background: var(--neon);
      border-color: var(--neon);
      content: '✓';
      color: #0A0A0A;
      font-size: .9rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .form-actions-row {
      display: flex;
      gap: 12px;
      margin-top: 14px;
    }

    .form-actions-row .form-back-btn {
      display: block;
      flex: 1;
      margin-top: 0;
    }

    .form-next-btn {
      flex: 2;
      background: var(--neon);
      color: #0A0A0A;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 14px;
      border: 2px solid var(--neon);
      border-radius: 10px;
      cursor: pointer;
      transition: all .2s;
    }

    .form-next-btn:hover {
      background: var(--neon-dk);
      border-color: var(--neon-dk);
    }

    .form-next-btn:disabled {
      opacity: .4;
      cursor: not-allowed;
    }

    .form-optional-toggle {
      margin-top: 4px;
    }

    .form-optional-btn {
      background: none;
      border: none;
      color: var(--text-2);
      font-family: var(--font-h);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      padding: 4px 0;
      transition: color .2s;
    }

    .form-optional-btn:hover {
      color: var(--text-1);
    }

    .form-optional-fields {
      display: none;
      flex-direction: column;
      gap: 14px;
      padding: 14px 0;
      border-top: 1px solid var(--border);
    }

    .form-optional-fields.open {
      display: flex;
    }

    .form-sublabel {
      font-family: var(--font-h);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 8px;
      display: block;
    }

    .form-radio-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .form-radio-pill {
      flex: 1;
      min-width: 90px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 14px;
      border: 2px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      font-size: .8rem;
      font-weight: 600;
      color: var(--text-2);
      background: var(--bg);
      transition: all .15s;
    }

    .form-radio-pill input {
      accent-color: var(--neon);
    }

    .form-radio-pill:has(input:checked) {
      border-color: var(--neon);
      background: var(--neon-pale);
      color: var(--text-1);
    }

    .form-checkboxes {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 4px;
    }

    .form-checkbox {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      cursor: pointer;
      font-size: .78rem;
      line-height: 1.5;
      color: var(--text-2);
    }

    .form-checkbox input {
      margin-top: 3px;
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      accent-color: var(--neon);
      cursor: pointer;
    }

    .form-checkbox-text a {
      color: var(--text-1);
      text-decoration: underline;
    }

    .form-submit-microcopy {
      text-align: center;
      font-size: .72rem;
      color: var(--text-3);
      margin-top: -2px;
      letter-spacing: .03em;
    }

    /* ═══════════════════════════════════════
   SUCCESS MESSAGE
═══════════════════════════════════════ */
    .success-msg {
      text-align: center;
      padding: 24px 0;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      background: var(--neon);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .success-headline {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: 1.6rem;
      text-transform: uppercase;
      letter-spacing: -.02em;
      line-height: 1;
      margin-bottom: 16px;
      color: var(--text-1);
    }

    .success-text {
      color: var(--text-2);
      line-height: 1.65;
      font-size: .95rem;
      margin-bottom: 28px;
      max-width: 380px;
      margin-left: auto;
      margin-right: auto;
    }

    .success-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 320px;
      margin: 0 auto;
    }

    .success-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 10px;
      font-family: var(--font-h);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .04em;
      text-decoration: none;
      transition: all .2s;
      border: 2px solid transparent;
    }

    .success-btn-insta {
      background: var(--text-1);
      color: var(--white-true);
      border-color: var(--text-1);
    }

    .success-btn-insta:hover {
      background: transparent;
      color: var(--text-1);
    }

    .success-btn-wa {
      background: var(--neon);
      color: #0A0A0A;
      border-color: var(--neon);
    }

    .success-btn-wa:hover {
      background: var(--neon-dk);
      border-color: var(--neon-dk);
    }

    /* ═══════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════ */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 140;
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(12px);
      border-top: 1px solid var(--border);
      box-shadow: 0 -2px 16px rgba(0, 0, 0, .08);
    }

    .sticky-cta.visible {
      display: block;
    }

    .sticky-cta-btn {
      width: 100%;
      background: var(--neon);
      color: #0A0A0A;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 15px 18px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background .18s;
    }

    .sticky-cta-btn:hover,
    .sticky-cta-btn:active {
      background: var(--neon-dk);
    }

    /* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
    footer {
      background: var(--text-1);
      color: var(--white-true);
    }

    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 64px 56px 40px;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-logo {
      font-family: var(--font-h);
      font-weight: 900;
      font-size: 1.2rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 16px;
      color: var(--white-true);
    }

    .footer-logo .logo-light {
      font-weight: 300;
      color: rgba(255, 255, 255, .7);
    }

    .footer-tagline {
      font-size: .83rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.65;
      max-width: 240px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .social-btn {
      padding: 10px 16px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .7);
      font-size: .85rem;
      text-decoration: none;
      transition: all .2s;
      cursor: pointer;
    }

    .social-btn:hover {
      border-color: var(--neon);
      background: rgba(210, 245, 9, .1);
      color: var(--neon);
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-col-title {
      font-family: var(--font-h);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--white-true);
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-link {
      font-size: .82rem;
      color: rgba(255, 255, 255, .5);
      transition: color .2s;
    }

    .footer-link:hover {
      color: var(--neon);
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 56px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: .72rem;
      color: rgba(255, 255, 255, .35);
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-size: .72rem;
      color: rgba(255, 255, 255, .35);
      transition: color .2s;
    }

    .footer-legal a:hover {
      color: rgba(255, 255, 255, .7);
    }

    .footer-ai-disclaimer {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 56px 24px;
      font-size: .65rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.6;
    }

    .footer-ai-disclaimer strong {
      color: rgba(255, 255, 255, .5);
      font-weight: 600;
    }

    /* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .nav {
        padding: 0 28px;
      }

      .nav-links {
        display: none;
      }

      .nav-burger {
        display: flex;
      }

      .hero {
        padding: 0 28px 100px;
      }

      .hero-scroll {
        display: none;
      }

      .hero-banner {
        padding: 16px 28px;
      }

      .section {
        padding: 72px 28px;
      }

      .disc-card {
        flex: 0 0 calc((100% - 40px) / 3);
        min-width: 240px;
      }

      /* Header stapeln, damit die Karussell-Pfeile nicht über den
         rechten Rand gedrückt werden (sonst horizontaler Overflow) */
      .disc-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .philipp-wrap {
        padding: 72px 0;
      }

      .philipp-grid {
        gap: 40px;
        padding-left: 28px;
        padding-right: 28px;
      }

      .usp-wrap,
      .audience-wrap,
      .process-wrap,
      .founding-wrap,
      .faq-wrap {
        padding: 80px 0;
      }

      .usp-head,
      .usp-grid,
      .audience-head,
      .audience-grid,
      .process-head,
      .process-grid,
      .founding-inner,
      .faq-head,
      .faq-list-wrap {
        padding-left: 28px;
        padding-right: 28px;
      }

      .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 48px 28px 32px;
      }

      .footer-bottom {
        padding: 16px 28px;
      }

      .footer-ai-disclaimer {
        padding: 0 28px 24px;
      }

      .cta-block {
        padding: 60px 0;
      }

      .cta-block-inner {
        padding-left: 28px;
        padding-right: 28px;
      }

      /* Sticky CTA aktivieren ab <=1024 */
      .sticky-cta.visible {
        display: block;
      }

      /* WhatsApp FAB anheben, wenn Sticky CTA aktiv ist */
      body.has-sticky-cta .whatsapp-fab {
        bottom: 84px;
      }
    }

    @media (max-width: 640px) {
      .nav {
        height: 64px;
        padding: 0 20px;
      }

      .nav-logo {
        font-size: 1.1rem;
      }

      .hero {
        padding: 0 20px 80px;
        align-items: center;
        min-height: 100svh;
      }

      .hero-h1 {
        font-size: clamp(2.4rem, 10vw, 3.5rem);
        margin-bottom: 20px;
      }

      .hero-sub {
        font-size: .95rem;
        margin-bottom: 28px;
      }

      .desktop-only,
      .hero-microcopy {
        display: none;
      }

      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
      }

      .hero-banner {
        padding: 14px 20px;
      }

      .hero-banner-text {
        font-size: .68rem;
        text-align: center;
      }

      .section {
        padding: 56px 20px;
      }

      .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
      }

      .disc-card {
        flex: 0 0 calc(100% - 40px);
        min-width: 0;
      }

      .disc-nav-btn {
        width: 40px;
        height: 40px;
      }

      .philipp-wrap {
        padding: 56px 0;
      }

      .philipp-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .usp-grid {
        grid-template-columns: 1fr;
      }

      .contact-form-wrap {
        border-radius: 16px;
      }

      .form-header {
        font-size: 1.2rem;
        padding: 24px 24px 0;
      }

      .form-desc {
        padding: 8px 24px 0;
      }

      .form-progress {
        padding: 16px 24px 0;
      }

      .form-body {
        padding: 20px 24px 24px;
      }

      .tile-btn {
        padding: 16px 20px;
        font-size: .82rem;
      }

      .footer-main {
        grid-template-columns: 1fr;
        padding: 40px 20px 24px;
      }

      .footer-bottom {
        padding: 16px 20px;
      }

      .footer-ai-disclaimer {
        padding: 0 20px 24px;
      }

      .whatsapp-fab {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
      }

      body.has-sticky-cta .whatsapp-fab {
        bottom: 80px;
      }

      .whatsapp-fab svg {
        width: 24px;
        height: 24px;
      }

      .whatsapp-fab-tooltip {
        display: none;
      }

      .cta-block {
        padding: 48px 0;
      }

      .cta-block-inner {
        padding-left: 20px;
        padding-right: 20px;
        gap: 14px;
      }

      .multistep-tiles-multi {
        grid-template-columns: 1fr;
      }

      .success-headline {
        font-size: 1.35rem;
      }

      .form-radio-pill {
        padding: 10px 10px;
        font-size: .75rem;
      }
    }

    /* ═══════════════════════════════════════
   TRAININGSPLAN
═══════════════════════════════════════ */
    .schedule-wrap {
      background: var(--text-1);
      color: var(--white-true);
      padding: 100px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .schedule-head {
      margin-bottom: 48px;
    }

    /* GRID FOR DESKTOP */
    .schedule-grid {
      display: grid;
      grid-template-columns: 100px repeat(6, 1fr);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .sh-head {
      background: var(--neon);
      color: #0A0A0A;
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 0.85rem;
      text-align: center;
      padding: 14px 8px;
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .sh-head:last-child {
      border-right: none;
    }

    .sh-time {
      color: var(--neon);
      font-family: var(--font-b);
      font-weight: 600;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 16px 8px;
      text-align: center;
    }

    .sh-cell {
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 16px 8px;
      font-family: var(--font-b);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--white-true);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1.3;
    }

    .sh-cell:nth-child(7n) {
      border-right: none;
    }

    .sh-age {
      font-size: 0.75rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 2px;
    }

    /* MOBILE TABS & FILTER */
    .schedule-tabs-wrap {
      max-width: 800px;
    }

    .schedule-tabs-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 32px;
    }

    .st-nav-btn {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.8);
      padding: 12px 20px;
      border-radius: 8px;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all 0.2s;
      flex: 1 1 auto;
      text-align: center;
    }

    @media (max-width: 640px) {
      .st-nav-btn {
        flex: 1 1 30%;
        padding: 10px 12px;
        font-size: 0.75rem;
      }
    }

    .st-nav-btn:hover {
      border-color: rgba(255, 255, 255, 0.5);
      color: var(--white-true);
    }

    .st-nav-btn.active {
      background: var(--neon);
      border-color: var(--neon);
      color: #0A0A0A;
    }

    .schedule-tabs-content {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    .st-pane {
      display: none;
      flex-direction: column;
    }

    .st-pane.active {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .st-row {
      display: flex;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      align-items: center;
    }

    .st-row:last-child {
      border-bottom: none;
    }

    .st-time {
      color: var(--neon);
      font-family: var(--font-b);
      font-weight: 600;
      font-size: 0.95rem;
      width: 120px;
      flex-shrink: 0;
    }

    .st-class {
      font-family: var(--font-b);
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--white-true);
    }

    .st-age {
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.5);
      margin-left: 8px;
    }

    @media (max-width: 640px) {
      .st-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 20px;
      }

      .st-time {
        font-size: 0.85rem;
        width: auto;
      }

      .st-class {
        font-size: 0.95rem;
      }

      .st-age {
        margin-left: 0;
        display: block;
        margin-top: 2px;
      }
    }

    .schedule-filter {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }

    .schedule-filter label {
      color: var(--text-3);
      font-family: var(--font-h);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .st-filter {
      appearance: none;
      -webkit-appearance: none;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--white-true);
      font-family: var(--font-b);
      font-size: 0.95rem;
      font-weight: 600;
      padding: 12px 16px;
      padding-right: 40px;
      border-radius: 8px;
      outline: none;
      width: 100%;
      max-width: 300px;
      cursor: pointer;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
    }

    .st-filter:focus {
      border-color: var(--neon);
    }

    .st-filter option {
      background: #1a1a1a;
      color: var(--white-true);
    }

    .st-pane-day-title {
      display: none;
      background: rgba(255, 255, 255, 0.02);
      color: var(--neon);
      font-family: var(--font-h);
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .schedule-wrap.schedule-filtered .st-pane-day-title {
      display: block;
    }

    .schedule-wrap.schedule-filtered .schedule-tabs-content {
      background: transparent;
      border: none;
    }

    .schedule-wrap.schedule-filtered .st-pane.active {
      margin-bottom: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .schedule-wrap.schedule-filtered .st-row:last-child {
      border-bottom: none;
    }

    /* DESKTOP GRID HIGHLIGHT/DIM (when filter is active) */
    .sh-cell--highlight {
      background: rgba(210, 245, 9, 0.12);
      color: var(--neon);
      font-weight: 700;
      transition: background 0.3s, color 0.3s, opacity 0.3s;
    }

    .sh-cell--dim {
      opacity: 0.15;
      transition: opacity 0.3s;
    }

    .sh-time--dim {
      opacity: 0.15;
      transition: opacity 0.3s;
    }

    /* Feature 2: Legend */
    .schedule-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-top: 24px;
      margin-bottom: 8px;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
    }

    .legend-label {
      font-family: var(--font-h);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.5);
      margin-right: 4px;
    }

    .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-b);
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
    }

    .legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    @media (max-width: 640px) {
      .schedule-legend {
        gap: 10px;
        padding: 12px 16px;
      }

      .legend-item {
        font-size: 0.7rem;
      }
    }

    /* Feature 4: Hover tooltips */
    .sh-tooltip {
      display: none;
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(8px);
      color: var(--white-true);
      font-family: var(--font-b);
      font-size: 0.78rem;
      font-weight: 400;
      padding: 10px 14px;
      border-radius: 8px;
      white-space: nowrap;
      z-index: 50;
      pointer-events: none;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    .sh-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-top-color: rgba(10, 10, 10, 0.95);
    }

    .sh-cell--has-tooltip {
      cursor: default;
    }

    .sh-cell--has-tooltip:hover .sh-tooltip {
      display: block;
      animation: tooltipFadeIn 0.2s ease;
    }

    @keyframes tooltipFadeIn {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(4px);
      }

      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    /* Feature 5: Download buttons */
    .schedule-downloads {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .schedule-dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.7);
      font-family: var(--font-h);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 10px 18px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .schedule-dl-btn:hover {
      border-color: var(--neon);
      color: var(--neon);
    }

    .schedule-dl-btn svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }

    .schedule-cta-area {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    @media (max-width: 640px) {
      .schedule-downloads {
        flex-direction: column;
        width: 100%;
      }

      .schedule-dl-btn {
        justify-content: center;
        width: 100%;
      }
    }

    /* Print styles for PDF download */
    @media print {
      body * {
        visibility: hidden;
      }

      #trainingsplan,
      #trainingsplan * {
        visibility: visible;
      }

      #trainingsplan {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: #0A0A0A !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
      }

      .schedule-tabs-wrap,
      .schedule-filter,
      .schedule-cta-area,
      .schedule-legend,
      .sh-tooltip,
      .nav,
      .whatsapp-fab,
      .mobile-menu,
      #stickyCta {
        display: none !important;
      }

      .schedule-desktop {
        display: block !important;
      }
    }

    /* RESPONSIVE DISPLAY LOGIC */
    @media (min-width: 1025px) {
      .schedule-tabs-wrap {
        display: none;
      }

      .schedule-desktop {
        display: block;
        margin-bottom: 40px;
      }
    }

    @media (max-width: 1024px) {
      .schedule-desktop {
        display: none;
      }

      .schedule-tabs-wrap {
        display: block;
      }
    }
