:root {
            --bg-void: #050507;
            --bg-deep: #0a0a0f;
            --bg-surface: #111118;
            --bg-elevated: #18181f;
            --bg-card: #1e1e28;
            
            --text-bright: #ffffff;
            --text-primary: #e8e8ed;
            --text-secondary: #9898a8;
            --text-muted: #58586a;
            
            --accent-primary: #7c5cff;
            --accent-secondary: #ff6b9d;
            --accent-tertiary: #00d4aa;
            --accent-warm: #ffb347;
            
            --glow-primary: rgba(124, 92, 255, 0.5);
            --glow-secondary: rgba(255, 107, 157, 0.4);
            --glow-tertiary: rgba(0, 212, 170, 0.4);
            
            --font-sans: 'Inter', -apple-system, sans-serif;
            --font-serif: 'Playfair Display', Georgia, serif;
            
            --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        button {
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-sans);
            background: var(--bg-void);
            color: var(--text-secondary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        ::selection {
            background: var(--accent-primary);
            color: white;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(24px, 6vw, 48px);
        }
        
        /* ═══════════════════════════════════════════════════════════════
           LIVING BACKGROUND - Atmospheric Depth
        ═══════════════════════════════════════════════════════════════ */
        
        .atmosphere {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        
        .atmosphere-gradient {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 20% 40%, rgba(124, 92, 255, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 70% 50% at 50% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 100% 100% at 50% 50%, rgba(124, 92, 255, 0.03) 0%, transparent 70%);
            animation: atmosphereShift 30s ease-in-out infinite;
        }
        
        @keyframes atmosphereShift {
            0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
            33% { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
            66% { opacity: 0.9; transform: scale(0.95) rotate(-1deg); }
        }
        
        .particles {
            position: absolute;
            inset: 0;
        }
        
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-primary);
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 15s infinite;
        }
        
        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 20s; }
        .particle:nth-child(2) { left: 20%; top: 80%; animation-delay: -3s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; top: 40%; animation-delay: -6s; animation-duration: 22s; }
        .particle:nth-child(4) { left: 40%; top: 60%; animation-delay: -9s; animation-duration: 16s; }
        .particle:nth-child(5) { left: 50%; top: 30%; animation-delay: -2s; animation-duration: 24s; }
        .particle:nth-child(6) { left: 60%; top: 70%; animation-delay: -5s; animation-duration: 19s; }
        .particle:nth-child(7) { left: 70%; top: 50%; animation-delay: -8s; animation-duration: 21s; }
        .particle:nth-child(8) { left: 80%; top: 20%; animation-delay: -1s; animation-duration: 17s; }
        .particle:nth-child(9) { left: 90%; top: 90%; animation-delay: -4s; animation-duration: 23s; }
        .particle:nth-child(10) { left: 15%; top: 55%; animation-delay: -7s; animation-duration: 25s; }
        .particle:nth-child(11) { left: 85%; top: 35%; animation-delay: -10s; animation-duration: 20s; }
        .particle:nth-child(12) { left: 45%; top: 85%; animation-delay: -12s; animation-duration: 18s; }
        
        @keyframes particleFloat {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { opacity: 0; transform: translateY(-100vh) scale(1); }
        }
        
        .aurora {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 180deg at 50% 50%, 
                transparent 0deg,
                rgba(124, 92, 255, 0.03) 60deg,
                transparent 120deg,
                rgba(255, 107, 157, 0.02) 180deg,
                transparent 240deg,
                rgba(0, 212, 170, 0.02) 300deg,
                transparent 360deg
            );
            animation: auroraRotate 60s linear infinite;
        }
        
        @keyframes auroraRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .noise {
            position: absolute;
            inset: 0;
            opacity: 0.015;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }
        
        /* Living orbs */
        .living-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            mix-blend-mode: screen;
            animation: orbBreathe 8s ease-in-out infinite;
        }
        
        .living-orb-1 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
            top: -400px;
            left: -300px;
            opacity: 0.15;
            animation-delay: 0s;
        }
        
        .living-orb-2 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
            top: 50%;
            right: -200px;
            opacity: 0.1;
            animation-delay: -3s;
        }
        
        .living-orb-3 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
            bottom: -200px;
            left: 20%;
            opacity: 0.08;
            animation-delay: -5s;
        }
        
        @keyframes orbBreathe {
            0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.15; }
            25% { transform: scale(1.2) translate(20px, -20px); opacity: 0.1; }
            50% { transform: scale(0.9) translate(-10px, 10px); opacity: 0.2; }
            75% { transform: scale(1.1) translate(10px, 20px); opacity: 0.12; }
        }
        
        .theme-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s var(--ease-smooth);
            margin-left: 8px;
        }
        
        .theme-toggle:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }
        
        .theme-icon {
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            transition: all 0.4s var(--ease-smooth);
        }
        
        .theme-icon.sun {
            display: none;
        }
        
        .theme-icon.moon {
            display: block;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           LIGHT MODE
        ═══════════════════════════════════════════════════════════════ */
        
        [data-theme="light"] {
            --bg-void: #fafafa;
            --bg-deep: #ffffff;
            --bg-surface: #f5f5f7;
            --bg-elevated: #ffffff;
            --bg-card: #ffffff;
            
            --text-bright: #1a1a2e;
            --text-primary: #2d2d44;
            --text-secondary: #5c5c7a;
            --text-muted: #8888a0;
            
            --accent-primary: #6366f1;
            --accent-secondary: #ec4899;
            --accent-tertiary: #10b981;
            --accent-warm: #f59e0b;
            
            --glow-primary: rgba(99, 102, 241, 0.25);
            --glow-secondary: rgba(236, 72, 153, 0.2);
            --glow-tertiary: rgba(16, 185, 129, 0.2);
        }
        
        [data-theme="light"] .theme-icon.sun {
            display: block;
        }
        
        [data-theme="light"] .theme-icon.moon {
            display: none;
        }
        
        [data-theme="light"] .atmosphere-gradient {
            background: 
                radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse 70% 50% at 50% 80%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
        }
        
        [data-theme="light"] .aurora {
            opacity: 0.3;
        }
        
        [data-theme="light"] .living-orb {
            opacity: 0.08;
        }
        
        [data-theme="light"] .particle {
            background: var(--accent-primary);
            opacity: 0.4;
        }
        
        [data-theme="light"] .noise {
            opacity: 0.01;
        }
        
        [data-theme="light"] .nav-island {
            background: rgba(255, 255, 255, 0.85);
            border-color: rgba(0, 0, 0, 0.08);
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(0, 0, 0, 0.02) inset;
        }
        
        [data-theme="light"] .nav-separator {
            background: linear-gradient(180deg, transparent, rgba(0,0,0,0.1), transparent);
        }
        
        [data-theme="light"] .theme-toggle {
            background: rgba(0,0,0,0.05);
            border-color: rgba(0,0,0,0.1);
        }
        
        [data-theme="light"] .theme-toggle:hover {
            background: rgba(0,0,0,0.08);
        }
        
        [data-theme="light"] .theme-icon {
            color: var(--text-secondary);
        }
        
        [data-theme="light"] .mobile-menu {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(0,0,0,0.1);
        }
        
        [data-theme="light"] .mobile-menu a:hover {
            background: rgba(99, 102, 241, 0.08);
        }
        
        [data-theme="light"] .floating-card,
        [data-theme="light"] .service-card,
        [data-theme="light"] .testimonial-card,
        [data-theme="light"] .cta-card,
        [data-theme="light"] .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(0, 0, 0, 0.08);
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.06),
                0 1px 2px rgba(0, 0, 0, 0.04);
        }
        
        [data-theme="light"] .floating-card:hover,
        [data-theme="light"] .service-card:hover {
            box-shadow: 
                0 20px 48px rgba(0, 0, 0, 0.1),
                0 0 40px rgba(99, 102, 241, 0.08);
        }
        
        [data-theme="light"] .contact-method {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(0, 0, 0, 0.06);
        }
        
        [data-theme="light"] .contact-method:hover {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.15);
        }
        
        [data-theme="light"] .form-group input,
        [data-theme="light"] .form-group textarea,
        [data-theme="light"] .form-group select {
            background: rgba(245, 245, 247, 0.8);
            border-color: rgba(0, 0, 0, 0.1);
            color: var(--text-bright);
        }
        
        [data-theme="light"] .form-group input:focus,
        [data-theme="light"] .form-group textarea:focus,
        [data-theme="light"] .form-group select:focus {
            background: white;
            border-color: var(--accent-primary);
        }
        
        [data-theme="light"] .process {
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
        }
        
        [data-theme="light"] .process-number {
            background: white;
            border-color: rgba(0, 0, 0, 0.1);
        }
        
        [data-theme="light"] .footer {
            background: var(--bg-surface);
        }
        
        [data-theme="light"] .footer-social a {
            background: rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.08);
        }
        
        [data-theme="light"] .manifesto::before,
        [data-theme="light"] .services::before,
        [data-theme="light"] .process::before,
        [data-theme="light"] .process::after,
        [data-theme="light"] .contact::before,
        [data-theme="light"] .footer::before {
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
        }
        
        [data-theme="light"] .project-card::before {
            background: linear-gradient(180deg, 
                transparent 0%, 
                transparent 40%, 
                rgba(255, 255, 255, 0.8) 70%,
                rgba(255, 255, 255, 0.95) 100%
            );
        }
        
        [data-theme="light"] .project-tag {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.08));
        }
        
        [data-theme="light"] .scroll-indicator {
            border-color: rgba(0, 0, 0, 0.2);
        }
        
        [data-theme="light"] .btn-ghost {
            border-color: rgba(0, 0, 0, 0.15);
            color: var(--text-primary);
        }
        
        [data-theme="light"] .btn-ghost:hover {
            background: rgba(0, 0, 0, 0.04);
            border-color: rgba(0, 0, 0, 0.2);
        }
        
        /* Smooth transition for theme change */
        body,
        .atmosphere-gradient,
        .nav-island,
        .floating-card,
        .service-card,
        .project-card,
        .testimonial-card,
        .cta-card,
        .contact-method,
        .contact-form-wrapper,
        .form-group input,
        .form-group textarea,
        .form-group select,
        .footer,
        .footer-social a,
        .process,
        .process-number {
            transition: background 0.5s var(--ease-smooth), 
                        border-color 0.5s var(--ease-smooth),
                        box-shadow 0.5s var(--ease-smooth),
                        color 0.5s var(--ease-smooth);
        }

        /* ═══════════════════════════════════════════════════════════════
           NAVIGATION - Floating Island
        ═══════════════════════════════════════════════════════════════ */
        
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            padding: 24px;
            pointer-events: none;
        }
        
        .nav-island {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(10, 10, 15, 0.7);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            padding: 12px 16px 12px 28px;
            border-radius: 100px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.02) inset,
                0 -1px 0 rgba(255, 255, 255, 0.05) inset;
            pointer-events: all;
            transition: all 0.5s var(--ease-smooth);
        }
        
        .nav-island:hover {
            border-color: rgba(124, 92, 255, 0.2);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(124, 92, 255, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.02) inset;
        }
        
        .nav-logo {
            font-weight: 700;
            font-size: 18px;
            color: var(--text-bright);
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .nav-logo-pulse {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            animation: logoPulse 3s ease-in-out infinite;
        }
        
        @keyframes logoPulse {
            0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 var(--glow-primary); }
            50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 20px 5px var(--glow-primary); }
        }
        
        .nav-separator {
            width: 1px;
            height: 28px;
            background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
            margin: 0 16px;
        }
        
        .nav-links {
            display: flex;
            gap: 4px;
            list-style: none;
        }
        
        .nav-links a {
            position: relative;
            padding: 10px 18px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: 100px;
            transition: all 0.3s var(--ease-smooth);
            overflow: hidden;
        }
        
        .nav-links a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.1), rgba(255, 107, 157, 0.05));
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--text-bright);
        }
        
        .nav-links a:hover::before {
            opacity: 1;
        }
        
        .nav-cta {
            background: linear-gradient(135deg, var(--accent-primary), #9d7cff) !important;
            color: white !important;
            font-weight: 600 !important;
            padding: 12px 28px !important;
            box-shadow: 0 4px 24px var(--glow-primary);
            border: none;
        }
        
        .nav-cta::before { display: none !important; }
        
        .nav-cta:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 32px var(--glow-primary);
        }
        
        /* Mobile */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 14px;
            cursor: pointer;
            background: transparent !important;
            border: none;
            outline: none;
            box-shadow: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .mobile-toggle:hover,
        .mobile-toggle:focus,
        .mobile-toggle:active {
            background: transparent !important;
            outline: none;
        }
        
        .mobile-toggle span {
            width: 20px;
            height: 2px;
            background: var(--text-bright);
            border-radius: 2px;
            transition: all 0.3s;
        }
        
        .mobile-menu {
            display: none;
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%) scale(0.9);
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(24px);
            padding: 24px;
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.08);
            min-width: 280px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s var(--ease-smooth);
        }
        
        .mobile-menu.active {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            pointer-events: all;
        }
        
        .mobile-menu a {
            display: block;
            padding: 16px 24px;
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.3s;
        }
        
        .mobile-menu a:hover {
            background: rgba(124, 92, 255, 0.1);
            color: var(--text-bright);
        }
        
        @media (max-width: 900px) {
            .nav-links, .nav-separator { display: none; }
            .mobile-toggle { display: flex; background: transparent !important; border: none !important; }
            .mobile-menu { display: block; }
        }
        
        /* Hero Floating Particles */
        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .hero-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            opacity: 0;
            animation: heroParticleFloat 12s infinite ease-in-out;
        }
        
        .hp-purple {
            background: #a855f7;
            box-shadow: 0 0 6px 2px rgba(168, 85, 247, 0.6);
        }
        
        .hp-pink {
            background: #f472b6;
            box-shadow: 0 0 6px 2px rgba(244, 114, 182, 0.6);
        }
        
        .hp-blue {
            background: #38bdf8;
            box-shadow: 0 0 6px 2px rgba(56, 189, 248, 0.6);
        }
        
        /* Position and timing for each particle */
        .hero-particle:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
        .hero-particle:nth-child(2) { left: 15%; top: 60%; animation-delay: -2s; animation-duration: 12s; }
        .hero-particle:nth-child(3) { left: 25%; top: 35%; animation-delay: -4s; animation-duration: 16s; }
        .hero-particle:nth-child(4) { left: 35%; top: 75%; animation-delay: -1s; animation-duration: 11s; }
        .hero-particle:nth-child(5) { left: 45%; top: 15%; animation-delay: -3s; animation-duration: 13s; }
        .hero-particle:nth-child(6) { left: 55%; top: 45%; animation-delay: -5s; animation-duration: 15s; }
        .hero-particle:nth-child(7) { left: 65%; top: 80%; animation-delay: -2.5s; animation-duration: 10s; }
        .hero-particle:nth-child(8) { left: 75%; top: 25%; animation-delay: -4.5s; animation-duration: 14s; }
        .hero-particle:nth-child(9) { left: 85%; top: 55%; animation-delay: -1.5s; animation-duration: 12s; }
        .hero-particle:nth-child(10) { left: 95%; top: 40%; animation-delay: -3.5s; animation-duration: 16s; }
        .hero-particle:nth-child(11) { left: 10%; top: 85%; animation-delay: -6s; animation-duration: 11s; }
        .hero-particle:nth-child(12) { left: 20%; top: 10%; animation-delay: -7s; animation-duration: 13s; }
        .hero-particle:nth-child(13) { left: 30%; top: 50%; animation-delay: -8s; animation-duration: 15s; }
        .hero-particle:nth-child(14) { left: 40%; top: 30%; animation-delay: -0.5s; animation-duration: 10s; }
        .hero-particle:nth-child(15) { left: 50%; top: 70%; animation-delay: -5.5s; animation-duration: 14s; }
        .hero-particle:nth-child(16) { left: 60%; top: 20%; animation-delay: -6.5s; animation-duration: 12s; }
        .hero-particle:nth-child(17) { left: 70%; top: 65%; animation-delay: -7.5s; animation-duration: 16s; }
        .hero-particle:nth-child(18) { left: 80%; top: 45%; animation-delay: -8.5s; animation-duration: 11s; }
        .hero-particle:nth-child(19) { left: 90%; top: 15%; animation-delay: -9s; animation-duration: 13s; }
        .hero-particle:nth-child(20) { left: 8%; top: 45%; animation-delay: -9.5s; animation-duration: 15s; }
        .hero-particle:nth-child(21) { left: 22%; top: 78%; animation-delay: -10s; animation-duration: 10s; }
        .hero-particle:nth-child(22) { left: 48%; top: 88%; animation-delay: -10.5s; animation-duration: 14s; }
        .hero-particle:nth-child(23) { left: 62%; top: 8%; animation-delay: -11s; animation-duration: 12s; }
        .hero-particle:nth-child(24) { left: 78%; top: 72%; animation-delay: -11.5s; animation-duration: 16s; }
        .hero-particle:nth-child(25) { left: 92%; top: 28%; animation-delay: -12s; animation-duration: 11s; }
        
        @keyframes heroParticleFloat {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.5);
            }
            10% {
                opacity: 0.8;
            }
            25% {
                transform: translate(30px, -40px) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-20px, -80px) scale(0.8);
            }
            75% {
                transform: translate(40px, -120px) scale(1.2);
            }
            90% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                transform: translate(10px, -160px) scale(0.5);
            }
        }
        
        /* Smaller variant particles */
        .hero-particle:nth-child(odd) {
            width: 2px;
            height: 2px;
        }
        
        .hero-particle:nth-child(3n) {
            width: 4px;
            height: 4px;
            animation-name: heroParticleFloatAlt;
        }
        
        @keyframes heroParticleFloatAlt {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.3);
            }
            15% {
                opacity: 0.7;
            }
            30% {
                transform: translate(-25px, -30px) scale(0.8);
            }
            50% {
                opacity: 0.5;
                transform: translate(35px, -70px) scale(1);
            }
            70% {
                transform: translate(-15px, -110px) scale(0.6);
            }
            85% {
                opacity: 0.6;
            }
            100% {
                opacity: 0;
                transform: translate(20px, -150px) scale(0.3);
            }
        }
        
        /* Light mode adjustments for particles */
        [data-theme="light"] .hero-particle {
            opacity: 0.6;
        }
        
        [data-theme="light"] .hp-purple {
            box-shadow: 0 0 8px 2px rgba(168, 85, 247, 0.4);
        }
        
        [data-theme="light"] .hp-pink {
            box-shadow: 0 0 8px 2px rgba(244, 114, 182, 0.4);
        }
        
        [data-theme="light"] .hp-blue {
            box-shadow: 0 0 8px 2px rgba(56, 189, 248, 0.4);
        }

        /* ═══════════════════════════════════════════════════════════════
           HERO - Cinematic Opening
        ═══════════════════════════════════════════════════════════════ */
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 160px 24px 120px;
            position: relative;
        }
        
        .hero-content {
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }
        
        .hero-overline {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 40px;
            animation: heroFadeUp 1.2s var(--ease-smooth);
        }
        
        .hero-overline-line {
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
        }
        
        .hero-overline-text {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--accent-primary);
        }
        
        .hero-title {
            font-size: clamp(48px, 10vw, 100px);
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--text-bright);
            margin-bottom: 16px;
            animation: heroFadeUp 1.2s var(--ease-smooth) 0.1s both;
        }
        
        .hero-title-accent {
            display: block;
            font-family: var(--font-serif);
            font-weight: 400;
            font-style: italic;
            font-size: clamp(52px, 11vw, 110px);
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-warm) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: heroFadeUp 1.2s var(--ease-smooth) 0.2s both, gradientShift 8s ease-in-out infinite;
            background-size: 200% 200%;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .hero-poem {
            max-width: 600px;
            margin: 48px auto;
            font-family: var(--font-serif);
            font-size: clamp(18px, 2.5vw, 24px);
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.8;
            animation: heroFadeUp 1.2s var(--ease-smooth) 0.3s both;
        }
        
        .hero-poem strong {
            color: var(--text-primary);
            font-weight: 500;
        }
        
        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 56px;
            animation: heroFadeUp 1.2s var(--ease-smooth) 0.4s both;
        }
        
        .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.4s var(--ease-smooth);
            overflow: hidden;
        }
        
        .btn-magic {
            background: linear-gradient(135deg, var(--accent-primary), #9d7cff);
            color: white;
            border: none;
            box-shadow: 
                0 8px 32px var(--glow-primary),
                0 0 0 1px rgba(255,255,255,0.1) inset;
        }
        
        .btn-magic::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .btn-magic::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), var(--accent-primary));
            background-size: 300% 300%;
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            animation: borderGlow 3s linear infinite;
            transition: opacity 0.3s;
        }
        
        @keyframes borderGlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .btn-magic:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 16px 48px var(--glow-primary),
                0 0 0 1px rgba(255,255,255,0.2) inset;
        }
        
        .btn-magic:hover::before {
            opacity: 1;
        }
        
        .btn-magic:hover::after {
            opacity: 0.5;
        }
        
        .btn-magic svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s var(--ease-bounce);
        }
        
        .btn-magic:hover svg {
            transform: translateX(6px);
        }
        
        .btn-ghost {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
        }
        
        .btn-ghost:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        
        /* Scroll indicator */
        .hero-scroll {
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            animation: heroFadeUp 1.2s var(--ease-smooth) 0.6s both;
        }
        
        .scroll-text {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--text-muted);
        }
        
        .scroll-indicator {
            width: 24px;
            height: 40px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            position: relative;
        }
        
        .scroll-dot {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--accent-primary);
            border-radius: 2px;
            animation: scrollBounce 2s ease-in-out infinite;
        }
        
        @keyframes scrollBounce {
            0%, 100% { top: 8px; opacity: 1; }
            50% { top: 20px; opacity: 0.5; }
        }
        
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(60px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           MANIFESTO SECTION - The Soul
        ═══════════════════════════════════════════════════════════════ */
        
        .manifesto {
            padding: 160px 0;
            position: relative;
            overflow: hidden;
        }
        
        .manifesto::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(124, 92, 255, 0.3), transparent);
        }
        
        .manifesto-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        .manifesto-content {
            max-width: 540px;
        }
        
        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--accent-primary);
            margin-bottom: 32px;
        }
        
        .section-eyebrow::before {
            content: '';
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-primary), transparent);
        }
        
        .manifesto h2 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--text-bright);
            margin-bottom: 32px;
        }
        
        .manifesto h2 em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .manifesto-text {
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 24px;
        }
        
        .manifesto-text.lead {
            font-size: 20px;
            color: var(--text-primary);
        }
        
        .manifesto-text.lead::first-letter {
            font-family: var(--font-serif);
            font-size: 72px;
            float: left;
            line-height: 0.8;
            margin-right: 16px;
            margin-top: 8px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .manifesto-signature {
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .signature-photo {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 28px;
            font-style: italic;
            color: white;
            box-shadow: 0 8px 32px var(--glow-primary);
        }
        
        .signature-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-bright);
            margin-bottom: 4px;
        }
        
        .signature-info p {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        /* Manifesto Visual */
        .manifesto-visual {
            position: relative;
            height: 600px;
        }
        
        .floating-card {
            position: absolute;
            background: rgba(30, 30, 40, 0.6);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 36px;
            transition: all 0.6s var(--ease-smooth);
            cursor: default;
        }
        
        .floating-card:hover {
            transform: translateY(-12px) rotate(0deg) !important;
            border-color: rgba(124, 92, 255, 0.3);
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.4),
                0 0 60px var(--glow-primary);
        }
        
        .floating-card-1 {
            top: 0;
            left: 0;
            width: 300px;
            transform: rotate(-3deg);
            z-index: 3;
            animation: floatCard1 6s ease-in-out infinite;
        }
        
        .floating-card-2 {
            top: 180px;
            right: 0;
            width: 280px;
            transform: rotate(2deg);
            z-index: 2;
            animation: floatCard2 7s ease-in-out infinite;
        }
        
        .floating-card-3 {
            bottom: 0;
            left: 40px;
            width: 320px;
            transform: rotate(-1deg);
            z-index: 1;
            animation: floatCard3 8s ease-in-out infinite;
        }
        
        @keyframes floatCard1 {
            0%, 100% { transform: rotate(-3deg) translateY(0); }
            50% { transform: rotate(-2deg) translateY(-15px); }
        }
        
        @keyframes floatCard2 {
            0%, 100% { transform: rotate(2deg) translateY(0); }
            50% { transform: rotate(3deg) translateY(-20px); }
        }
        
        @keyframes floatCard3 {
            0%, 100% { transform: rotate(-1deg) translateY(0); }
            50% { transform: rotate(0deg) translateY(-10px); }
        }
        
        .floating-card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(255, 107, 157, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        
        .floating-card-icon svg {
            width: 28px;
            height: 28px;
            color: var(--accent-primary);
        }
        
        .floating-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-bright);
            margin-bottom: 12px;
        }
        
        .floating-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        @media (max-width: 1000px) {
            .manifesto-inner {
                grid-template-columns: 1fr;
                gap: 80px;
            }
            
            .manifesto-visual {
                height: 500px;
            }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           SERVICES - What We Create
        ═══════════════════════════════════════════════════════════════ */
        
        .services {
            padding: 160px 0;
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }
        
        .section-title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--text-bright);
            margin-bottom: 24px;
        }
        
        .section-title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .service-card {
            position: relative;
            background: linear-gradient(180deg, rgba(30, 30, 40, 0.4), rgba(20, 20, 28, 0.6));
            border-radius: 28px;
            border: 1px solid rgba(255,255,255,0.06);
            padding: 44px 36px;
            overflow: hidden;
            transition: all 0.5s var(--ease-smooth);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s var(--ease-smooth);
        }
        
        .service-card::after {
            content: attr(data-number);
            position: absolute;
            top: 20px;
            right: 28px;
            font-size: 80px;
            font-weight: 800;
            color: rgba(255,255,255,0.02);
            line-height: 1;
            transition: all 0.5s;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            border-color: rgba(124, 92, 255, 0.2);
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.3),
                0 0 80px rgba(124, 92, 255, 0.08);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover::after {
            color: rgba(124, 92, 255, 0.08);
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(255, 107, 157, 0.08));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            transition: all 0.4s var(--ease-smooth);
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            box-shadow: 0 12px 32px var(--glow-primary);
            transform: scale(1.1);
        }
        
        .service-icon svg {
            width: 32px;
            height: 32px;
            color: var(--accent-primary);
            transition: color 0.3s;
        }
        
        .service-card:hover .service-icon svg {
            color: white;
        }
        
        .service-card h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-bright);
            margin-bottom: 16px;
            transition: color 0.3s;
        }
        
        .service-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        @media (max-width: 900px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 600px) {
            .services-grid { grid-template-columns: 1fr; }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           PROJECTS - Stories We've Told
        ═══════════════════════════════════════════════════════════════ */
        
        .projects {
            padding: 160px 0;
            position: relative;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .project-card {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: all 0.6s var(--ease-smooth);
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, 
                transparent 0%, 
                transparent 40%, 
                rgba(5, 5, 7, 0.8) 70%,
                rgba(5, 5, 7, 0.95) 100%
            );
            z-index: 1;
        }
        
        .project-card:hover {
            transform: scale(1.03);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(124, 92, 255, 0.15);
        }
        
        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-smooth);
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 48px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0.8;
            transition: all 0.5s var(--ease-smooth);
        }
        
        .project-card:hover .project-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        .project-tag {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(255, 107, 157, 0.1));
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-primary);
            margin-bottom: 16px;
        }
        
        .project-title {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 12px;
        }
        
        .project-excerpt {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .project-link {
            position: absolute;
            top: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            opacity: 0;
            transform: translate(-20px, 20px) scale(0.8);
            transition: all 0.5s var(--ease-smooth);
        }
        
        .project-card:hover .project-link {
            opacity: 1;
            transform: translate(0, 0) scale(1);
        }
        
        .project-link svg {
            width: 24px;
            height: 24px;
            color: white;
        }
        
        @media (max-width: 768px) {
            .projects-grid { grid-template-columns: 1fr; }
            
            .project-content {
                transform: translateY(0);
                opacity: 1;
            }
            
            .project-link {
                opacity: 1;
                transform: translate(0, 0) scale(1);
            }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           PROCESS - The Journey
        ═══════════════════════════════════════════════════════════════ */
        
        .process {
            padding: 160px 0;
            background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-void) 100%);
            position: relative;
        }
        
        .process::before,
        .process::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }
        
        .process::before { top: 0; }
        .process::after { bottom: 0; }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
        }
        
        .process-grid::before {
            content: '';
            position: absolute;
            top: 56px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, 
                var(--accent-primary), 
                var(--accent-secondary), 
                var(--accent-tertiary),
                var(--accent-warm)
            );
            opacity: 0.3;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 36px;
            background: var(--bg-card);
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-serif);
            font-size: 36px;
            font-style: italic;
            color: var(--accent-primary);
            position: relative;
            z-index: 1;
            transition: all 0.5s var(--ease-smooth);
        }
        
        .process-step:hover .process-number {
            transform: scale(1.15);
            border-color: var(--accent-primary);
            box-shadow: 
                0 0 40px var(--glow-primary),
                0 0 80px rgba(124, 92, 255, 0.2);
        }
        
        .process-step h4 {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-bright);
            margin-bottom: 16px;
        }
        
        .process-step p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 250px;
            margin: 0 auto;
        }
        
        @media (max-width: 900px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px;
            }
            
            .process-grid::before { display: none; }
        }
        
        @media (max-width: 600px) {
            .process-grid { grid-template-columns: 1fr; }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           TESTIMONIAL - Voices
        ═══════════════════════════════════════════════════════════════ */
        
        .testimonial {
            padding: 160px 0;
            position: relative;
        }
        
        .testimonial-card {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(180deg, rgba(30, 30, 40, 0.5), rgba(20, 20, 28, 0.7));
            border-radius: 40px;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-serif);
            font-size: 200px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.1;
            line-height: 1;
        }
        
        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 40px;
        }
        
        .testimonial-stars svg {
            width: 28px;
            height: 28px;
            fill: var(--accent-warm);
            color: var(--accent-warm);
            filter: drop-shadow(0 4px 12px rgba(255, 179, 71, 0.3));
        }
        
        .testimonial-quote {
            font-family: var(--font-serif);
            font-size: clamp(24px, 3.5vw, 32px);
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        
        .author-avatar {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 24px;
            color: white;
        }
        
        .author-info {
            text-align: left;
        }
        
        .author-info h5 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-bright);
        }
        
        .author-info span {
            font-size: 15px;
            color: var(--text-muted);
        }
        
        /* ═══════════════════════════════════════════════════════════════
           CTA - The Invitation
        ═══════════════════════════════════════════════════════════════ */
        
        .cta {
            padding: 120px 0 160px;
            position: relative;
        }
        
        .cta-card {
            background: linear-gradient(180deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 28, 0.8));
            border-radius: 48px;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 100px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 60% 40% at 30% 20%, rgba(124, 92, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 50% 30% at 70% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: clamp(36px, 5vw, 60px);
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 24px;
        }
        
        .cta-title em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .cta-text {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 550px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }
        
        /* ═══════════════════════════════════════════════════════════════
           CONTACT - Let's Connect
        ═══════════════════════════════════════════════════════════════ */
        
        .contact {
            padding: 160px 0;
            background: var(--bg-surface);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 100px;
            align-items: start;
        }
        
        .contact-info h2 {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 24px;
            line-height: 1.1;
        }
        
        .contact-info h2 em {
            font-family: var(--font-serif);
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact-info > p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 56px;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 28px;
            background: rgba(30, 30, 40, 0.4);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s var(--ease-smooth);
        }
        
        .contact-method:hover {
            transform: translateX(12px);
            border-color: rgba(124, 92, 255, 0.2);
            background: rgba(124, 92, 255, 0.05);
        }
        
        .method-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(124, 92, 255, 0.15), rgba(255, 107, 157, 0.08));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .method-icon svg {
            width: 26px;
            height: 26px;
            color: var(--accent-primary);
        }
        
        .method-content span {
            display: block;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }
        
        .method-content a,
        .method-content p {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-bright);
        }
        
        .method-content a:hover {
            color: var(--accent-primary);
        }
        
        /* Contact Form */
        .contact-form-wrapper {
            background: rgba(30, 30, 40, 0.5);
            border-radius: 32px;
            border: 1px solid rgba(255,255,255,0.08);
            padding: 56px;
        }
        
        .contact-form-wrapper h3 {
            font-size: 28px;
            font-weight: 600;
            color: var(--text-bright);
            margin-bottom: 40px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        
        .form-group {
            margin-bottom: 28px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 18px 24px;
            font-family: inherit;
            font-size: 16px;
            color: var(--text-bright);
            background: rgba(20, 20, 28, 0.6);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            transition: all 0.3s;
            outline: none;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.15);
        }
        
        .form-group textarea {
            min-height: 160px;
            resize: vertical;
        }
        
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .form-checkbox input {
            width: 22px;
            height: 22px;
            accent-color: var(--accent-primary);
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        .form-checkbox label {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        .form-checkbox a {
            color: var(--accent-primary);
        }
        
        .submit-btn {
            width: 100%;
            padding: 22px 40px;
            background: linear-gradient(135deg, var(--accent-primary), #9d7cff);
            color: white;
            font-size: 17px;
            font-weight: 600;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            box-shadow: 0 8px 32px var(--glow-primary);
            transition: all 0.4s var(--ease-smooth);
        }
        
        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px var(--glow-primary);
        }
        
        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .form-row { grid-template-columns: 1fr; }
            
            .contact-form-wrapper { padding: 40px 28px; }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════════════════════════════ */
        
        .footer {
            background: var(--bg-void);
            padding: 80px 0 40px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
        }
        
        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand h4 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-brand h4 span {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 50%;
        }
        
        .footer-brand p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 300px;
            margin-bottom: 24px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 48px;
            height: 48px;
            background: rgba(30, 30, 40, 0.5);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            transform: translateY(-4px);
        }
        
        .footer-social svg {
            width: 22px;
            height: 22px;
            color: var(--text-secondary);
            transition: color 0.3s;
        }
        
        .footer-social a:hover svg {
            color: white;
        }
        
        .footer-column h5 {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            margin-bottom: 28px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 16px;
        }
        
        .footer-column a {
            font-size: 15px;
            color: var(--text-secondary);
            transition: all 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--text-bright);
            padding-left: 8px;
        }
        
        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        .footer-legal {
            display: flex;
            gap: 32px;
        }
        
        .footer-legal a {
            font-size: 14px;
            color: var(--text-muted);
            transition: color 0.3s;
        }
        
        .footer-legal a:hover {
            color: var(--text-bright);
        }
        
        @media (max-width: 900px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 48px;
            }
            
            .footer-brand { grid-column: span 2; }
        }
        
        @media (max-width: 600px) {
            .footer-main { grid-template-columns: 1fr; }
            .footer-brand { grid-column: span 1; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
        
        /* ═══════════════════════════════════════════════════════════════
           ANIMATIONS
        ═══════════════════════════════════════════════════════════════ */
        
        .reveal {
            opacity: 0;
            transform: translateY(80px);
            transition: all 1.2s var(--ease-smooth);
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        
        
        
    
/* ═══════════════════════════════════════════════════════════════
   TEAM TRIO - Drei in einer Reihe
═══════════════════════════════════════════════════════════════ */

.team-trio {
    padding: 160px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-void) 100%);
}

.team-trio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 92, 255, 0.3), transparent);
}

