/**
 * Wegweiser Digital - Complete Stylesheet V3
 * Technisch, Seriös, Modern - Starlink meets Apple meets Professional
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors - Dark Mode - Schärfer, technischer */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a24;
    --color-bg-card: rgba(18, 18, 26, 0.95);

    /* Blau-Palette - satter, klarer */
    --color-primary-900: #1e3a5f;
    --color-primary-700: #2563eb;
    --color-primary-600: #3b82f6;
    --color-primary-500: #60a5fa;
    --color-primary-400: #93c5fd;
    --color-primary-300: #bfdbfe;

    /* Akzent - präziser */
    --color-accent-600: #0ea5e9;
    --color-accent-500: #38bdf8;
    --color-accent-400: #7dd3fc;

    /* Text - klarere Hierarchie */
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    /* Funktional */
    --color-success: #22c55e;
    --color-border: rgba(59, 130, 246, 0.15);
    --color-border-hover: rgba(59, 130, 246, 0.4);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius - schärfer */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 400;
    --z-intro: 9999;
}

/* Light Mode */
[data-theme="light"] {
    --color-bg-primary: #f8fafc;
    --color-bg-secondary: #f1f5f9;
    --color-bg-tertiary: #ffffff;
    --color-bg-card: rgba(255, 255, 255, 0.75);

    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted: #64748b;

    --color-border: rgba(15, 23, 42, 0.08);
    --color-border-hover: rgba(59, 130, 246, 0.35);

    /* Glass colors for light mode */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shadow: rgba(15, 23, 42, 0.06);
}

/* ============================================
   LIGHT MODE - GRADIENT BACKGROUND
   Lebendiger, moderner Hintergrund mit Blobs
   ============================================ */
[data-theme="light"] .gradient-bg {
    background: linear-gradient(
        135deg,
        #f0f9ff 0%,
        #e0f2fe 25%,
        #f0f9ff 50%,
        #ede9fe 75%,
        #f5f3ff 100%
    );
}

/* Schwarze Silhouette entfernen */
[data-theme="light"] .gradient-bg::before {
    display: none;
}

/* Light Mode Gradient Blobs - Helle Pastelltöne, keine dunklen Farben */
[data-theme="light"] .gradient-blob {
    opacity: 0.5 !important;
    filter: blur(120px) !important;
}

[data-theme="light"] .gradient-blob-1 {
    background: radial-gradient(circle, rgba(147, 197, 253, 0.5) 0%, rgba(191, 219, 254, 0.25) 40%, transparent 70%) !important;
}

[data-theme="light"] .gradient-blob-2 {
    background: radial-gradient(circle, rgba(216, 180, 254, 0.45) 0%, rgba(233, 213, 255, 0.2) 40%, transparent 70%) !important;
}

[data-theme="light"] .gradient-blob-3 {
    background: radial-gradient(circle, rgba(165, 243, 252, 0.45) 0%, rgba(207, 250, 254, 0.2) 40%, transparent 70%) !important;
}

[data-theme="light"] .gradient-blob-4 {
    background: radial-gradient(circle, rgba(199, 210, 254, 0.45) 0%, rgba(224, 231, 255, 0.2) 40%, transparent 70%) !important;
}

[data-theme="light"] .gradient-blob-5 {
    background: radial-gradient(circle, rgba(167, 243, 208, 0.4) 0%, rgba(209, 250, 229, 0.18) 40%, transparent 70%) !important;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: transparent;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

/* ============================================
   ANIMATED GRADIENT MESH BACKGROUND
   Dezente, langsam bewegende Farbflecken
   ============================================ */
.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a12 0%, #080810 50%, #0a0c18 100%);
}

.gradient-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(10, 15, 30, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

/* Animated Gradient Blobs */
.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    will-change: transform;
}

.gradient-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.6) 0%, rgba(30, 58, 138, 0.3) 40%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: blobFloat1 8s ease-in-out infinite;
}

.gradient-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.55) 0%, rgba(37, 99, 235, 0.25) 40%, transparent 70%);
    top: 20%;
    right: -10%;
    animation: blobFloat2 7s ease-in-out infinite;
    animation-delay: -2s;
}

.gradient-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, rgba(56, 189, 248, 0.2) 40%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation: blobFloat3 9s ease-in-out infinite;
    animation-delay: -3s;
}

.gradient-blob-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(79, 70, 229, 0.2) 40%, transparent 70%);
    bottom: -5%;
    right: 15%;
    animation: blobFloat4 6s ease-in-out infinite;
    animation-delay: -4s;
}

.gradient-blob-5 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.5) 0%, rgba(37, 99, 235, 0.2) 40%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: blobFloat5 10s ease-in-out infinite;
    animation-delay: -2s;
}

/* Neural Network Background Canvas */
.neural-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* ============================================
   LOGO REVEAL - Animation nach Intro
   ============================================ */
.logo-reveal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #0a0a12 0%, #080810 50%, #0a0c18 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-reveal.visible {
    opacity: 1;
}

.logo-reveal.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}

.logo-reveal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-reveal-symbol {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.logo-reveal-symbol.visible {
    opacity: 1;
    transform: scale(1);
}

.logo-reveal-symbol.morph-out {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.8s ease-out, transform 1.8s ease-out;
}

.logo-reveal-symbol img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

.logo-reveal-text {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.logo-reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-reveal-text.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.logo-reveal-wegweiser {
    color: #60a5fa;
}

.logo-reveal-digital {
    color: #93c5fd;
    font-weight: 200;
}

/* Page Entering - Elemente sofort verstecken wenn von Transition kommend */
.page-entering .header,
.page-entering .hero-badge,
.page-entering .hero-title,
.page-entering .hero-subtitle,
.page-entering .hero-description,
.page-entering .hero-buttons,
.page-entering .scroll-indicator {
    opacity: 0 !important;
    animation: none !important;
}
.page-entering .stat-card,
.page-entering .station-card,
.page-entering .feature-card,
.page-entering .inhouse-card,
.page-entering .visual-card,
.page-entering .carousel-wrapper,
.page-entering .carousel-dots,
.page-entering .carousel-hint,
.page-entering .features-section,
.page-entering .cta-section,
.page-entering .footer,
.page-entering section > .container > * {
    opacity: 0 !important;
}

/* Stagger Animation Classes - für gestaffeltes Einblenden nach Netzwerk-Build-Up */
.stagger-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Während Netzwerk aufgebaut wird - nur Canvas sichtbar */
.main-site.building-network {
    background: transparent;
}

.main-site.building-network .gradient-blob {
    opacity: 0.3;
}

.main-site.building-network .gradient-bg::after {
    opacity: 0;
}

/* ============================================
   PAGE TRANSITION - Exit Animation
   Elemente lösen sich ins Netzwerk auf
   ============================================ */
.page-transitioning {
    pointer-events: none;
}

.page-exit {
    opacity: 0;
    transform: scale(0.6) translateY(-20px);
    filter: blur(4px);
    transition: opacity 0.3s ease-in, transform 0.35s ease-in, filter 0.3s ease-in;
}

/* Verschiedene Elemente mit leicht unterschiedlichen Animationen */
.page-exit.exit-up {
    transform: scale(0.5) translateY(-60px);
}

.page-exit.exit-center {
    transform: scale(0.4) translateY(0);
}

.page-exit.exit-scatter {
    transform: scale(0.3);
}

/* Glow-Effekt beim Auflösen - wie ins Netzwerk übergehend */
.page-exit-glow {
    position: relative;
}

.page-exit-glow::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.page-exit.page-exit-glow::after {
    opacity: 1;
}

/* Overlay während Transition */
.page-transition-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 9999;
    pointer-events: all;
}

/* Subtle noise texture overlay */
.gradient-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Blob Animations - sehr langsam und subtil */
@keyframes blobFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(80px, 50px) scale(1.1);
    }
    50% {
        transform: translate(40px, 100px) scale(0.95);
    }
    75% {
        transform: translate(-30px, 60px) scale(1.05);
    }
}

@keyframes blobFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-60px, 80px) scale(1.08);
    }
    50% {
        transform: translate(-100px, 40px) scale(0.92);
    }
    75% {
        transform: translate(-40px, -30px) scale(1.04);
    }
}

@keyframes blobFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(70px, -60px) scale(1.12);
    }
    50% {
        transform: translate(120px, 20px) scale(0.9);
    }
    75% {
        transform: translate(50px, 70px) scale(1.06);
    }
}

@keyframes blobFloat4 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-50px, -70px) scale(1.1);
    }
    50% {
        transform: translate(30px, -40px) scale(0.94);
    }
    75% {
        transform: translate(-80px, 30px) scale(1.08);
    }
}

@keyframes blobFloat5 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(60px, -80px) scale(1.15) rotate(120deg);
    }
    66% {
        transform: translate(-70px, 50px) scale(0.88) rotate(240deg);
    }
}

/* Light Mode - Noise Texture leicht reduzieren */
[data-theme="light"] .gradient-bg::after {
    opacity: 0.015;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ============================================
   INTRO SCREEN - Technisch & Präzise
   ============================================ */
.intro-screen {
    position: fixed;
    inset: 0;
    z-index: var(--z-intro);
    background: #02040a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.intro-screen.fade-out {
    animation: introFadeOut 0.8s ease forwards;
    pointer-events: none;
}

@keyframes introFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Grid Background für Tech-Look - subtiler */
.intro-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

/* Scan-Line Overlay für Tech-Feeling */
.intro-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 100;
}

/* Vignette für Tiefe */
.intro-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(2, 4, 10, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

/* ============================================
   PARALLAX STAR LAYERS - 3 Tiefen-Ebenen
   ============================================ */
.intro-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    perspective: 1000px;
}

/* Hinterste Schicht - am weitesten weg, kleinste Sterne */
.star-layer {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.star-layer-back {
    transform: translateZ(-200px) scale(1.2);
    opacity: 0.4;
}

.star-layer-mid {
    transform: translateZ(-100px) scale(1.1);
    opacity: 0.6;
}

.star-layer-front {
    transform: translateZ(0);
    opacity: 0.9;
}

.intro-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

/* Stern-Twinkle Animation */
.intro-star.twinkle {
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Center Container */
.intro-center {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

/* The Dot Container */
.intro-dot-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbit Rings - technische Ringe um den Kern */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    opacity: 0;
    animation: orbitFadeIn 1s ease forwards;
}

.orbit-ring-1 {
    width: 60px;
    height: 60px;
    animation-delay: 0.2s;
}

.orbit-ring-2 {
    width: 100px;
    height: 100px;
    animation-delay: 0.4s;
}

.orbit-ring-3 {
    width: 140px;
    height: 140px;
    animation-delay: 0.6s;
}

@keyframes orbitFadeIn {
    to { opacity: 1; }
}

/* Rotating Tech-Ring */
.tech-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-top-color: rgba(59, 130, 246, 0.6);
    border-right-color: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: techRingSpin 3s linear infinite;
}

.tech-ring-inner {
    width: 50px;
    height: 50px;
    animation-direction: reverse;
    animation-duration: 2s;
    border-top-color: rgba(56, 189, 248, 0.5);
    border-right-color: rgba(56, 189, 248, 0.2);
}

@keyframes techRingSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Main Dot - Power Core */
.intro-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #93c5fd, #3b82f6);
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(59, 130, 246, 0.9),
        0 0 40px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(59, 130, 246, 0.9),
            0 0 40px rgba(59, 130, 246, 0.5),
            0 0 60px rgba(59, 130, 246, 0.3),
            inset 0 0 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow:
            0 0 30px rgba(59, 130, 246, 1),
            0 0 60px rgba(59, 130, 246, 0.7),
            0 0 80px rgba(59, 130, 246, 0.4),
            inset 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

.intro-dot:hover {
    transform: scale(1.15);
}

.dot-core {
    position: absolute;
    inset: 4px;
    background: radial-gradient(circle at 40% 40%, #fff, #bfdbfe);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

/* Energy Field - äußerer Glow */
.dot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: energyField 3s ease-in-out infinite;
}

@keyframes energyField {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

/* Pulse Rings - Energie-Wellen */
.dot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

#dot-pulse-2 {
    animation-delay: 1s;
}

#dot-pulse-3 {
    animation-delay: 2s;
}

@keyframes pulseRing {
    0% { width: 20px; height: 20px; opacity: 0.9; border-width: 2px; }
    100% { width: 180px; height: 180px; opacity: 0; border-width: 1px; }
}

/* Data Points - kleine Punkte die um den Kern kreisen */
.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(96, 165, 250, 0.8);
}

.data-point-1 {
    animation: dataOrbit1 4s linear infinite;
}

.data-point-2 {
    animation: dataOrbit2 3s linear infinite;
}

.data-point-3 {
    animation: dataOrbit3 5s linear infinite;
}

@keyframes dataOrbit1 {
    from { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

@keyframes dataOrbit2 {
    from { transform: rotate(120deg) translateX(35px) rotate(-120deg); }
    to { transform: rotate(480deg) translateX(35px) rotate(-480deg); }
}

@keyframes dataOrbit3 {
    from { transform: rotate(240deg) translateX(65px) rotate(-240deg); }
    to { transform: rotate(600deg) translateX(65px) rotate(-600deg); }
}

/* Intro Text */
.intro-text {
    text-align: center;
    opacity: 0;
    animation: textFadeIn 1s ease 0.8s forwards;
}

@keyframes textFadeIn {
    to { opacity: 1; }
}

.intro-cta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Skip-Button: dezent unten rechts */
.intro-skip {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: calc(var(--z-intro) + 1);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    animation: skipFadeIn 0.5s ease 0.5s forwards;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.intro-skip:hover {
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.35);
}

@keyframes skipFadeIn {
    to { opacity: 0.6; }
}

/* ============================================
   WARP SPEED EFFECT - Technischer
   ============================================ */
.warp-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    perspective: 1000px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.warp-container.active {
    opacity: 1;
}

.warp-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.2) 20%,
        rgba(96, 165, 250, 0.9) 50%,
        rgba(59, 130, 246, 0.2) 80%,
        transparent 100%
    );
    transform-origin: left center;
    opacity: 0;
}

/* ============================================
   NEURAL NETWORK - Realistisch mit Daten-Flow
   ============================================ */
.neural-network {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.neural-network.active {
    opacity: 1;
}

/* Nodes - Knotenpunkte */
.neural-node {
    fill: #1e3a5f;
    stroke: #60a5fa;
    stroke-width: 1;
    opacity: 0;
    filter: url(#nodeGlow);
}

.neural-node.visible {
    animation: nodeAppear 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.neural-node.core-node {
    fill: #3b82f6;
    stroke: #93c5fd;
    stroke-width: 2;
}

@keyframes nodeAppear {
    0% {
        opacity: 0;
        r: 0;
        stroke-width: 3;
    }
    50% {
        opacity: 1;
        r: 5;
        stroke-width: 2;
    }
    100% {
        opacity: 0.95;
        r: 4;
        stroke-width: 1;
    }
}

/* Connections - Verbindungslinien */
.neural-connection {
    stroke: url(#connectionGradient);
    stroke-width: 1.5;
    opacity: 0;
    fill: none;
    stroke-linecap: round;
}

.neural-connection.visible {
    animation: connectionDraw 0.4s ease forwards;
}

@keyframes connectionDraw {
    0% {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
}

/* Data Pulse - Leuchtende Punkte die durch die Verbindungen fließen */
.data-pulse {
    fill: #38bdf8;
    opacity: 0;
    filter: url(#nodeGlow);
}

.data-pulse.active {
    animation: dataPulseFlow 1.5s ease-in-out forwards;
}

@keyframes dataPulseFlow {
    0% {
        opacity: 0;
        offset-distance: 0%;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        offset-distance: 100%;
    }
}

/* Ambient Glow für das gesamte Netzwerk */
.neural-ambient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: ambientPulse 4s ease-in-out infinite;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================
   INTRO LOGO REVEAL
   ============================================ */
.intro-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
}

.intro-logo.visible {
    animation: logoReveal 0.6s ease forwards;
}

@keyframes logoReveal {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.logo-reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-5);
}

.logo-icon-large {
    width: 56px;
    height: 56px;
    color: var(--color-primary-400);
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

.logo-text-reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-wegweiser {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    opacity: 0;
    animation: textSlideIn 0.5s ease 0.15s forwards;
}

.logo-digital {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-accent-500);
    opacity: 0;
    animation: textSlideIn 0.5s ease 0.3s forwards;
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   INTRO ANIMATION STATES
   ============================================ */
.intro-dot-container.accelerating .dot-pulse {
    animation-duration: 0.4s;
}

.intro-dot-container.accelerating .dot-glow {
    animation-duration: 0.25s;
}

.intro-dot-container.warping {
    animation: dotWarp 1.2s ease-in forwards;
}

@keyframes dotWarp {
    0% { transform: scale(1); }
    30% { transform: scale(1.8); }
    100% { transform: scale(60); opacity: 0; }
}

/* ============================================
   MAIN SITE
   ============================================ */
.main-site {
    min-height: 100vh;
}

.main-site.visible {
    animation: siteReveal 0.8s ease forwards;
}

@keyframes siteReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    padding: var(--space-3) var(--space-4);
    background: var(--color-primary-600);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 500;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
}

/* ============================================
   HEADER - Clean & Professional
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-5) 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 15, 26, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-4) 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    overflow: visible;
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--color-primary-500);
    transition: color 0.3s ease;
}

.logo:hover .logo-icon {
    color: var(--color-primary-400);
}

.logo-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
}

.logo-img {
    height: 36px;
    width: auto;
    transition: opacity 0.3s ease;
    overflow: visible;
}

/* Logo Switching für Dark/Light Mode */
.logo-img-dark {
    display: block;
}

.logo-img-light {
    display: none;
}

[data-theme="light"] .logo-img-dark {
    display: none;
}

[data-theme="light"] .logo-img-light {
    display: block !important;
    /* Dünne Linien im Logo schärfer/kräftiger darstellen */
    -webkit-filter:
        drop-shadow(0 0 1px rgba(0, 0, 0, 0.7))
        drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.6)) !important;
    filter:
        drop-shadow(0 0 1px rgba(0, 0, 0, 0.7))
        drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.6)) !important;
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.text-accent {
    color: var(--color-accent-500);
    font-weight: 600;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    padding: var(--space-2) var(--space-4);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
    background: rgba(59, 130, 246, 0.1);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.dropdown-arrow {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover > .nav-link .dropdown-arrow,
.nav-dropdown.open > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + var(--space-2));
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 280px;
    background: rgba(18, 18, 30, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Unsichtbare Brücke über die Lücke zwischen Nav-Link und Dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--space-2) - 4px);
    left: 0;
    right: 0;
    height: calc(var(--space-2) + 4px);
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-text-primary);
}

.dropdown-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.dropdown-link:hover .dropdown-subtitle {
    color: var(--color-text-secondary);
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mobile-dropdown > .mobile-menu-link {
    flex: 1;
}

.mobile-dropdown-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mobile-dropdown-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-text-primary);
}

.mobile-dropdown-toggle svg {
    transition: transform 0.25s ease;
}

.mobile-dropdown.open > .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    width: 100%;
    display: none;
    padding-left: var(--space-4);
}

.mobile-dropdown.open > .mobile-dropdown-menu {
    display: block;
}

.mobile-submenu-link {
    font-size: 1rem;
    padding: var(--space-3) var(--space-4);
    border-left: 2px solid rgba(59, 130, 246, 0.2);
}

.mobile-submenu-link:hover {
    border-left-color: var(--color-primary-500);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-cta {
    display: none;
}

/* ============================================
   BUTTONS - Klar & Präsent
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    border: 1px solid transparent;
    position: relative;
}

.btn-sm { padding: var(--space-2) var(--space-4); font-size: 0.8125rem; }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: 0.9375rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-700) 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 16px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-text-secondary);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--color-accent-600);
    color: #fff;
    border-color: var(--color-accent-600);
}

.btn-accent:hover {
    background: var(--color-accent-500);
    border-color: var(--color-accent-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

/* Transparente Variante - gleiche Größe wie btn-accent,
   aber durchsichtiger Hintergrund mit feinem Rahmen.
   Zum Wechseln: btn-accent-outline ↔ btn-accent */
.btn-accent-outline {
    background: transparent;
    color: var(--color-accent-400);
    border: 1px solid var(--color-accent-500);
}

.btn-accent-outline:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--color-accent-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

[data-theme="light"] .btn-accent-outline {
    color: var(--color-accent-600);
    border-color: var(--color-accent-500);
}

[data-theme="light"] .btn-accent-outline:hover {
    background: rgba(14, 165, 233, 0.08);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-muted);
    border: none;
}

.btn-ghost:hover {
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all 0.25s ease;
}

.btn-icon:hover {
    color: var(--color-text-primary);
    background: rgba(59, 130, 246, 0.1);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.mobile-only { display: none; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-primary);
    padding: 100px var(--space-6) var(--space-6);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: calc(var(--z-sticky) - 1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-menu-link {
    display: block;
    padding: var(--space-4);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-text-primary);
    background: rgba(59, 130, 246, 0.1);
}

.mt-6 { margin-top: var(--space-6); }

/* ============================================
   HERO SECTION - Ailex Style (Clean & Elegant)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: transparent;
}

/* Hero overlays - deaktiviert für einheitlichen Neural Network Hintergrund */
.hero::before,
.hero::after,
.hero-atmosphere {
    display: none;
}

/* Scroll Indicator - animierter Pfeil */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(96, 165, 250, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(96, 165, 250, 1);
}

.scroll-indicator svg {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
}

/* Remove old neural bg and glow - we don't need these */
.hero-neural-bg,
.hero-glow,
.hero-glow-secondary,
.floating-orbs,
.deco-lines {
    display: none;
}

/* ============================================
   FLOATING ORBS - Schwebende Licht-Elemente
   ============================================ */
.floating-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-delay: -7s;
    animation-duration: 22s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -40px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

/* ============================================
   DECORATIVE LINES - Verbindungslinien
   ============================================ */
.deco-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
    height: 1px;
}

.deco-line-1 {
    top: 30%;
    left: 0;
    right: 0;
    transform: rotate(-5deg);
    animation: lineGlow 4s ease-in-out infinite;
}

.deco-line-2 {
    top: 60%;
    left: 0;
    right: 0;
    transform: rotate(3deg);
    animation: lineGlow 4s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* Vertikale Deko-Linie */
.deco-line-vertical {
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--color-primary-500), transparent);
    opacity: 0.3;
}

/* ============================================
   SECTION CONNECTORS - Verbindungen zwischen Sektionen
   ============================================ */
.section-connector {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, var(--color-border), transparent);
    z-index: 10;
}

.section-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-bg-primary);
    border: 2px solid var(--color-primary-500);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* ============================================
   DATA FLOW DECORATION - Fließende Daten-Visualisierung
   ============================================ */
.data-flow {
    position: absolute;
    overflow: hidden;
    pointer-events: none;
}

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary-400);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-primary-500);
    animation: dataFlow 3s linear infinite;
}

