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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0f;
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #8b5cf6, #3b82f6);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 600;
        }

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

        .nav-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: white;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-primary {
            background: white;
            color: black;
        }

        .btn-primary:hover {
            background: #f3f4f6;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-lg {
            padding: 12px 32px;
            font-size: 16px;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
        }

        .mobile-menu-content {
            padding: 16px 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-menu a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
        }

        .mobile-menu a:hover {
            color: white;
        }

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

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 1024px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 80px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .gradient-text {
            background: linear-gradient(to right, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: #9ca3af;
            margin-bottom: 32px;
            max-width: 512px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            margin-bottom: 64px;
        }

        .hero-illustration {
            position: relative;
            margin-top: 64px;
        }

        .hero-illustration::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
            filter: blur(60px);
        }

        .hero-illustration img {
            position: relative;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
            display: block;
        }

        /* Logo Section */
        .logos {
            padding: 64px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logos-container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .logos p {
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 32px;
        }

        .logos-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            opacity: 0.6;
        }

        .logos-grid img {
            height: 32px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .logos-grid img:hover {
            opacity: 1;
        }

        /* Features Section */
        .features {
            padding: 80px 24px;
        }

        .features-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            margin-bottom: 128px;
        }

        .feature.reverse .feature-content {
            order: 2;
        }

        .feature.reverse .feature-image {
            order: 1;
        }

        .feature h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .feature p {
            font-size: 20px;
            color: #9ca3af;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .feature-image {
            position: relative;
        }

        .feature-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
            filter: blur(60px);
        }

        .feature-image-wrapper {
            position: relative;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* Stats Section */
        .stats {
            padding: 80px 24px;
            background: linear-gradient(to right, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
        }

        .stats-container {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
        }

        .stats h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 64px;
        }

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

        .stat-number {
            font-size: 80px;
            font-weight: 700;
            background: linear-gradient(to right, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #9ca3af;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 24px;
        }

        .testimonials-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .testimonials h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .testimonials-header p {
            font-size: 20px;
            color: #9ca3af;
            max-width: 512px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 32px;
            backdrop-filter: blur(4px);
        }

        .stars {
            display: flex;
            margin-bottom: 16px;
        }

        .star {
            width: 16px;
            height: 16px;
            fill: #fbbf24;
            color: #fbbf24;
        }

        .testimonial-quote {
            color: #d1d5db;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 16px;
        }

        .author-name {
            font-weight: 600;
        }

        .author-role {
            color: #9ca3af;
            font-size: 14px;
        }

        /* CTA Section */
        .cta {
            padding: 80px 24px;
            background: linear-gradient(to right, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
        }

        .cta-container {
            max-width: 1024px;
            margin: 0 auto;
            text-align: center;
        }

        .cta h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta p {
            font-size: 20px;
            color: #9ca3af;
            margin-bottom: 32px;
            max-width: 512px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
        }

        /* Footer */
        .footer {
            padding: 64px 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            color: #9ca3af;
            margin-bottom: 24px;
            max-width: 384px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links .btn {
            padding: 8px;
        }

        .footer-column h4 {
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: #9ca3af;
            font-size: 14px;
        }

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

        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        /* Icons */
        .icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .icon-lg {
            width: 20px;
            height: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero-buttons {
                flex-direction: column;
            }

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

            .feature.reverse .feature-content,
            .feature.reverse .feature-image {
                order: unset;
            }

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

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .logos-grid {
                flex-wrap: wrap;
                gap: 24px;
            }
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }

            .cta-buttons {
                flex-direction: row;
            }
        }

        /* Mobile Menu Toggle */
        #mobile-menu-toggle {
            display: none;
        }

        #mobile-menu-toggle:checked + .nav .mobile-menu {
            display: block;
        }

        .menu-icon {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
