.main-hero {
    position: relative;
    width: 100%;
    min-height: 55rem;
    color: #fff;
    background: #050607;
    overflow: hidden;
    border-radius: 0;
}

.hero-container {
    width: min(var(--container), calc(100% - 7.2rem));
    margin-inline: auto;
}

/* HEADER BASE */
/* =========================
   HEADER
========================= */

.hero-header {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 500;
    width: 100%;
    pointer-events: none;
}

/* внешний контейнер шапки шире */
.hero-header .hero-container {
    width: min(152rem, calc(100% - 3.2rem));
    margin-inline: auto;
}

/* сама плашка шапки */
.hero-header__inner {
    position: relative;
    min-height: 7.8rem;
    padding: 0 4rem;

    display: grid;
    grid-template-columns: auto auto minmax(22rem, 1fr) auto;
    align-items: center;
    gap: 2.4rem;

    border-radius: 2rem;
    background: rgba(10, 10, 10, 0.72);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(1.8rem);
    -webkit-backdrop-filter: blur(1.8rem);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);

    pointer-events: auto;
}

/* ограничение контента внутри до 144rem */
.hero-header__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    max-width: 144rem;
    margin-inline: auto;
    pointer-events: none;
}

/* =========================
   LOGO
========================= */

.hero-logo {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 0 0 auto;

    color: #fff;
    text-decoration: none;
}

.hero-logo__img {
    height: 4.4rem;
    width: auto;
    object-fit: contain;
}

.logo-text,
.hero-logo span {
    color: #fff;
    font-family: inherit;
    font-size: 1.4rem;
    line-height: 1.1;
}

/* =========================
   DESKTOP NAV
========================= */

.hero-desktop-nav {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.hero-nav-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;

    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    cursor: pointer;
}

.hero-nav-btn:hover {
    color: var(--yellow, #ffe16a);
}

.hero-city {
    flex-shrink: 0;
}

.hero-nav-icon {
    width: 2.2rem;
    height: 2.2rem;
    flex: 0 0 2.2rem;
    object-fit: contain;
}

.hero-nav-btn__chevron {
    width: 0.7rem;
    height: 0.7rem;
    flex: 0 0 0.7rem;
    margin-left: 0.2rem;

    border-right: 0.15rem solid currentColor;
    border-bottom: 0.15rem solid currentColor;

    transform: rotate(45deg) translateY(-0.2rem);
    transition: transform 0.18s ease;
}

.hero-nav-btn:hover .hero-nav-btn__chevron,
.hero-nav-btn.active .hero-nav-btn__chevron {
    transform: rotate(225deg) translate(-0.1rem, -0.1rem);
}

/* =========================
   DROPDOWN BASE
========================= */

.hero-dropdown {
    position: absolute;
    top: calc(100% + 1.2rem);
    left: 0;
    z-index: 80;

    min-width: 24rem;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 0.4rem;

    background: rgba(255, 255, 255, 0.98);
    border: 0.1rem solid rgba(0, 0, 0, 0.08);
    border-radius: 1.8rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.24);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.8rem);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

/* мостик между кнопкой и меню */
.hero-nav-btn::after {
    content: "";
    position: absolute;
    left: -1rem;
    right: -1rem;
    top: 100%;
    height: 1.6rem;
}

/* открытие */
.hero-nav-btn:hover > .hero-dropdown,
.hero-nav-btn:focus-within > .hero-dropdown,
.hero-nav-btn.active > .hero-dropdown,
.hero-city:hover > .hero-dropdown,
.hero-city:focus-within > .hero-dropdown,
.hero-city.active > .hero-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-dropdown__item {
    width: 100%;
    min-height: 4.2rem;
    padding: 1.1rem 1.3rem;

    display: flex;
    align-items: center;

    border: 0;
    border-radius: 1.1rem;
    background: transparent;

    color: #000;
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: 600;
    text-decoration: none;
    text-align: left;
    white-space: normal;

    cursor: pointer;
    transition: 0.16s ease;
}