.trio-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0;
    position: relative;
}

/* Connector */
.trio-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.connector-line {
    width: 100vw;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 92, 255, 0.1), 
        rgba(255, 107, 157, 0.1), 
        rgba(0, 212, 170, 0.1), 
        transparent
    );
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.connector-node {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(30, 30, 40, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(124, 92, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-pulse {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: connectorPulse 4s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.connector-icon {
    font-family: var(--font-serif);
    font-size: 32px;
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Trio Cards */
.trio-card {
    position: relative;
    z-index: 2;
}

.trio-card-inner {
    background: linear-gradient(180deg, rgba(30, 30, 40, 0.7), rgba(20, 20, 28, 0.9));
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.6s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.trio-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    opacity: 0;
    transition: opacity 0.3s;
}

.trio-card-1 .trio-card-inner::before {
    background: linear-gradient(90deg, var(--accent-primary), rgba(124, 92, 255, 0.5));
}
.trio-card-2 .trio-card-inner::before {
    background: linear-gradient(90deg, var(--accent-secondary), rgba(255, 107, 157, 0.5));
}
.trio-card-3 .trio-card-inner::before {
    background: linear-gradient(90deg, var(--accent-tertiary), rgba(0, 212, 170, 0.5));
}

.trio-card:hover .trio-card-inner {
    transform: translateY(-16px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(124, 92, 255, 0.1);
}

.trio-card:hover .trio-card-inner::before {
    opacity: 1;
}

.trio-card-1:hover .trio-card-inner {
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(124, 92, 255, 0.15);
}
.trio-card-2:hover .trio-card-inner {
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(255, 107, 157, 0.15);
}
.trio-card-3:hover .trio-card-inner {
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 212, 170, 0.15);
}

/* Visual */
.trio-visual {
    position: relative;
    margin-bottom: 40px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trio-orb {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.4;
    animation: orbGlow 6s ease-in-out infinite;
}

.trio-card-1 .orb-glow {
    background: var(--accent-primary);
}
.trio-card-2 .orb-glow {
    background: var(--accent-secondary);
}
.trio-card-3 .orb-glow {
    background: var(--accent-tertiary);
}

@keyframes orbGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.15); }
}

.orb-initial {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 36px;
    font-style: italic;
    color: white;
    z-index: 2;
}

/* Team Avatar mit echten Bildern */
.trio-avatar {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-smooth);
    background: var(--bg-card);
}

.trio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 50%;
    transition: transform 0.4s var(--ease-smooth);
    display: block;
}

.trio-card:hover .trio-avatar {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.trio-card:hover .trio-avatar img {
    transform: scale(1.08);
}

/* Farbige Rahmen je nach Karte */
.trio-card-1 .trio-avatar {
    border-color: rgba(124, 92, 255, 0.4);
}
.trio-card-1:hover .trio-avatar {
    border-color: var(--accent-primary);
    box-shadow: 
        0 4px 25px rgba(124, 92, 255, 0.5),
        0 0 40px rgba(124, 92, 255, 0.2);
}

.trio-card-2 .trio-avatar {
    border-color: rgba(255, 107, 157, 0.4);
}
.trio-card-2:hover .trio-avatar {
    border-color: var(--accent-secondary);
    box-shadow: 
        0 4px 25px rgba(255, 107, 157, 0.5),
        0 0 40px rgba(255, 107, 157, 0.2);
}

.trio-card-3 .trio-avatar {
    border-color: rgba(0, 212, 170, 0.4);
}
.trio-card-3:hover .trio-avatar {
    border-color: var(--accent-tertiary);
    box-shadow: 
        0 4px 25px rgba(0, 212, 170, 0.5),
        0 0 40px rgba(0, 212, 170, 0.2);
}

/* Light Mode Avatare */
[data-theme="light"] .trio-avatar {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .trio-card-1 .trio-avatar {
    border-color: rgba(99, 102, 241, 0.3);
}
[data-theme="light"] .trio-card-1:hover .trio-avatar {
    border-color: var(--accent-primary);
    box-shadow: 
        0 4px 25px rgba(99, 102, 241, 0.35),
        0 0 30px rgba(99, 102, 241, 0.15);
}

[data-theme="light"] .trio-card-2 .trio-avatar {
    border-color: rgba(236, 72, 153, 0.3);
}
[data-theme="light"] .trio-card-2:hover .trio-avatar {
    border-color: var(--accent-secondary);
    box-shadow: 
        0 4px 25px rgba(236, 72, 153, 0.35),
        0 0 30px rgba(236, 72, 153, 0.15);
}

[data-theme="light"] .trio-card-3 .trio-avatar {
    border-color: rgba(16, 185, 129, 0.3);
}
[data-theme="light"] .trio-card-3:hover .trio-avatar {
    border-color: var(--accent-tertiary);
    box-shadow: 
        0 4px 25px rgba(16, 185, 129, 0.35),
        0 0 30px rgba(16, 185, 129, 0.15);
}

.trio-card-1 .orb-initial {
    background: linear-gradient(135deg, var(--accent-primary), #9d7cff);
}
.trio-card-2 .orb-initial {
    background: linear-gradient(135deg, var(--accent-secondary), #ff8db3);
}
.trio-card-3 .orb-initial {
    background: linear-gradient(135deg, var(--accent-tertiary), #33e6bf);
}

.orb-ring {
    position: absolute;
    inset: -10px;
    z-index: 1;
    animation: orbRotate 20s linear infinite;
}

@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trio-filigree {
    position: absolute;
    bottom: 0;
    opacity: 0.5;
}

/* Content */
.trio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.trio-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.trio-role {
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 500;
    margin-bottom: 32px;
    padding: 6px 16px;
    background: rgba(124, 92, 255, 0.1);
    border-radius: 100px;
}

.trio-card-2 .trio-role {
    color: var(--accent-secondary);
    background: rgba(255, 107, 157, 0.1);
}

.trio-card-3 .trio-role {
    color: var(--accent-tertiary);
    background: rgba(0, 212, 170, 0.1);
}

.trio-essence {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.essence-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.essence-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.essence-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.trio-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    flex: 1;
}

.trio-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.trio-signature span {
    font-size: 12px;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
}

/* Radial Skills */
.trio-radial {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.radial-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-90px) rotate(calc(-1 * var(--angle)));
    text-align: center;
}

.radial-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Synergy */
.trio-synergy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.synergy-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
}

.synergy-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, 
        rgba(124, 92, 255, 0.2),
        rgba(255, 107, 157, 0.15),
        rgba(0, 212, 170, 0.1),
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
    animation: synergyPulse 6s ease-in-out infinite;
}

@keyframes synergyPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.synergy-content {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 40, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(124, 92, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.synergy-icon {
    width: 32px;
    height: 32px;
}

.synergy-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-primary);
}

.synergy-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-bright);
}

.synergy-text {
    max-width: 600px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
    .trio-container {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trio-connector {
        display: none;
    }
    
    .trio-card-inner {
        padding: 40px 28px;
    }
}

@media (max-width: 600px) {
    .trio-essence {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .trio-radial {
        display: none;
    }
}

/* Light mode adjustments */
[data-theme="light"] .trio-card-inner {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .trio-card:hover .trio-card-inner {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 20px 48px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(99, 102, 241, 0.08);
}

[data-theme="light"] .trio-card-1:hover .trio-card-inner {
    box-shadow: 
        0 20px 48px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(99, 102, 241, 0.1);
}
[data-theme="light"] .trio-card-2:hover .trio-card-inner {
    box-shadow: 
        0 20px 48px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(236, 72, 153, 0.1);
}
[data-theme="light"] .trio-card-3:hover .trio-card-inner {
    box-shadow: 
        0 20px 48px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(16, 185, 129, 0.1);
}

[data-theme="light"] .trio-synergy {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .synergy-content {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="light"] .connector-node {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
}


   .whatsapp-float {
        position: fixed;
        bottom: 32px;
        right: 32px;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 
            0 8px 24px rgba(37, 211, 102, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.4s var(--ease-smooth);
        position: relative;
        z-index: 2;
    }

    .whatsapp-icon svg {
        width: 32px;
        height: 32px;
        color: white;
    }

    .whatsapp-float:hover .whatsapp-icon {
        transform: scale(1.1);
        box-shadow: 
            0 12px 32px rgba(37, 211, 102, 0.5),
            0 6px 16px rgba(0, 0, 0, 0.2);
    }

    /* Pulse Animation */
    .whatsapp-pulse {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(37, 211, 102, 0.4);
        border-radius: 50%;
        animation: whatsappPulse 2s ease-out infinite;
        z-index: 1;
    }

    @keyframes whatsappPulse {
        0% {
            transform: scale(1);
            opacity: 0.6;
        }
        100% {
            transform: scale(1.8);
            opacity: 0;
        }
    }

    /* Tooltip */
    .whatsapp-tooltip {
        position: absolute;
        right: 72px;
        background: var(--bg-card);
        color: var(--text-bright);
        padding: 10px 16px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s var(--ease-smooth);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        border-left: 6px solid var(--bg-card);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Mobile Adjustments */
    @media (max-width: 600px) {
        .whatsapp-float {
            bottom: 24px;
            right: 24px;
        }

        .whatsapp-icon {
            width: 54px;
            height: 54px;
        }

        .whatsapp-pulse {
            width: 54px;
            height: 54px;
        }

        .whatsapp-icon svg {
            width: 28px;
            height: 28px;
        }

        .whatsapp-tooltip {
            display: none;
        }
    }

    /* Light Mode */
    [data-theme="light"] .whatsapp-tooltip {
        background: white;
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] .whatsapp-tooltip::after {
        border-left-color: white;
    }
/* Mobile Anpassungen für Hero und Manifesto */
@media (max-width: 768px) {
    .hero-scroll {
        display: none;
    }
    
    .manifesto-visual {
        display: none;
    }
}

/* Dark Mode spezifisch - Mobile Toggle transparent */
body:not([data-theme="light"]) .mobile-toggle,
[data-theme="dark"] .mobile-toggle {
    background: transparent !important;
    border: none !important;
}

/* ==========================================================================
   ERP SECTION STYLES
   ========================================================================== */

.erp-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, 
        var(--surface-secondary) 0%, 
        var(--surface-primary) 100%
    );
    overflow: hidden;
}

.erp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-primary) 50%, 
        transparent 100%
    );
    opacity: 0.3;
}

.erp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Left Content */
.erp-content {
    max-width: 580px;
}

.erp-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 30px 0 40px;
}

.erp-features {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.erp-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--surface-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.erp-feature:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.15);
}

