/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; scroll-behavior: smooth; }

body {
    background: #f0f6ff;
    min-height: 100vh;
}

/* ===== BG BLOBS ===== */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
}
.blob-1 { width: 600px; height: 600px; background: #bfdbfe; top: -150px; left: -150px; }
.blob-2 { width: 500px; height: 500px; background: #93c5fd; bottom: 100px; right: -100px; }
.blob-3 { width: 350px; height: 350px; background: #dbeafe; top: 40%; left: 50%; transform: translateX(-50%); }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LIQUID GLASS BASE ===== */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(147, 197, 253, 0.4);
    box-shadow: 0 4px 32px rgba(37, 99, 235, 0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
.glass-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(147, 197, 253, 0.35);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.07), inset 0 1px 0 rgba(255,255,255,0.85);
    transition: all 0.3s ease;
}
.glass-card:hover {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 16px 56px rgba(37, 99, 235, 0.13), inset 0 1px 0 rgba(255,255,255,0.95);
    transform: translateY(-4px);
}

/* ===== NAVBAR ===== */
.navbar {
    transition: all 0.35s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.82) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(147,197,253,0.4), 0 4px 24px rgba(37,99,235,0.07);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    color: white;
    box-shadow: 0 6px 28px rgba(29, 78, 216, 0.35);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.45);
}
.btn-outline {
    background: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(59,130,246,0.45);
    color: #1d4ed8;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: rgba(239,246,255,0.9);
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}

/* ===== STAT CARD ===== */
.stat-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(147,197,253,0.4);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(37,99,235,0.07);
}

/* ===== PLATFORM BADGE ===== */
.platform-badge {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(147,197,253,0.35);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}
.platform-badge:hover {
    background: rgba(239,246,255,0.9);
    border-color: rgba(59,130,246,0.5);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}

/* ===== PRICE CARD ===== */
.price-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(147,197,253,0.35);
    backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}
.price-card.popular {
    background: linear-gradient(145deg, rgba(219,234,254,0.85), rgba(224,242,254,0.8));
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 20px 60px rgba(37,99,235,0.15);
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(37,99,235,0.15);
}

/* ===== TESTIMONIAL ===== */
.testi-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(147,197,253,0.35);
    backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}
.testi-card:hover {
    background: rgba(255,255,255,0.85);
    border-color: rgba(59,130,246,0.45);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(37,99,235,0.12);
}

/* ===== FAQ ===== */
.faq-item {
    border-bottom: 1px solid rgba(147,197,253,0.3);
    transition: background 0.2s ease;
}
.faq-item:hover { background: rgba(239,246,255,0.5); }
.faq-answer { display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform 0.3s ease; }

/* ===== SECTION DIVIDER ===== */
.section-divider {
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.25), rgba(14,165,233,0.2), transparent);
    height: 1px;
}

/* ===== BADGE ===== */
.badge-blue {
    background: rgba(219,234,254,0.8);
    border: 1px solid rgba(147,197,253,0.6);
    color: #1d4ed8;
    backdrop-filter: blur(8px);
}

/* ===== ORNAMENT CIRCLE ===== */
.orb-deco {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(59,130,246,0.18);
    pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-18px); }
}
.animate-fade-up         { animation: fadeUp 0.8s ease both; }
.animate-fade-up-delay   { animation: fadeUp 0.8s ease 0.2s both; }
.animate-fade-up-delay2  { animation: fadeUp 0.8s ease 0.4s both; }
.animate-float           { animation: floatY 6s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icon bg */
.icon-box {
    background: linear-gradient(135deg, rgba(219,234,254,0.9), rgba(224,242,254,0.7));
    border: 1px solid rgba(147,197,253,0.5);
    backdrop-filter: blur(8px);
}
