        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0f172a;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
        }

        .bg-animated::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, var(--theme-primary-15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--theme-secondary-15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, var(--theme-accent-10) 0%, transparent 50%);
            animation: meshMove 20s ease infinite;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-5%, -5%) rotate(120deg); }
            66% { transform: translate(5%, 5%) rotate(240deg); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            width: 100%;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo removed from nav - now in fixed position */
        
        .logo img {
        
        @media (max-width: 768px) {
            .logo-fixed {
                top: 15px;
            }
            
            .logo-fixed img {
                height: 28px;
            }
            
            nav {
                top: 60px;
            }
        /* Logo removed from nav - now in fixed position */
        
            .logo img {
                height: 38px;
            }
        }
            height: 50px;
            width: auto;
        }
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: var(--theme-secondary);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--theme-secondary) 0%, #2563eb 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
        }

        /* Container */
        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 240px 0 80px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--theme-primary-10);
            border: 1px solid var(--theme-primary-20);
            border-radius: 50px;
            margin-bottom: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: var(--theme-primary-50);
            box-shadow: 0 20px 40px var(--theme-primary-20);
        }

        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* Problems Section */
        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.15rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .problem-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .problem-card:hover {
            transform: translateY(-8px);
            border-color: rgba(239, 68, 68, 0.5);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
        }

        .problem-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .problem-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ef4444;
        }

        .problem-loss {
            font-size: 2rem;
            font-weight: 800;
            color: #ef4444;
            margin-bottom: 1rem;
        }

        .problem-card p {
            color: #94a3b8;
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .solution-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            border-color: rgba(16, 185, 129, 0.5);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }

        .solution-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .solution-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #10b981;
        }

        .solution-card p {
            color: #94a3b8;
            line-height: 1.6;
        }

        /* Case Study Section */
        .case-study {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 4rem;
            margin: 4rem 0;
        }

        .case-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .case-header h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .case-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 50px;
            color: #10b981;
            font-weight: 600;
            margin-top: 1rem;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .case-metric {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
        }

        .case-metric-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .case-metric-label {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 0;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--theme-primary-10) 0%, var(--theme-secondary-10) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 4rem;
            backdrop-filter: blur(16px);
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            font-size: 1.15rem;
            color: #94a3b8;
            margin-bottom: 2rem;
        }

        /* Footer */
        footer {
            background: rgba(15, 23, 42, 0.8);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 0 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .footer-section a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--theme-secondary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand img {
            height: 40px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            color: #ffffff;
            font-weight: 600;
        }

        .footer-column a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.85rem;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: var(--theme-primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #64748b;
            font-size: 0.9rem;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2.5rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .logo-fixed {
                top: 15px;
            }
            
            .logo-fixed img {
                height: 28px;
            }
            
            nav {
                top: 60px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
            }

            .problems-grid,
            .solution-grid {
                grid-template-columns: 1fr;
            }
        }
