body {
    background: linear-gradient(180deg, #ffffff 0%, var(--soft-blue) 100%);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    z-index: 0;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: -70px;
    right: -60px;
    background: rgba(37, 99, 235, 0.18);
}

.hero::after {
    width: 230px;
    height: 230px;
    left: -70px;
    bottom: -90px;
    background: rgba(29, 78, 216, 0.14);
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    color: #334155;
    font-size: 1.1rem;
    max-width: 620px;
}

.hero-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.09);
}

.kpi {
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.kpi:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.feature-card,
.step-card,
.contact-card {
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.step-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 34px rgba(15, 23, 42, 0.1);
}

.icon-pill {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-blue);
    font-weight: 700;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
}

.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 46px rgba(29, 78, 216, 0.35);
}

.contact-note {
    color: #475569;
    font-size: .95rem;
}

.footer-link {
    color: #475569;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.reveal {
    animation: fadeUp .75s ease both;
}

.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 4rem;
    }

    .hero-card {
        margin-top: 1rem;
    }
}