.hero-dropdown__item:hover,
.hero-dropdown__item.active {
    background: var(--yellow-soft, #fff1a8);
    color: #000;
}

/* =========================
   LONG STATIC MENU
========================= */

.hero-static-menu {
    position: relative;
}

.hero-static-drop {
    width: max-content;
    min-width: 28rem;
    max-width: min(86rem, calc(100vw - 4rem));

    max-height: min(68vh, 58rem);
    overflow-y: auto;
    overflow-x: hidden;
}

/* 2 колонки для длинного меню */
@media (min-width: 961px) {
    .hero-static-drop {
        display: flex;
        flex-direction: column;
    }
}

/* 3 колонки на широких экранах */
@media (min-width: 1280px) {
    .hero-static-drop {
        display: flex;
        flex-direction: column;
    }
}

/* если меню находится справа */
.hero-static-drop--right {
    left: auto;
    right: 0;
}

/* scrollbar */
.hero-static-drop::-webkit-scrollbar,
.hero-dropdown::-webkit-scrollbar {
    width: 0.8rem;
}

.hero-static-drop::-webkit-scrollbar-track,
.hero-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 99rem;
}

.hero-static-drop::-webkit-scrollbar-thumb,
.hero-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 99rem;
}

.hero-static-drop::-webkit-scrollbar-thumb:hover,
.hero-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.34);
}

/* =========================
   CITY DROPDOWN
========================= */

.city-drop {
    min-width: 24rem;
    max-height: min(56vh, 42rem);
    overflow-y: auto;
}

/* =========================
   SEARCH
========================= */

.hero-search {
    position: relative;
    z-index: 1;

    height: 4.8rem;
    min-width: 22rem;
    max-width: 48rem;

    display: flex;
    align-items: center;
    gap: 1rem;

    padding: 0 1.6rem;

    background: #fff;
    border: 0.1rem solid rgba(255, 255, 255, 0.3);
    border-radius: 1.3rem;
}

.hero-search__submit {
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    flex: 0 0 auto;
    cursor: pointer;
}

.hero-search__submit img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.hero-search__input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;

    color: #000;
    font-size: 1.5rem;
}

.hero-search__input::placeholder {
    color: rgba(0, 0, 0, 0.48);
}

.hero-search-window {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    z-index: 60;
    min-width: min(42rem, calc(100vw - 2.8rem));
    max-height: min(70vh, 58rem);
    padding: 1rem;
    overflow-y: auto;
    display: none;
    border: .1rem solid rgba(0, 0, 0, .08);
    border-radius: 1.6rem;
    background: #fff;
    color: #000;
    box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, .18);
}

.hero-search-window.is-active {
    display: block;
}

.hero-search-window__section + .hero-search-window__section {
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: .1rem solid rgba(0, 0, 0, .08);
}

