.services-page {
    background: #ededed;
    padding: 60px 0 0;
}

.services-page__inner {
    max-width: 1680px;
}

.services-page__hero {
    min-height: 140px;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
    background:
        radial-gradient(90% 210% at 5% 50%, rgba(28, 144, 185, 0.52) 0%, rgba(28, 144, 185, 0.18) 32%, rgba(28, 144, 185, 0) 54%),
        radial-gradient(90% 210% at 95% 50%, rgba(28, 144, 185, 0.52) 0%, rgba(28, 144, 185, 0.18) 32%, rgba(28, 144, 185, 0) 54%),
        linear-gradient(90deg, #1d4f87 0%, #2b2866 36%, #2b2866 64%, #1d4f87 100%);
}

.services-page__hero-title {
    margin: 0;
    color: #efefef;
    font-size: clamp(36px, 3.5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.services-page__card {
    border: 1px solid #ff6f4f;
    border-radius: 38px;
    padding: 36px 40px 34px;
    background: #f7f7f7;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.09);
}

.services-page__card-title {
    margin: 0;
    color: #17125a;
    font-size: clamp(20px, 2.1vw, 22px);
    line-height: 1.2;
    font-weight: 700;
}

.services-page__line {
    width: min(420px, 48%);
    height: 4px;
    margin: 20px 0 18px;
    background: #f2552c;
}

.services-page__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-page__item {
    position: relative;
    margin: 0;
    padding: 0 0 0 20px;
    color: #4c4c4c;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

.services-page__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4c4c4c;
}

.services-page__item + .services-page__item {
    margin-top: 5px;
}

.services-page__footer-band {
    margin-top: 40px;
    padding: 44px 0;
    background:
        radial-gradient(90% 220% at 4% 50%, rgba(31, 141, 180, 0.56) 0%, rgba(31, 141, 180, 0.2) 30%, rgba(31, 141, 180, 0) 52%),
        radial-gradient(90% 220% at 96% 50%, rgba(31, 141, 180, 0.56) 0%, rgba(31, 141, 180, 0.2) 30%, rgba(31, 141, 180, 0) 52%),
        linear-gradient(90deg, #1d4f87 0%, #2b2866 36%, #2b2866 64%, #1d4f87 100%);
}

.services-page__footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.services-page__footer-link {
    color: #f0f0f0;
    font-size: clamp(16px, 1.9vw, 22px);
    line-height: 1.3;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .services-page__grid {
        gap: 18px;
    }

    .services-page__card {
        border-radius: 26px;
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .services-page__hero {
        min-height: 112px;
    }

    .services-page__grid {
        grid-template-columns: 1fr;
    }

    .services-page__footer-band {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {

    .services-page__hero {
        border-radius: 22px;
        margin-bottom: 16px;
    }

    .services-page__card {
        border-radius: 20px;
        padding: 16px;
    }

    .services-page__line {
        margin: 14px 0;
    }

    .services-page__item {
        padding-left: 15px;
    }

    .services-page__item::before {
        width: 8px;
        height: 8px;
        top: 0.7em;
    }

    .services-page__footer-inner {
        gap: 16px;
    }
}
