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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1d2e 0%, #2d1b3d 100%);
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        header {
            backdrop-filter: blur(20px);
            background: rgba(40, 44, 58, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 1rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .logo .highlight {
            color: #4a9eff !important;
            font-weight: 600;
            display: inline;
            animation: textGlow 3.2s ease-in-out infinite;
        }

        @keyframes textGlow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
            }
            50% {
                text-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
            }
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
            filter: drop-shadow(0 0 15px rgba(74, 158, 255, 0.5));
            animation: logoGlow 2s ease-in-out infinite;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        }

        .logo-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            padding: 4px;
            border-radius: 50%;
        }

        @keyframes logoGlow {
            0%, 100% {
                filter: drop-shadow(0 0 15px rgba(74, 158, 255, 0.5));
                box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
            }
            50% {
                filter: drop-shadow(0 0 25px rgba(74, 158, 255, 0.7));
                box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
            }
        }

        nav a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-left: 2rem;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #4a9eff;
            text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
        }

        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .background-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .float-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #4a9eff, #a855f7);
            top: -200px;
            left: -100px;
            animation: float 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #a855f7, #ec4899);
            bottom: -150px;
            right: -100px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -1px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1), 0 0 20px rgba(74, 158, 255, 0.1);
            animation: titleGlow 5s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% {
                text-shadow: 0 0 6px rgba(255, 255, 255, 0.10), 0 0 14px rgba(74, 158, 255, 0.10), 0 0 22px rgba(168, 85, 247, 0.08);
            }
            50% {
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.18), 0 0 22px rgba(74, 158, 255, 0.20), 0 0 34px rgba(168, 85, 247, 0.16);
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .hero p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2.5rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .ai-badge {
            display: inline-block;
            background: rgba(74, 158, 255, 0.15);
            border: 1px solid rgba(74, 158, 255, 0.3);
            color: #4a9eff;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: pulse-border 2s ease-in-out infinite;
        }

        @keyframes pulse-border {
            0%, 100% { box-shadow: 0 0 10px rgba(74, 158, 255, 0.3); }
            50% { box-shadow: 0 0 20px rgba(74, 158, 255, 0.6); }
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .btn {
            padding: 1.1rem 2.8rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(90deg, #5b8def 0%, #a855f7 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(88, 141, 239, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(88, 141, 239, 0.6);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

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

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .pricing-section {
            max-width: 1200px;
            margin: 4rem auto 0;
            padding: 5rem 2rem;
        }

        .pricing-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 500;
            margin-bottom: 3rem;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

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

        .pricing-card {
            background: rgba(40, 44, 58, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.featured {
            border-color: #4a9eff;
            background: rgba(74, 158, 255, 0.1);
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(74, 158, 255, 0.3);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover {
            border-color: #4a9eff;
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(74, 158, 255, 0.3);
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(90deg, #5b8def 0%, #a855f7 100%);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(88, 141, 239, 0.4);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin: 1rem 0 0.5rem;
            color: #ffffff;
            font-weight: 500;
        }

        .pricing-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 300;
            color: #4a9eff;
            margin: 1.5rem 0;
        }

        .price-period {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .features-list {
            list-style: none;
            margin: 2rem 0;
            flex-grow: 1;
        }

        .features-list li {
            color: rgba(255, 255, 255, 0.8);
            padding: 0.7rem 0;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list li::before {
            content: '✓';
            color: #4a9eff;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .pricing-card .btn {
            width: 100%;
            margin-top: 2rem;
            text-align: center;
        }

        .features {
            max-width: 1200px;
            margin: 6rem auto 0;
            padding: 5rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3.5rem;
        }

        .feature {
            text-align: center;
            transition: transform 0.3s ease;
            padding: 15px;
            border-radius: 12px;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(74, 158, 255, 0.15);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 1px solid rgba(74, 158, 255, 0.3);
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(74, 158, 255, 0);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
            }
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 0.7rem;
            color: #ffffff;
            font-weight: 500;
        }

        .feature p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.98rem;
            line-height: 1.6;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 5rem auto;
            max-width: 1200px;
            padding: 0 2rem;
            text-align: center;
        }

        .stat {
            padding: 2rem;
            background: rgba(40, 44, 58, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(74, 158, 255, 0.2);
            border-color: rgba(74, 158, 255, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: #4a9eff;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        footer {
            margin-top: 6rem;
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 1.2rem 1rem;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .footer-link-inline {
            color: #4a9eff;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-link-inline:hover {
            text-decoration: underline;
            color: #64b5f6;
        }

        .legal-links {
            margin-top: 0.6rem;
            font-size: 0.9rem;
            opacity: 0.85;
        }

        .separator {
            margin: 0 0.5rem;
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero p {
                font-size: 1rem;
            }

            nav a {
                margin-left: 1rem;
                font-size: 0.8rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .logo {
                font-size: 1.4rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-title {
                font-size: 1.8rem;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #4a9eff;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(12px); }
        }