body {
    font-family: 'Inter', sans-serif;
    background-color: #020617;
    /* Slate 950 */
    color: #e2e8f0;
    /* Slate 200 */
    scroll-behavior: smooth;
}

/* Chart Container Styles - Mandatory Compliance */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* Tailwind max-w-xl equivalent approx */
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    max-height: 400px;
}

@media (min-width: 768px) {
    .chart-container {
        height: 350px;
    }
}

/* Utility for simulated UI elements */
.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    /* Slate 900 with opacity */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #3b82f6, #06b6d4);
}

.step-active {
    border-color: #3b82f6;
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    /* Blue 500 with opacity */
}

.step-card {
    background-color: rgb(15 23 42 / 0.5);
    /* Slate 900/50 */
}

.tab-active {
    border-bottom: 2px solid #3b82f6;
    color: #3b82f6;
    font-weight: 600;
    background-color: rgba(59, 130, 246, 0.05);
}

/* Testimonial Infinite Scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    display: flex;
    width: max-content;
    /* Ensure container fits all cards */
    animation: scroll 40s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}


/* Animation for Pricing Background */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}
