* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #f5f7fb;
    color: #111827;
}

a {
    text-decoration: none;
    color: inherit;
}

.topbar {
    background: #ffffff;
    padding: 18px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.brand {
    max-width: 1100px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #111827;
    color: white;

    font-size: 23px;
    font-weight: 800;
}

.brand strong {
    display: block;
    font-size: 21px;
}

.brand span {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

.hero {
    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

    color: white;

    padding: 75px 24px;
}

.hero-content {
    max-width: 1100px;
    margin: auto;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    opacity: .7;
}

.hero h1 {
    font-size: clamp(44px, 8vw, 76px);
    line-height: .98;

    margin:
        16px
        0
        22px;

    letter-spacing: -3px;
}

.hero p {
    max-width: 560px;

    font-size: 18px;
    line-height: 1.6;

    color: #d1d5db;
}

.services {
    max-width: 1100px;

    margin: auto;

    padding: 55px 24px;
}

.services h2 {
    margin-top: 0;
    margin-bottom: 24px;

    font-size: 25px;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}

.service-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 17px;

    min-height: 120px;

    background: white;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    padding: 22px;

    transition: .2s;
}

.service-card:not(.disabled):hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.08);
}

.service-card.primary {
    border-color: #111827;
}

.service-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #f3f4f6;

    font-size: 27px;
}

.service-card h3 {
    margin: 0 0 6px;

    font-size: 18px;
}

.service-card p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.45;
}

.arrow {
    margin-left: auto;

    font-size: 32px;
}

.disabled {
    opacity: .65;
}

.coming {
    position: absolute;

    top: 13px;
    right: 13px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    background: #e5e7eb;

    padding: 6px 8px;

    border-radius: 20px;
}

.junior-benefit {
    max-width: 1052px;

    margin:
        0 auto
        60px;

    background: white;

    border-radius: 24px;

    padding: 32px;

    display: flex;

    gap: 22px;

    border: 1px solid #e5e7eb;
}

.benefit-badge {
    width: 60px;
    height: 60px;

    min-width: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111827;

    color: white;

    border-radius: 18px;

    font-size: 28px;
    font-weight: 800;
}

.junior-benefit span {
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;

    color: #6b7280;
}

.junior-benefit h2 {
    margin:
        6px
        0
        8px;
}

.junior-benefit p {
    margin:
        0
        0
        13px;

    color: #6b7280;

    line-height: 1.5;
}

.benefit-link {
    font-weight: 700;
}

footer {
    padding: 30px 24px;

    text-align: center;

    color: #6b7280;

    font-size: 13px;
}

footer strong {
    color: #111827;

    margin-right: 7px;
}


@media (max-width: 700px) {

    .hero {
        padding:
            55px
            22px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 16px;
    }

    .services {
        padding:
            38px
            16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .junior-benefit {
        margin:
            0 16px
            40px;

        padding: 24px 20px;
    }

}