@keyframes dataFlow {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(200px);
        opacity: 0;
    }
}

/* ============================================
   TECH FRAME - Rahmen für Sektionen
   ============================================ */
.tech-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.tech-frame::before,
.tech-frame::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--color-primary-600);
    border-style: solid;
    opacity: 0.3;
}

.tech-frame::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: var(--radius-xl) 0 0 0;
}

.tech-frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 var(--radius-xl) 0;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 var(--space-6);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Weicher radialer Gradient für bessere Text-Lesbarkeit (Dark Mode) */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.5) 25%,
        rgba(10, 22, 40, 0.2) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

/* Light Mode - Heller Glassmorphism-Hintergrund für Text-Lesbarkeit */
[data-theme="light"] .hero-content::before {
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary-400);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--color-primary-500);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-title br {
    content: '';
    display: block;
    margin-top: 0.15em;
}

.gradient-text {
    background: linear-gradient(
        135deg,
        #93c5fd 0%,
        #60a5fa 50%,
        #38bdf8 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

/* AI Badge wie bei Ailex */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-300);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ai-badge:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.ai-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-400);
}

.hero-subtitle {
    font-size: 1.1875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    max-width: 600px;
    margin: 0 auto var(--space-12);
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FLOATING UI CARDS - Schwebende Interface-Karten
   ============================================ */
.hero-showcase {
    position: relative;
    margin-top: var(--space-16);
    padding: 0 var(--space-8);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-6);
    perspective: 1000px;
    z-index: 10;
}

.ui-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Glass shine effect */
.ui-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    border-radius: 16px 16px 0 0;
}

/* Subtle glow on edge */
.ui-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.2) 0%,
        transparent 50%,
        rgba(56, 189, 248, 0.1) 100%
    );
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.ui-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(59, 130, 246, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.ui-card:hover::after {
    opacity: 1;
}

/* Navigation Card Styles - Apple-inspired */
.nav-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.nav-card-desc {
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 5;
    flex-shrink: 1;
    min-height: 0;
    overflow: hidden;
}

.nav-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.nav-card-feature {
    font-size: 0.75rem;
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.1) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-full);
    color: var(--color-primary-300);
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-card-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-primary-300);
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.nav-card-cta svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-card:hover .nav-card-cta {
    color: var(--color-primary-200);
}

.carousel-card:hover .nav-card-cta svg {
    transform: translateX(6px);
}

/* ============================================
   3D CARD CAROUSEL - Horizontal Layout
   ============================================ */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: var(--space-8);
    z-index: 10;
    padding: 0 var(--space-4);
}

.carousel {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 440px;
    perspective: 1000px;
    overflow: visible;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-card {
    position: absolute;
    width: 320px;
    height: 400px;

    /* True Glass Effect - More Transparent */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Glowing Border */
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: var(--space-6);

    /* Enhanced Multi-layer Shadows */
    box-shadow:
        /* Bright outer glow */
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 255, 255, 0.05),
        /* Ambient shadow */
        0 10px 20px rgba(0, 0, 0, 0.2),
        /* Deep shadow */
        0 40px 80px rgba(0, 0, 0, 0.4),
        /* Strong inner top highlight */
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        /* Inner glow */
        inset 0 0 60px rgba(255, 255, 255, 0.03);

    /* Layout */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;

    /* Smooth Transitions - GPU accelerated */
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                filter 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Top edge highlight - Enhanced */
.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 10%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.4) 90%,
        transparent 100%
    );
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
    filter: blur(0.5px);
}

/* Glass reflection overlay - Subtle */
.carousel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 30%,
        transparent 100%
    );
    border-radius: 28px 28px 0 0;
    pointer-events: none;
    z-index: 1;
}

/* Card positions - Horizontal layout (4 cards) */
/* Position 0: Center (active) */
.carousel-card[data-position="0"] {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 4;
}

/* Position 1: Right side */
.carousel-card[data-position="1"] {
    transform: translateX(340px) scale(0.85);
    opacity: 0.5;
    z-index: 3;
    filter: brightness(0.7);
}

/* Position 2: Far back (behind) */
.carousel-card[data-position="2"] {
    transform: translateX(0) scale(0.7);
    opacity: 0.15;
    z-index: 1;
    filter: brightness(0.5);
    pointer-events: none;
}

/* Position 3: Left side */
.carousel-card[data-position="3"] {
    transform: translateX(-340px) scale(0.85);
    opacity: 0.5;
    z-index: 3;
    filter: brightness(0.7);
}

/* Active card hover styling - Enhanced */
.carousel-card[data-position="0"]:hover {
    transform: translateX(0) scale(1.03) translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        /* Bright outer glow on hover */
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(255, 255, 255, 0.08),
        /* Blue accent glow */
        0 0 100px rgba(59, 130, 246, 0.15),
        /* Elevated shadow */
        0 15px 30px rgba(0, 0, 0, 0.25),
        /* Deep shadow */
        0 50px 100px rgba(0, 0, 0, 0.45),
        /* Enhanced inner highlight */
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 0 80px rgba(255, 255, 255, 0.04);
}

.carousel-card[data-position="0"]:hover::before {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 10%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.6) 90%,
        transparent 100%
    );
}

.carousel-card[data-position="0"]:hover::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.06) 30%,
        transparent 100%
    );
}

/* Side cards hover - subtle effect */
.carousel-card[data-position="1"]:hover,
.carousel-card[data-position="2"]:hover {
    opacity: 0.65;
    filter: brightness(0.8);
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: var(--color-primary-500);
    border-color: var(--color-primary-400);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Drag Hint */
.carousel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.carousel-hint svg {
    opacity: 0.5;
}

/* Carousel Responsive (4 cards) */
@media (max-width: 1100px) {
    .carousel-card {
        width: 280px;
    }
    .carousel-card[data-position="1"] {
        transform: translateX(300px) scale(0.8);
    }
    .carousel-card[data-position="2"] {
        transform: translateX(0) scale(0.65);
    }
    .carousel-card[data-position="3"] {
        transform: translateX(-300px) scale(0.8);
    }
}

@media (max-width: 900px) {
    .carousel {
        height: 400px;
    }
    .carousel-card {
        width: 260px;
        height: 380px;
    }
    .carousel-card[data-position="1"] {
        transform: translateX(260px) scale(0.75);
        opacity: 0.4;
    }
    .carousel-card[data-position="2"] {
        transform: translateX(0) scale(0.6);
        opacity: 0.1;
    }
    .carousel-card[data-position="3"] {
        transform: translateX(-260px) scale(0.75);
        opacity: 0.4;
    }
}

@media (max-width: 700px) {
    .carousel {
        height: 380px;
    }
    .carousel-card {
        width: 240px;
        height: 360px;
        padding: var(--space-5);
    }
    .carousel-card[data-position="1"] {
        transform: translateX(200px) scale(0.7);
        opacity: 0.3;
    }
    .carousel-card[data-position="2"] {
        transform: translateX(0) scale(0.55);
        opacity: 0;
    }
    .carousel-card[data-position="3"] {
        transform: translateX(-200px) scale(0.7);
        opacity: 0.3;
    }
}

@media (max-width: 550px) {
    .carousel-wrapper {
        margin-top: var(--space-8);
    }
    .carousel {
        height: 280px;
        overflow: hidden;
    }
    .carousel-card {
        width: 85vw;
        max-width: 300px;
        height: 280px;
    }
    .carousel-card[data-position="1"] {
        transform: translateX(100%) scale(0.8);
        opacity: 0.2;
    }
    .carousel-card[data-position="2"] {
        transform: translateX(0) scale(0.5);
        opacity: 0;
    }
    .carousel-card[data-position="3"] {
        transform: translateX(-100%) scale(0.8);
        opacity: 0.2;
    }
    .carousel-hint {
        font-size: 0.7rem;
    }
}

/* ============================================
   LIGHT MODE - Hero & Carousel
   ============================================ */
/* Light Mode Hero - With custom background image */
/* Light Mode Hero - transparent damit Neural Network Canvas durchscheint */
[data-theme="light"] .hero {
    background: transparent;
}

/* Light Mode - Floating Orbs subtle to complement background image */
[data-theme="light"] .orb {
    filter: blur(60px);
    opacity: 0.4;
}

[data-theme="light"] .orb-1 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
}

[data-theme="light"] .orb-2 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
}

[data-theme="light"] .orb-3 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
}

[data-theme="light"] .orb-4 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
}

/* Light Mode - Hero Glow subtle */
[data-theme="light"] .hero-glow {
    background: radial-gradient(
        ellipse 60% 40% at 50% 40%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 40%,
        transparent 70%
    );
}

[data-theme="light"] .hero-title,
[data-theme="light"] .page-hero-title {
    color: var(--color-text-primary);
}

[data-theme="light"] .hero-subtitle,
[data-theme="light"] .page-hero-subtitle,
[data-theme="light"] .section-subtitle,
[data-theme="light"] .cta-subtitle {
    color: var(--color-text-secondary);
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #7c3aed 30%,
        #0ea5e9 60%,
        #3b82f6 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Light Mode - Glassmorphism Cards mit mehr Tiefe & Farbe */
[data-theme="light"] .carousel-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(240, 249, 255, 0.6) 50%,
        rgba(224, 242, 254, 0.5) 100%
    );
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5),
        0 4px 16px rgba(59, 130, 246, 0.08),
        0 12px 40px rgba(15, 23, 42, 0.12),
        0 24px 60px rgba(99, 102, 241, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(59, 130, 246, 0.05);
}

[data-theme="light"] .carousel-card::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.15) 20%,
        rgba(99, 102, 241, 0.2) 50%,
        rgba(59, 130, 246, 0.15) 80%,
        transparent 100%
    );
}

[data-theme="light"] .carousel-card::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(224, 242, 254, 0.4) 40%,
        transparent 100%
    );
}

[data-theme="light"] .carousel-card[data-position="0"]:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 8px 24px rgba(59, 130, 246, 0.15),
        0 20px 60px rgba(15, 23, 42, 0.15),
        0 0 80px rgba(99, 102, 241, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

[data-theme="light"] .carousel-card[data-position="1"],
[data-theme="light"] .carousel-card[data-position="3"] {
    filter: brightness(0.95);
}

[data-theme="light"] .carousel-card[data-position="2"] {
    filter: brightness(0.9);
}

/* Light Mode - Card Content */
[data-theme="light"] .ui-card-title {
    color: var(--color-text-primary);
}

[data-theme="light"] .ui-card-subtitle {
    color: var(--color-text-secondary);
}

[data-theme="light"] .nav-card-desc {
    color: var(--color-text-secondary);
}

[data-theme="light"] .ui-card-icon {
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.25) 0%,
        rgba(99, 102, 241, 0.2) 100%
    );
    border-color: rgba(59, 130, 246, 0.35);
    color: var(--color-primary-600);
    box-shadow:
        0 2px 8px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

