.home-page {
    background: #fff;
}

.home-hero {
    padding: 92px 0 70px;
    background:
        radial-gradient(circle at 18% 10%, rgba(37,99,235,.14), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(22,163,74,.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid #dbe3ef;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    align-items: center;
}

.home-kicker {
    display: inline-flex;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-hero h1 {
    margin: 0 0 18px;
    color: #07111f;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.01;
    letter-spacing: -.07em;
}

.home-hero p {
    color: #5f6f85;
    font-size: 19px;
    line-height: 1.72;
    max-width: 760px;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-btn-primary,
.home-btn-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 950;
}

.home-btn-primary {
    background: #07111f;
    color: #fff;
    box-shadow: 0 18px 38px rgba(7,17,31,.18);
}

.home-btn-secondary {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 18px 38px rgba(22,163,74,.20);
}

.home-proof-card {
    background: #07111f;
    color: #fff;
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 26px 70px rgba(7,17,31,.22);
}

.home-proof-card img {
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.home-proof-card h2 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -.05em;
}

.home-proof-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.home-stats div {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 16px;
}

.home-stats strong {
    display: block;
    font-size: 24px;
    letter-spacing: -.04em;
}

.home-stats span {
    color: #cbd5e1;
    font-size: 12.5px;
    line-height: 1.4;
    font-weight: 750;
}

.home-section {
    padding: 76px 0;
}

.home-section.soft {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.home-section-head {
    max-width: 840px;
    margin-bottom: 30px;
}

.home-section-head h2 {
    margin: 0 0 14px;
    color: #07111f;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.home-section-head p {
    margin: 0;
    color: #607086;
    font-size: 18px;
    line-height: 1.72;
}

.home-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 26px;
    padding: 22px;
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(15,23,42,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 22px 58px rgba(15,23,42,.10);
}

.home-service-card small {
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-service-card h3 {
    margin: 0 0 10px;
    color: #07111f;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
}

.home-service-card p {
    color: #607086;
    line-height: 1.58;
    font-size: 14.5px;
    margin-bottom: 20px;
}

.home-service-card strong {
    margin-top: auto;
    color: #07111f;
    font-size: 22px;
    letter-spacing: -.04em;
}

.home-path {
    counter-reset: path;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-path-card {
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 16px 42px rgba(15,23,42,.06);
}

.home-path-card::before {
    counter-increment: path;
    content: counter(path);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 950;
    margin-bottom: 16px;
}

.home-path-card h3 {
    margin: 0 0 10px;
    color: #07111f;
    font-size: 22px;
    letter-spacing: -.035em;
}

.home-path-card p {
    color: #607086;
    line-height: 1.6;
    margin: 0;
}

.home-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #07111f, #0f1f35);
    color: #fff;
}

.home-final-card {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.home-final h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
    letter-spacing: -.06em;
}

.home-final p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1100px) {
    .home-hero-grid,
    .home-services,
    .home-path {
        grid-template-columns: 1fr;
    }

    .home-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .home-hero,
    .home-section {
        padding: 56px 0;
    }

    .home-actions a {
        width: 100%;
    }

    .home-proof-card {
        border-radius: 24px;
    }
}
