        * {
            font-family: 'Inter', sans-serif;
        }

        :root {
            --bg-dark: #0f172a;
            --bg-card: #1e293b;
            --teal: #14b8a6;
            --teal-light: #2dd4bf;
            --cyan: #06b6d4;
            --gold: #f59e0b;
            --text-primary: #f1f5f9;
            --text-secondary: #cbd5e1;
            --text-muted: #94a3b8;
            --border: rgba(148, 163, 184, 0.2);
        }

        body {
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Background Effects */
        .bg-glow {
            position: fixed;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            background: radial-gradient(circle at 15% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 25%), radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 25%);
        }

        /* Access Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--teal), var(--cyan));
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
            transition: all 0.3s;
        }

            .btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 0 30px rgba(20, 184, 166, 0.5);
                color: white;
            }

        .btn-outline-light {
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 500;
        }

        .btn-outline-secondary {
            border-color: var(--border);
            color: var(--text-secondary);
            border-radius: 50px;
            padding: 12px 24px;
            font-weight: 500;
        }

            .btn-outline-secondary:hover {
                background: var(--bg-card);
                color: white;
                border-color: var(--teal);
            }

        /* Navbar */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #fff, var(--teal-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

            .nav-link:hover {
                color: var(--teal-light) !important;
            }

        /* Hero Section */
        .hero-section {
            padding: 120px 0 100px;
            position: relative;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

            .hero-title span {
                background: linear-gradient(135deg, var(--teal-light), var(--cyan));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Cards and Sections */
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .glass-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

            .glass-card:hover {
                transform: translateY(-10px);
                border-color: var(--teal);
                box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: rgba(20, 184, 166, 0.1);
            color: var(--teal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        /* Pricing */
        .pricing-card {
            position: relative;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem 2rem;
            height: 100%;
            transition: all 0.3s;
        }

            .pricing-card.popular {
                background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(20, 184, 166, 0.1));
                border-color: var(--teal);
                box-shadow: 0 0 40px rgba(20, 184, 166, 0.15);
                transform: scale(1.05);
                z-index: 2;
            }

        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
        }

            .pricing-price span {
                font-size: 1rem;
                color: var(--text-secondary);
                font-weight: 400;
            }

        .feature-list li {
            margin-bottom: 1rem;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
        }

            .feature-list li i {
                color: var(--teal);
                margin-right: 0.75rem;
                font-size: 1.2rem;
            }

        /* Contact Form */
        .form-control, .form-select, textarea {
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 12px 14px;
            border-radius: 10px;
        }

            .form-control:focus, textarea:focus {
                background: rgba(255,255,255,0.1);
                border-color: var(--teal);
                color: #fff;
                box-shadow: none;
            }

            .form-control::placeholder, textarea::placeholder {
                color: rgba(255, 255, 255, 0.5);
            }

        /* Stats Badge */
        .stats-badge {
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1rem 2rem;
            backdrop-filter: blur(20px);
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .stat-value {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.5rem;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        /* Footer */
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
        }

        .footer-links h5 {
            color: #fff;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-links a:hover {
                color: var(--teal-light);
            }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s;
        }

            .social-link:hover {
                background: var(--teal);
                color: #fff;
            }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes scan {
            0% {
                top: 0;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                top: 100%;
                opacity: 0;
            }
        }