[data-theme="light"] .nav-card-feature {
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.12) 0%,
        rgba(168, 85, 247, 0.08) 100%
    );
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--color-primary-700);
    box-shadow: 0 1px 3px rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .nav-card-cta {
    color: var(--color-primary-600);
    border-top-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .carousel-card:hover .nav-card-cta {
    color: var(--color-primary-700);
}

[data-theme="light"] .ui-card-header {
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

/* Light Mode - Carousel Controls */
[data-theme="light"] .carousel-dot {
    background: rgba(15, 23, 42, 0.15);
    border-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .carousel-dot:hover {
    background: rgba(15, 23, 42, 0.25);
}

[data-theme="light"] .carousel-dot.active {
    background: var(--color-primary-600);
    border-color: var(--color-primary-500);
}

[data-theme="light"] .carousel-hint {
    color: var(--color-text-muted);
}

/* ============================================
   LIGHT MODE - Navigation
   ============================================ */
[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .logo-text {
    color: var(--color-text-primary);
}

[data-theme="light"] .nav-link {
    color: var(--color-text-secondary);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: var(--color-primary-600);
}

[data-theme="light"] .btn-icon {
    color: var(--color-text-secondary);
}

[data-theme="light"] .btn-icon:hover {
    color: var(--color-primary-600);
    background: rgba(59, 130, 246, 0.1);
}

[data-theme="light"] .mobile-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="light"] .mobile-menu-link {
    color: var(--color-text-primary);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .dropdown-link {
    color: var(--color-text-primary);
}

[data-theme="light"] .dropdown-link:hover {
    background: rgba(59, 130, 246, 0.08);
    color: var(--color-primary-600);
}

[data-theme="light"] .mobile-dropdown-toggle {
    color: var(--color-text-primary);
}

[data-theme="light"] .mobile-submenu-link {
    border-left-color: rgba(15, 23, 42, 0.1);
}

/* ============================================
   LIGHT MODE - Footer
   ============================================ */
[data-theme="light"] .footer {
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
}

[data-theme="light"] .footer::before {
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.03) 100%);
}

[data-theme="light"] .footer-desc {
    color: var(--color-text-secondary);
}

[data-theme="light"] .footer-links h4 {
    color: var(--color-text-primary);
}

[data-theme="light"] .footer-links h4::before {
    background: var(--color-primary-500);
}

[data-theme="light"] .footer-links a {
    color: var(--color-text-secondary);
}

[data-theme="light"] .footer-links a:hover {
    color: var(--color-primary-600);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(15, 23, 42, 0.1);
    color: var(--color-text-muted);
}

/* ============================================
   LIGHT MODE - Buttons
   ============================================ */
[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

[data-theme="light"] .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text-primary);
    border: 1px solid rgba(15, 23, 42, 0.15);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--color-primary-400);
}

/* ============================================
   LIGHT MODE - Page Hero (Subpages)
   ============================================ */
/* Light Mode - Page Hero transparent für Neural Network Canvas */
[data-theme="light"] .page-hero {
    background: transparent;
}

[data-theme="light"] .hero-badge {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(224, 242, 254, 0.8) 100%
    );
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--color-primary-600);
    box-shadow:
        0 2px 12px rgba(59, 130, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .hero-badge .badge-dot {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* Light Mode - Content Cards & Sections */
[data-theme="light"] .content-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.5) 100%
    );
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.08),
        0 8px 32px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .placeholder-feature {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(59, 130, 246, 0.15);
}

.ui-card-main {
    width: 340px;
    min-height: 300px;
    transform: perspective(1000px) rotateX(4deg) rotateY(-3deg) translateZ(20px);
    animation: floatCard 8s ease-in-out infinite;
    z-index: 3;
}

.ui-card-left {
    width: 260px;
    min-height: 220px;
    transform: perspective(1000px) rotateX(3deg) rotateY(8deg) translateZ(-20px);
    animation: floatCardLeft 9s ease-in-out infinite;
    opacity: 0.95;
    margin-top: var(--space-12);
}

.ui-card-right {
    width: 280px;
    min-height: 240px;
    transform: perspective(1000px) rotateX(3deg) rotateY(-8deg) translateZ(-10px);
    animation: floatCardRight 10s ease-in-out infinite;
    opacity: 0.95;
    margin-top: var(--space-6);
}

@keyframes floatCard {
    0%, 100% {
        transform: perspective(1000px) rotateX(4deg) rotateY(-3deg) translateZ(20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(2deg) rotateY(-1deg) translateZ(30px) translateY(-15px);
    }
}

@keyframes floatCardLeft {
    0%, 100% {
        transform: perspective(1000px) rotateX(3deg) rotateY(8deg) translateZ(-20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(1deg) rotateY(6deg) translateZ(-10px) translateY(-12px);
    }
}

@keyframes floatCardRight {
    0%, 100% {
        transform: perspective(1000px) rotateX(3deg) rotateY(-8deg) translateZ(-10px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(1deg) rotateY(-6deg) translateZ(0px) translateY(-18px);
    }
}

/* UI Card Content Styles - Apple-inspired */
.ui-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 5;
}

.ui-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.4) 0%,
        rgba(56, 189, 248, 0.25) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-200);
    box-shadow:
        0 4px 12px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.carousel-card:hover .ui-card-icon {
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.5) 0%,
        rgba(56, 189, 248, 0.35) 100%
    );
    box-shadow:
        0 6px 20px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.ui-card-icon svg {
    width: 22px;
    height: 22px;
}

.ui-card-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: -0.01em;
}

.ui-card-subtitle {
    font-size: 0.8125rem;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 400;
    margin-top: 2px;
}

/* Mini Chart in Cards */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 70px;
    margin: var(--space-5) 0;
    padding: var(--space-3);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.mini-chart-bar {
    flex: 1;
    background: linear-gradient(
        180deg,
        rgba(96, 165, 250, 0.9) 0%,
        rgba(59, 130, 246, 0.6) 100%
    );
    border-radius: 3px 3px 0 0;
    min-height: 10px;
    animation: chartGrow 1.5s ease-out forwards;
    transform-origin: bottom;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

@keyframes chartGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Chat-like UI in Card */
.ui-chat-message {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-3);
    font-size: 0.8125rem;
    color: rgba(148, 163, 184, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-chat-message.ai {
    background: rgba(59, 130, 246, 0.08);
    border-left: 2px solid rgba(96, 165, 250, 0.6);
    border-color: rgba(59, 130, 246, 0.15);
}

/* Progress indicator */
.ui-progress {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-full);
    height: 6px;
    overflow: hidden;
    margin: var(--space-3) 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ui-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-accent-500));
    border-radius: var(--radius-full);
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: var(--progress, 75%); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: rgba(148, 163, 184, 0.6);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    animation: floatSubtle 3s ease-in-out infinite;
    opacity: 0.8;
    z-index: 10;
}

@keyframes floatSubtle {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 11px;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-primary-500);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-element {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-element[data-delay="100"] { transition-delay: 0.1s; }
.reveal-element[data-delay="200"] { transition-delay: 0.2s; }

/* ============================================
   LEISTUNGEN SECTION - Technisch
   ============================================ */
.leistungen-section {
    padding: var(--space-24) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Tech Grid im Hintergrund */
.leistungen-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Horizontale Trennlinie oben */
.leistungen-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
}

/* Light Mode - Glassmorphism-Hintergrund für Section-Titel mit Gradient-Text */
[data-theme="light"] .section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 250%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.5) 35%,
        rgba(255, 255, 255, 0.2) 55%,
        transparent 70%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: -1;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin: 0 auto;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
}

.leistung-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Tech Corner Accents */
.leistung-card::before,
.leistung-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--color-primary-600);
    border-style: solid;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.leistung-card::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
    border-radius: var(--radius-lg) 0 0 0;
}

.leistung-card::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 var(--radius-lg) 0;
}

.leistung-card:hover::before,
.leistung-card:hover::after {
    opacity: 0.8;
}

.leistung-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Scan-Line Effekt bei Hover */
.leistung-card .card-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary-500), transparent);
    opacity: 0;
    transform: translateY(-100%);
}

.leistung-card:hover .card-scanline {
    animation: scanlineMove 1.5s ease-in-out;
}

@keyframes scanlineMove {
    0% { opacity: 0; transform: translateY(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(400px); }
}

.leistung-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--color-primary-500);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.leistung-card:hover .leistung-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--color-border-hover);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.leistung-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.leistung-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.leistung-desc {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.leistung-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-primary-500);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.leistung-link:hover {
    color: var(--color-primary-400);
    gap: var(--space-3);
}

.leistung-link svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

/* ============================================
   KURSE SECTION - Technisch
   ============================================ */
.kurse-section {
    padding: var(--space-24) 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Trennlinie oben */
.kurse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.kurse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
    position: relative;
}

.kurs-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Tech Corner Accents für Kurs-Cards */
.kurs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-600), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kurs-card:hover::before {
    opacity: 1;
}

/* Data-Flow Indikator */
.kurs-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary-600), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kurs-card:hover::after {
    opacity: 0.5;
}

.kurs-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.kurs-card.featured {
    border-color: var(--color-primary-600);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
}

.kurs-card.featured::before {
    opacity: 0.6;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-accent-500), transparent);
}

.kurs-card.featured:hover {
    border-color: var(--color-primary-500);
}

.kurs-card.featured:hover::before {
    opacity: 1;
}

.kurs-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--color-primary-600);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.kurs-icon {
    width: 44px;
    height: 44px;
    margin-bottom: var(--space-5);
    color: var(--color-primary-500);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kurs-card:hover .kurs-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--color-border-hover);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.kurs-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.kurs-level {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.kurs-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.kurs-desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.kurs-features {
    text-align: left;
    margin-bottom: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.kurs-features li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

.kurs-card:hover .kurs-features li {
    color: var(--color-text-primary);
}

/* Tech-Style Bullet Points */
.kurs-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: transparent;
    border: 2px solid var(--color-primary-600);
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.kurs-card:hover .kurs-features li::before {
    opacity: 1;
    background: var(--color-primary-600);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* ============================================
   CTA SECTION - Technisch
   ============================================ */
.cta-section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

/* Tech Grid */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Trennlinie entfernt - nicht mehr nötig mit Neural Network Background */

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 55%);
    animation: ctaGlowPulse 5s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Light Mode - Glassmorphism-Hintergrund für CTA-Titel */
[data-theme="light"] .cta-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.5) 35%,
        rgba(255, 255, 255, 0.2) 55%,
        transparent 70%
    );
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: -1;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER - Technisch
   ============================================ */
.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

/* Tech Grid im Footer */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, black 0%, transparent 80%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    position: relative;
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-brand .logo-img {
    height: 32px;
    width: auto;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    max-width: 280px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    position: relative;
    padding-left: var(--space-3);
}

/* Tech-Indikator vor Footer-Überschriften */
.footer-links h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-primary-500);
    border-radius: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-primary-500);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    max-width: 400px;
    z-index: var(--z-modal);
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.cookie-banner p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--color-primary-500);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.cookie-banner a:hover {
    border-bottom-color: var(--color-primary-500);
}

.cookie-actions {
    display: flex;
    gap: var(--space-3);
}

/* ============================================
   PAGE HERO (für Unterseiten)
   ============================================ */
.page-loaded .main-site {
    display: block;
    opacity: 1;
}

.page-loaded .main-site.hidden {
    display: block;
    opacity: 1;
}

.page-hero {
    padding: var(--space-32) 0 var(--space-20);
    position: relative;
    overflow: hidden;
    background: var(--color-bg-primary);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-small {
    min-height: auto;
    padding: var(--space-24) 0 var(--space-12);
}

.page-hero-small .page-hero-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

/* ============================================
   KURS META (Dauer, Format)
   ============================================ */
.kurs-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    margin-bottom: var(--space-6);
    border-top: 1px solid var(--color-border);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.kurs-duration {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.kurs-duration svg {
    color: var(--color-primary-500);
    opacity: 0.7;
}

.kurs-format {
    background: rgba(59, 130, 246, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.details-section {
    padding: var(--space-20) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.details-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary-500), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--color-primary-600);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   INHOUSE SECTION
   ============================================ */
.inhouse-section {
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.inhouse-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.inhouse-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-12);
    align-items: center;
    position: relative;
}

.inhouse-text {
    position: relative;
}

.inhouse-text .section-title {
    text-align: left;
    margin-bottom: var(--space-4);
}

.inhouse-text .section-subtitle {
    text-align: left;
    max-width: none;
    margin-bottom: var(--space-8);
}

.inhouse-features {
    margin-bottom: var(--space-8);
}

.inhouse-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.inhouse-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.inhouse-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    text-align: center;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-accent-500));
}

.visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
}

.visual-icon svg {
    width: 40px;
    height: 40px;
}

.visual-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.visual-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-link.active,
.mobile-menu-link.active {
    color: var(--color-primary-500);
}

.nav-link.active::after {
    width: 100%;
    opacity: 1;
}

/* ============================================
   HUB PAGE - Produkt-Boxen
   ============================================ */
.hub-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.hub-product-card {
    display: flex;
    flex-direction: column;
    padding: var(--space-8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hub-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
}

.hub-product-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    margin-bottom: var(--space-6);
}

.hub-product-headline {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.hub-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-400), var(--color-accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}

.hub-product-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    flex: 1;
}

.hub-product-points {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hub-product-points li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.hub-product-points li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.hub-product-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-500);
    margin-top: auto;
    transition: gap 0.25s ease;
}

.hub-product-card:hover .hub-product-cta {
    gap: var(--space-3);
}

@media (max-width: 768px) {
    .hub-products {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ============================================
   STRATEGIEWOCHE PAGE
   ============================================ */

/* Timeline - 5 Tage */
.sw-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.sw-day {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    padding: var(--space-6);
}

.sw-day-marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-day-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary-500);
    letter-spacing: 0.02em;
}

.sw-day-content {
    flex: 1;
}

.sw-day-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.sw-day-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.sw-day-desc strong {
    color: var(--color-primary-400);
    font-weight: 600;
}

/* Vertrauenspunkte */
.sw-trust-points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.sw-trust-points li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.sw-trust-points li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Rahmendaten Grid */
.sw-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.sw-detail-card {
    padding: var(--space-6);
}

.sw-detail-card h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.sw-detail-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* Rahmendaten Info-Liste (single card layout) */
.sw-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.sw-info-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
}

.sw-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sw-info-item:first-child {
    padding-top: 0;
}

.sw-info-item dt {
    flex-shrink: 0;
    width: 120px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 0.125rem;
}

.sw-info-item dd {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .sw-day {
        flex-direction: column;
        gap: var(--space-3);
    }

    .sw-details-grid {
        grid-template-columns: 1fr;
    }

    .sw-info-item {
        flex-direction: column;
        gap: var(--space-1);
    }

    .sw-info-item dt {
        width: auto;
    }
}

/* ============================================
   15-WOCHEN-WEITERBILDUNG PAGE
   ============================================ */
.wb-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.wb-module-card {
    padding: var(--space-6) var(--space-6) var(--space-8);
    display: flex;
    flex-direction: column;
    scroll-margin-top: 100px;
}

.wb-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.wb-module-number {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary-500);
    background: rgba(59, 130, 246, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
}

.wb-module-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.wb-module-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.wb-module-desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.wb-module-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.wb-module-points li {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    padding-left: var(--space-5);
    position: relative;
    line-height: 1.5;
}

.wb-module-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary-500);
}

.wb-foerder-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.wb-foerder-points li {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.wb-foerder-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-primary-500);
}

.wb-foerder-points li strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.wb-foerder-points li p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .wb-module-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .wb-module-header {
        flex-wrap: wrap;
        gap: var(--space-2);
    }
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.mission-text .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.mission-lead {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.mission-text p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary-500), var(--color-accent-500));
}

.stat-card:hover {
    border-color: var(--color-border-hover);
    transform: translateX(4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-500);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: var(--space-20) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
}

.value-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary-500), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--color-primary-600);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.value-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--space-20) 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.contact-info > p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--color-text-primary);
}

.contact-method-text p,
.contact-method-text a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.contact-method-text a:hover {
    color: var(--color-primary-500);
}

.contact-form-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-accent-500));
}

.contact-form-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    color: var(--color-text-primary);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary-500);
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--color-primary-500);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-20) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    position: relative;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-border-hover);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   PLACEHOLDER / CONTENT PAGES
   ============================================ */
.content-section {
    padding: var(--space-16) 0 var(--space-24);
    position: relative;
}

.content-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: var(--space-12);
    text-align: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.placeholder-icon {
    color: var(--color-primary-400);
    opacity: 0.6;
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.placeholder-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.placeholder-content > p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

.placeholder-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-4);
    width: 100%;
    margin: var(--space-6) 0;
}

.placeholder-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--space-5);
    text-align: center;
}

.placeholder-feature h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.placeholder-feature p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
    padding: var(--space-20) 0;
    position: relative;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.legal-content p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

.legal-content li {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2);
}

.legal-content a {
    color: var(--color-primary-500);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-meta {
    margin-top: var(--space-12);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    /* Hero Showcase - nur Hauptkarte auf Tablet */
    .hero-showcase {
        flex-direction: column;
        align-items: center;
    }

    .ui-card-left,
    .ui-card-right {
        display: none;
    }

    .ui-card-main {
        transform: none;
        animation: floatCardSimple 6s ease-in-out infinite;
    }

    @keyframes floatCardSimple {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inhouse-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .inhouse-text .section-title,
    .inhouse-text .section-subtitle {
        text-align: center;
    }

    .inhouse-features {
        display: inline-block;
        text-align: left;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .mission-text .section-title {
        text-align: center;
    }

    .mission-text {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .kurse-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta {
        display: none;
    }

    .mobile-only {
        display: flex;
    }

    /* Hero Showcase ausblenden auf Mobile */
    .hero-showcase {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* AI Badge anpassen für Mobile */
    .ai-badge {
        font-size: 0.875rem;
        padding: var(--space-1) var(--space-3);
    }

    .ai-badge svg {
        width: 14px;
        height: 14px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: var(--space-6) var(--space-4);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-desc {
        max-width: 100%;
    }

    .cookie-banner {
        left: var(--space-4);
        right: var(--space-4);
        bottom: var(--space-4);
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .leistung-card,
    .kurs-card {
        padding: var(--space-6);
    }

    .logo-wegweiser {
        font-size: 1.5rem;
    }

    .logo-digital {
        font-size: 0.75rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .intro-screen {
        display: none;
    }

    .main-site.hidden {
        display: block !important;
        opacity: 1 !important;
    }
}

/* ============================================
   KURSE PAGE - GLASMORPHISM DESIGN
   ============================================ */

/* --- Stats Row --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-10);
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;

    /* True Glass Effect */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary-500),
        var(--color-accent-400)
    );
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Light Mode - Stat Cards mit echtem Glassmorphism */
[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 4px 24px rgba(59, 130, 246, 0.08),
        0 8px 32px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .stat-card::before {
    background: linear-gradient(
        90deg,
        var(--color-primary-500),
        var(--color-accent-400)
    );
}

[data-theme="light"] .stat-card:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow:
        0 8px 32px rgba(59, 130, 246, 0.12),
        0 16px 48px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 var(--space-4);
    }

    .stat-card {
        overflow: visible;
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-400), var(--color-accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-1);
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    color: var(--color-primary-400);
    margin-bottom: var(--space-4);
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--color-primary-400), var(--color-accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --- Founder Card --- */
.founder-card {
    padding: var(--space-8);
}

.founder-content {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.founder-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.founder-role {
    font-size: 0.9375rem;
    color: var(--color-primary-400);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.founder-text p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        width: 160px;
        height: 160px;
    }
}

/* --- Glass Card Base --- */
.glass-card {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

[data-theme="light"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

/* --- Glass Badge --- */
.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary-400);
    margin-bottom: var(--space-4);
}

.glass-badge svg {
    width: 14px;
    height: 14px;
}

[data-theme="light"] .glass-badge {
    background: rgba(59, 130, 246, 0.08);
    color: var(--color-primary-700);
}

/* --- Section Badge --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary-400);
    margin-bottom: var(--space-4);
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

[data-theme="light"] .section-badge {
    background: rgba(59, 130, 246, 0.08);
    color: var(--color-primary-700);
}

/* --- Lernpfad Section --- */
.lernpfad-section {
    padding: var(--space-20) 0;
    position: relative;
    z-index: 1;
}

.lernpfad-journey {
    position: relative;
    max-width: 800px;
    margin: var(--space-12) auto 0;
}

/* Journey Line */
.journey-line {
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(59, 130, 246, 0.3) 10%,
        rgba(59, 130, 246, 0.3) 90%,
        transparent
    );
}

.journey-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(
        to bottom,
        var(--color-primary-500),
        var(--color-accent-500)
    );
    border-radius: 1px;
    transition: height 1s ease;
}

/* Station */
.journey-station {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
}

.journey-station:last-child {
    margin-bottom: 0;
}

/* Station Marker */
.station-marker {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    display: flex;
    justify-content: center;
}

.marker-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    border: 2px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
}

.marker-dot.featured {
    background: linear-gradient(135deg, var(--color-primary-600), var(--color-accent-500));
    border-color: var(--color-primary-500);
}

.marker-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-400);
}

.marker-dot.featured .marker-number {
    color: white;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-500);
    opacity: 0;
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.journey-station.featured .marker-pulse {
    animation-duration: 1.5s;
}

/* Station Card - True Glass Effect like Homepage */
.station-card {
    flex: 1;
    padding: var(--space-6);
    position: relative;
    overflow: hidden;

    /* True Glass Effect - Transparent White Gradient */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    /* Glowing Border */
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 24px !important;

    /* Multi-layer Shadows */
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 30px rgba(255, 255, 255, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 24px 48px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.02);

    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Top Edge Highlight */
.station-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 15%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.3) 85%,
        transparent 100%
    );
    border-radius: 2px;
    pointer-events: none;
    z-index: 2;
}

/* Glass Reflection Overlay */
.station-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

/* Hover Effect */
.station-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 50px rgba(59, 130, 246, 0.1),
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 0 60px rgba(255, 255, 255, 0.03);
}

.station-card:hover::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 15%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.4) 85%,
        transparent 100%
    );
}

/* Featured Card - Extra Glow */
.station-card.featured {
    border-color: rgba(59, 130, 246, 0.35) !important;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(59, 130, 246, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 24px 48px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 40px rgba(59, 130, 246, 0.05);
}

.station-card.featured::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 15%,
        rgba(96, 165, 250, 0.8) 50%,
        rgba(59, 130, 246, 0.3) 85%,
        transparent 100%
    );
}

.station-card.featured:hover {
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(59, 130, 246, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 0 60px rgba(59, 130, 246, 0.08);
}

/* Light Mode - Station Cards mit echtem Glassmorphism */
[data-theme="light"] .station-card {
    background: rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    box-shadow:
        0 4px 24px rgba(59, 130, 246, 0.06),
        0 12px 40px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .station-card::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.06) 15%,
        rgba(99, 102, 241, 0.1) 50%,
        rgba(255, 255, 255, 0.6) 85%,
        transparent 100%
    );
}

[data-theme="light"] .station-card::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(224, 242, 254, 0.15) 40%,
        transparent 100%
    );
}

[data-theme="light"] .station-card:hover {
    background: rgba(255, 255, 255, 0.38) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow:
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 20px 50px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .station-card.featured {
    background: rgba(224, 242, 254, 0.35) !important;
    border-color: rgba(59, 130, 246, 0.35) !important;
}

[data-theme="light"] .station-card.featured::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.15) 15%,
        rgba(99, 102, 241, 0.2) 50%,
        rgba(59, 130, 246, 0.15) 85%,
        transparent 100%
    );
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(135deg, var(--color-primary-600), var(--color-accent-500));
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge svg {
    width: 12px;
    height: 12px;
}