.erp-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--accent-primary), 
        var(--accent-secondary)
    );
    border-radius: 12px;
    color: white;
}

.erp-feature-icon svg {
    width: 24px;
    height: 24px;
}

.erp-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.erp-feature-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.erp-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.erp-cta-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Right Visual */
.erp-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-screen {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.erp-screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--surface-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.screen-dots {
    display: flex;
    gap: 8px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-tertiary);
    opacity: 0.3;
}

.screen-dots span:nth-child(1) {
    background: #ff5f56;
    opacity: 0.8;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
    opacity: 0.8;
}

.screen-dots span:nth-child(3) {
    background: #27c93f;
    opacity: 0.8;
}

.screen-title {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.erp-screen-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Dashboard Modules */
.erp-module {
    background: var(--surface-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 16px;
    animation: moduleFloat 0.6s ease-out both;
    animation-delay: var(--delay, 0s);
}

@keyframes moduleFloat {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.module-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.module-trend {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.module-trend.up {
    color: #27c93f;
    background: rgba(39, 201, 63, 0.1);
}

.module-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.module-status.ok {
    color: #27c93f;
    background: rgba(39, 201, 63, 0.1);
}

.module-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Chart */
.module-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, 
        var(--accent-primary), 
        var(--accent-secondary)
    );
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1s ease-out both;
    animation-delay: calc(var(--delay, 0s) + 0.3s);
}

@keyframes chartGrow {
    from {
        height: 0;
    }
}

/* Progress */
.module-progress {
    height: 8px;
    background: var(--surface-primary);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--accent-primary), 
        var(--accent-secondary)
    );
    border-radius: 4px;
    animation: progressFill 1.5s ease-out both;
    animation-delay: calc(var(--delay, 0s) + 0.2s);
}

