/* ============================
   BimbaChecker Landing Page CSS
   ============================ */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ---- Navbar ---- */
.landing-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.landing-navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--bs-border-color);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ---- Hero Section ---- */
.hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Hero demo card */
.hero-card-wrapper {
    position: relative;
}

.hero-demo-card {
    border-radius: 16px !important;
    max-width: 380px;
    margin: 0 auto;
    transform: perspective(800px) rotateY(-3deg);
    transition: transform 0.4s ease;
}

.hero-demo-card:hover {
    transform: perspective(800px) rotateY(0deg);
}

/* Pulse badge animation */
.hero-badge-pulse {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

/* ---- Step Numbers ---- */
.step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Gateway Cards ---- */
.gateway-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gateway-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* ---- Pricing Highlight ---- */
.card-pricing {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-pricing:hover {
    transform: translateY(-4px);
}

/* ---- Footer ---- */
footer a {
    text-decoration: none;
    transition: opacity 0.2s;
}

footer a:hover {
    opacity: 1 !important;
    color: #fff !important;
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-demo-card {
        transform: none;
        max-width: 340px;
    }
}