:root {
            --primary-color: #1e40af;
            --primary-light: #3b82f6;
            --secondary-color: #f59e0b;
            --accent-color: #10b981;
            --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --gradient-secondary: linear-gradient(135deg, #f59e0b, #fbbf24);
            --gradient-accent: linear-gradient(135deg, #10b981, #34d399);
            --shadow-elegant: 0 10px 30px -10px rgba(30, 64, 175, 0.3);
            --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
            --shadow-card: 0 4px 20px -5px rgba(0, 0, 0, 0.15);
        }

        * {
           font-family: 'Manrope', sans-serif;
        }

        body {
            overflow-x: hidden;
            
        }

        /* Hero Section */
        .hero-section {
            background: var(--gradient-primary);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .floating-element {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: bounce 3s ease-in-out infinite;
        }

        .floating-1 { top: 20%; left: 10%; width: 80px; height: 80px; animation-delay: 0s; }
        .floating-2 { top: 40%; right: 10%; width: 60px; height: 60px; animation-delay: 1s; }
        .floating-3 { bottom: 20%; left: 15%; width: 50px; height: 50px; animation-delay: 2s; }

        /* Buttons */
        .btn-hero {
            background: var(--gradient-secondary);
            border: none;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-elegant);
        }

        .btn-hero:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .btn-outline-white {
            border: 2px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-weight: 500;
            padding: 15px 40px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            transform: translateY(-2px);
        }

        /* Cards */
        .benefit-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-card);
            height: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-elegant);
        }

        .benefit-icon {
            background: rgba(30, 64, 175, 0.1);
            border-radius: 15px;
            padding: 20px;
            width: fit-content;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            background: rgba(30, 64, 175, 0.2);
        }

        /* Pricing Cards */
        .pricing-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 25px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-elegant);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 8px 25px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-elegant);
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            color: rgba(30, 64, 175, 0.3);
            font-size: 30px;
        }

        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.2; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .pricing-card.popular {
                transform: none;
                margin: 20px 0;
            }
        }

        /* Section backgrounds */
        .bg-light-gray {
            background: #f8fafc;
        }

        .gradient-text {
            background: linear-gradient(45deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }