.service-hero {
    --service-hero-radius-bottom: 35px;

    position: relative;
    width: 100vw;
    max-width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0 0 var(--service-hero-radius-bottom) var(--service-hero-radius-bottom);
}

.service-hero__bg {
    position: absolute;
    inset: 0;
    background-color: #2d5a56;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 var(--service-hero-radius-bottom) var(--service-hero-radius-bottom);
}

.service-hero__overlay {
    position: absolute;
    inset: 0;
    border-radius: 0 0 var(--service-hero-radius-bottom) var(--service-hero-radius-bottom);
    background: linear-gradient(
        105deg,
        rgba(20, 48, 45, 0.86) 0%,
        rgba(20, 48, 45, 0.5) 55%,
        rgba(20, 48, 45, 0.3) 100%
    );
}

.service-hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--header-container, 1320px);
    margin: 0 auto;
    padding: 80px 24px 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-height: clamp(320px, 48vh, 480px);
    justify-content: center;
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--header-radius-pill, 999px);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}

.service-hero__title {
    margin: 0;
    max-width: 18ch;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
}

.service-hero__subtitle {
    margin: 0;
    max-width: 46ch;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.service-hero__price {
    margin: 4px 0 0;
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.service-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--header-radius-pill, 999px);
    background: var(--site-button-bg, #ffffff);
    color: var(--site-button-text, #4a8c88);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-hero__btn:hover {
    background: var(--site-button-bg-hover, #ffffff);
    color: var(--site-button-text-hover, #3d7572);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .service-hero {
        --service-hero-radius-bottom: 28px;
    }

    .service-hero__container {
        padding-top: 64px;
        padding-bottom: 72px;
        min-height: 280px;
    }
}
