/* assets/css/landing.css */

.hero-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Blobs */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.blob-1 {
    top: -200px;
    right: -100px;
}

.blob-2 {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 800;
    margin-bottom: 4rem;
    position: relative;
    color: #1e293b;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--brand-primary);
    border-radius: 10px;
}

.step-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 24px;
    background: #fff;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1) !important;
    border-color: var(--brand-primary);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.guide-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.cta-banner {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

.cta-banner::after {
    content: '✨';
    position: absolute;
    right: 5%;
    top: 10%;
    font-size: 10rem;
    opacity: 0.1;
}

.navbar-landing {
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-link {
    font-weight: 600;
    color: #64748b !important;
    padding: 0.5rem 1.25rem !important;
}

.nav-link:hover {
    color: var(--brand-primary) !important;
}

.btn-demo {
    padding: 16px 36px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.35);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08) !important;
}

.feature-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}