html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.premium-gradient {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 35%),
        linear-gradient(135deg, #020617 0%, #082f49 45%, #020617 100%);
}

.glass-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-btn {
    box-shadow: 0 12px 30px rgba(37,99,235,0.35);
    transition: all .3s ease;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(37,99,235,0.45);
}

.premium-card {
    transition: all .35s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
}

.image-zoom img {
    transition: transform .6s ease;
}

.image-zoom:hover img {
    transform: scale(1.08);
}

.section-dark-title h2,
.section-dark-title .text-slate-900 {
    color: #fff !important;
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
}

.home-slider-dot.active {
    width: 28px;
    background: #2563eb;
}

.stat-strip {
    margin-top: -48px;
    position: relative;
    z-index: 20;
}

.ring-badge {
    position: relative;
}

.ring-badge::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    border: 2px solid rgba(37,99,235,.45);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        opacity: 1;
        transform: scale(.9);
    }
    100% {
        opacity: 0;
        transform: scale(1.25);
    }
}

.blue-pattern {
    background-image:
        linear-gradient(rgba(37,99,235,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.09) 1px, transparent 1px);
    background-size: 34px 34px;
}

.process-line {
    position: relative;
}

.process-line::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: #2563eb;
    opacity: .35;
}

@media(max-width: 768px) {
    .process-line::before {
        display: none;
    }

    .stat-strip {
        margin-top: 0;
    }
}


.reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: all 0.8s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}