:root {
    --primary: #0066ff;
    --primary-dark: #0052d4;
    --secondary: #7c3aed;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #00d4aa;
}

* {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

div#ast-scroll-top {
    display: none !important;
}

.woocommerce-checkout #content {
    padding-top: 40px;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-popular {
    position: relative;
    border: 2px solid var(--primary);
}

.pricing-card-popular::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-answer {
    max-height: 0;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.stats-counter {
    transition: all 0.5s ease;
}

.animated-bg-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
    z-index: -1;
}

.animated-bg-1 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    animation: float 20s infinite ease-in-out;
}

.animated-bg-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -200px;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 20px) rotate(5deg); }
    50% { transform: translate(0, 30px) rotate(0deg); }
    75% { transform: translate(-20px, 10px) rotate(-5deg); }
}

.glow-button {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
    transition: all 0.3s ease;
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
}

.graph-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 2s forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .animated-bg-1, .animated-bg-2 {
        display: none;
    }
}

.vortex-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.vortex-package-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.vortex-package-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