.hero-search-window__title {
    margin: .2rem .4rem .7rem;
    color: rgba(0, 0, 0, .48);
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-search-window ul {
    display: grid;
    gap: .4rem;
    list-style: none;
}

.hero-search-window__item {
    min-height: 5.6rem;
    padding: .7rem;
    display: grid;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    border-radius: 1.1rem;
    color: #000;
    text-decoration: none;
    transition: .18s ease;
}

.hero-search-window__item:hover {
    background: var(--yellow);
}

.hero-search-window__image {
    width: 4.2rem;
    height: 4.2rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 1rem;
    background: #f7f1e8;
}

.hero-search-window__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-search-window__name {
    min-width: 0;
    overflow: hidden;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-search-window__empty {
    padding: 1rem .7rem;
    color: rgba(0, 0, 0, .52);
    font-size: 1.35rem;
}

.hero-search-window__loading {
    min-height: 5rem;
    padding: .7rem;
    display: grid;
    grid-template-columns: 4.2rem 1fr;
    align-items: center;
    gap: 1rem;
}

.hero-search-window__loading span,
.hero-search-window__loading b {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(90deg, #eee 0%, #f8f8f8 50%, #eee 100%);
    background-size: 200% 100%;
    animation: heroSearchLoading 1s linear infinite;
}

.hero-search-window__loading span {
    width: 4.2rem;
    height: 4.2rem;
}

.hero-search-window__loading b {
    width: 72%;
    height: 1.4rem;
}

.hero-search-window__all {
    min-height: 4.2rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.1rem;
    background: #000;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition: .18s ease;
}

.hero-search-window__all:hover {
    background: var(--yellow);
    color: #000;
}

@keyframes heroSearchLoading {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

/* =========================
   DESKTOP ACTIONS
========================= */

.hero-header__right {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex: 0 0 auto;
}

.hero-rent-btn {
    height: 4.8rem;
    padding: 0 2.4rem;

    display: inline-flex;
    align-items: center;
    gap: 0.9rem;

    border: 0;
    border-radius: 1.2rem;
    background: var(--yellow, #ffe16a);
    color: #000;

    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;

    cursor: pointer;
    transition: 0.18s ease;
}

.hero-rent-btn:hover {
    background: var(--yellow-hover, #ffd84d);
    transform: translateY(-0.1rem);
}

.hero-rent-btn span {
    font-size: 2.2rem;
    line-height: 1;
}

.hero-icon-btn {
    position: relative;

    width: 4.4rem;
    height: 4.4rem;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 1rem;
    background: transparent;

    cursor: pointer;
}

.hero-icon-btn img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-icon-btn__badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;

    min-width: 1.8rem;
    height: 1.8rem;
    padding: 0 0.5rem;

    display: grid;
    place-items: center;

    border-radius: 5rem;
    background: var(--yellow, #ffe16a);
    color: #000;

    font-size: 1.1rem;
    font-weight: 700;
}

/* =========================
   MOBILE ACTIONS
========================= */

.hero-mobile-actions {
    position: relative;
    z-index: 1;

    display: none;
    align-items: center;
    gap: 0.8rem;
    margin-left: auto;
}

.hero-mobile-btn {
    position: relative;

    width: 4.2rem;
    height: 4.2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;

    cursor: pointer;
}

.hero-mobile-btn img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-burger {
    gap: 0.4rem;
}

.hero-burger span {
    width: 1.9rem;
    height: 0.2rem;

    display: block;

    background: #fff;
    border-radius: 99rem;
}

/* =========================
   MOBILE MENU
========================= */

.hero-mobile-menu {
    display: none;

    width: 100%;
    max-height: calc(100vh - 9rem);
    margin-top: 1rem;
    padding: 1rem;

    overflow-y: auto;
    overflow-x: hidden;

    border-radius: 1.6rem;
    background: rgba(10, 10, 10, 0.94);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1.8rem);
    -webkit-backdrop-filter: blur(1.8rem);

    pointer-events: auto;
}

.hero-mobile-menu.is-open {
    display: grid;
    gap: 0.4rem;
}

.hero-mobile-menu__group {
    display: grid;
    gap: 0.4rem;
    padding: 0.6rem 0;
}

.hero-mobile-menu__group + .hero-mobile-menu__group {
    border-top: 0.1rem solid rgba(255, 255, 255, 0.12);
}

.hero-mobile-menu__item {
    padding: 1.3rem 1.4rem;

    display: block;

    border-radius: 1.1rem;

    color: #fff;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 600;
    text-decoration: none;
}

.hero-mobile-menu__item:hover,
.hero-mobile-menu__item.active {
    background: rgba(255, 255, 255, 0.08);
}

.hero-mobile-menu__item--title {
    color: var(--yellow, #ffe16a);
    font-weight: 800;
}

.hero-mobile-menu__item--child {
    padding-left: 2.6rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.4rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {
    .hero-header .hero-container {
        width: min(152rem, calc(100% - 2.8rem));
    }

    .hero-header__inner {
        gap: 1.8rem;
        padding: 0 2rem;
    }

    .hero-desktop-nav {
        gap: 1.5rem;
    }

    .hero-search {
        max-width: 40rem;
    }

    .hero-rent-btn {
        padding: 0 1.8rem;
    }
}

@media (max-width: 1220px) {
    .hero-header__inner {
        grid-template-columns: auto auto minmax(18rem, 1fr) auto;
        gap: 1.4rem;
    }

    .hero-desktop-nav {
        gap: 1.2rem;
    }

    .hero-nav-btn {
        font-size: 1.4rem;
    }

    .hero-search {
        max-width: 32rem;
    }

    .hero-rent-btn {
        padding: 0 1.5rem;
        font-size: 1.4rem;
    }
}

@media (max-width: 1080px) {
    .hero-search {
        max-width: 28rem;
    }

    .hero-rent-btn {
        display: none;
    }
}

@media (max-width: 960px) {
    .hero-header {
        top: 1.2rem;
    }

    .hero-header .hero-container {
        width: calc(100% - 2.4rem);
    }

    .hero-header__inner {
        min-height: 6.4rem;
        padding: 0 1.2rem;

        display: flex;
        align-items: center;
        gap: 1rem;

        border-radius: 1.6rem;
    }

    .hero-logo__img {
        height: 3.7rem;
    }

    .logo-text,
    .hero-logo span {
        font-size: 1.1rem;
    }

    .hero-desktop-nav,
    .hero-search,
    .hero-desktop-actions {
        display: none;
    }

    .hero-mobile-actions {
        display: flex;
    }
}

@media (max-width: 520px) {
    .hero-header {
        top: 0.8rem;
    }

    .hero-header .hero-container {
        width: calc(100% - 1.6rem);
    }

    .hero-header__inner {
        min-height: 6rem;
        padding: 0 1rem;
        border-radius: 1.4rem;
    }

    .hero-logo__img {
        height: 3.2rem;
        max-width: 13rem;
    }

    .logo-text,
    .hero-logo span {
        font-size: 1rem;
    }

    .hero-mobile-actions {
        gap: 0.5rem;
    }

    .hero-mobile-btn {
        width: 3.8rem;
        height: 3.8rem;
        border-radius: 1rem;
    }

    .hero-mobile-btn img {
        width: 2.1rem;
        height: 2.1rem;
    }

    .hero-burger span {
        width: 1.7rem;
    }

    .hero-icon-btn__badge {
        top: -0.35rem;
        right: -0.35rem;
        min-width: 1.6rem;
        height: 1.6rem;
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .hero-logo__img {
        max-width: 12rem;
    }

    .hero-mobile-btn {
        width: 3.5rem;
        height: 3.5rem;
    }

    .hero-mobile-actions {
        gap: 0.4rem;
    }
}




.hero-icon-btn__badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    min-width: 1.8rem;
    height: 1.8rem;
    padding: 0 0.5rem;
    display: grid;
    place-items: center;
    border-radius: 5rem;
    background: var(--yellow);
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-stage {
    position: relative;
    min-height: 55rem;
    overflow: hidden;
    background: #050607;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide--active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*.hero-slide::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 1;*/
/*    pointer-events: none;*/
/*    background:*/
/*        linear-gradient(*/
/*            90deg,*/
/*            rgba(0, 0, 0, 0.92) 0%,*/
/*            rgba(0, 0, 0, 0.76) 33%,*/
/*            rgba(0, 0, 0, 0.28) 62%,*/
/*            rgba(0, 0, 0, 0.36) 100%*/
/*        ),*/
/*        linear-gradient(*/
/*            180deg,*/
/*            rgba(0, 0, 0, 0.26) 0%,*/
/*            rgba(0, 0, 0, 0.08) 44%,*/
/*            rgba(0, 0, 0, 0.52) 100%*/
/*        );*/
/*}*/

.hero-stage__inner {
    position: relative;
    z-index: 3;
    min-height: 55rem;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(78rem, 100%);
    /*padding-top: 7.8rem;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

 .hero-content p {
     margin-bottom: 2.2rem;
 }

.hero-kicker {
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    max-width: none;
    width: max-content;
    margin: 0;
    color: #fff;
    font-family: "Bebas Neue Cyrillic", "Oswald", Inter, Arial, sans-serif;
    font-size: 5.7rem;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero-title__line {
    display: block;
}

.hero-title__line--main {
    white-space: nowrap;
    color: var(--red);
}

.hero-title span:first-child {
    /*color: #e31318;*/
    color: var(--yellow);
}

.hero-main-search {
    width: min(68rem, 100%);
    height: 6.4rem;
    margin-bottom: 3.4rem;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: #fff;
    border-radius: 1.6rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.32);
}

.hero-main-search__submit {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    flex: 0 0 2.4rem;
    cursor: pointer;
}

.hero-main-search__submit img {
    width: 2.4rem;
    height: 2.4rem;
}

.hero-main-search__input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #000;
    font-size: 1.7rem;
    font-weight: 500;
}

.hero-main-search__input::placeholder {
    color: rgba(0, 0, 0, 0.42);
}

.hero-main-search__btn {
    height: 5.2rem;
    padding: 0 2.8rem;
    border: 0;
    border-radius: 1.2rem;
    background: var(--yellow);
    color: #000;
    font-size: 1.55rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.18s ease;
}

.hero-main-search__btn:hover {
    background: var(--yellow-hover);
}

.hero-steps {
    width: min(78rem, 100%);
    margin-bottom: 3.8rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
}

.hero-step {
    min-width: 0;
    padding: 1.4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-align: center;
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}

.hero-step__icon {
    width: 4.8rem;
    height: 4.8rem;
    display: grid;
    place-items: center;
}

.hero-step__icon img {
    width: 3.8rem;
    height: 3.8rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-step__text {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-btn {
    min-height: 5.6rem;
    padding: 0 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.3rem;
    border: 0;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.18s ease;
}

.hero-btn--primary,
.hero-btn--secondary {
    background: var(--yellow);
    color: #000;
}

.hero-btn--secondary {
    background: var(--yellow-soft);
}

.hero-btn:hover {
    background: var(--yellow-hover);
    transform: translateY(-0.1rem);
}

.hero-note-grid {
    width: min(68rem, 100%);
    margin-bottom: 2.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.hero-note {
    padding: 1.8rem;
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.09);
    border: 0.1rem solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.5rem;
    line-height: 1.45;
}

.hero-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.7rem;
}

.hero-slider-nav {
    position: absolute;
    left: 50%;
    bottom: 3rem;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-slider-dot {
    width: 4.6rem;
    height: 0.4rem;
    padding: 0;
    border: 0;
    border-radius: 9rem;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: 0.18s ease;
}

.hero-slider-dot--active {
    background: var(--yellow);
}

@media (max-width: 1200px) {
    .hero-header__inner {
        gap: 1.8rem;
        padding: 0 2rem;
    }

    .hero-header__left,
    .hero-header__right {
        gap: 1.8rem;
    }

    .hero-search {
        width: 34rem;
        flex-basis: 34rem;
    }

    .hero-title {
        font-size: 5.7rem;
    }
}

@media (max-width: 900px) {
    .hero-search,
    .hero-city,
    .hero-header__left .hero-nav-btn:not(.hero-city),
    .hero-rent-btn {
        display: none;
    }

    .hero-header__right {
        margin-left: auto;
    }

    .hero-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1360px) {

    .main-hero {
        min-height: 75vh;
        /*height: 78vh;*/
        max-height: 95rem;
    }

    .hero-stage__inner {min-height: 88vh;}

    .hero-stage {min-height: 75svh;}

}


@media (max-width: 760px) {
    .hero-container {
        width: calc(100% - 2.8rem);
    }

    .main-hero {
        min-height: clamp(38rem, 50svh, 54rem);
        height: clamp(38rem, 50svh, 54rem);
        max-height: 54rem;
        overflow: hidden;
    }

    .hero-stage {
        min-height: clamp(38rem, 50svh, 54rem);
        height: clamp(38rem, 50svh, 54rem);
    }

    .hero-stage__inner {
        min-height: clamp(38rem, 50svh, 54rem);
        height: clamp(38rem, 50svh, 54rem);
        display: flex;
        align-items: center;
    }

    .hero-header {
        top: 0rem;
    }

    .hero-header__inner {
        min-height: 5.8rem;
        height: 5.8rem;
        padding: 0 1rem;
        border-radius: 1.4rem;
    }

    .hero-logo__img {
        height: 3rem;
        max-width: 12.8rem;
    }

    .hero-mobile-actions {
        gap: 0.45rem;
    }

    .hero-mobile-btn {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 1rem;
    }

    .hero-mobile-btn img {
        width: 2rem;
        height: 2rem;
    }

    .hero-mobile-btn--accent {
        font-size: 2rem;
    }

    .hero-burger span {
        width: 1.7rem;
    }

    .hero-icon-btn__badge {
        top: -0.35rem;
        right: -0.35rem;
        min-width: 1.6rem;
        height: 1.6rem;
        font-size: 1rem;
    }

    .hero-slide::before {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.92) 0%,
                rgba(0, 0, 0, 0.78) 56%,
                rgba(0, 0, 0, 0.38) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.18) 0%,
                rgba(0, 0, 0, 0.18) 48%,
                rgba(0, 0, 0, 0.64) 100%
            );
    }

    .hero-bg__img {
        object-position: center;
    }

    .hero-content {
        width: 100%;
        padding-top: 7rem;
        padding-bottom: 3.8rem;
    }

    .hero-kicker {
        margin-bottom: 0.9rem;
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .hero-title {

        width: auto;
        margin-bottom: 0.8rem;
        font-size: 3.4rem;
        line-height: 0.98;
        letter-spacing: 0.01em;
    }

    .hero-title__line--main {
        white-space: normal;
    }

    .hero-note-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1.4rem;
    }

    .hero-note {
        padding: 1.1rem 1.2rem;
        border-radius: 1.2rem;
        font-size: 1.2rem;
        line-height: 1.35;
    }

    .hero-note strong {
        margin-bottom: 0.3rem;
        font-size: 1.35rem;
    }

    .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .hero-btn {
        width: 100%;
        min-height: 4.3rem;
        padding: 0 1.1rem;
        border-radius: 1rem;
        font-size: 1.18rem;
        line-height: 1.12;
        text-align: center;
    }

    .hero-slider-nav {
        bottom: 1.2rem;
    }

    .hero-slider-dot {
        width: 3.2rem;
        height: 0.35rem;
    }
}
@media (max-width: 420px) {
    .main-hero,
    .hero-stage,
    .hero-stage__inner {
        min-height: clamp(36rem, 50svh, 50rem);
        height: clamp(36rem, 50svh, 50rem);
    }

    .hero-content {
        padding-top: 6.8rem;
    }

    .hero-title {
        max-width: 28rem;
        font-size: 2.7rem;
    }

    .hero-actions {
        gap: 0.7rem;
    }

    .hero-btn {
        min-height: 4.1rem;
        padding: 0 0.9rem;
        font-size: 1.08rem;
    }

    .popular-more-btn { display:none}
}






/* =========================
     CREATIVE FOOTER
  ========================= */

#footer {
    position: relative;
    width: min(var(--page-max), 100%);
    margin: 0 auto;
    padding: 9rem var(--side-gap) 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 16% 10%, rgba(255, 225, 106, 0.16), transparent 28%),
        radial-gradient(circle at 86% 26%, rgba(255, 241, 168, 0.08), transparent 32%),
        linear-gradient(135deg, #050505 0%, #111111 48%, #070707 100%);

    color: rgba(255, 255, 255, 0.68);
}

#footer::before {
    content: "PROKKAT.RU";
    position: absolute;
    left: 50%;
    top: 1.8rem;
    transform: translateX(-50%);

    font-size: clamp(7rem, 13vw, 24rem);
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -0.08em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.035);
    white-space: nowrap;
    pointer-events: none;
}

#footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 100%),
        radial-gradient(circle at 50% 0%, rgba(255, 225, 106, 0.08), transparent 36%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 7.2rem));
    margin-inline: auto;
}

.footer-top {
    margin-bottom: 6.4rem;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(36rem, 0.85fr);
    gap: 4rem;
    align-items: end;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: block;
    align-items: center;
    margin-bottom: 2.4rem;
    text-decoration: none;
}

.footer-logo__img {
    height: 4.2rem;
    width: auto;
    object-fit: contain;
}

.footer-big-title {
    max-width: 82rem;
    margin: 0 0 2.2rem;

    color: #fff;
    font-size: clamp(4.2rem, 6vw, 9.6rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.footer-big-title span {
    color: var(--yellow);
}

.footer-tagline {
    max-width: 52rem;
    margin: 0;

    color: rgba(255, 255, 255, 0.58);
    font-size: 1.65rem;
    line-height: 1.6;
    font-weight: 400;
}

.footer-cta {
    padding: 2.4rem;
    border-radius: 2.4rem;

    background: rgba(255, 255, 255, 0.07);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 0.1rem rgba(255, 255, 255, 0.04);
}

.footer-cta-title {
    margin-bottom: 1rem;

    color: #fff;
    font-size: 2.4rem;
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.footer-cta-text {
    margin-bottom: 2rem;

    color: rgba(255, 255, 255, 0.56);
    font-size: 1.45rem;
    line-height: 1.45;
}

.footer-cta-btn {
    min-height: 5rem;
    padding: 0 2.4rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    border-radius: 1.4rem;
    background: var(--yellow);
    color: #000;

    font-size: 1.55rem;
    line-height: 1;
    font-weight: 650;
    text-decoration: none;

    transition: 0.18s ease;
}

.footer-cta-btn:hover {
    background: var(--yellow-hover);
    transform: translateY(-0.15rem);
}

.footer-grid {
    padding: 4.2rem 0 5.2rem;

    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 4.8rem;

    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    min-width: 0;
}

.footer-col-title {
    margin-bottom: 1.8rem;

    color: var(--yellow);
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.footer-link {
    width: fit-content;

    color: rgba(255, 255, 255, 0.58);
    font-size: 1.5rem;
    line-height: 1.35;
    font-weight: 400;
    text-decoration: none;

    transition: 0.18s ease;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(0.35rem);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.soc-btn {
    width: 4.4rem;
    height: 4.4rem;

    display: grid;
    place-items: center;

    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 0.1rem solid rgba(255, 255, 255, 0.12);
    color: #fff;

    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;

    transition: 0.18s ease;
}

.soc-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #000;
    transform: translateY(-0.18rem);
}

.footer-work {
    margin-top: 2.2rem;
    padding: 1.5rem 1.6rem;
    width: fit-content;

    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.07);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    line-height: 1.55;
}

.footer-bottom {
    min-height: 7rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;

    color: rgba(255, 255, 255, 0.38);
    font-size: 1.25rem;
    line-height: 1.4;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.46);
    text-decoration: none;
    transition: 0.18s ease;
}

.footer-bottom-links a:hover {
    color: var(--yellow);
}

/* =========================
   FLOAT CART
========================= */

#float-cart {
    position: fixed;
    right: 3.6rem;
    bottom: 3.6rem;
    z-index: 400;

    width: 5.8rem;
    height: 5.8rem;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: #000;

    cursor: pointer;
    box-shadow: 0 1rem 3.2rem rgba(0, 0, 0, 0.24);

    transition: 0.18s ease;
}

#float-cart:hover {
    background: var(--yellow-hover);
    transform: translateY(-0.2rem) scale(1.04);
}

#float-cart img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

#float-badge {
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;

    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;

    display: none;
    place-items: center;

    border-radius: 99rem;
    background: #000;
    color: #fff;
    border: 0.2rem solid var(--yellow);

    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
}

