/* Высокий трек: пока прокручиваем его, баннер залипает (sticky),
   а секция about наезжает поверх (её margin-top: -100vh). */
.banner-sticky {
    position: relative;
    z-index: 1;
    height: 200vh;
}

.banner {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 960px;
    overflow: hidden;
}

.banner__img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .container {
    position: relative;
    height: 100vh;
    min-height: 960px;
    display: flex;
    align-items: flex-end;
}

.banner__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 0 100px;
}

/* стартовое скрытие контента до инициализации gsap (чтобы не мелькал) */
.js-banner-anim .banner__content {
    visibility: hidden;
}

.banner__content-block {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 24%;
}

.banner__content-text {
    margin: 0;
    padding: 0;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: #fff;
}

.banner__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: rgba(17, 24, 39, 1);
    width: fit-content;
    background: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background .3s ease-in-out;
}

.banner__btn:hover {
    background: rgba(255, 255, 255, 0.85);
}

.banner__logo {
    height: 100%;
    width: fit-content;
    transform: translateY(25px);
}

@media (max-width: 1300px) {
    .banner__logo {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .banner__content-block {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .banner__logo,
    .banner__img {
        display: none;
    }

    .banner__logo.--mobile,
    .banner__img.--mobile {
        display: block;
    }

    .banner__content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .banner__content-block {
        width: 100%;
    }

    .banner__content {
        padding: 0 0 20px;
        gap: 24px;
    }

    .banner__content-block {
        gap: 32px;
    }

    .banner__logo {
        width: 100%;
    }

    .banner__content-text {
        font-size: 18px;
        line-height: 24px;
    }

    .banner,
    .banner .container {
        height: 640px;
        min-height: unset;
    }
}

@media (max-width: 576px) {
    .banner__btn {
        padding: 9px 20px;
        font-size: 15px;
        line-height: 22px;
    }
}