.promo {
    padding: 393px 0 135px;
    background-size: cover;
    background-position: center;
    background-image: var(--promo-img);
    background-attachment: fixed;
    position: relative;
    isolation: isolate;
    &::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background:
            radial-gradient(55% 45% at 50% 38%, rgba(255, 107, 0, 0.14), transparent 70%),
            radial-gradient(35% 30% at 30% 75%, rgba(255, 149, 0, 0.08), transparent 70%);
        animation: promoGlow 5s ease-in-out infinite;
    }
    &::after {
        content: '';
        position: absolute;
        top: 12%;
        left: 68%;
        width: 90px;
        height: 90px;
        pointer-events: none;
        z-index: 0;
        background: radial-gradient(circle, rgba(255, 149, 0, 0.55) 0%, rgba(255, 149, 0, 0) 68%);
        border-radius: 50%;
        opacity: 0;
        animation: promoSpark 7s ease-in-out infinite;
    }
    .wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        img {
            position: absolute;
            max-width: 407px;
            bottom: -28px;
            z-index: 0;
            transform-origin: 50% 100%;
        }
        *:not(img) {
            z-index: 1;
        }
        & > span {
            margin-bottom: 15px;
            font-size: 22px;
            line-height: 29px;
            font-weight: 700;
            letter-spacing: 2.88px;
            text-transform: uppercase;
            animation: promoTextAppear 0.8s 0.15s ease forwards;
            opacity: 0;
            transform: translateY(20px);
        }
        h1 {
            max-width: 1200px;
            margin-bottom: 54px;
            font-family: 'Oswald';
            font-size: 121px;
            font-weight: 500;
            line-height: 118px;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-align: center;
            animation: promo-text 1s 0.4s forwards linear;
            opacity: 0;
            transform: translateY(30px);
            span {
                font-family: inherit;
                font-size: inherit;
                line-height: inherit;
                letter-spacing: inherit;
                font-weight: inherit;
                text-transform: uppercase;
                color: var(--text-2);
            }
        }
        div {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 29px;
            width: 100%;
            span {
                font-weight: 700;
                font-size: 14px;
                line-height: 17px;
                letter-spacing: 0.28px;
                text-decoration: underline;
                white-space: nowrap;
            }
            .btn {
                width: 100%;
                max-width: 227px;
                position: relative;
                
            }
        }
        p {
            position: absolute;
            right: 60px;
            bottom: -30px;
            max-width: 405px;
            font-size: 18px;
            line-height: 23px;
            animation: promoTextAppear 0.9s 0.7s ease forwards;
            opacity: 0;
            transform: translateY(24px);
        }
        
    }
}
@keyframes promo-text {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes promoGlow {
    0%,
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-12px);
    }
}
@keyframes promoSpark {
    0% {
        opacity: 0;
        transform: translate(0, 40px) scale(0.6);
    }
    12% {
        opacity: 0.9;
    }
    35% {
        opacity: 0.35;
        transform: translate(-60px, -140px) scale(1);
    }
    55% {
        opacity: 0;
        transform: translate(-110px, -300px) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-110px, -300px) scale(0.5);
    }
}
@keyframes promoTextAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Scroll-reveal секций главной: скрытое состояние включается только после инициализации JS.
   Без .js контент всегда виден — если скрипт не загрузится, ничего не прячется.
   Контейнеры карточек (инфраструктура/программы/события/игры) раскрываются каскадом
   по отдельным карточкам ниже, поэтому их самих здесь не прячем. */