#float-badge.on {
    display: grid;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-cta {
        max-width: 48rem;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 4rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    #footer {
        padding-top: 6.4rem;
    }

    #footer::before {
        top: 2.4rem;
        font-size: 6.2rem;
        letter-spacing: -0.08em;
    }

    .footer-container {
        width: calc(100% - 2.8rem);
    }

    .footer-top {
        margin-bottom: 4.4rem;
        gap: 2.8rem;
    }

    .footer-logo__img {
        height: 3.6rem;
    }

    .footer-big-title {
        font-size: 4.6rem;
    }

    .footer-tagline {
        font-size: 1.45rem;
    }

    .footer-cta {
        padding: 2rem;
        border-radius: 2rem;
    }

    .footer-cta-title {
        font-size: 2.1rem;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3.2rem 2rem;
        padding: 3.4rem 0 3.8rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-col-title {
        margin-bottom: 1.4rem;
        font-size: 1.08rem;
    }

    .footer-links {
        gap: 0.9rem;
    }

    .footer-link {
        font-size: 1.38rem;
    }

    .footer-work {
        margin-top: 1.8rem;
        font-size: 1.25rem;
    }

    .footer-bottom {
        min-height: auto;
        padding: 2.4rem 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.6rem;
    }

    .footer-bottom-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    #float-cart {
        right: 1.6rem;
        bottom: 1.6rem;
        width: 5.4rem;
        height: 5.4rem;
    }

    #float-cart img {
        width: 2.8rem;
        height: 2.8rem;
    }
}

@media (max-width: 420px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-big-title {
        font-size: 4rem;
    }
}