/* Station Header */
.station-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.station-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.station-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-400);
}

.station-card.featured .station-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(56, 189, 248, 0.2));
}

.station-level {
    flex: 1;
}

.level-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-2);
}

.level-tag.einsteiger {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.level-tag.anwender {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-primary-400);
}

.level-tag.management {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.station-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.station-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

/* Station Modules */
.station-modules {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.module-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.module-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* Station Footer */
.station-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.station-meta {
    display: flex;
    gap: var(--space-5);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary-500);
}

/* --- Features Section --- */
.features-section {
    padding: var(--space-20) 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.feature-card {
    padding: var(--space-6);
    text-align: center;
    position: relative;
    overflow: hidden;

    /* True Glass Effect */
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 6px 16px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%
    );
    pointer-events: none;
    transition: all 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(59, 130, 246, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.18),
        0 24px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card:hover::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 100%
    );
}

/* Light Mode - Feature Cards mit echtem Glassmorphism */
[data-theme="light"] .feature-card {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow:
        0 4px 24px rgba(59, 130, 246, 0.06),
        0 12px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .feature-card::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.06) 20%,
        rgba(99, 102, 241, 0.1) 50%,
        rgba(59, 130, 246, 0.06) 80%,
        transparent 100%
    );
}

[data-theme="light"] .feature-card::after {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(224, 242, 254, 0.1) 40%,
        transparent 100%
    );
}

[data-theme="light"] .feature-card:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow:
        0 8px 32px rgba(59, 130, 246, 0.1),
        0 16px 48px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary-400);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(56, 189, 248, 0.2));
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --- Inhouse Section --- */
.inhouse-section {
    padding: var(--space-20) 0;
    position: relative;
    z-index: 1;
}

.glass-card-large {
    background: rgba(18, 18, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

[data-theme="light"] .glass-card-large {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.inhouse-card {
    padding: var(--space-10);
}

.inhouse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
}

.inhouse-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.inhouse-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.inhouse-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.inhouse-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: var(--color-success);
}

/* Feature Text with Subtext */
.feature-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.feature-text span:first-child {
    color: var(--color-text-primary);
}

.feature-subtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Inhouse Visual */
.inhouse-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 300px;
}

.visual-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(59, 130, 246, 0.1) 40%,
        transparent 70%
    );
    filter: blur(30px);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.visual-card {
    position: absolute;
    padding: var(--space-4) var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-width: 200px;
}

.visual-card:first-of-type {
    top: 30%;
    left: 10%;
    transform: rotate(-3deg);
}

.visual-card.secondary {
    bottom: 20%;
    right: 5%;
    transform: rotate(3deg);
}

.visual-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visual-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary-400);
}

.visual-text {
    display: flex;
    flex-direction: column;
}

.visual-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visual-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* --- CTA Section Update --- */
.cta-atmosphere {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 50% at 50% 100%,
        rgba(59, 130, 246, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* ============================================
   AMBIENT BACKGROUND - Floating Glows & Orbs
   ============================================ */

.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;

    /* Kurse Background Image */
    background-image: url('../images/bg-kurse.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Light Mode - Dezenter */
[data-theme="light"] .ambient-background {
    opacity: 0.12;
}

/* Nova Base Style */
.nova {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    /* Mehrschichtiger Glow-Effekt */
    background: radial-gradient(
        ellipse at center,
        rgba(56, 189, 248, 0.25) 0%,
        rgba(59, 130, 246, 0.15) 20%,
        rgba(30, 64, 175, 0.08) 40%,
        transparent 70%
    );
    filter: blur(40px);
    opacity: 0;
    animation: novaFadeIn 1.5s ease forwards;
}

@keyframes novaFadeIn {
    to { opacity: 1; }
}

/* Nova 1 - Nach Hero, rechts oben */
.nova.nova-1 {
    width: 800px;
    height: 600px;
    top: 70vh;
    right: -200px;
    background: radial-gradient(
        ellipse 70% 50% at 30% 50%,
        rgba(56, 189, 248, 0.2) 0%,
        rgba(59, 130, 246, 0.12) 25%,
        rgba(30, 64, 175, 0.06) 50%,
        transparent 75%
    );
    animation-delay: 0.3s;
}

/* Nova 2 - Bei Lernpfad Mitte, links */
.nova.nova-2 {
    width: 700px;
    height: 700px;
    top: 160vh;
    left: -250px;
    background: radial-gradient(
        ellipse 60% 60% at 70% 50%,
        rgba(99, 102, 241, 0.18) 0%,
        rgba(59, 130, 246, 0.1) 30%,
        rgba(30, 64, 175, 0.05) 55%,
        transparent 80%
    );
    animation-delay: 0.6s;
}

/* Nova 3 - Bei Features, rechts */
.nova.nova-3 {
    width: 900px;
    height: 500px;
    top: 250vh;
    right: -300px;
    background: radial-gradient(
        ellipse 80% 50% at 20% 50%,
        rgba(56, 189, 248, 0.15) 0%,
        rgba(59, 130, 246, 0.1) 30%,
        rgba(30, 64, 175, 0.05) 55%,
        transparent 80%
    );
    animation-delay: 0.9s;
}

/* Nova 4 - Bei Inhouse, links */
.nova.nova-4 {
    width: 650px;
    height: 650px;
    top: 340vh;
    left: -200px;
    background: radial-gradient(
        ellipse 55% 55% at 75% 50%,
        rgba(99, 102, 241, 0.15) 0%,
        rgba(59, 130, 246, 0.08) 35%,
        rgba(30, 64, 175, 0.04) 60%,
        transparent 85%
    );
    animation-delay: 1.2s;
}

/* Nova 5 - Beim CTA, zentral unten */
.nova.nova-5 {
    width: 1200px;
    height: 400px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    background: radial-gradient(
        ellipse 50% 80% at 50% 20%,
        rgba(56, 189, 248, 0.2) 0%,
        rgba(59, 130, 246, 0.12) 30%,
        rgba(30, 64, 175, 0.06) 55%,
        transparent 80%
    );
    animation-delay: 1.5s;
}

/* Subtle Pulse Animation für lebendiges Gefühl */
.nova.nova-1,
.nova.nova-3 {
    animation: novaFadeIn 1.5s ease forwards, novaPulse 8s ease-in-out infinite;
    animation-delay: 0.3s, 2s;
}

.nova.nova-2,
.nova.nova-4 {
    animation: novaFadeIn 1.5s ease forwards, novaPulse 10s ease-in-out infinite;
    animation-delay: 0.6s, 3s;
}

@keyframes novaPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.nova.nova-5 {
    animation: novaFadeIn 1.5s ease forwards, novaPulseCenter 6s ease-in-out infinite;
    animation-delay: 1.5s, 2.5s;
}

@keyframes novaPulseCenter {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.03);
    }
}

/* Light Mode - Dezentere Novas */
[data-theme="light"] .nova {
    filter: blur(50px);
}

[data-theme="light"] .nova.nova-1 {
    background: radial-gradient(
        ellipse 70% 50% at 30% 50%,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(59, 130, 246, 0.06) 30%,
        transparent 60%
    );
}

[data-theme="light"] .nova.nova-2 {
    background: radial-gradient(
        ellipse 60% 60% at 70% 50%,
        rgba(99, 102, 241, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 35%,
        transparent 65%
    );
}

[data-theme="light"] .nova.nova-3 {
    background: radial-gradient(
        ellipse 80% 50% at 20% 50%,
        rgba(56, 189, 248, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 35%,
        transparent 65%
    );
}

[data-theme="light"] .nova.nova-4 {
    background: radial-gradient(
        ellipse 55% 55% at 75% 50%,
        rgba(99, 102, 241, 0.08) 0%,
        rgba(59, 130, 246, 0.04) 40%,
        transparent 70%
    );
}

[data-theme="light"] .nova.nova-5 {
    background: radial-gradient(
        ellipse 50% 80% at 50% 20%,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(59, 130, 246, 0.06) 35%,
        transparent 65%
    );
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nova {
        animation: novaFadeIn 0.5s ease forwards !important;
    }
}

/* Mobile - Kleinere Novas */
@media (max-width: 768px) {
    .nova {
        filter: blur(30px);
    }

    .nova.nova-1,
    .nova.nova-2,
    .nova.nova-3,
    .nova.nova-4 {
        width: 400px;
        height: 400px;
    }

    .nova.nova-5 {
        width: 100%;
        height: 300px;
    }

    .nova.nova-1 { right: -150px; }
    .nova.nova-2 { left: -150px; }
    .nova.nova-3 { right: -150px; }
    .nova.nova-4 { left: -150px; }
}

/* Große Ambient Glows - strategisch platziert */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: glowFadeIn 2s ease forwards;
}

@keyframes glowFadeIn {
    to { opacity: 1; }
}

/* Glow 1 - Oben rechts (nach Hero) */
.ambient-glow.glow-1 {
    width: 600px;
    height: 600px;
    top: 80vh;
    right: -150px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(59, 130, 246, 0.05) 40%,
        transparent 70%
    );
    animation-delay: 0.5s;
}

/* Glow 2 - Links mittig */
.ambient-glow.glow-2 {
    width: 500px;
    height: 500px;
    top: 150vh;
    left: -100px;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.1) 0%,
        rgba(56, 189, 248, 0.04) 40%,
        transparent 70%
    );
    animation-delay: 0.8s;
}

/* Glow 3 - Rechts bei Features */
.ambient-glow.glow-3 {
    width: 550px;
    height: 550px;
    top: 220vh;
    right: -80px;
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.1) 0%,
        rgba(99, 102, 241, 0.04) 40%,
        transparent 70%
    );
    animation-delay: 1.1s;
}

/* Glow 4 - Links unten */
.ambient-glow.glow-4 {
    width: 450px;
    height: 450px;
    top: 300vh;
    left: -50px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(59, 130, 246, 0.04) 40%,
        transparent 70%
    );
    animation-delay: 1.4s;
}

/* Glow 5 - Zentral beim CTA */
.ambient-glow.glow-5 {
    width: 700px;
    height: 400px;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(
        ellipse,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(56, 189, 248, 0.04) 40%,
        transparent 70%
    );
    animation-delay: 1.7s;
}

/* Kleine Floating Orbs - dezent und verteilt */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%
    );
    filter: blur(1px);
    opacity: 0;
    animation: orbFloat 20s ease-in-out infinite, orbFadeIn 1s ease forwards;
}

@keyframes orbFadeIn {
    to { opacity: 1; }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-10px, -50px);
    }
    75% {
        transform: translate(30px, -20px);
    }
}

.ambient-orb.orb-a {
    width: 8px;
    height: 8px;
    top: 90vh;
    left: 15%;
    animation-delay: 0s, 0.3s;
    animation-duration: 25s, 1s;
}

.ambient-orb.orb-b {
    width: 6px;
    height: 6px;
    top: 130vh;
    right: 20%;
    animation-delay: 2s, 0.5s;
    animation-duration: 22s, 1s;
}

.ambient-orb.orb-c {
    width: 10px;
    height: 10px;
    top: 180vh;
    left: 25%;
    animation-delay: 4s, 0.7s;
    animation-duration: 28s, 1s;
}

.ambient-orb.orb-d {
    width: 5px;
    height: 5px;
    top: 240vh;
    right: 30%;
    animation-delay: 6s, 0.9s;
    animation-duration: 20s, 1s;
}

.ambient-orb.orb-e {
    width: 7px;
    height: 7px;
    top: 280vh;
    left: 10%;
    animation-delay: 8s, 1.1s;
    animation-duration: 24s, 1s;
}