.last {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js .last {
    opacity: 0;
    transform: translateY(40px);
}
body.js .last.in {
    opacity: 1;
    transform: none;
}
body.js .last.show {
    opacity: 1;
    transform: translateY(0);
}
/* Карточки в контейнерах скрываем сразу после инициализации JS и раскрываем
   каскадом (ниже) при появлении контейнера во вьюпорте. */
body.js .infrastructure .items .item,
body.js .programs .items .item,
body.js .events .items .item,
body.js .games .items .item {
    opacity: 0;
}
/* Каскадное появление карточек внутри уже раскрытого контейнера. */
body.js .infrastructure .items.in .item,
body.js .programs .items.in .item,
body.js .events .items.in .item,
body.js .games .items.in .item {
    opacity: 0;
    animation: cascadeCard 0.6s ease forwards;
}
body.js .infrastructure .items.show .item,
body.js .programs .items.show .item,
body.js .events .items.show .item,
body.js .games .items.show .item {
    opacity: 1;
}
body.js .infrastructure .items.in .item:nth-child(1),
body.js .programs .items.in .item:nth-child(1),
body.js .events .items.in .item:nth-child(1),
body.js .games .items.in .item:nth-child(1) {
    animation-delay: 0.08s;
}
body.js .infrastructure .items.in .item:nth-child(2),
body.js .programs .items.in .item:nth-child(2),
body.js .events .items.in .item:nth-child(2),
body.js .games .items.in .item:nth-child(2) {
    animation-delay: 0.22s;
}
body.js .infrastructure .items.in .item:nth-child(3),
body.js .programs .items.in .item:nth-child(3),
body.js .events .items.in .item:nth-child(3),
body.js .games .items.in .item:nth-child(3) {
    animation-delay: 0.36s;
}
body.js .infrastructure .items.in .item:nth-child(4),
body.js .programs .items.in .item:nth-child(4),
body.js .games .items.in .item:nth-child(4) {
    animation-delay: 0.5s;
}

body.js .infrastructure .items.in .item:nth-child(5),
body.js .programs .items.in .item:nth-child(5) {
    animation-delay: 0.64s;
}

body.js .infrastructure .items.in .item:nth-child(6) {
    animation-delay: 0.78s;
}

body.js .infrastructure .items.in .item:nth-child(7) {
    animation-delay: 0.92s;
}
@keyframes cascadeCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Появление фото площадки в секции программ (только когда JS активен). */
body.js .programs .wrapper > img {
    opacity: 0;
    scale: 0.94;
    translate: 0 40px;
    transition: opacity 0.9s ease 0.1s, scale 0.9s ease 0.1s, translate 0.9s ease 0.1s;
}
body.js .programs.in .wrapper > img,
body.js .programs.show .wrapper > img {
    opacity: 1;
    scale: 1;
    translate: 0 0;
}
/* Появление заголовка «ПРОГРАММЫ» (fade + подъём + лёгкий масштаб). */
body.js .programs h2 {
    opacity: 0;
    translate: 0 60px;
    scale: 0.96;
    transition: opacity 1s ease 0.05s, translate 1s ease 0.05s, scale 1s ease 0.05s;
}
body.js .programs.in h2,
body.js .programs.show h2 {
    opacity: 1;
    translate: 0 0;
    scale: 1;
}
.section-img {
    img {

    }
}
.infrastructure {
    display: grid;
    grid-template-columns: 590px 1fr;
    gap: 152px;
    padding: 119px 0 85px;
    position: relative;
    align-items: start;
    .info {
        display: flex;
        flex-direction: column;
        position: sticky;
        top: 119px;
        & > span {
            font-size: 18px;
            line-height: 18px;
            letter-spacing: 2.88px;
            color: var(--text-2);
            display: flex;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        h2 {
            font-family: 'Oswald';
            font-size: 64px;
            font-weight: 400;
            line-height: 64px;
            letter-spacing: 1.1px;
            text-transform: uppercase;
            margin-bottom: 330px;
            span {
                font-family: inherit;
                font-size: inherit;
                line-height: inherit;
                letter-spacing: inherit;
                text-transform: uppercase;
                color: var(--text-2);
            }
        }
        p {
            font-size: 32px;
            line-height: 33px;
            font-weight: 500; 
            max-width: 470px;
        }
    }
    .items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr;
        column-gap: 34px;
        max-width: 858px;
        .item {
            display: grid;
            grid-template-rows: auto auto 54px 1fr;
            gap: 13px;
            padding: 44px 19px 63px 38px;
            transition: 0.35s ease;
            border: 1px solid transparent;
            border-radius: 10px;
            will-change: transform;
            transform: translateY(0);
            cursor: pointer;
            &:hover {
                transform: translateY(-6px);
                border-color: rgba(255, 149, 0, 0.35);
            }
            span {
                margin-bottom: 22px;
                font-size: 12px;
                line-height: 16px;
                letter-spacing: 1.8px;
                color: var(--text-2);
            }
            img {
                max-width: 46px;
                margin-bottom: 30px;
            }
            h3 {
                font-size: 22px;
                line-height: 27px;
                font-weight: 700;
                letter-spacing: 0.22px;
                max-width: 280px;
                display: inline-flex;
                align-items: center;
            }
            p {
                font-size: 14px;
                line-height: 17px;
                color: var(--text-4);
                letter-spacing: 0%;
            }
        }
    }
}
.programs {
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 96px;
    h2 {
        margin: 0 auto;
        max-width: max-content;
        text-align: center;
        font-family: 'Oswald';
        font-size: clamp(267px, 19.25vw, 364px);
        line-height: 1;
        font-weight: 700;
        letter-spacing: -20px;
        text-transform: uppercase;
        color: var(--text-2);
        transform: translateX(-20px);
    }
    .wrapper {
        padding-top: 178px;
        position: relative;
        >img {
            max-width: 635px;
            position: absolute;
            top: -85px;
            right: 50%;
            transform: translateX(50%);
            z-index: 2;
        }
        h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 64px;
            line-height: 74px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            max-width: 750px;
            margin-bottom: 26px;
            span {
                font-family: inherit;
                font-size: inherit;
                line-height: inherit;
                letter-spacing: inherit;
                text-transform: uppercase;
                color: var(--text-2);
            }
        }
        .items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            .item {
                display: flex;
                flex-direction: column;
                height: 680px;
                padding: 40px 8px 36px 15px; 
                position: relative;
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid #F5F3EE1A;
                transition: 0.3s linear;
                h4 {
                    font-family: 'Oswald', sans-serif;
                    font-size: 62px;
                    line-height: 93px;
                    font-weight: 600;
                    color: var(--text-5);
                    z-index: 3;
                }
                img {
                    position: absolute;
                    z-index: -1;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 100%;
                    object-position: center;
                    opacity: .55;
                    transition: 0.3s linear;
                }
                div {
                    margin-top: auto;
                    margin-bottom: 23px;
                    position: relative;
                    max-height: 80px;
                    overflow: hidden;
                    z-index: 2;
                    transition: 0.3s linear;
                    p:first-of-type {
                        font-family: 'Oswald';
                        font-size: 37px;
                        line-height: 37px;
                        font-weight: 700;
                        margin-bottom: 17px;
                        strong {
                            font-family: inherit;
                            font-size: inherit;
                            line-height: inherit;
                            font-weight: inherit;
                            color: var(--text-2);
                            display: flex;
                        }
                    }
                    p:not(:first-of-type) {
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 3;
                        line-clamp: 3;
                        overflow: hidden; 
                        font-size: 20px;
                        line-height: 20px;
                    }
                }
                a {
                    font-size: 18px;
                    line-height: 23px;
                    font-weight: 700;
                    margin-left: 7px;
                    position: relative;
                    z-index: 3;
                }
                &::before {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(0deg, rgba(10, 10, 10, 0.96) 8%, rgba(10, 10, 10, 0.25) 55%, rgba(10, 10, 10, 0.55) 100%);
                    transition: .3s linear;
                    z-index: 1;
                }
                &::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    top: 0;
                    left: 0;
                    right: 0;
                    opacity: .55;
                    transition: .3s linear;
                    background: linear-gradient(192.58deg, rgba(10, 10, 10, 0.46) 0%, rgba(10, 10, 10, 0.25) 70%),linear-gradient(31.51deg, rgba(200, 138, 61, 0.16) 0%, rgba(200, 138, 61, 0.16) 0.51%, rgba(200, 138, 61, 0) 0.51%, rgba(200, 138, 61, 0) 6.79%),radial-gradient(148.1% 90.78% at 30% 20%, rgba(255, 90, 31, 0.35) 0%, rgba(255, 90, 31, 0) 55%);
                    z-index: 1;
                }
                &:hover{
                    border-color: rgba(0, 0, 0, 0);
                    div {
                        max-height: 160px;
                    }
                    img {
                        opacity: 1;
                    }
                    &::before {
                        opacity: 0.55;
                    }
                    &::after {
                        opacity: 0;
                    }
                }
            }
        }
    }
}
.tariffs {
    margin-bottom: 173px;
    h2 {
        font-family: 'Oswald';
        font-weight: 400;
        font-size: 64px;
        line-height: 78.6px;
        letter-spacing: 0.84px;
        text-transform: uppercase;
        margin-bottom: 60px;
        span {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            letter-spacing: inherit;
            text-transform: uppercase;
            color: var(--text-2);
        }
    }
    .items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 72px;
        .item {
            background: #161616;
            border: 1px solid rgba(245, 243, 238, 0.1);
            border-radius: 10px;
            padding: 58px 48px 44px;
            position: relative;
            transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
            &:hover {
                transform: translateY(-6px);
                border-color: var(--bg-2);
                box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
            }
            span.banner {
                position: absolute;
                left: 49px;
                top: -16px;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 8px 15px;
                background: var(--bg-2);
                border-radius: 20px;
                font-size: 16px;
                font-weight: 700;
                letter-spacing: 1.7px;
                text-transform: uppercase;
                color: var(--text-6);
            }
            h3 {
                font-weight: 400;
                font-size: 16px;
                line-height: 1;
                letter-spacing: 2.72px;
                text-transform: uppercase;
                margin-bottom: 24px;
                color: #8F8C85;
            }
            p.price {
                font-weight: 500;
                font-size: 18px;
                line-height: 1;
                letter-spacing: 0%;
                color: #8F8C85;
                margin-bottom: 40px;
                display: inline-flex;
                align-items: end;
                span {
                    font-family: 'Oswald';
                    font-weight: 700;
                    font-size: 62px;
                    line-height: 1;
                    letter-spacing: 0%;
                    color: var(--text-5);
                }
            }
            ul {
                margin-bottom: 57px;
                list-style: unset;
                li {
                    display: inline-flex;
                    align-items: center;
                    padding: 16px 0;
                    border-bottom: 1px solid rgba(245, 243, 238, 0.1);
                    width: 100%;
                    gap: 19px;
                    font-size: 20px;
                    line-height: 1;
                    letter-spacing: 0%;
                    &:last-child {
                        border-bottom: none;
                    }
                    &::before {
                        font-family: 'icon';
                    }
                    &.yes {
                        color: var(--text-5);
                        &::before {
                            content: '\e004';
                            font-size: 13px;
                            color: #FF5A1F;
                        }
                    }
                    &.no {
                        color: #8F8C85;
                        &::before {
                            content: '\e005';
                            font-size: 11px;
                        }
                    }
                }
            }
            .button {
                padding: 20px;
                display: block;
                text-align: center;
                width: 100%;
                font-weight: 700;
                font-size: 22px;
                line-height: 1;
                letter-spacing: 0.35px;
                border-radius: 53px;
                background: var(--bg-1);
                border: 1px solid var(--bg-1);
                transition: 0.2s linear;
                color: var(--text-3);
                &:hover {
                    border-color: var(--bg-2);
                    background: #161616;
                    color: var(--text-1);
                }
            }
            &.pro {
                border-color: var(--bg-2);
                .button {
                    background: var(--bg-2);
                    border-color: var(--bg-2);
                    color: var(--text-1);
                    &:hover {
                        border-color: var(--bg-2);
                        background: #161616;
                        color: var(--text-1);
                    }
                }
            }
        }
    }
}
.events {
    margin-bottom: 115px;
    h2 {
        font-family: 'Oswald';
        font-weight: 400;
        font-size: 64px;
        line-height: 78.6px;
        letter-spacing: 0.84px;
        text-transform: uppercase;
        margin-bottom: 60px;
        span {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            letter-spacing: inherit;
            text-transform: uppercase;
            color: var(--text-2);
        }
    }
    >a {
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
        letter-spacing: 0.35px;
        display: block;
        margin: 0 auto;
        justify-self: center;
        color: var(--text-1);
        opacity: 0.6;
        &:hover {
            opacity: 1;
        }
    }
    .items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
        margin-bottom: 60px;
        .item {
            border: 1px solid rgba(245, 243, 238, 0.1);
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.35s ease, border-color 0.35s ease;
            &:hover {
                transform: translateY(-6px);
                border-color: rgba(255, 149, 0, 0.35);
                img {
                    transform: scale(1.05);
                }
            }
            img {
                aspect-ratio: 28/15;
                margin-bottom: 40px;
                transition: transform 0.5s ease;
            }
            span, h3, a {
                margin-left: 36px;
                display: inline-flex;
            }
            span {
                margin-bottom: 15px;
                font-size: 14px;
                line-height: 1;
                letter-spacing: 0.98px;
                text-transform: uppercase;
                color: var(--text-2);
            }
            h3 {
                font-family: 'Oswald';
                font-weight: 700;
                font-size: 22px;
                line-height: 33.57px;
                letter-spacing: 0.26px;
                margin-bottom: 30px;
                color: var(--text-5);
                max-width: 60%;
            }
            a {
                text-decoration: underline;
                font-size: 18px;
                line-height: 1;
                letter-spacing: 0%;
                color: var(--text-5);
                margin-bottom: 43px;
                &:hover {
                    color: var(--text-2);
                }
            }
        }
    }
}
.games {
    margin-bottom: 56px;
    h2 {
        font-family: 'Oswald';
        font-weight: 400;
        font-size: 64px;
        line-height: 78.6px;
        letter-spacing: 0.84px;
        text-transform: uppercase;
        margin-bottom: 94px;
        span {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            letter-spacing: inherit;
            text-transform: uppercase;
            color: var(--text-2);
        }
    }
    >a {
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
        letter-spacing: 0.35px;
        display: block;
        margin: 0 auto;
        justify-self: center;
        color: var(--text-2);
        text-decoration: underline;
        opacity: 0.6;
        &:hover {
            opacity: 1;
        }
    }
    .items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-bottom: 53px;
        .item {
            border: 1px solid rgba(245, 243, 238, 0.1);
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.35s ease, border-color 0.35s ease;
            position: relative;
            &:hover {
                transform: translateY(-6px);
                border-color: rgba(255, 149, 0, 0.35);
                .img img {
                    transform: scale(1.05);
                }
            }
            .img {
                position: relative;
                margin-bottom: 40px;
                aspect-ratio: 57/28;
                img {
                    transition: transform 0.5s ease;
                }
                button {
                    position: absolute;
                    bottom: 24px;
                    left: 24px;
                    font-size: 14px;
                    line-height: 1;
                    letter-spacing: 0.83px;
                    text-transform: uppercase;
                    color: var(--text-3);
                    background: var(--bg-2);
                    border: 1px solid var(--bg-2);
                    transition: 0.3s;
                    padding: 16px 24px;
                    border-radius: 126px;
                    z-index: 3;
                    &:hover {
                        background: var(--bg-1);
                        border-color: var(--bg-2);
                        color: var(--text-2);
                    }
                }
            }
            span, h3, p, >button {
                margin-left: 34px;
                display: inline-flex;
            }
            span {
                margin-bottom: 22px;
                font-size: 15px;
                line-height: 1;
                letter-spacing: 0.98px;
                text-transform: uppercase;
                color: #8F8C85;
            }
            h3 {
                font-family: 'Oswald';
                font-weight: 600;
                font-size: 24px;
                line-height: 31.21px;
                letter-spacing: 0.24px;
                margin-bottom: 25px;
                color: var(--text-5);
            }
            p {
                margin-bottom: 24px;
                font-size: 17px;
                line-height: 1;
                letter-spacing: 0%;
                color: #8F8C85;
            }
            >button {
                margin-bottom: 50px;
                max-width: 227px;
                justify-content: space-between;
                padding: 6px 50px 6px 5px;
                z-index: 3;
            }
            a {
                position: absolute;
                inset: 0;
                z-index: 2;
            }
        }
    }
}
@media screen and (max-width: 1759px) {
    .promo {
        padding: 230px 0 62px;
        position: relative;
        .wrapper {
            position: static;
            img {
                bottom: unset;
                top: 58px;
            }
            h1 {
                font-size: 92px;
                line-height: 92px;
                letter-spacing: 1.21px;
                max-width: 1034px;
                margin-bottom: 86px;
            }
            div {
                margin-bottom: 30px;
            }
            p { 
                position: static;
                align-self: flex-end;
                font-size: 16px;
                line-height: 22px;
                max-width: 350px;
            }
        }
    }
    .infrastructure {
        gap: 28px;
        padding-top: 100px;
        padding-bottom: 100px;
        grid-template-columns: 380px 1fr;
        .info {
            top: 100px;
            >span {
                font-size: 16px;
                line-height: 1;
                letter-spacing: 2.88px;
            }
            h2 {
                font-size: 48px;
                line-height: 50px;
                letter-spacing: 0.64px;
                margin-bottom: 268px;
            }
            p {
                font-size: 21px;
                line-height: 1;
                letter-spacing: 0;
                max-width: 312px;
            }
        }
        .items {
            justify-self: end;
            gap: 90px 50px;
            .item {
                padding: 10px;
                span {
                    margin-bottom: 27px;
                }
            }
        }
    }
    .programs {
        margin-bottom: 70px;
        h2 {
            font-size: clamp(266px, 20.1vw, 364px);
            transform: translateX(-17px);
            letter-spacing: -17px;
        }
        .wrapper {
            padding-top: 290px;
            >img {
                top: -30px;
            }
            h3 {
                font-size: 48px;
                line-height: 50px;
                letter-spacing: 0.79px;
                margin-bottom: 50px;
                max-width: 565px;
            }
            .items {
                gap: 20px;
                .item {
                    padding: 27px 10px 25px;
                    height: 465px;
                    border-radius: 7px;
                    h4 {
                        font-size: 42px;
                        line-height: 1;
                        letter-spacing: 0%;
                    }
                    div {
                        max-height: 46px;
                        p:first-of-type {
                            font-size: 24px;
                            line-height: 21.77px;
                            letter-spacing: 0.18px;
                            margin-bottom: 9px;
                        }
                        p:not(:first-of-type) {
                            font-size: 14px;
                            line-height: 13.61px;
                            letter-spacing: 0%;
                            -webkit-line-clamp: 4;
                            line-clamp: 4;
                        }
                    }
                    a {
                        font-size: 12px;
                        line-height: 1;
                        letter-spacing: 0%;
                        margin-left: 5px;
                    }
                    &:hover {
                        div {
                            max-height: 120px;
                        }
                    }
                }
            }
        }
    }
    .tariffs {
        margin-bottom: 70px;
        h2 {
            font-size: 48px;
            line-height: 50px;
            letter-spacing: 0.57px;
            margin-bottom: 50px;
        }
        .items {
            gap: 24px;
            .item {
                padding: 42px 34px 32px;
                border-radius: 7px;
                span.banner {
                    font-size: 12px;
                    padding: 6px 7px;
                    border-radius: 92px;
                    left: 35px;
                    top: -12px;
                }
                h3 {
                    font-size: 12px;
                    letter-spacing: 1.93px;
                    margin-bottom: 36px;
                }
                p.price {
                    font-size: 13px;
                    margin-bottom: 40px;
                    span {
                        font-size: 44px;
                    }
                }
                ul {
                    margin-bottom: 40px;
                    li {
                        font-size: 14px;
                        gap: 10px;
                        padding: 12px 0;
                        &.yes {
                            &::before {
                                font-size: 9px;
                            }
                        }
                        &.no {
                            &::before {
                                font-size: 8px;
                            }
                        }
                    }
                }
                .button {
                    padding: 15px;
                    font-size: 14px;
                    letter-spacing: 0.25px;
                }
            }
        }
    }
    .events {
        margin-bottom: 70px;
        h2 {
            font-size: 48px;
            line-height: 50px;
            letter-spacing: 0.57px;
            margin-bottom: 50px;
        }
        >a {
            font-size: 14px;
            letter-spacing: 0.24px;
            color: var(--text-2);
        }
        .items {
            gap: 24px;
            margin-bottom: 50px;
            .item {
                border-radius: 7px;
                img {
                    margin-bottom: 27px;
                }
                span, h3, a {
                    margin-left: 25px;
                }
                span {
                    font-size: 12px;
                    letter-spacing: 0.67px;
                }
                h3 {
                    margin-bottom: 28px;
                    font-size: 14px;
                    line-height: 16px;
                    letter-spacing: 0.18px;
                }
                a {
                    margin-bottom: 29px;
                    font-size: 12px;
                }
            }
        }
    }
    .games {
        margin-bottom: 70px;
        h2 {
            font-size: 48px;
            line-height: 50px;
            letter-spacing: 0.57px;
            margin-bottom: 50px;
        }
        >a {
            font-size: 14px;
            letter-spacing: 0.24px;
        }
        .items {
            gap: 24px;
            margin-bottom: 50px;
            .item {
                border-radius: 7px;
                .img {
                    margin-bottom: 25px;
                    button {
                        left: 16px;
                        bottom: 16px;
                        font-size: 12px;
                        padding: 11px 17px;
                    }
                }
                span, h3, p, >button {
                    margin-left: 25px;
                }
                span {
                    font-size: 12px;
                    letter-spacing: 0.67px;
                    margin-bottom: 15px;
                }
                h3 {
                    margin-bottom: 16px;
                    font-size: 16px;
                    line-height: 20px;
                    letter-spacing: 0.16px;
                }
                p {
                    font-size: 12px;
                    margin-bottom: 22px;
                }
                >button {
                    margin-bottom: 34px;
                    padding: 4px 32px 4px 3px;
                    font-size: 12px;
                    max-width: 152px;
                    &::before {
                        width: 28px;
                        min-width: 28px;
                        height: 28px;
                        font-size: 10px;
                    }
                }
            }
        }
    }
}
.last {
    border-radius: 7px;
    padding: 140px 40px 103px;
    gap: 82px;
    h2 {
        font-size: 70px;
        line-height: 73px;
        letter-spacing: 0.69px;
        max-width: 837px;
    }
    .btn {
        transition: box-shadow 0.35s ease, transform 0.35s ease;
        &:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 34px rgba(255, 107, 0, 0.35);
        }
    }
}
@media screen and (max-width: 1279px) {
    .promo {
        padding: 353px 0 308px;
        margin-top: 40px;
        .wrapper {
            img {
                top: 62px;
            }
            >span {
                font-size: 14px;
                line-height: 1;
                letter-spacing: 1.87px;
            }
            h1 {
                font-size: 64px;
                line-height: 60px;
                letter-spacing: 0.79px;
                margin-bottom: 47px;
                max-width: 672px;
            }
            div {
                gap: 26px;
            }
            p {
                font-size: 14px;
                line-height: 16px;
            }
        }
    }
    .infrastructure {
        padding-top: 116px;
        padding-bottom: 50px;
        grid-template-columns: 100%;
        gap: 50px;
        .info {
            position: static;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0 45px;
            align-items: flex-end;
            >span {
                margin-bottom: 16px;
                grid-column: 1/2;
            }
            h2 {
                font-size: 40px;
                line-height: 1;
                margin-bottom: 0;
                grid-column: 1/2;
            }
            p {
                grid-column: 2/3;
                font-size: 14px;
                line-height: 16px;
            }
        }
        .items {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 45px;
            max-width: unset;
            .item {
                padding: 15px;
                grid-template-rows: auto auto 48px 1fr;
                span {
                    margin-bottom: 20px;
                }
                img {
                    max-width: 42px;
                    margin-bottom: 27px;
                }
                h3 {
                    font-size: 20px;
                    line-height: 24.76px;
                    margin-bottom: 11px;
                }
                p {
                    font-size: 12px;
                    line-height: 13.5px;
                }
            }
        }
    }
    .programs {
        margin-bottom: 50px;
        h2 {
            font-size: clamp(162px, 20dvw, 364px);
            transform: translateX(-12px);
            letter-spacing: -12px;
        }
        .wrapper {
            padding-top: 255px;
            >img {
                max-width: 570px;
                top: -20px;
            }
            h3 {
                font-size: 40px;
                line-height: 1;
                letter-spacing: 0.79px;
                margin-bottom: 70px;
                max-width: 470px;
            }
            .items {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                .item {
                    padding: 20px 20px 55px;
                    border-radius: 2px;
                    height: 400px;
                    img {
                        width: 100%;
                        transform: unset;
                    }
                    h4 {
                        font-size: 56px;
                        text-transform: uppercase;
                        line-height: 1;
                    }
                    &::before {
                        opacity: 0.55;
                    }
                    &::after {
                        opacity: 0.55;
                    }
                    div {
                        max-height: unset;
                        p:first-of-type {
                            margin-bottom: 22px;
                            font-family: 'Oswald';
                            line-height: 21px;
                            letter-spacing: 0.05px;
                        }
                        p:not(:first-of-type) {
                            font-size: 12px;
                            line-height: 13px;
                        }
                    }
                    a {
                        font-size: 15px;
                    }
                    &:hover {
                        border: 1px solid #F5F3EE1A;
                        &::before {
                            opacity: 0.55;
                        }
                        &::after {
                            opacity: 0.55;
                        }
                        img {
                            opacity: 0.55;
                        }
                        div {
                            max-height: unset;
                        }
                    }
                }
            }
        }
    }
    .tariffs {
        margin-bottom: 50px;
        h2 {
            font-size: 40px;
            line-height: 1;
        }
        .items {
            grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
            gap: 38px;
            .item {
                padding: 47px 38px 40px 31px;
                border-radius: 8px;
                h3 {
                    font-size: 14px;
                    letter-spacing: 2.22px;
                    margin-bottom: 40px;
                }
                p.price {
                    font-size: 15px;
                    margin-bottom: 50px;
                    span {
                        font-size: 50px;
                    }
                }
                ul {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
                    gap: 0 35px;
                    li {
                        font-size: 16px;
                        gap: 13px;
                        padding: 14px 0;
                        &.yes {
                            &::before {
                                font-size: 11px;
                            }
                        }
                        &.no {
                            &::before {
                                font-size: 9px;
                            }
                        }
                    }
                }
                &:last-child {
                    grid-column: 1/-1;
                }
                .button {
                    max-width: 362px;

                }
            }
        }
    }
    .events {
        margin-bottom: 50px;
        h2 {
            font-size: 40px;
            line-height: 1;
        }
        .items {
            display: flex;
            flex-wrap: wrap;
            .item {
                flex-grow: 1;
                flex-basis: calc(33.333% - 24px);
                min-width: 300px;
            }
        }
    }
    .games {
        margin-bottom: 50px;
        h2 {
            font-size: 40px;
            line-height: 1;
        }
        .items {
            display: flex;
            flex-wrap: wrap;
            .item {
                flex-grow: 1;
                flex-basis: calc(33.333% - 24px);
                min-width: 300px;
                .img {
                    margin-bottom: 46px;
                    button {
                        left: 25px;
                        bottom: 25px;
                    }
                }
                span, h3, p, >button {
                    padding-right: 20px;
                }
                h3 {
                    margin-bottom: 30px;
                }
                p {
                    margin-bottom: 42px;
                }
                >button {
                    padding: 4px 65px 4px 3px;
                }
            }
        }
    }
    .last {
        padding: 103px 20px 73px;
        margin-bottom: 25px;
        gap: 70px;
        h2 {
            font-size: 64px;
            line-height: 73px;
        }
    }
}
@media screen and (max-width: 1040px) {
    .programs {
        h2 {
            font-size: clamp(162px, 20.4dvw, 364px);
        }
    }
}
@media screen and (max-width: 767px) {
    body {
        position: relative;
    }
    .promo {
        margin-top: 39px;
        padding: 128px 0 137px;
        background-image: var(--promo-mob-img, var(--promo-img));
        .wrapper {
            img {
                top: 30px;
                width: 198px;
            }
            >span {
                font-size: 12px;
                letter-spacing: 0.91px;
            }
            h1 {
                font-size: 32px;
                line-height: 29px;
                letter-spacing: 0.38px;
                margin-bottom: 30px;
                max-width: 327px;
            }
            div {
                gap: 18px;
                max-width: 370px;
                margin-bottom: 33px;
                span {
                    font-size: 12px;
                    line-height: 1.2;
                    letter-spacing: 0.14px;
                    text-align: center;
                    white-space: unset;
                }
                .btn {
                    max-width: 186px;
                    justify-content: space-between;
                    padding-right: 22px;
                }
            }
            p {
                font-size: 12px;
                line-height: 1;
                letter-spacing: 0px;
                max-width: 186px;
            }
        }
    }
    .infrastructure {
        padding-top: 30px;
        padding-bottom: 55px;
        gap: 38px;
        .info {
            gap: 15px;
            grid-template-columns: 100%;
            max-width: 185px;
            >span {
                margin-bottom: 0;
                font-size: 12px;
            }
            h2 {
                font-size: 28px;
                line-height: 1;
                letter-spacing: 0.31px;
            }
            p {
                display: none;
            }
        }
        .items {
            gap: 30px 15px;
            .item {
                padding: 5px;
                grid-template-rows: 12px 30px 36px 1fr;
                gap: 10px;
                span {
                    line-height: 1;
                    letter-spacing: 0.79px;
                    margin-bottom: 0;
                }
                img {
                    max-width: 30px;
                    margin-bottom: 0;
                }
                h3 {
                    font-size: 16px;
                    line-height: 1;
                    letter-spacing: 0.1px;
                    margin-bottom: 0;
                    align-self: center;
                }
                p {
                    line-height: 10.6px;
                }
            }
        }
    }
    .programs {
        margin-bottom: 35px;
        h2 {
            font-size: clamp(80px, 19.6dvw, 162px);
            letter-spacing: -6px;
            transform: translateX(-6px);
        }
        .wrapper {
            padding-top: 127px;
            >img {
                max-width: 278px;
                top: -10px;
            }
            h3 {
                font-size: clamp(20px, 5.3dvw, 40px);
                letter-spacing: 0%;
                margin-bottom: 25px;
                max-width: clamp(228px, 60dvw, 340px);
            }
            .items {
                grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
                gap: 20px;
                .item {
                    div{
                        p:first-of-type {
                            font-size: 20px;
                        }
                    }
                }
            }
        }
    }
    .tariffs {
        margin-bottom: 20px;
        h2 {
            font-size: clamp(20px, 5.3dvw, 40px);
            margin-bottom: 10px;
        }
        .items {
            gap: 20px;
            grid-template-columns: 100%;
            .item {
                padding: 23px 85px 13px 20px;
                border-radius: 4px;
                span.banner {
                    left: 19px;
                    padding: 7px 11px 6px;
                    line-height: 1;
                }
                h3 {
                    font-size: 12px;
                    letter-spacing: 1.08px;
                    margin-bottom: 20px;
                }
                p.price {
                    margin-bottom: 24px;
                    font-size: 12px;
                    span {
                        font-size: 24px;
                    }
                }
                ul {
                    grid-template-columns: 100%;
                    margin-bottom: 15px;
                    li {
                        font-size: 12px;
                        padding: 7px 0;
                        &.yes {
                            &::before {
                                font-size: 6px;
                            }
                        }
                        &.no {
                            &::before {
                                font-size: 6px;
                            }
                        }
                    }
                }
                &.standard {
                    ul {
                        li.yes {
                            grid-column: unset;
                            &:nth-child(3) {
                                border-bottom: 1px solid rgba(245, 243, 238, 0.1);
                            }
                        }
                        li.no {
                            &:nth-child(4) {
                                grid-area: unset;
                            }
                            &:last-child {
                                grid-area: unset;
                            }
                        }
                    }
                }
                .button {
                    padding: 9px 22px;
                    font-size: 12px;
                    letter-spacing: 0.14px;
                    max-width: 177px;
                }
            }
        }
    }
    .events {
        margin-bottom: 30px;
        h2 {
            font-size: clamp(20px, 5.3dvw, 40px);
            margin-bottom: 30px;
        }
        .items {
            gap: 20px;
            span, h3, a {
                margin-left: 20px;
            }
        }
    }
    .games {
        margin-bottom: 26px;
        margin-bottom: 30px;
        h2 {
            font-size: clamp(20px, 5.3dvw, 40px);
            margin-bottom: 25px;
        }
        .items {
            gap: 20px;
            margin-bottom: 30px;
            .item {
                .img {
                    margin-bottom: 22px;
                    button {
                        left: 16px;
                        bottom: 14px;
                        font-size: 12px;
                        padding: 10px 16px;
                    }
                }
                span, h3, p, >button {
                    margin-left: 20px;
                }
                span {
                    margin-bottom: 13px;
                }
                h3 {
                    font-size: 14px;
                    line-height: 18px;
                    letter-spacing: 0.14px;
                    margin-bottom: 15px;
                }
                p {
                    margin-bottom: 20px;
                }
                >button {
                    padding: 4px 20px 4px 3px;
                    max-width: 135px;
                    margin-bottom: 30px;
                }
            }
        }
    }
    .last {
        margin-bottom: 0;
        padding: 45px 10px 26px;
        gap: 35px;
        h2 {
            font-size: 30px;
            line-height: 36px;
            letter-spacing: 0.34px;
            max-width: 345px;
        }
        div {
            flex-direction: column-reverse;
            gap: 20px;
            p {
                font-size: 12px;
            }
            .btn {
                font-size: 12px;
                padding: 3px 34px 3px 3px;
                justify-content: space-between;
                width: 200px;
                &::before {
                    width: 20px;
                    min-width: 20px;
                    height: 20px;
                    font-size: 7px;
                    font-weight: 400;
                }
            }
        }
    }
}
@media (prefers-reduced-motion: reduce) {
    .promo {
        background-attachment: scroll;
    }
    .promo::before,
    .promo::after {
        animation: none;
        opacity: 0;
    }
    .promo .wrapper > span,
    .promo .wrapper h1,
    .promo .wrapper p {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .infrastructure .items,
    .programs .items,
    .events .items,
    .games .items,
    .last {
        transition: none;
    }
    .infrastructure .items .item,
    .programs .items .item,
    .events .items .item,
    .games .items .item {
        animation: none !important;
        opacity: 1 !important;
    }
    .programs .wrapper > img {
        transition: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
    .programs h2 {
        transition: none;
        opacity: 1;
        translate: 0 0;
        scale: 1;
    }
}

@supports (-webkit-touch-callout: none) {
    .promo {
        background-attachment: scroll;
    }
}