:root {
    --service-bg: #f4f4f6;
    --service-text: #171717;
    --service-muted: #4e5563;
    --service-red: #d63b2d;
    --service-red-dark: #bb2f23;
    --service-red-soft: rgba(214, 59, 45, 0.16);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--service-bg);
}

.service-page {
    background: var(--service-bg);
}

.service-hero {
    padding: 80px 20px 110px;
}

.service-hero__inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.service-hero__title {
    margin: 0 auto 24px;
    max-width: 1040px;
    color: var(--service-text);
    font-size: clamp(1.41rem, 2.46vw, 2.01rem);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.service-hero__description {
    margin: 0 auto;
    max-width: 980px;
    color: var(--service-muted);
    font-size: clamp(0.61rem, 0.93vw, 0.87rem);
    line-height: 1.6;
    font-weight: 400;
}

.service-support-pill {
    margin: 42px auto 0;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--service-red), var(--service-red-dark));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 18px 40px var(--service-red-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.service-support-pill:hover {
    color: #fff;
    transform: translateY(-1px);
    filter: saturate(1.05);
    box-shadow: 0 22px 46px rgba(214, 59, 45, 0.22);
}

.service-support-pill__icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
    flex: 0 0 54px;
}

.service-support-pill__icon svg {
    width: 27px;
    height: 27px;
    display: block;
}

.service-support-pill__text {
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 991px) {
    .service-hero {
        padding: 68px 18px 92px;
    }

    .service-hero__title {
        max-width: 860px;
    }

    .service-hero__description {
        max-width: 820px;
    }
}

@media (max-width: 767px) {
    .service-hero {
        padding: 56px 16px 80px;
    }

    .service-hero__title {
        font-size: clamp(1.2rem, 6vw, 1.59rem);
        line-height: 1.16;
        margin-bottom: 18px;
    }

    .service-hero__description {
        font-size: 0.6rem;
        line-height: 1.7;
    }

    .service-support-pill {
        margin-top: 32px;
        padding: 12px 22px 12px 16px;
        gap: 12px;
    }

    .service-support-pill__icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .service-support-pill__icon svg {
        width: 24px;
        height: 24px;
    }

    .service-support-pill__text {
        font-size: 0.65rem;
    }
}
