.service_cta {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.service_cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service_cta__content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service_cta__title {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 600;
    font-family: Montserrat;
}

.service_cta__text {
    margin-bottom: 32px;
    font-size: 18px;
    color: #555;
    font-family: P22UndergroundCYProBook;
}

.service_cta__button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    padding: 7px 12px;

    text-decoration: none;
    overflow: hidden;
}

/* Полоска */
.service_cta__button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgb(254 195 3 / 83%);
    transform: scaleX(0.4);          /* ⬅️ 70% в обычном состоянии */
    transform-origin: left center;
    transition: transform 0.45s ease; /* плавная анимация */
    z-index: 1;
}

/* Hover → 100% */
.service_cta__button:hover::before {
    transform: scaleX(1);
}

/* Текст поверх */
.service_cta__button-text {
    position: relative;
    z-index: 2;

    color: #1D1D1D;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
}