@keyframes progressFill {
    from {
        width: 0;
    }
}

/* List */
.module-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.list-item {
    height: 20px;
    background: var(--surface-primary);
    border-radius: 4px;
    animation: listSlide 0.4s ease-out both;
    animation-delay: calc(var(--delay, 0s) + 0.1s * var(--item, 1));
}

.list-item:nth-child(1) { --item: 1; width: 100%; }
.list-item:nth-child(2) { --item: 2; width: 85%; }
.list-item:nth-child(3) { --item: 3; width: 70%; }

@keyframes listSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Stats */
.erp-stat {
    position: absolute;
    background: var(--surface-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: statFloat 3s ease-in-out infinite;
}

.erp-stat-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.erp-stat-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 1.5s;
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--accent-primary), 
        var(--accent-secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Background Glow */
.erp-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(124, 92, 255, 0.15) 0%, 
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Integrations */
.erp-integrations {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--border-subtle);
}

.integrations-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.integrations-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integration-item {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.integration-item:hover {
    opacity: 1;
    color: var(--accent-primary);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .erp-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .erp-content {
        max-width: 100%;
    }
    
    .erp-visual {
        height: 500px;
    }
    
    .erp-stat-1,
    .erp-stat-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .erp-section {
        padding: 80px 0;
    }
    
    .erp-wrapper {
        gap: 40px;
    }
    
    .erp-lead {
        font-size: 1rem;
    }
    
    .erp-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .erp-feature-icon {
        margin: 0 auto;
    }
    
    .erp-visual {
        height: 450px;
    }
    
    .erp-screen {
        max-width: 100%;
    }
    
    .integrations-list {
        gap: 24px;
    }
    
    .integration-item {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .erp-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .erp-visual {
        height: 400px;
    }
    
    .erp-screen-content {
        padding: 16px;
    }
}