html { scroll-behavior: smooth; }
body { overflow-x: hidden; background-color: #050810; }

.text-glow-blue { text-shadow: 0 0 20px rgba(59, 130, 246, 0.6); }

#navbar.scrolled {
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes floating {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 2rem;
    text-align: center;
    animation: floating 5s ease-in-out infinite;
}

.pos-1 { top: 10%; left: 20%; animation-duration: 6s; }
.pos-2 { top: 45%; left: 55%; animation-duration: 8s; animation-delay: 1s; }
.pos-3 { top: 70%; left: 15%; animation-duration: 7s; animation-delay: 0.5s; }

.stat-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    filter: blur(40px); opacity: 0.1; z-index: -1;
}

.icon-ui {
    width: 64px; height: 64px; border: 1px solid; border-radius: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 1.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3.5rem 2rem;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.price-discount { text-decoration: line-through; color: #475569; font-size: 0.8rem; margin-bottom: 2px; display: block; }

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: 0.3s;
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.faq-body {
    padding: 0 2rem 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-body { display: block; }
.faq-item.active { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.05); }