:root {
            --primary-purple: #5A3FFF;
            --dark-bg: #121212;
            --card-bg: #1e1e1e;
            --text-color: #e0e0e0;
        }

        body {
            font-family: 'Inter', 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        .cta-btn {
            background-color: #5A3FFF;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            box-shadow: 0 4px 15px rgba(90, 63, 255, 0.4);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(90, 63, 255, 0.6);
        }

        .secondary-btn {
            background-color: transparent;
            border: 2px solid #5A3FFF;
            color: #5A3FFF;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
        }

        .secondary-btn:hover {
            background-color: #5A3FFF;
            color: white;
        }

        .bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: -1;
            opacity: 0.2;
        }

        .anim-chart-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: dash 5s linear forwards infinite;
        }

        @keyframes dash {
            to {
                stroke-dashoffset: 0;
            }
        }

        .glow {
            filter: drop-shadow(0 0 10px #5A3FFF);
        }
        
        .testimonial-card::before {
            content: '“';
            font-family: Georgia, serif;
            font-size: 4rem;
            color: var(--primary-purple);
            position: absolute;
            top: 0;
            left: 1rem;
            opacity: 0.5;
            line-height: 1;
        }