        /* ===== DESIGN SYSTEM - PREMIUM B2B SAAS ===== */
        :root {
            /* Premium Farbpalette - REDUZIERT AUF 3 SCHRIFTFARBEN */
            --navy: #0f172a;
            --navy-light: #1e293b;
            --accent: #38bdf8;
            --white: #ffffff;
            --gray-100: #f8fafc;
            --gray-200: #f1f5f9;
            --gray-300: #e2e8f0;
            --gray-400: #cbd5e1;
            --gray-500: #94a3b8;
            --gray-600: #64748b;
            --gray-700: #475569;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            
            /* Status Farben - NUR FÜR INDIKATOREN */
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            
            /* Glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.05);
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
            
            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            
            /* Border Radius */
            --radius-sm: 0.5rem;
            --radius-md: 0.75rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-full: 9999px;
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            
            /* Container */
            --container-max: 1440px;
            --container-padding: 2rem;
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: radial-gradient(circle 200rem at 0% -35%, #38bdf8 0, #172032 13%);
            color: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* ===== SCHRIFTFARBEN - NUR 3 VARIANTEN ===== */
        .text-white { color: var(--white); }
        .text-gray { color: var(--gray-400); }
        .text-accent { color: var(--accent); }
        
        /* Status-Farben NUR für Indikatoren, nicht für Fließtext */
        .text-success { color: var(--success); }
        .text-warning { color: var(--warning); }
        .text-danger { color: var(--danger); }
        
        /* ===== TEXT GRADIENT für Logo ===== */
        .text-gradient {
            background: linear-gradient(200deg, #fff 30%, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* ===== PREMIUM HEADER ===== */
        .premium-header {
            background: var(--navy);
            border-bottom: 1px solid var(--glass-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background: rgba(15, 23, 42, 0.98);
        }
        
        .header-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        
        .premium-logo {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            text-decoration: none;
            transition: opacity var(--transition-fast);
        }
        
        .premium-logo:hover {
            opacity: 0.9;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
            margin-left: var(--space-xl);
        }
        
        .nav-link {
            color: var(--gray-400);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: var(--space-xs) 0;
            position: relative;
            transition: color var(--transition-fast);
        }
        
        .nav-link:hover {
            color: var(--white);
        }
        
        .nav-link.active {
            color: var(--white);
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), transparent);
            border-radius: var(--radius-full);
        }
        
        .member-area {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }
        
        .member-icon {
            width: 40px;
            height: 40px;
            background: rgba(56, 189, 248, 0.1);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.25rem;
            border: 1px solid rgba(56, 189, 248, 0.2);
            transition: all var(--transition-fast);
        }
        
        /* ===== TRENNLINIE ===== */
        .header-divider {
            height: 1px;
            background: linear-gradient(90deg, var(--glass-border), var(--gray-600), var(--glass-border));
            width: 100%;
        }
        
        /* ===== MAIN CONTAINER ===== */
        .dashboard-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: var(--space-lg) var(--container-padding) var(--space-2xl);
        }
        
        /* ===== LAYOUT UTILITIES ===== */
        .flex-row { display: flex; align-items: center; }
        .flex-between { display: flex; justify-content: space-between; align-items: center; }
        .flex-center { display: flex; justify-content: center; align-items: center; }
        .flex-col { display: flex; flex-direction: column; }
        .flex-1 { flex: 1; }
        
        .grid {
            display: grid;
            gap: var(--space-lg);
        }
        
        .grid-two-cols { grid-template-columns: 1fr 1fr; }
        .grid-four-cols { grid-template-columns: repeat(4, 1fr); }
        .grid-auto-fit { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
        .grid-auto-fit-sm { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        
        /* Margin Utilities */
        .m-0 { margin: 0; }
        .mb-sm { margin-bottom: var(--space-sm); }
        .mb-md { margin-bottom: var(--space-md); }
        .mb-lg { margin-bottom: var(--space-lg); }
        .mb-xl { margin-bottom: var(--space-xl); }
        .mt-0 { margin-top: 0; }
        .mt-sm { margin-top: var(--space-sm); }
        .mt-md { margin-top: var(--space-md); }
        .mt-lg { margin-top: var(--space-lg); }
        
        /* Padding Utilities */
        .p-0 { padding: 0; }
        .p-sm { padding: var(--space-sm); }
        .p-md { padding: var(--space-md); }
        .p-lg { padding: var(--space-lg); }
        .p-xl { padding: var(--space-xl); }
        
        /* Gap Utilities */
        .gap-xs { gap: var(--space-xs); }
        .gap-sm { gap: var(--space-sm); }
        .gap-md { gap: var(--space-md); }
        .gap-lg { gap: var(--space-lg); }
        
        /* ===== TYPOGRAPHY ===== */
        .text-xs { font-size: 0.75rem; }
        .text-sm { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }
        
        .text-uppercase {
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* ===== BADGES ===== */
        .badge {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            display: inline-block;
            background: var(--gray-800);
            color: var(--gray-400);
        }
        
        .badge-accent {
            background: rgba(56, 189, 248, 0.15);
            color: var(--accent);
        }
        
        .priority-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .priority-high {
            background: rgba(239, 68, 68, 0.15);
            color: var(--danger);
        }
        
        .priority-medium {
            background: rgba(245, 158, 11, 0.15);
            color: var(--warning);
        }
        
        .priority-low {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
        }
        
        /* ===== CARD BASE - UNIFIED CARD STYLES ===== */
        .card {
            position: relative;
            background: radial-gradient(circle 200rem at 0% -36%, #38bdf8 0, #172032 13%);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--gray-700);
            display: flex;
            flex-direction: column;
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
            border-color: var(--accent);
        }
        
        .card-narrow {
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-md);
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            margin: 0;
        }
        
        .card-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: var(--space-md);
        }
        
        /* ===== KPI CARD SPECIFIC ===== */
        .kpi-icon {
            width: 48px;
            height: 48px;
            background: rgba(56, 189, 248, 0.08);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: var(--space-sm);
        }
        
        .kpi-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-xs);
        }
        
        .kpi-value-large {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: var(--space-xs);
        }
        
        .kpi-trend {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            font-size: 0.75rem;
            color: var(--gray-400);
        }
        
        .trend-up { color: var(--success); }
        .trend-down { color: var(--danger); }
        
        /* ===== PROFILE SECTION ===== */
        .profile-section {
            background: radial-gradient(circle 400rem at 30% -400%, #38bdf8 0, #172032 13%);
            border-radius: var(--radius-lg);
            padding: var(--space-lg);
            margin-bottom: var(--space-xl);
            box-shadow: var(--glass-shadow);
            border: 1px solid var(--gray-700);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
            position: relative;
        }
        
        .profile-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-lg);
        }
        
        .profile-item {
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
        }
        
        .profile-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--gray-400);
        }
        
        .profile-value {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--white);
        }
        
        /* ===== EXPORT BUTTONS ===== */
        .export-toolbar {
            display: flex;
            justify-content: flex-end;
            gap: var(--space-sm);
        }
        
        .btn-export {
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
            background: var(--gray-800);
            color: var(--white);
            border: 1px solid var(--gray-700);
        }
        
        .btn-export:hover {
            background: var(--gray-700);
            transform: translateY(-2px);
        }
        
        .btn-export i {
            font-size: 1rem;
        }
        
        .btn-pdf i { color: var(--danger); }
        .btn-csv i { color: var(--success); }
        .btn-share i { color: var(--accent); }
        
        .btn-cta {
            display: inline-block;
            background: var(--accent);
            color: var(--navy);
            font-weight: 700;
            padding: 0.875rem 2.5rem;
            border-radius: var(--radius-full);
            text-decoration: none;
            transition: all var(--transition-base);
            border: 2px solid transparent;
        }
        
        .btn-cta:hover {
            background: var(--white);
            transform: translateY(-2px);
        }
        
        /* ===== SWOT GRID - DARK VERSION ===== */
        .swot-grid-2x2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-md);
            height: 100%;
        }
        
        .swot-item {
            background: radial-gradient(circle 200rem at 160% 160%, #38bdf8 0, #172032 11%);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            display: flex;
            flex-direction: column;
            transition: all var(--transition-fast);
            border: 1px solid var(--gray-700);
            position: relative;
        }
        
        .swot-item:hover {
            background: var(--gray-700);
            border-color: var(--accent);
        }
        
        .swot-header {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            margin-bottom: var(--space-sm);
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
        }
        
        .swot-header i {
            font-size: 1.125rem;
        }
        
        .strengths .swot-header i { color: var(--success); }
        .weaknesses .swot-header i { color: var(--danger); }
        .opportunities .swot-header i { color: var(--warning); }
        .threats .swot-header i { color: var(--danger); }
        
        .swot-list {
            list-style: none;
            padding: 0;
            flex: 1;
        }
        
        .swot-list li {
            font-size: 0.875rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-700);
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: var(--gray-300);
        }
        
        .swot-list li:last-child {
            border-bottom: none;
        }
        
        .swot-list li i {
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }
        
        /* ===== RADAR CHART ===== */
        .radar-container {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .radar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-sm);
        }
        
        .radar-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--white);
            margin: 0;
        }
        
        .radar-wrapper {
            flex: 1;
            position: relative;
            min-height: 0;
            width: 100%;
        }
        
        /* ===== METRICS CARD ===== */
        .metrics-card {
            height: 20rem;
        }
        
        .metrics-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: var(--space-md);
        }
        
        .metrics-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--white);
        }
        
        .metrics-legend {
            display: flex;
            gap: var(--space-md);
            font-size: 0.75rem;
            color: var(--gray-400);
        }
        
        .legend-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 4px;
        }
        
        .legend-dot-white { background: var(--white); }
        .legend-dot-accent { background: var(--accent); }
        
        .bar-chart-container {
            flex: 1;
            position: relative;
            height: 12rem;
            width: 100%;
        }
        
        /* ===== MATRIX TABLE ===== */
        .matrix-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
        }
        
        .matrix-table th {
            text-align: left;
            padding: var(--space-sm);
            background: var(--gray-900);
            font-weight: 600;
            color: var(--white);
            border-bottom: 2px solid var(--gray-700);
        }
        
        .matrix-table td {
            padding: var(--space-sm);
            border-bottom: 1px solid var(--gray-700);
            color: var(--gray-300);
        }
        
        .matrix-table td.font-bold {
            color: var(--white);
            font-weight: 600;
        }
        
        /* ===== PROGRESS BARS ===== */
        .progress-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .gap-meter {
            width: 80px;
            height: 6px;
            background: var(--gray-700);
            border-radius: var(--radius-full);
            overflow: hidden;
            display: inline-block;
            vertical-align: middle;
        }
        
        .gap-fill {
            height: 100%;
            background: var(--accent);
            border-radius: var(--radius-full);
        }
        
        .progress-bar-bg {
            height: 6px;
            background: var(--gray-700);
            border-radius: var(--radius-full);
            overflow: hidden;
        }
        
        .progress-bar-fill {
            height: 100%;
            border-radius: var(--radius-full);
        }
        
        .progress-bar-fill-white { background: var(--white); }
        .progress-bar-fill-accent { background: var(--accent); }
        
        /* ===== BENCHMARK CARDS ===== */
        .benchmark-card {
            background: var(--gray-900);
            border-radius: var(--radius-md);
            padding: var(--space-md);
            border: 1px solid var(--gray-700);
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            position: relative;
            background: linear-gradient(135deg, var(--navy) 0%, var(--gray-800) 100%);
            border-radius: var(--radius-xl);
            padding: var(--space-xl) var(--space-lg);
            text-align: center;
            margin-top: var(--space-xl);
            border: 1px solid var(--gray-700);
        }
        
        .cta-gradient-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--navy));
            border-top-left-radius: var(--radius-xl);
            border-top-right-radius: var(--radius-xl);
        }
        
        .cta-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: var(--space-md);
        }
        
        .cta-text {
            font-size: 1.125rem;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto var(--space-lg);
        }
        
        /* ===== NOTIFICATION ===== */
        .notification {
            position: fixed;
            top: 100px;
            right: 32px;
            background: var(--gray-800);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 9999;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-left: 4px solid var(--accent);
            border: 1px solid var(--gray-700);
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        /* ===== FOOTER ===== */
        .premium-footer {
            background: var(--navy);
            color: var(--white);
            margin-top: var(--space-2xl);
            padding: var(--space-xl) 0 var(--space-lg);
            border-top: 1px solid var(--gray-800);
        }
        
        .footer-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-xl);
            margin-bottom: var(--space-xl);
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: var(--space-sm);
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-text {
            color: var(--gray-400);
            font-size: 0.875rem;
            line-height: 1.7;
        }
        
        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
            color: var(--white);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: var(--space-sm);
            color: var(--gray-400);
            font-size: 0.875rem;
        }
        
        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: var(--space-lg);
            text-align: center;
            color: var(--gray-500);
            font-size: 0.875rem;
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1280px) {
            .grid-four-cols {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 1024px) {
            .grid-two-cols {
                grid-template-columns: 1fr;
            }
            
            .nav-menu {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --container-padding: 1rem;
            }
            
            .grid-four-cols {
                grid-template-columns: 1fr;
            }
            
            .swot-grid-2x2 {
                grid-template-columns: 1fr;
                gap: var(--space-sm);
            }
            
            .export-toolbar {
                flex-wrap: wrap;
            }
            
            .btn-export {
                flex: 1;
            }
            
            .card-title {
                font-size: 1.125rem;
            }
        }
        
        /* ===== MENU TOGGLE MOBILE ===== */
        .menu-toggle {
            display: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 1024px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--navy);
                padding: var(--space-lg);
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-md);
                border-top: 1px solid var(--glass-border);
                backdrop-filter: blur(10px);
                background: rgba(15, 23, 42, 0.98);
            }
            
            .nav-menu.active {
                display: flex;
            }
        }