/* ION Heat — Service Scope */

.service-scope .container {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 100px;
}

.service-scope__line {
    border: none;
    border-top: 1px solid var(--main);
    align-self: stretch;
    margin: 0;
}

.service-scope__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: stretch;
}

.service-scope__head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.service-scope__label {
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 130%;
    font-weight: 800;
    text-transform: uppercase;
}

.service-scope__title {
    color: var(--text);
    font-family: var(--h2-font-family);
    font-size: clamp(32px, 5vw, 64px);
    line-height: var(--h2-line-height);
    font-weight: var(--h2-font-weight);
    align-self: stretch;
}

/* Список */
.service-scope__body {
    padding-left: 101px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: stretch;
}

.service-scope__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
}

.service-scope__item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}

.service-scope__item-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-scope__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-scope__item-text {
    color: var(--text);
    font-family: var(--text1-font-family);
    font-size: var(--text1-font-size);
    line-height: var(--text1-line-height);
    font-weight: var(--text1-font-weight);
    flex: 1;
}

/* Кнопка */
.service-scope__btn {
    background: var(--main);
    border-radius: 100px;
    padding: 12px 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
}

.service-scope__btn:hover {
    background: var(--accent);
}

.service-scope__btn span {
    color: var(--white);
    font-family: var(--button-font-family);
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Адаптив ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .service-scope__body {
        padding-left: 0;
    }

    .service-scope .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .service-scope__item-text {
        font-size: 18px;
    }

    .service-scope__btn {
        width: 100%;
        justify-content: center;
    }
}