* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #f9f9ff;
    color: #191b23;
}

.wrap {
    max-width: 1180px;
    margin: auto;
    padding: 0 24px;
}

.landing-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    font-size: 21px;
    font-weight: 800;
    color: #0058be;
    white-space: nowrap;
}

.links {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    background: #0058be;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 88, 190, 0.18);
}

.btn.soft {
    background: #e6efff;
    color: #004395;
    box-shadow: none;
}

.hero {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 64px;
}

.hero-copy p {
    max-width: 680px;
}

.eyebrow {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #d8e2ff;
    color: #004395;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -.045em;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 12px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    color: #596373;
}

.visual {
    background: linear-gradient(145deg, #001a42, #2170e4);
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 30px 80px #0058be33;
    color: #fff;
}

.visual h2 {
    color: #fff;
}

.window {
    background: #fff;
    color: #191b23;
    border-radius: 20px;
    padding: 18px;
}

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

.stat {
    padding: 18px;
    border-radius: 14px;
    background: #f2f3fd;
    color: #596373;
    font-size: 14px;
    line-height: 1.4;
}

.stat strong {
    font-size: 25px;
    display: block;
    color: #0058be;
}

.bar {
    height: 130px;
    margin-top: 16px;
    display: flex;
    align-items: end;
    gap: 9px;
}

.bar i {
    display: block;
    flex: 1;
    background: #2170e4;
    border-radius: 8px 8px 2px 2px;
}

.bar-42 { height: 42%; }
.bar-68 { height: 68%; }
.bar-56 { height: 56%; }
.bar-84 { height: 84%; }
.bar-72 { height: 72%; }
.bar-100 { height: 100%; }

.cta-section {
    padding: 0 0 34px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 22px;
}

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

.cta-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border: 1px solid #dfe3ee;
    border-radius: 20px;
    background: #fff;
    color: #191b23;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.cta-card:hover,
.cta-card:focus-visible {
    transform: translateY(-3px);
    border-color: #9dbbf2;
    box-shadow: 0 18px 42px rgba(0, 88, 190, 0.14);
}

.cta-card span {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.cta-card p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
}

.cta-card-primary,
.cta-card-featured {
    background: #0058be;
    color: #fff;
    border-color: #0058be;
    box-shadow: 0 20px 48px rgba(0, 88, 190, 0.2);
}

.cta-card-primary p,
.cta-card-featured p {
    color: #dceaff;
}

.cta-card-outline {
    background: #f5f8ff;
    border-color: #bfd2f5;
}

.cta-card-featured {
    max-width: 620px;
    min-height: 150px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 20px 0 80px;
}

.card {
    padding: 24px;
    background: #fff;
    border: 1px solid #dfe3ee;
    border-radius: 18px;
}

.card b {
    font-size: 18px;
}

.card p {
    margin-bottom: 0;
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero,
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 46px;
    }
}

@media (max-width: 800px) {
    .landing-nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .links {
        width: 100%;
    }

    .links .btn {
        flex: 1 1 160px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 44px 0 34px;
        gap: 34px;
    }

    .visual {
        display: block;
        padding: 20px;
    }

    .stats,
    .cta-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .cta-card {
        min-height: auto;
    }

    h1 {
        font-size: 39px;
    }
}

@media (max-width: 520px) {
    .wrap {
        padding: 0 18px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 27px;
    }

    p {
        font-size: 16px;
    }
}
