.service-cta {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-top: 48px;
}

.service-cta__bg {
    position: absolute;
    inset: 0;
    background-color: #2d5a56;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(20, 48, 45, 0.9) 0%,
        rgba(20, 48, 45, 0.65) 55%,
        rgba(20, 48, 45, 0.45) 100%
    );
}

.service-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
    padding: 40px 44px;
}

.service-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 1 280px;
    min-width: 0;
}

.service-cta__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    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: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}

.service-cta__title {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.service-cta__subtitle {
    margin: 0;
    max-width: 52ch;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.service-cta__price {
    margin: 2px 0 0;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.service-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    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;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

@media (max-width: 767px) {
    .service-cta {
        border-radius: 20px;
    }

    .service-cta__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .service-cta__btn {
        width: 100%;
    }
}
