@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            color: #0a0a0a;
            /* overflow-x: hidden; */
            /* Removing this as it can hide responsiveness issues. It's better to fix the overflow. */
        }

        /* Light theme gradient backgrounds with mesh effect */
        .hero-gradient {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-gradient::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(76, 111, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(124, 159, 255, 0.06) 0%, transparent 50%);
            animation: meshMove 20s ease-in-out infinite;
        }

        @keyframes meshMove {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(50px, 50px) rotate(5deg);
            }
        }

        .gradient-text {
            background: linear-gradient(135deg, #4c6fff 0%, #7c9fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Light theme glassmorphism effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(76, 111, 255, 0.1);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(76, 111, 255, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(76, 111, 255, 0.15);
        }

        /* Light theme button with gradient and glow */
        .btn-primary {
            background: linear-gradient(135deg, #4c6fff 0%, #5c7fff 100%);
            box-shadow: 0 10px 30px rgba(76, 111, 255, 0.25);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(76, 111, 255, 0.35);
        }

        .btn-secondary {
            background: rgba(76, 111, 255, 0.08);
            border: 1px solid rgba(76, 111, 255, 0.2);
            backdrop-filter: blur(10px);
            color: #4c6fff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-reveal-scale {
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal-scale.revealed {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        /* Light theme gradient border effect */
        .gradient-border {
            position: relative;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 16px;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(76, 111, 255, 0.4), rgba(124, 159, 255, 0.2));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        /* Light theme navigation with blur */
        nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(76, 111, 255, 0.1);
        }

        .stat-number {
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .icon-glow {
            box-shadow: 0 0 30px rgba(76, 111, 255, 0.2);
            transition: all 0.4s ease;
        }

        .icon-glow:hover {
            box-shadow: 0 0 40px rgba(76, 111, 255, 0.35);
            transform: scale(1.05);
        }

        /* Light theme pricing card highlight */
        .pricing-popular {
            background: linear-gradient(135deg, rgba(76, 111, 255, 0.08) 0%, rgba(124, 159, 255, 0.05) 100%);
            border: 2px solid rgba(76, 111, 255, 0.3);
            box-shadow: 0 10px 40px rgba(76, 111, 255, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        /* Light theme custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f8f9ff;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #4c6fff, #7c9fff);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #5c7fff, #8ca9ff);
        }

        /* FAQ Content transition */
        .faq-content {
            transition: max-height 0.5s ease-in-out, padding-top 0.5s ease-in-out;
            max-height: 0;
            overflow: hidden;
        }