.ambient-orb.orb-f {
    width: 9px;
    height: 9px;
    top: 320vh;
    right: 15%;
    animation-delay: 10s, 1.3s;
    animation-duration: 26s, 1s;
}

/* Light Mode - Ambient anpassen */
[data-theme="light"] .ambient-glow.glow-1 {
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.08) 0%,
        rgba(59, 130, 246, 0.03) 40%,
        transparent 70%
    );
}

[data-theme="light"] .ambient-glow.glow-2 {
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.07) 0%,
        rgba(56, 189, 248, 0.02) 40%,
        transparent 70%
    );
}

[data-theme="light"] .ambient-glow.glow-3 {
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.06) 0%,
        rgba(99, 102, 241, 0.02) 40%,
        transparent 70%
    );
}

[data-theme="light"] .ambient-glow.glow-4 {
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.06) 0%,
        rgba(59, 130, 246, 0.02) 40%,
        transparent 70%
    );
}

[data-theme="light"] .ambient-glow.glow-5 {
    background: radial-gradient(
        ellipse,
        rgba(59, 130, 246, 0.05) 0%,
        rgba(56, 189, 248, 0.02) 40%,
        transparent 70%
    );
}

[data-theme="light"] .ambient-orb {
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.08) 40%,
        transparent 70%
    );
}

/* Reduced Motion - Keine Animation */
@media (prefers-reduced-motion: reduce) {
    .ambient-orb {
        animation: orbFadeIn 1s ease forwards;
    }
}

/* Mobile - Weniger Effekte für Performance */
@media (max-width: 768px) {
    .ambient-glow {
        filter: blur(60px);
    }

    .ambient-glow.glow-1,
    .ambient-glow.glow-2,
    .ambient-glow.glow-3 {
        width: 350px;
        height: 350px;
    }

    .ambient-glow.glow-4,
    .ambient-glow.glow-5 {
        display: none;
    }

    .ambient-orb.orb-d,
    .ambient-orb.orb-e,
    .ambient-orb.orb-f {
        display: none;
    }
}

/* --- Kurse Page Responsive --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inhouse-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .inhouse-visual {
        order: -1;
    }

    .visual-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .stats-row {
        gap: var(--space-3);
    }

    .stat-card {
        padding: var(--space-4) var(--space-5);
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .journey-line {
        left: 20px;
    }

    .station-marker {
        width: 42px;
    }

    .marker-dot {
        width: 42px;
        height: 42px;
    }

    .journey-station {
        gap: var(--space-4);
    }

    .station-card {
        padding: var(--space-5);
    }

    .station-header {
        flex-direction: column;
        gap: var(--space-3);
    }

    .station-title {
        font-size: 1.2rem;
    }

    .station-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .station-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: var(--space-5);
        overflow: visible;
    }

    .inhouse-card {
        padding: var(--space-6);
    }

    .inhouse-title {
        font-size: 1.5rem;
    }

    .visual-container {
        height: 220px;
        max-width: 280px;
    }

    .visual-card {
        padding: var(--space-3) var(--space-4);
        min-width: 160px;
    }

    .visual-card:first-of-type {
        left: 0;
    }

    .visual-card.secondary {
        right: 0;
    }
}

@media (max-width: 480px) {
    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 200px;
    }

    .journey-line {
        display: none;
    }

    .station-marker {
        display: none;
    }

    .journey-station {
        margin-bottom: var(--space-6);
    }

    .station-card {
        margin-left: 0;
    }

    .featured-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: var(--space-4);
        display: inline-flex;
    }
}

/* ============================================
   FÖRDERUNG PAGE STYLES
   ============================================ */

/* --- QCG Info Section --- */
.qcg-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

.qcg-main-card {
    padding: var(--space-8) !important;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.25) !important;
}

.qcg-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(59, 130, 246, 0.6),
        rgba(56, 189, 248, 0.6),
        transparent
    );
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.qcg-main-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.qcg-icon-large {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(56, 189, 248, 0.15) 100%
    );
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-300);
    box-shadow:
        0 8px 24px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.qcg-icon-large svg {
    width: 40px;
    height: 40px;
}

.qcg-main-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.qcg-main-text p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.qcg-main-text strong {
    color: var(--color-primary-300);
    font-weight: 600;
}

/* QCG Info Cards Grid */
.qcg-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.qcg-card {
    padding: var(--space-6) !important;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.qcg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent
    );
}

.qcg-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0) 40%
    );
    pointer-events: none;
    border-radius: inherit;
}

.qcg-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 24px 48px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.qcg-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(56, 189, 248, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-300);
    box-shadow:
        0 4px 12px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.qcg-card-icon svg {
    width: 28px;
    height: 28px;
}

.qcg-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.qcg-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --- Förder-Tabelle --- */
.foerder-tabelle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.foerder-card {
    padding: var(--space-6) !important;
    text-align: center;
    position: relative;
    overflow: visible;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.foerder-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.35) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 24px 48px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.foerder-card.featured {
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.3) !important;
    transform: scale(1.03);
}

.foerder-card.featured:hover {
    transform: translateY(-4px) scale(1.05);
}

.foerder-card.featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-accent-500) 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.foerder-header {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foerder-size {
    display: block;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.foerder-mitarbeiter {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.foerder-prozent {
    margin-bottom: var(--space-5);
}

.prozent-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary-300) 0%, var(--color-accent-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: var(--space-1);
}

.foerder-card.featured .prozent-number {
    font-size: 3rem;
}

.prozent-label {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.foerder-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.foerder-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.foerder-detail svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary-400);
    flex-shrink: 0;
}

/* --- Förderwege Grid --- */
.foerder-wege-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.foerder-weg-card {
    padding: var(--space-8);
    text-align: left;
    max-width: 520px;
    width: 100%;
    position: relative;
}

.foerder-weg-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary-300);
    margin-bottom: var(--space-5);
}

.foerder-weg-badge.featured {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(34, 197, 94, 0.4);
    color: var(--color-success);
}

.foerder-weg-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(56, 189, 248, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.foerder-weg-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary-400);
}

.foerder-weg-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.foerder-weg-desc {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.foerder-weg-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foerder-weg-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.foerder-weg-features li:last-child {
    border-bottom: none;
}

.foerder-weg-features svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.foerder-weg-features span {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .foerder-wege-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }

    .foerder-weg-card {
        padding: var(--space-6);
        max-width: 100%;
    }
}

/* --- Förder-Hinweis (Besonderheit) --- */
.foerder-hinweis {
    margin-top: var(--space-4);
    padding: 0.75rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-left: 3px solid var(--accent, var(--color-primary-400));
    border-radius: var(--radius-md, 0.5rem);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

@media (max-width: 480px) {
    .foerder-hinweis {
        padding: 0.625rem 0.75rem;
        font-size: 0.825rem;
    }
}

/* --- Features Grid 2-Column Variant --- */
.features-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* --- Schritte Liste --- */
.schritte-liste {
    list-style: none !important;
    padding: 0 !important;
    margin: var(--space-6) 0 var(--space-8) !important;
}

.schritte-liste li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schritte-liste li:last-child {
    border-bottom: none;
}

.schritte-liste li::before {
    display: none;
}

.schritt-nummer {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-accent-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.schritt-text {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-1);
}

.schritt-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.schritt-text span {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* --- Förderung Responsive --- */
@media (max-width: 1024px) {
    .foerder-tabelle {
        grid-template-columns: repeat(2, 1fr);
    }

    .foerder-card.featured {
        transform: scale(1);
    }

    .qcg-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qcg-main-content {
        flex-direction: column;
        text-align: center;
    }

    .qcg-icon-large {
        margin: 0 auto;
    }

    .qcg-cards-grid {
        grid-template-columns: 1fr;
    }

    .qcg-main-text h3 {
        font-size: 1.25rem;
    }

    .foerder-tabelle {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .foerder-card.featured::before {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: inline-block;
        margin-bottom: var(--space-4);
    }

    .prozent-number {
        font-size: 2rem;
    }

    .foerder-card.featured .prozent-number {
        font-size: 2.25rem;
    }

    .schritt-nummer {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .qcg-icon-large {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .qcg-icon-large svg {
        width: 32px;
        height: 32px;
    }

    .foerder-card {
        padding: var(--space-5) !important;
    }
}

/* ============================================
   ÜBER UNS PAGE STYLES
   ============================================ */

/* --- Mission Section --- */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}

.mission-main-card {
    padding: var(--space-8) !important;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.12) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    ) !important;
    border: 1.5px solid rgba(59, 130, 246, 0.25) !important;
    position: relative;
    overflow: hidden;
}

.mission-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(59, 130, 246, 0.6),
        rgba(56, 189, 248, 0.6),
        transparent
    );
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.mission-main-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.mission-icon-large {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.3) 0%,
        rgba(56, 189, 248, 0.15) 100%
    );
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-300);
    box-shadow:
        0 8px 24px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mission-icon-large svg {
    width: 40px;
    height: 40px;
}

.mission-main-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.mission-main-text p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.mission-main-text p:last-child {
    margin-bottom: 0;
}

.mission-main-text strong {
    color: var(--color-primary-300);
    font-weight: 600;
}

/* Mission Benefits Grid */
.mission-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.mission-benefit {
    padding: var(--space-6) !important;
    text-align: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent
    );
}

.mission-benefit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0) 40%
    );
    pointer-events: none;
    border-radius: inherit;
}

.mission-benefit:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 24px 48px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mission-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(56, 189, 248, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-300);
    box-shadow:
        0 4px 12px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.mission-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.mission-benefit h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
}

.mission-benefit p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* --- Über uns Responsive --- */
@media (max-width: 1024px) {
    .mission-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-main-content {
        flex-direction: column;
        text-align: center;
    }

    .mission-icon-large {
        margin: 0 auto;
    }

    .mission-benefits-grid {
        grid-template-columns: 1fr;
    }

    .mission-main-text h3 {
        font-size: 1.25rem;
    }

    .mission-main-card {
        padding: var(--space-6) !important;
    }
}

@media (max-width: 480px) {
    .mission-icon-large {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }

    .mission-icon-large svg {
        width: 32px;
        height: 32px;
    }

    .mission-benefit {
        padding: var(--space-5) !important;
    }
}

/* ============================================
   KONTAKT PAGE STYLES
   ============================================ */

/* --- Kontakt Section --- */
.kontakt-section {
    padding: var(--space-16) 0 var(--space-24);
    position: relative;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: start;
}

.kontakt-info {
    position: sticky;
    top: 120px;
}

.kontakt-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: var(--space-4) 0;
    letter-spacing: -0.01em;
}

.kontakt-desc {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

/* Kontakt Methods */
.kontakt-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.kontakt-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) !important;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.kontakt-method:hover {
    transform: translateX(8px);
    border-color: rgba(59, 130, 246, 0.35) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.kontakt-method-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.25) 0%,
        rgba(56, 189, 248, 0.12) 100%
    );
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-300);
    box-shadow:
        0 4px 12px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.kontakt-method-icon svg {
    width: 24px;
    height: 24px;
}

.kontakt-method-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.kontakt-method-content a {
    font-size: 0.9375rem;
    color: var(--color-primary-300);
    text-decoration: none;
    transition: color 0.2s ease;
}

.kontakt-method-content a:hover {
    color: var(--color-primary-200);
}

.kontakt-method-content span {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.kontakt-method-meta {
    font-size: 0.8125rem !important;
    color: var(--color-text-muted) !important;
    margin-top: var(--space-1);
}

/* Kontakt Form */
.kontakt-form-wrapper {
    position: relative;
}

.kontakt-form-card {
    padding: var(--space-8) !important;
}

.kontakt-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.kontakt-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.kontakt-form-card .form-group {
    margin-bottom: var(--space-5);
}

.kontakt-form-card label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.kontakt-form-card input,
.kontakt-form-card select,
.kontakt-form-card textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.kontakt-form-card input::placeholder,
.kontakt-form-card textarea::placeholder {
    color: var(--color-text-muted);
}

.kontakt-form-card input:focus,
.kontakt-form-card select:focus,
.kontakt-form-card textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.kontakt-form-card select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    padding-right: var(--space-10);
}

.kontakt-form-card select option {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.kontakt-form-card textarea {
    min-height: 140px;
    resize: vertical;
}

.kontakt-form-card .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin: var(--space-6) 0;
}

.kontakt-form-card .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary-500);
}

.kontakt-form-card .form-checkbox label {
    margin-bottom: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.kontakt-form-card .form-checkbox a {
    color: var(--color-primary-300);
    text-decoration: underline;
}

/* Calendly Booking Section */
.calendly-wrapper {
    max-width: 900px;
    margin: 0 auto var(--space-12);
}

.calendly-embed {
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: var(--radius-lg);
}

.alternative-contact {
    max-width: 700px;
    margin: 0 auto;
}

.contact-alternatives {
    padding: var(--space-8);
    text-align: center;
}

.contact-alternatives h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.contact-alternatives p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.contact-methods-inline {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.contact-method-inline {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.contact-method-inline:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.contact-method-inline svg {
    color: var(--color-primary-400);
    flex-shrink: 0;
}

.contact-method-inline span {
    font-size: 0.9375rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .contact-methods-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-method-inline {
        justify-content: center;
    }

    .calendly-embed {
        padding: var(--space-4);
    }
}

/* FAQ Grid New */
.faq-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.faq-card {
    padding: var(--space-6) !important;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%
    ) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1.5px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent
    );
}

.faq-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.35) !important;
    box-shadow:
        0 0 0 1px rgba(59, 130, 246, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 24px 48px rgba(59, 130, 246, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.faq-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    background: linear-gradient(
        145deg,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(56, 189, 248, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-300);
    box-shadow:
        0 4px 12px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-icon svg {
    width: 24px;
    height: 24px;
}

.faq-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.faq-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* --- Kontakt Responsive --- */
@media (max-width: 1024px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .kontakt-info {
        position: relative;
        top: 0;
    }

    .faq-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kontakt-form-card .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid-new {
        grid-template-columns: 1fr;
    }

    .kontakt-title {
        font-size: 1.5rem;
    }

    .kontakt-form-card {
        padding: var(--space-6) !important;
    }

    .kontakt-form-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .kontakt-method {
        flex-direction: column;
        text-align: center;
    }

    .kontakt-method-icon {
        margin: 0 auto;
    }

    .kontakt-method-content {
        text-align: center;
    }

    .kontakt-method:hover {
        transform: translateY(-4px);
    }

    .faq-card {
        padding: var(--space-5) !important;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: var(--space-6);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-main {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.cookie-banner-content {
    flex: 1;
}

.cookie-banner-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cookie-banner-title svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary-400);
}

.cookie-banner-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.cookie-banner-text a {
    color: var(--color-primary-400);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
    color: var(--color-primary-300);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
}

.cookie-btn {
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: white;
}

.cookie-btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-400) 0%, var(--color-primary-500) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-border-hover);
}

.cookie-btn-link {
    background: transparent;
    color: var(--color-text-secondary);
    padding: var(--space-3) var(--space-2);
}

.cookie-btn-link:hover {
    color: var(--color-primary-400);
}

/* Cookie Settings Panel */
.cookie-settings-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
}

.cookie-settings-panel.visible {
    max-height: 400px;
    margin-top: var(--space-6);
}

.cookie-settings-inner {
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border);
}

.cookie-settings-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
}

.cookie-option:last-of-type {
    margin-bottom: var(--space-5);
}

.cookie-option-toggle {
    flex-shrink: 0;
}

/* Custom Toggle Switch */
.cookie-toggle {
    position: relative;
    width: 48px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-border);
    border-radius: 26px;
    transition: all var(--transition-base);
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: var(--color-text-secondary);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-primary-500);
    border-color: var(--color-primary-500);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
    background: white;
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-option-content {
    flex: 1;
}

.cookie-option-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.cookie-option-badge {
    font-size: 0.6875rem;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
    border-radius: var(--radius-full);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-option-desc {
    font-size: 0.8125rem;
    color: var(--color-text-tertiary);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: var(--space-5);
    }

    .cookie-banner-main {
        flex-direction: column;
    }

    .cookie-banner-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .cookie-btn-link {
        flex: none;
        width: 100%;
    }

    .cookie-option {
        flex-direction: column;
        gap: var(--space-3);
    }

    .cookie-option-toggle {
        order: -1;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .cookie-banner-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ============================================
   KI-TRANSPARENZ PAGE STYLES
   ============================================ */

.ki-transparenz-content {
    max-width: 900px;
}

.ki-intro-box {
    background: linear-gradient(
        135deg,
        rgba(96, 165, 250, 0.15) 0%,
        rgba(56, 189, 248, 0.1) 100%
    );
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-10);
    position: relative;
    overflow: hidden;
}

.ki-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-400), var(--color-accent-400));
}

.ki-intro-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
}

.ki-section {
    margin-bottom: var(--space-12);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ki-section:last-of-type {
    border-bottom: none;
}

.ki-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.ki-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-accent-500));
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.ki-section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-text-primary);
}

.ki-section h3 {
    font-size: 1.15rem;
    color: var(--color-text-primary);
    margin: var(--space-6) 0 var(--space-3);
}

.ki-section h3:first-of-type {
    margin-top: 0;
}

.ki-section p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

/* KI Transparency Tables */
.ki-table-wrapper {
    overflow-x: auto;
    margin: var(--space-6) 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ki-transparency-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ki-transparency-table th,
.ki-transparency-table td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ki-transparency-table th {
    background: rgba(96, 165, 250, 0.1);
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ki-transparency-table td {
    color: var(--color-text-secondary);
}

.ki-transparency-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ki-transparency-table tbody tr:last-child td {
    border-bottom: none;
}

/* KI Badges */
.ki-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ki-badge.ki-generated {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.3);
}

.ki-badge.ki-assisted {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.ki-badge.ki-none {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.ki-badge.ki-compliant {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

/* KI Note Box */
.ki-note {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-left: 4px solid #fbbf24;
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    margin: var(--space-6) 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.ki-note strong {
    color: #fbbf24;
}

/* KI Lists */
.ki-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
}

.ki-list li {
    position: relative;
    padding: var(--space-3) 0 var(--space-3) var(--space-6);
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ki-list li:last-child {
    border-bottom: none;
}

.ki-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-primary-400), var(--color-accent-400));
    border-radius: 50%;
}

.ki-list li strong {
    color: var(--color-text-primary);
}

/* KI Rights List */
.ki-rights-list {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0;
    display: grid;
    gap: var(--space-4);
}

.ki-rights-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ki-rights-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-primary-400);
}

.ki-rights-list li span {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.ki-rights-list li strong {
    color: var(--color-text-primary);
}

/* VERIFY Process */
.verify-process {
    display: grid;
    gap: var(--space-3);
    margin: var(--space-6) 0;
}

.verify-step {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.verify-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateX(4px);
}

.verify-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-accent-500));
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.verify-content strong {
    display: block;
    color: var(--color-text-primary);
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.verify-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* KI Contact Box */
.ki-contact-box {
    background: linear-gradient(
        135deg,
        rgba(96, 165, 250, 0.1) 0%,
        rgba(56, 189, 248, 0.05) 100%
    );
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin-top: var(--space-10);
    text-align: center;
}

.ki-contact-box h3 {
    margin: 0 0 var(--space-3);
    color: var(--color-text-primary);
    font-size: 1.25rem;
}

.ki-contact-box p {
    margin: 0 0 var(--space-5);
    color: var(--color-text-secondary);
}

/* Light Theme Adjustments */
[data-theme="light"] .ki-intro-box {
    background: linear-gradient(
        135deg,
        rgba(96, 165, 250, 0.1) 0%,
        rgba(56, 189, 248, 0.05) 100%
    );
}

[data-theme="light"] .ki-section {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .ki-table-wrapper {
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .ki-transparency-table th {
    background: rgba(96, 165, 250, 0.08);
}

[data-theme="light"] .ki-transparency-table td {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .ki-transparency-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .ki-list li {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .ki-rights-list li,
[data-theme="light"] .verify-step {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .verify-step:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* Responsive */
@media (max-width: 768px) {
    .ki-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .ki-section-number {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .ki-section-header h2 {
        font-size: 1.3rem;
    }

    .verify-step {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .ki-rights-list li {
        flex-direction: column;
        gap: var(--space-3);
    }

    .ki-transparency-table {
        font-size: 0.85rem;
    }

    .ki-transparency-table th,
    .ki-transparency-table td {
        padding: var(--space-3);
    }
}

/* ============================================
   SUBTITLE LESBARKEIT - OPTION C & D
   Glasmorphismus-Boxen für bessere Lesbarkeit
   ============================================ */

/* Option C: Glasmorphismus-Box */
.subtitle-glass {
    display: inline-block;
    background: linear-gradient(
        145deg,
        rgba(10, 15, 25, 0.7) 0%,
        rgba(15, 20, 35, 0.5) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    color: rgba(255, 255, 255, 0.95);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Option D: Glasmorphismus-Box + Glow */
.subtitle-glass-glow {
    display: inline-block;
    background: linear-gradient(
        145deg,
        rgba(10, 15, 25, 0.75) 0%,
        rgba(15, 20, 35, 0.55) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-6);
    color: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* Anpassung für beide Optionen im Hero */
.hero-subtitle.subtitle-glass,
.hero-subtitle.subtitle-glass-glow {
    max-width: 650px;
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Section Subtitle Varianten */
.section-subtitle.subtitle-glass,
.section-subtitle.subtitle-glass-glow {
    max-width: 520px;
    line-height: 1.75;
}

/* CTA Subtitle Varianten */
.cta-subtitle.subtitle-glass,
.cta-subtitle.subtitle-glass-glow {
    line-height: 1.75;
}

/* Light Mode Anpassungen */
[data-theme="light"] .subtitle-glass {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--color-text-primary);
    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

[data-theme="light"] .subtitle-glass-glow {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.75) 100%
    );
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text-primary);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.1),
        0 0 30px rgba(59, 130, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    text-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .subtitle-glass,
    .subtitle-glass-glow {
        padding: var(--space-4) var(--space-5);
    }

    .hero-subtitle.subtitle-glass,
    .hero-subtitle.subtitle-glass-glow {
        font-size: 1rem;
    }
}

/* ============================================
   ACCESSIBILITY - Focus Styles
   ============================================ */
.btn:focus-visible,
.nav-link:focus-visible,
.carousel-dot:focus-visible,
.btn-icon:focus-visible,
.mobile-menu-link:focus-visible,
.dropdown-link:focus-visible,
.cookie-btn:focus-visible,
.mobile-dropdown-toggle:focus-visible,
.carousel-card:focus-visible {
    outline: 2px solid var(--color-primary-400);
    outline-offset: 2px;
}

.nav-card-cta:focus-visible,
.contact-method-inline:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary-400);
    outline-offset: 2px;
}

/* Ensure minimum touch target size on mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
    }

    .carousel-dot {
        min-width: 44px;
        min-height: 44px;
    }

    .btn-icon {
        min-width: 44px;
        min-height: 44px;
    }
}
