.cta-invest {
    position: relative;
    background-color: var(--color-black);
    background-size: cover;
    background-position: center;
    padding: clamp(50px, 6vw, 100px) 0;
}

.cta-invest__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 80px);
}

/* ===== Заголовок ===== */

.cta-invest__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.cta-invest__title {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 50px);
    line-height: 1.3;
    color: #fff;
}

.cta-invest__subtitle {
    margin: 0;
    max-width: 1000px;
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.15vw, 22px);
    line-height: 1.3;
    color: #fff;
}

/* ===== Сценарии + центр ===== */

.cta-invest__scenarios {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(24px, 3vw, 47px);
}

.cta-invest__scenario {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 4vw, 63px);
}

.cta-invest__scenario-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-invest__scenario-number {
    font-family: var(--font-sans);
    font-size: clamp(13px, 1.1vw, 22px);
    color: var(--color-beige);
}

.cta-invest__scenario-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(22px, 2.3vw, 40px);
    line-height: 1.3;
    color: #fff;
}

.cta-invest__scenario-desc {
    font-family: var(--font-sans);
    font-size: clamp(13px, 1.1vw, 22px);
    line-height: 1.3;
    color: #fff;
}

.cta-invest__scenario-icons {
    display: flex;
   
    flex-wrap: wrap;
}

.cta-invest__scenario-icon {
    flex: 1 1 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
}
.cta-invest__scenario-icon:first-child {
    border-left: none;
    padding-left: 0;
}

.cta-invest__scenario-icon img {
    width: clamp(48px, 5.2vw, 100px);
    height: auto;
}

.cta-invest__scenario-icon span {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.cta-invest__center {
    flex-shrink: 0;
    width: clamp(180px, 16.5vw, 320px);
    height: clamp(180px, 16.5vw, 320px);
    border-radius: 50%;
    border: 1px solid var(--color-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    text-align: center;
}

.cta-invest__center-icon {
    width: 40px;
    height: 40px;
}

.cta-invest__center-top {
    font-family: var(--font-sans);
    font-size: clamp(13px, 1.1vw, 22px);
    color: var(--color-beige);
    text-transform: uppercase;
}

.cta-invest__center-line {
    display: block;
    width: 50px;
    height: 1px;
    background: #fff;
}

.cta-invest__center-bottom {
    font-family: var(--font-sans);
    font-size: clamp(13px, 1.1vw, 22px);
    color: #fff;
    text-transform: uppercase;
}

/* ===== Нижний баннер ===== */

.cta-invest__banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px clamp(20px, 3vw, 40px);
    background: rgba(255, 249, 247, 0.1);
    border: 1px solid rgba(240, 223, 199, 0.5);
    border-radius: 38px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-invest__banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 480px;
    min-width: 0;
}

.cta-invest__banner-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(20px, 2.3vw, 34px);
    line-height: 1.3;
    color: #fff;
}

.cta-invest__banner-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(13px, 1.1vw, 20px);
    line-height: 1.3;
    color: #fff;
}

.cta-invest__banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.cta-invest__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    padding: 13px 40px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.cta-invest__btn:hover {
    opacity: 0.85;
}
.cta-invest__btn--primary {
    background: var(--color-active);
    color: var(--color-peach);
}
.cta-invest__btn--secondary {
    background: var(--color-peach);
    color: var(--color-active);
}

/* ===== Адаптив ===== */

@media (max-width: 991px) {
    .cta-invest__scenarios {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .cta-invest__scenario-head,
    .cta-invest__scenario {
        align-items: center;
    }
    .cta-invest__scenario-icon {
        border-left: none;
    }
}

@media (max-width: 640px) {
    .cta-invest__banner-buttons {
        width: 100%;
    }
    .cta-invest__btn {
        width: 100%;
        min-width: 0;
    }
}


@media (max-width: 480px) {
 .cta-invest__scenario-icons {
    gap: 12px 0;
}


}
