/* ION Heat — CTA */

.cta .container {
    flex-direction: row;
    gap: 9.2vw;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 80px;
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    flex: 1;
}

.cta__title {
    color: var(--main);
    text-align: left;
    font-family: var(--h2-font-family);
    font-size: clamp(36px, 4vw, 64px);
    line-height: 130%;
    font-weight: var(--h2-font-weight);
}

.cta__desc {
    color: var(--text);
    text-align: left;
    font-family: var(--text1-font-family);
    font-size: var(--text1-font-size);
    line-height: var(--text1-line-height);
    font-weight: var(--text1-font-weight);
    max-width: 560px;
}

/* Кнопки */
.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: stretch;
}

.cta__btn {
    background: var(--button-who-choose);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    text-decoration: none;
    transition: background 0.2s;
}

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

.cta__btn span {
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
    text-transform: uppercase;
    transition: color 0.2s;
}

.cta__btn:hover span {
    color: var(--white);
}

.cta__btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Картинка */
.cta__img {
    border-radius: 12px;
    max-width: 704px;
    height: 394px;
    object-fit: cover;
    flex-shrink: 0;
    width: calc(50% - 4.6vw);
}

/* ── Адаптив ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cta .container {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cta__img {
        width: 100%;
        height: auto;
        aspect-ratio: 460 / 340;
    }

    .cta__title {
        font-size: clamp(28px, 5vw, 48px);
    }
}