:root {
    --page-bg: #2b2b2b;
    --card-bg: #31363a;
    --accent: #00657b;
    --accent-dark: #0e3a43;
    --yellow: #ffc000;
    --white: #ffffff;
    --text-dark: #2b2b2b;
    --muted-line: rgba(255, 255, 255, 0.2);
    --page-max: 1920px;
    --container: 1733px;
    --edge: 94px;
    --ease: 0.22s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--page-bg);
}

body {
    margin: 0;
    color: var(--white);
    font-family: var(--font-main);
    background: var(--page-bg);
    line-height: 1.35;
}

body.is-menu-open {
    overflow: hidden;
}

img,
svg,
video,
picture {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    appearance: none;
}

.wrapper {
    min-width: 320px;
    max-width: var(--page-max);
    margin-inline: auto;
    overflow: hidden;
}

.container {
    width: min(calc(100% - (var(--edge) * 2)), var(--container));
    margin-inline: auto;
}

.hidden-trap,
.popup-template {
    display: none;
}

.section-title {
    margin: 0;
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: 0;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease);
    white-space: normal;
}

.btn--accent {
    background: var(--accent);
}

.btn--accent:hover {
    background: #08798f;
}

.not_agree .lead-form__submit,
.not_agree .lead-form__submit:hover {
    background: #8d8d8d;
    border-color: #8d8d8d;
    color: var(--white);
}

.btn--outline {
    border-color: var(--white);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.btn--yellow {
    color: var(--text-dark);
    background: var(--yellow);
}

.btn--yellow:hover {
    background: #ffd34a;
}

.site-header {
    position: relative;
    z-index: 20;
    background: var(--page-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__grid {
    display: grid;
    grid-template-columns: 213px 185px 330px 260px 230px 226px;
    align-items: center;
    gap: 28px;
    min-height: 79px;
}

.site-logo img {
    width: 213px;
    height: auto;
}

.site-header__dealer {
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.site-header__item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-size: 13px;
    line-height: 1.1;
}

.site-header__item img {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
}

.site-header__phone {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-align: right;
    text-decoration: none;
    white-space: nowrap;
}

.site-header .btn {
    min-height: 47px;
    padding: 12px 24px;
    font-size: 14px;
}

.site-burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    cursor: pointer;
}

.site-burger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform var(--ease), opacity var(--ease);
}

.hero {
    position: relative;
    height: min(839px, 43.75vw);
    min-height: 520px;
    isolation: isolate;
    background: #111;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    display: none;
}

.hero-nav {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 39px;
    padding-inline: var(--edge);
    background: rgba(43, 43, 43, 0.96);
    border-top: 1px solid #404040;
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.hero-nav a {
    text-decoration: none;
}

.hero-nav__models,
.hero-nav__sections {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-offer {
    position: absolute;
    top: clamp(52px, 3.18vw, 61px);
    left: 50%;
    z-index: 1;
    height: clamp(290px, 17.22vw, 330.64px);
    width: min(clamp(790px, 49.375vw, 948px), calc(100% - 40px));
    color: var(--text-dark);
    text-align: center;
    transform: translateX(-50%);
}

.hero-offer__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(201px, 12.552vw, 241px);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2.65px);
    -webkit-backdrop-filter: blur(2.65px);
}

.hero-offer__copy {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: clamp(201px, 12.552vw, 241px);
    border-radius: 5px;
}

.hero-offer__june {
    position: absolute;
    bottom: calc( -69px + 34vw );
    /* transform: none; */
    color: white;
    font-size: 4vw;
    display: block;
    height: auto;
    max-height: max-content;
}
.hero-offer__june span {}
.hero-offer__june strong {
    color: var(--yellow);
}

.hero-offer__title {
    position: absolute;
    top: clamp(70px, 4.375vw, 84px);
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(660px, 100%);
    min-height: clamp(93px, 5.833vw, 112px);
    margin-inline: auto;
    font-size: clamp(33px, 2.083vw, 40px);
    line-height: 1.39;
    transform: translate(-50%, -50%);
}

.hero-offer__title span:first-child {
    font-weight: 700;
    text-transform: uppercase;
}

.hero-offer__title span:last-child {
    font-weight: 400;
}

.hero-offer__badge {
    position: absolute;
    top: clamp(131px, 8.177vw, 157px);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: clamp(70px, 4.375vw, 84px);
    padding: 6px clamp(20px, 1.563vw, 30px);
    border-radius: 5px;
    background: linear-gradient(90deg, #01657b 0%, #0e3b44 100%);
    color: var(--white);
    font-size: clamp(40px, 2.5vw, 48px);
    font-weight: 400;
    line-height: 1.485;
    white-space: nowrap;
}

.hero-offer__amount {
    font-weight: 700;
}

.hero-offer__currency {
    font-family: "Inter", var(--font-main);
    font-weight: 400;
}

.hero-offer__button {
    position: absolute;
    top: clamp(220px, 13.75vw, 264px);
    left: 50%;
    z-index: 1;
    width: min(clamp(420px, 26.381vw, 506.53px), 100%);
    height: clamp(56px, 3.47vw, 66.64px);
    min-height: clamp(56px, 3.47vw, 66.64px);
    padding: clamp(14px, 0.99vw, 19px) 30px;
    font-size: clamp(15px, 0.885vw, 17px);
    line-height: 1.55;
    overflow: clip;
    transform: translateX(-50%);
}

.gift {
    background: var(--page-bg);
}

.gift-ticker {
    display: flex;
    align-items: center;
    height: 63px;
    overflow: hidden;
    background: var(--accent);
}

.gift-ticker__track {
    display: flex;
    align-items: center;
    gap: 37px;
    min-width: max-content;
    animation: ticker 28s linear infinite;
}

.gift-ticker__track span {
    position: relative;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.gift-ticker__track span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -23px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
    transform: translateY(-50%);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.gift__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: clamp(48px, calc(100% - 1619px), 113px);
    align-items: center;
    min-height: 230px;
}

.gift__content {
    display: grid;
    grid-template-columns: minmax(300px, 457px) minmax(380px, 460px);
    gap: clamp(42px, 9.47vw, 182px);
    align-items: center;
    min-width: 0;
}

.gift h2 {
    margin: 0;
    font-size: clamp(36px, 2.5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.gift__timer {
    width: min(460px, 100%);
    min-width: 0;
}

.sinoby-timer[data-sinoby-reserve="sinoby-cnb4ng"] {
    display: block;
    min-height: 117px;
}

.lead-form {
    margin: 0;
}

.form-group {
    margin: 0;
}

.form-control {
    width: 100%;
    height: 60px;
    border: 0;
    border-radius: 0;
    padding: 0 27px;
    color: #30363a;
    background: var(--white);
    font-size: 16px;
    outline: none;
}

.form-control::placeholder {
    color: rgba(48, 54, 58, 0.5);
}

.has-danger .form-control {
    box-shadow: inset 0 0 0 2px #d83f3f;
}

.gift__form {
    display: grid;
    gap: 13px;
    width: 100%;
    justify-self: end;
}

.gift__form .btn {
    width: 100%;
    min-height: 67px;
}

.agree-field {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    color: var(--white);
    font-size: 15px;
    line-height: 1.35;
    cursor: pointer;
}

.agree-field__box {
    position: relative;
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    border: 1px solid var(--white);
}

.agree-field__box input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.agree-field__box i {
    position: absolute;
    left: 9px;
    top: 4px;
    width: 7px;
    height: 15px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    opacity: 0;
}

.agree-field__box input:checked + i {
    opacity: 1;
}

.agree-field__text {
    min-width: 0;
}

.agree-field a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.agree_error .agree-field {
    color: #ffd1d1;
}

.agree_error .agree-field__text {
    color: #ffd1d1;
}

.agree_error .agree-field__box {
    border-color: #d83f3f;
}

.models {
    padding: 0;
    background: var(--page-bg);
}

.models__list {
    display: grid;
    width: min(100%, 1712px);
    gap: 142px;
    margin-top: 68px;
    margin-left: 3px;
}

.models .section-title {
    line-height: 56px;
}

.model-row {
    --row-gallery-height: 493px;
    --row-gap: 37px;
    display: grid;
    grid-template-columns: 835px 840px;
    gap: var(--row-gap);
    align-items: start;
    position: relative;
}

.model-row--info-left {
    grid-template-columns: 840px 835px;
}

.model-row--info-left .model-row__info {
    order: 1;
}

.model-row--info-left .model-gallery {
    order: 2;
}

.model-gallery {
    --gallery-gap: 7px;
    --gallery-height: 493px;
    --thumb-width: 170px;
    --main-width: 658px;
    --arrow-size: 40px;
    --arrow-prev-top: -20px;
    --arrow-next-top: calc(100% - 20px);
    --thumb-center-x: calc(var(--thumb-width) / 2);
    display: grid;
    grid-template-columns: var(--thumb-width) var(--main-width);
    gap: var(--gallery-gap);
    align-items: stretch;
    position: relative;
    min-width: 0;
    width: min(100%, calc(var(--thumb-width) + var(--gallery-gap) + var(--main-width)));
    height: var(--gallery-height);
    overflow: visible;
}

.model-row--info-left .model-gallery {
    grid-template-columns: var(--main-width) var(--thumb-width);
    --thumb-center-x: calc(100% - (var(--thumb-width) / 2));
}

.model-gallery__thumbs {
    order: 1;
}

.model-gallery__main {
    order: 2;
}

.model-row--info-left .model-gallery__main {
    order: 1;
}

.model-row--info-left .model-gallery__thumbs {
    order: 2;
}

.model-gallery__main {
    overflow: hidden;
    background: #1f2225;
}

.model-gallery__main {
    width: 100%;
    height: 100%;
}

.model-gallery__main .swiper-slide,
.model-gallery__main picture,
.model-gallery__main img {
    display: block;
    width: 100%;
    height: 100%;
}

.model-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-gallery__thumbs {
    min-height: 0;
    width: var(--thumb-width);
    height: 100%;
    overflow: hidden;
}

.model-gallery__thumb {
    display: block;
    width: 100%;
    height: 115px;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #1f2225;
    cursor: pointer;
}

.model-gallery__thumb.swiper-slide-thumb-active {
    border-color: transparent;
}

.model-gallery__arrow {
    position: absolute;
    left: var(--thumb-center-x);
    transform: translateX(-50%);
    z-index: 2;
    width: var(--arrow-size);
    height: var(--arrow-size);
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.model-gallery__arrow::before,
.model-gallery__arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
}

.model-gallery__arrow::before {
    width: 2px;
    height: 14px;
    background: var(--white);
    transform: translate(-50%, -50%);
}

.model-gallery__arrow::after {
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--white);
    border-left: 2px solid var(--white);
    transform: translate(-50%, -75%) rotate(45deg);
}

.model-gallery__arrow--prev {
    top: var(--arrow-prev-top);
}

.model-gallery__arrow--next {
    top: var(--arrow-next-top);
}

.model-gallery__arrow--next::after {
    transform: translate(-50%, -25%) rotate(225deg);
}

.model-row__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: var(--row-gallery-height);
    padding-top: 0;
}

.model-row__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 295px;
    align-items: flex-start;
    gap: 28px;
}

.model-row h3 {
    margin: 0;
    padding-top: 8px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.model-price {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    container-type: inline-size;
    width: 295px;
    min-width: 0;
    min-height: 45px;
    padding: 8px 18px 8px 8px;
    color: var(--text-dark);
    background: var(--yellow);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.model-price img {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
}

.model-price span {
    min-width: 0;
    overflow: hidden;
    font-size: clamp(16px, 8cqw, 20px);
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-stock {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 18px;
}

.model-callouts {
    display: grid;
    gap: 14px;
    width: min(459px, 100%);
    margin-top: 14px;
}

.model-callout {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 45px;
    padding: 8px 16px 8px 8px;
    border-radius: 5px;
    font-size: 16px;
}

.model-callout img {
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
}

.model-callout--accent {
    width: min(401px, 100%);
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.model-callout--muted {
    width: min(459px, 100%);
    background: rgba(255, 255, 255, 0.1);
}

.model-benefits {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    gap: 24px 44px;
    margin-top: 32px;
}

.model-benefit {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    font-size: 15px;
    line-height: 1.2;
}

.model-benefit img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 auto;
}

.model-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin-top: auto;
}

.model-actions .btn {
    min-height: 67px;
    padding-inline: 18px;
}

.configurations {
    padding: 135px 0 0;
    background: var(--page-bg);
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 27px;
    margin-top: 85px;
}

.config-card {
    display: grid;
    grid-template-rows: auto auto auto auto;
    justify-self: center;
    width: 100%;
    max-width: 560px;
    padding: 20px 20px 17px;
    background: var(--card-bg);
}

.config-card > * {
    min-width: 0;
}

.config-card__gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    aspect-ratio: 520 / 293;
    overflow: hidden;
    background: #22262a;
}

.config-card__gallery .swiper-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
}

.config-card__image {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #22262a;
}

.config-card__gallery--single .swiper-slide {
    width: 100% !important;
    max-width: 100%;
}

.config-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.config-card .config-card__arrow {
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
}

.config-card .config-card__arrow::before {
    top: 11.65px;
}

.config-card__arrow--prev {
    left: 6.65px;
}

.config-card__arrow--next {
    right: 6.65px;
}

.config-card__arrow.slider-arrow--prev::before {
    left: 14.8px;
}

.config-card__arrow.slider-arrow--next::before {
    left: 15.8px;
}

.config-card__arrow.swiper-button-lock,
.config-card__arrow.swiper-button-disabled {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.config-card h3 {
    margin: 26px 0 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.spec-list {
    display: grid;
    align-content: start;
    gap: 0;
    margin: 0;
    padding: 21px 0 25px;
    border-top: 1px solid var(--muted-line);
    border-bottom: 1px solid var(--muted-line);
    box-sizing: border-box;
}

.spec-list div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    min-height: 40px;
}

.spec-list dt,
.spec-list dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.1;
}

.spec-list dt {
    color: rgba(255, 255, 255, 0.5);
}

.spec-list dd {
    text-align: right;
}

.config-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 5px;
    margin-top: 37px;
    container-type: inline-size;
}

.config-card__actions .btn {
    height: 60px;
    min-height: 60px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.55;
}

.config-card__actions .btn--yellow {
    grid-column: 1 / -1;
}

@container (max-width: 480px) {
    .config-card__actions .btn {
        padding: 8px clamp(6px, 3cqw, 14px);
        font-size: clamp(13px, 3.1cqw, 16px);
        line-height: 1.2;
    }
}

.showroom {
    padding: 105px 0 0;
    background: var(--page-bg);
}

.showroom-slider {
    overflow: visible;
    padding-bottom: 60px;
}

.showroom-slide {
    width: min(860px, calc(100vw - 96px));
    height: 550px;
    opacity: 0.3;
    overflow: hidden;
    transition: opacity var(--ease);
}

.showroom-slide.swiper-slide-active {
    opacity: 1;
}

.showroom-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.slider-arrow::before {
    content: "";
    position: absolute;
    top: 12.28px;
    width: 9.78px;
    height: 17.44px;
    border: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='18' viewBox='0 0 10 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.67 0.68L8.708 8.718L0.67 16.756' stroke='white' stroke-width='1.3397' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9.78px 17.44px;
}

.slider-arrow--prev::before {
    left: 15.63px;
    transform: rotate(180deg);
}

.slider-arrow--next::before {
    left: 16.59px;
    transform: none;
}

.showroom .slider-arrow {
    top: 255px;
}

.showroom .slider-arrow--prev {
    left: calc(50% - 500px);
}

.showroom .slider-arrow--next {
    right: calc(50% - 500px);
}

.showroom-pagination {
    left: 50% !important;
    bottom: 28px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    width: auto !important;
    transform: translateX(-50%);
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: var(--white);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

.reviews {
    padding: 120px 0 0;
    background: var(--page-bg);
}

.reviews__container {
    width: min(1680px, calc(100% - (var(--edge) * 2)));
    margin-top: 92px;
}

.reviews-slider {
    overflow: visible;
    padding-bottom: 60px;
}

.review-card {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    width: min(100%, 1344px);
    min-height: 504px;
    margin-inline: auto;
    background: var(--card-bg);
    overflow: hidden;
}

.review-card__image {
    height: 504px;
    overflow: hidden;
}

.review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 93px 90px 58px 63px;
}

.review-card__content p {
    margin: 0;
    max-width: 572px;
    font-size: 20px;
    line-height: 1.2;
    white-space: pre-line;
}

.review-card__content h3 {
    margin: 120px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.review-card--dense .review-card__content {
    padding-top: 64px;
}

.review-card--dense .review-card__content p {
    font-size: 18px;
}

.review-card--dense .review-card__content h3 {
    margin-top: 36px;
}

.reviews .slider-arrow {
    top: 231px;
}

.reviews .slider-arrow--prev {
    left: -78px;
}

.reviews .slider-arrow--next {
    right: -78px;
}

.reviews-pagination {
    --swiper-pagination-bullet-horizontal-gap: 7px;
    bottom: 14px !important;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 9.8px;
    height: 9.8px;
}

.better-offer {
    position: relative;
    min-height: 678px;
    padding-top: 105px;
    background: var(--page-bg);
}

.better-offer__media {
    position: absolute;
    top: 105px;
    left: 50%;
    width: min(var(--container), calc(100% - (var(--edge) * 2)));
    height: 573px;
    overflow: hidden;
    transform: translateX(-50%);
}

.better-offer__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 81% center;
}

.better-offer__content {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding-top: 55px;
    padding-left: clamp(42px, 3vw, 56px);
}

.better-offer h2 {
    margin: 0 0 61px;
    color: var(--yellow);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.18;
}

.better-offer__form {
    display: grid;
    gap: 27px;
    width: min(613px, 100%);
}

.better-offer__form .btn {
    width: min(347px, 100%);
    min-height: 67px;
    margin-top: 14px;
}

.dealer-section {
    padding: 105px 0 0;
    background: var(--page-bg);
}

.dealer-section__grid {
    display: grid;
    grid-template-columns: 413px 413px minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto 280px auto;
    gap: 26px 27px;
    align-items: start;
}

.dealer-section .section-title {
    grid-column: 1 / 3;
    line-height: 1.1;
}

.dealer-section__video,
.dealer-section__small,
.dealer-section__main {
    overflow: hidden;
    background: #1f2225;
}

.dealer-section__video,
.dealer-section__small {
    height: 280px;
}

.dealer-section__video {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dealer-section__video span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.dealer-section__video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dealer-section__video.is-video-ready {
    border-color: transparent;
}

.dealer-section__video.is-video-ready span {
    opacity: 0;
}

.dealer-section__video.is-video-ready .dealer-section__video-player {
    opacity: 1;
}

.dealer-section__small {
    grid-column: 2;
    grid-row: 2;
}

.dealer-section__main {
    grid-column: 3 / 5;
    grid-row: 2 / 4;
    height: 653px;
}

.dealer-section__small img,
.dealer-section__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.dealer-section__text {
    grid-column: 1 / 3;
    grid-row: 3;
    padding-top: 24px;
}

.dealer-section__text p {
    margin: 0 0 17px;
    max-width: 780px;
    font-size: 14px;
    line-height: 1.25;
}

.dealer-section__text p:first-child {
    font-size: 17px;
    line-height: 1.2;
}

.dealer-section__text .btn {
    margin-top: 44px;
    min-width: 333px;
    min-height: 67px;
}

.quiz-section {
    padding: 147px 0 0;
    background: var(--page-bg);
}

.quiz-section .container {
    width: min(1624px, calc(100% - var(--edge) * 2));
}

.quiz-shell {
    --quiz-min-height: 683px;
    position: relative;
    min-height: var(--quiz-min-height);
    background: var(--card-bg);
    overflow: hidden;
    isolation: isolate;
}

.quiz-panel {
    position: relative;
    display: none;
    min-height: var(--quiz-min-height);
}

.quiz-panel.is-active {
    display: block;
}

.quiz-panel--start {
    min-height: var(--quiz-min-height);
}

.quiz-panel--start.is-active {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.quiz-panel__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.quiz-panel__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-panel--start .quiz-panel__bg img {
    object-position: center center;
}

.quiz-panel--start .quiz-panel__bg {
    position: relative;
    inset: auto;
    z-index: 0;
    grid-column: 2;
    grid-row: 1;
    height: var(--quiz-min-height);
}

.quiz-panel--start .quiz-panel__shade {
    display: none;
}

.quiz-panel--result .quiz-panel__bg img {
    object-position: center center;
}

.quiz-panel__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(43, 43, 43, 0.88) 0%, rgba(43, 43, 43, 0.72) 42%, rgba(43, 43, 43, 0.18) 100%);
}

.quiz-panel__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--quiz-min-height);
    padding: 64px;
}

.quiz-panel--start .quiz-panel__content {
    grid-column: 1;
    grid-row: 1;
    min-height: var(--quiz-min-height);
    padding: 0 63px;
    background: var(--card-bg);
}

.quiz-panel__content h2,
.quiz-main h2 {
    max-width: 640px;
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.18;
}

.quiz-panel--start h2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 640px;
    font-size: 36px;
    line-height: 1.23;
}

.quiz-panel__content p,
.quiz-main p {
    max-width: 560px;
    margin: 32px 0 36px;
    font-size: 16px;
    line-height: 1.45;
}

.quiz-panel--start .quiz-panel__content p {
    max-width: 650px;
    margin: 31px 0 44px;
    font-size: 16px;
    line-height: 1.2;
}

.quiz-start-btn {
    width: min(240px, 100%);
    min-height: 67px;
}

.quiz-panel--start .quiz-start-btn {
    width: 201px;
    min-height: 73px;
    padding: 20px 36px 20px 42px;
    gap: 15px;
    font-size: 16px;
    line-height: 1.4;
}

.quiz-start-btn img {
    width: 25px;
    height: 25px;
}

.quiz-layout {
    display: grid;
    grid-template-columns: minmax(300px, 418px) minmax(0, 1fr);
    gap: 52px;
    align-items: stretch;
    min-height: var(--quiz-min-height);
    padding: 48px 56px;
}

.quiz-consultant {
    display: grid;
    grid-template-rows: minmax(0, 390px) auto;
    min-width: 0;
    background: #252a2e;
}

.quiz-consultant__photo {
    min-height: 0;
    overflow: hidden;
}

.quiz-consultant__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.quiz-consultant__body {
    padding: 25px 28px 30px;
}

.quiz-consultant__body h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.quiz-consultant__body p {
    margin: 9px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.25;
}

.quiz-consultant__body span {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.45;
}

.quiz-main {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
}

.quiz-main__top {
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr);
    gap: 20px;
    align-items: center;
    max-width: 780px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1;
}

.quiz-progress {
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.quiz-progress i {
    display: block;
    height: 100%;
    background: var(--yellow);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 780px;
    margin-top: 36px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 70px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-dark);
    background: var(--white);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}

.quiz-option:hover,
.quiz-option.is-selected {
    border-color: var(--accent);
    color: var(--white);
    background: var(--accent);
}

.quiz-option__mark {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.quiz-option.is-selected .quiz-option__mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: currentColor;
}

.quiz-back {
    align-self: flex-start;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 5px;
    cursor: pointer;
}

.quiz-back:hover {
    color: var(--white);
}

.quiz-form {
    display: grid;
    gap: 14px;
    width: min(520px, 100%);
    margin-top: 30px;
}

.quiz-form .btn {
    width: 100%;
    min-height: 67px;
}

.contacts-section {
    position: relative;
    min-height: 889px;
    padding-top: 147px;
    background: var(--page-bg);
}

.contacts-section__map {
    position: relative;
    height: 742px;
    overflow: hidden;
    color: #222;
    background: #e5e3df;
}

.contacts-section__map-loading {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.55;
}

.contacts-section__overlay {
    position: absolute;
    left: 50%;
    top: 217px;
    transform: translateX(-50%);
    pointer-events: none;
}

.contacts-card {
    width: 504px;
    min-height: 451px;
    padding: 84px;
    color: var(--white);
    background: var(--page-bg);
    pointer-events: auto;
}

.contacts-card h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.contacts-card__dealer {
    margin: 22px 0 70px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    text-transform: uppercase;
}

.contacts-card__phone {
    display: block;
    margin-bottom: 45px;
    font-size: 24px;
    line-height: 1.4;
    text-decoration: none;
}

.contacts-card p:not(.contacts-card__dealer) {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.4;
}

.site-footer {
    padding: 60px 0 34px;
    background: var(--page-bg);
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.site-footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 29px;
    min-width: 0;
}

.site-footer__logo {
    width: 396px;
    height: 44px;
    object-fit: fill;
    flex: 0 0 auto;
}

.site-footer__dealer {
    margin-top: 23px;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-footer__contacts {
    display: flex;
    min-width: 334px;
    padding-top: 3px;
    flex-direction: column;
    align-items: flex-end;
}

.site-footer__phone {
    width: 334px;
    font-size: 27px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: none;
    text-align: right;
    white-space: nowrap;
}

.site-footer__note {
    width: 296px;
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.25;
    text-align: right;
}

.site-footer__company {
    display: grid;
    gap: 8px;
    margin-top: 7px;
    font-size: 14px;
    line-height: 25px;
}

.site-footer__company p,
.site-footer__legal p,
.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    margin-top: 63px;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 14px;
}

.site-footer__legal p + p {
    margin-top: 4.66px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 63px;
    font-size: 12px;
    text-transform: uppercase;
}

.site-footer__bottom a {
    font-size: 13px;
    text-transform: none;
}

.popup-container {
    width: min(560px, calc(100vw - 32px));
    color: var(--white);
    background: var(--card-bg);
}

.popup-form {
    display: grid;
    gap: 18px;
    padding: 42px;
}

.form-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
}

.form-desc {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.35;
}

.popup-form .btn {
    width: 100%;
}

.fancybox-content {
    padding: 0;
    background: transparent;
}

@media (max-width: 1919px) {
    :root {
        --edge: 30px;
    }

    .models__list {
        margin-left: 0;
    }
}

@media (max-width: 1771px) {
    :root {
        --edge: 30px;
    }

    .reviews .slider-arrow--prev {
        left: 14px;
    }

    .reviews .slider-arrow--next {
        right: 14px;
    }

    .better-offer__media img {
        object-position: 74% center;
    }

    .site-header__grid {
        grid-template-columns: 190px 150px minmax(230px, 1fr) 225px 205px 200px;
        gap: 22px;
    }

    .site-logo img {
        width: 190px;
    }

    .gift__grid {
        grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
        gap: clamp(36px, 4.1vw, 72px);
    }

    .gift__content {
        grid-template-columns: minmax(300px, 380px) minmax(380px, 460px);
        gap: clamp(32px, 4.2vw, 74px);
    }

    .model-row {
        --row-gap: clamp(24px, 2.18vw, 37px);
        grid-template-columns: minmax(0, 835fr) minmax(0, 840fr);
        align-items: stretch;
    }

    .model-row--info-left {
        grid-template-columns: minmax(0, 840fr) minmax(0, 835fr);
    }

    .model-gallery {
        --gallery-gap: clamp(5px, 0.42vw, 7px);
        --thumb-width: clamp(125px, 9.18vw, 170px);
        --arrow-size: clamp(36px, 4.76%, 40px);
        --arrow-prev-top: -18px;
        --arrow-next-top: calc(100% - 18px);
        grid-template-columns: var(--thumb-width) minmax(0, 1fr);
        width: 100%;
        height: auto;
        aspect-ratio: 835 / 493;
    }

    .model-row--info-left .model-gallery {
        grid-template-columns: minmax(0, 1fr) var(--thumb-width);
    }

    .model-row__info {
        min-height: 0;
    }

    .model-row h3 {
        font-size: clamp(24px, 1.76vw, 30px);
    }

    .model-price {
        gap: clamp(9px, 0.82vw, 14px);
        width: clamp(244px, 17.35vw, 295px);
        min-height: clamp(38px, 2.65vw, 45px);
        padding: 7px clamp(12px, 1.05vw, 18px) 7px 8px;
        font-size: 16px;
    }

    .model-price img,
    .model-callout img {
        width: clamp(25px, 1.71vw, 29px);
        height: clamp(25px, 1.71vw, 29px);
    }

    .model-stock {
        margin-top: clamp(16px, 1.29vw, 22px);
        font-size: clamp(12px, 0.82vw, 14px);
        line-height: 1.25;
    }

    .model-callouts {
        gap: clamp(8px, 0.82vw, 14px);
        margin-top: clamp(10px, 0.82vw, 14px);
    }

    .model-callout {
        gap: clamp(10px, 0.88vw, 15px);
        min-height: clamp(38px, 2.65vw, 45px);
        padding: 7px clamp(12px, 0.94vw, 16px) 7px 8px;
        font-size: clamp(13px, 0.94vw, 16px);
    }

    .model-benefits {
        gap: clamp(14px, 1.41vw, 24px) clamp(24px, 2.59vw, 44px);
        margin-top: clamp(22px, 1.88vw, 32px);
    }

    .model-benefit {
        gap: clamp(12px, 1.05vw, 18px);
        font-size: clamp(13px, 0.88vw, 15px);
    }

    .model-benefit img {
        width: clamp(31px, 2.35vw, 40px);
        height: clamp(31px, 2.35vw, 40px);
    }

    .model-actions .btn {
        min-height: clamp(54px, 3.94vw, 67px);
        padding-inline: clamp(12px, 1.05vw, 18px);
        font-size: clamp(14px, 1vw, 17px);
    }

    .models__list {
        width: 100%;
        margin-left: 0;
    }
}

@media (min-width: 1280px) and (max-width: 1771px) {
    .model-benefits {
        gap: clamp(12px, 1vw, 18px) clamp(22px, 2vw, 34px);
        margin-top: clamp(18px, 1.45vw, 24px);
    }

    .model-benefit {
        gap: clamp(10px, 0.85vw, 14px);
        font-size: clamp(12.5px, 0.82vw, 14px);
    }

    .model-benefit img {
        width: clamp(28px, 2vw, 34px);
        height: clamp(28px, 2vw, 34px);
    }

    .model-actions .btn {
        min-height: clamp(48px, 3.1vw, 54px);
        padding-inline: clamp(10px, 0.9vw, 15px);
        font-size: clamp(13px, 0.88vw, 15px);
        line-height: 1.15;
    }
}

@media (max-width: 1365px) {
    :root {
        --edge: 32px;
    }

    .site-header__grid {
        grid-template-columns: 190px 1fr auto 44px;
    }

    .site-header__dealer,
    .site-header__item--address,
    .site-header__item--time,
    .site-header .btn {
        display: none;
    }

    .site-burger {
        display: inline-flex;
        justify-self: end;
        grid-column: 4;
    }

    .site-header__phone {
        grid-column: 3;
        justify-self: end;
    }

    body.is-menu-open .site-burger span:nth-child(1),
    .site-burger.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.is-menu-open .site-burger span:nth-child(2),
    .site-burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    body.is-menu-open .site-burger span:nth-child(3),
    .site-burger.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.is-menu-open .hero-nav {
        position: fixed;
        z-index: 30;
        inset: 79px 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 18px 42px;
        width: 100%;
        height: auto;
        padding: 22px 32px;
        background: var(--card-bg);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    }

    body.is-menu-open .hero-nav__models,
    body.is-menu-open .hero-nav__sections {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 34px;
    }

    .hero {
        height: 600px;
        min-height: 0;
    }

    .hero-offer {
        top: 52px;
        height: 290px;
        width: min(790px, calc(100% - 40px));
    }

    .hero-offer__backdrop,
    .hero-offer__copy {
        height: 201px;
    }

    .hero-offer__title {
        top: 70px;
        min-height: 93px;
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-offer__badge {
        top: 131px;
        height: 70px;
        min-height: 70px;
        font-size: 38px;
        line-height: 1.35;
    }

    .hero-offer__button {
        top: 220px;
        height: 56px;
        min-height: 56px;
    }

    .hero-nav {
        display: none;
    }

    .gift__grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
        gap: 32px;
    }

    .gift__content {
        grid-template-columns: minmax(260px, 330px) minmax(360px, 460px);
        gap: 30px;
    }

    .gift h2 {
        font-size: 36px;
    }

    .gift__form {
        width: min(480px, 100%);
    }

    .dealer-section__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .dealer-section .section-title,
    .dealer-section__main,
    .dealer-section__text {
        grid-column: 1 / -1;
    }

    .dealer-section__main {
        grid-row: 3;
        height: 520px;
    }

    .dealer-section__text {
        grid-row: 4;
    }

    .quiz-layout {
        gap: 38px;
        padding: 42px 44px;
    }

    .quiz-consultant {
        grid-template-rows: minmax(0, 350px) auto;
    }

    .quiz-panel__content h2,
    .quiz-main h2 {
        font-size: 36px;
    }

}

@media (max-width: 1279px) {
    .gift__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: 0;
        padding-block: 42px;
    }

    .gift__content {
        grid-template-columns: minmax(0, 520px);
        justify-content: center;
        justify-items: center;
        gap: 22px;
        text-align: center;
    }

    .gift__form {
        width: min(520px, 100%);
        justify-self: center;
    }

    .config-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1279px) {
    .model-row,
    .model-row--info-left {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .model-row--info-left .model-row__info,
    .model-row--info-left .model-gallery {
        order: initial;
    }

    .model-gallery,
    .model-row--info-left .model-gallery {
        width: 100%;
    }

    .model-row--info-left .model-gallery {
        margin-top: 0;
    }

    .model-actions {
        margin-top: 28px;
    }
}

@media (max-width: 991px) {
    :root {
        --edge: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero {
        height: 600px;
        min-height: 0;
    }

    .hero__media img {
        object-position: 45% center;
    }

    .hero-offer {
        top: 38px;
        height: 270px;
        width: min(790px, calc(100% - 32px));
    }

    .hero-offer__backdrop,
    .hero-offer__copy {
        height: 200px;
    }

    .hero-offer__title {
        top: 60px;
        min-height: 92px;
        width: min(660px, 100%);
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-offer__badge {
        top: 236px;
        height: auto;
        min-height: 76px;
        padding: 10px 20px;
        font-size: 32px;
        line-height: 1.18;
        white-space: normal;
    }

    .hero-offer__button {
        top: 218px;
        width: min(420px, 100%);
        height: 60px;
        min-height: 60px;
    }

    .gift h2 {
        font-size: 36px;
    }

    .models {
        padding-top: 60px;
    }

    .models__list {
        gap: 60px;
        margin-top: 22px;
    }

    .model-gallery,
    .model-row--info-left .model-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
        aspect-ratio: auto;
    }

    .model-gallery__main,
    .model-row--info-left .model-gallery__main {
        order: 1;
        height: auto;
        aspect-ratio: 658 / 493;
    }

    .model-gallery__thumbs {
        order: 2;
        width: 100%;
        height: 82px;
    }

    .model-gallery__arrow {
        display: none;
    }

    .model-gallery__thumb {
        height: 82px;
    }

    .model-row__top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 295px;
        gap: 16px;
    }

    .model-benefits {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }

    .model-actions {
        margin-top: 28px;
    }

    .configurations {
        padding-top: 60px;
    }

    .config-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

    .config-card {
        min-height: auto;
    }

    .showroom-slide {
        height: 420px;
    }

    .showroom .slider-arrow {
        top: 189px;
    }

    .showroom .slider-arrow--prev {
        left: 22px;
    }

    .showroom .slider-arrow--next {
        right: 22px;
    }

    .reviews {
        padding-top: 40px;
    }

    .reviews__container {
        margin-top: 20px;
    }

    .review-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .review-card__image {
        height: auto;
    }

    .review-card__image img {
        display: block;
        height: auto;
        object-fit: contain;
    }

    .review-card__content {
        padding: 36px;
    }

    .review-card__content p {
        font-size: 18px;
    }

    .review-card__content h3,
    .review-card--dense .review-card__content h3 {
        margin-top: 32px;
    }

    .reviews .slider-arrow {
        top: calc((100vw - (var(--edge) * 2)) * 0.6);
    }

    .reviews .slider-arrow--prev {
        left: 14px;
    }

    .reviews .slider-arrow--next {
        right: 14px;
    }

    .better-offer {
        min-height: 620px;
        padding-top: 60px;
    }

    .better-offer__media {
        top: 60px;
        width: calc(100% - 40px);
        height: 560px;
    }

    .better-offer__content {
        padding-top: 42px;
    }

    .dealer-section {
        padding-top: 60px;
    }

    .quiz-section {
        padding-top: 40px;
    }

    .quiz-shell,
    .quiz-panel {
        min-height: 0;
    }

    .quiz-panel__content {
        min-height: 520px;
        padding: 52px 36px;
    }

    .quiz-layout {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 26px;
        padding: 32px;
    }

    .quiz-consultant {
        grid-template-columns: 180px minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .quiz-consultant__photo {
        height: 220px;
    }

    .quiz-main {
        padding: 8px 0;
    }

    .quiz-main h2 {
        font-size: 32px;
    }

    .quiz-options {
        margin-top: 28px;
    }

    .quiz-panel--start {
        min-height: 0;
    }

    .quiz-panel--start.is-active {
        grid-template-columns: 1fr;
    }

    .quiz-panel--start .quiz-panel__content {
        grid-column: 1;
        grid-row: 1;
        min-height: auto;
        padding: 48px 36px;
    }

    .quiz-panel--start .quiz-panel__bg {
        grid-column: 1;
        grid-row: 2;
        height: 420px;
    }

    .contacts-section {
        min-height: auto;
        padding-top: 80px;
    }

    .contacts-section__map {
        height: 680px;
    }

    .contacts-section__overlay {
        top: 110px;
    }

    .contacts-card {
        width: min(504px, calc(100vw - 40px));
        padding: 52px;
    }

    .site-footer__top {
        display: grid;
        gap: 28px;
    }

    .site-footer__brand {
        display: grid;
        gap: 14px;
    }

    .site-footer__dealer {
        margin-top: 0;
    }

    .site-footer__contacts {
        min-width: 0;
        padding-top: 0;
        align-items: flex-start;
    }

    .site-footer__phone {
        width: auto;
        text-align: left;
    }

    .site-footer__note {
        width: auto;
        margin-top: 12px;
        text-align: left;
    }

    .site-footer__company {
        margin-top: 34px;
    }

    .site-footer__legal {
        margin-top: 42px;
        padding-top: 28px;
    }

    .site-footer__bottom {
        margin-top: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .contacts-section {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: auto;
        padding-top: 80px;
    }

    .contacts-section__overlay {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
        transform: none;
        pointer-events: auto;
    }

    .contacts-section__map {
        order: 2;
        height: 620px;
    }

    .contacts-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
        gap: 22px 48px;
        width: 100%;
        min-height: auto;
        padding: 48px;
    }

    .contacts-card h2,
    .contacts-card__dealer {
        grid-column: 1;
    }

    .contacts-card__dealer {
        margin: 0;
    }

    .contacts-card__phone,
    .contacts-card p:not(.contacts-card__dealer) {
        grid-column: 2;
    }

    .contacts-card__phone {
        margin: 0 0 18px;
    }

    .config-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .config-card {
        padding: 18px;
    }

    .config-card h3 {
        margin-top: 22px;
        margin-bottom: 18px;
        font-size: 21px;
        line-height: 1.22;
    }

    .config-card__actions {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 28px;
    }

    .config-card__actions .btn {
        height: 56px;
        min-height: 56px;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 32px);
        padding-bottom: 0;
        /* margin-top: 20px; */
    }

    .site-header__grid {
        min-height: 68px;
        grid-template-columns: 150px 1fr 44px;
        gap: 14px;
    }

    .site-logo img {
        width: 150px;
    }

    .site-header__phone {
        grid-column: 2;
        justify-self: end;
        font-size: 14px;
    }

    .site-burger {
        grid-column: 3;
    }

    body.is-menu-open .hero-nav {
        position: fixed;
        z-index: 30;
        inset: 68px 16px auto;
        display: grid;
        gap: 18px;
        height: auto;
        padding: 22px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: var(--card-bg);
    }

    body.is-menu-open .hero-nav__models,
    body.is-menu-open .hero-nav__sections {
        display: grid;
        gap: 18px;
    }

    .hero {
        height: auto;
        /* height: 1060px; */
        min-height: 0;
        position: relative;
    }

    .hero__media {
        position:static;
    }

    .hero__media img {
        object-position: 53% center;
    }

    .hero-offer {
        top: 0px;
        bottom: 0;
        height: auto;
        width: calc(100% - 24px);
        gap: 14px;
    }

    .hero-offer__backdrop {
        display: none;
    }
    
    .hero-offer__copy {
        height: auto;
        background: none;
    }

    .hero-offer__title {
        font-size: 4.5vw;
        line-height: 1.18;
        top: 15vw;
        min-height: auto;
        z-index: 2;
        transform: translate(-50%, 0%);
    }

    .hero-offer__title strong {
        font-size: 8vw;
        text-transform: uppercase;
    }

    .hero-offer__badge {
        display: block;
        min-height: 0;
        padding: 15px 14px;
        font-size: 6.7vw;
        line-height: 1.15;
        top: 37vw;
        width: 86%;
        left: 7%;
        border-radius: 0;
        white-space: nowrap;
    }

    .hero-offer__currency {
        margin-left: 6px;
    }

    .btn {
        width: 100% !important;
        min-height: 56px;
        padding: 14px 18px;
        font-size: 15px;
    }

    .hero-offer__button {
        width: min(340px, 100%);
        min-height: 56px;
        top: auto;
        transform: none;
        left: 0;
        position: static;
        margin-top: 25px;
        max-width: 86%;
    }

    .gift-ticker__track span {
        font-size: 16px;
    }

    .gift h2 {
        font-size: 30px;
    }

    .gift__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gift__timer {
        width: min(460px, 100%);
    }

    .sinoby-timer[data-sinoby-reserve="sinoby-cnb4ng"] {
        min-height: 85px;
    }

    .model-row h3 {
        font-size: 26px;
    }

    .model-row__top {
        grid-template-columns: 1fr;
    }

    .model-price {
        min-width: 0;
        width: min(295px, 100%);
    }

    .model-actions {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        margin-top: 34px;
    }

    .config-card {
        padding: 16px;
    }

    .config-card h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .config-card__actions {
        grid-template-columns: 1fr;
    }

    .showroom {
        padding-top: 60px;
    }

    .showroom-slide {
        width: calc(100vw - 32px);
        height: 300px;
    }

    .showroom-pagination {
        bottom: 32px !important;
    }

    .showroom-pagination .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
        margin: 0 !important;
    }

    .showroom .slider-arrow {
        top: 129px;
    }

    .reviews-slider {
        padding-bottom: 44px;
    }

    .review-card__image {
        height: auto;
    }

    .review-card__image img {
        display: block;
        height: auto;
        object-fit: contain;
    }

    .review-card__content {
        min-height: 0;
        padding: 22px 20px 24px;
    }

    .review-card__content p {
        font-size: 16px;
    }

    .review-card__content h3,
    .review-card--dense .review-card__content h3 {
        margin-top: 18px;
    }

    .reviews .slider-arrow {
        top: calc((100vw - 32px) * 0.6);
    }

    .better-offer {
        min-height: auto;
        padding: 56px 0;
        padding-bottom: 0;
    }

    .better-offer__media {
        position: absolute;
        inset: 56px 16px 56px;
        width: auto;
        height: auto;
        transform: none;
    }

    .better-offer__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(43, 43, 43, 0.52);
    }

    .better-offer__content {
        padding-left: 0;
        padding-right: 0;
    }

    .better-offer h2 {
        font-size: 28px;
    }

    .dealer-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .dealer-section .section-title,
    .dealer-section__video,
    .dealer-section__text {
        grid-column: 1;
        grid-row: auto;
        padding-top: 0;
    }

    .dealer-section__small,
    .dealer-section__main {
        display:none;
    }

    .dealer-section__main {
        height: 380px;
    }

    .dealer-section__text .btn {
        min-width: 0;
        margin-top: 0;
    }

    .quiz-panel__content {
        min-height: 470px;
        padding: 38px 24px;
    }

    .quiz-panel__content h2,
    .quiz-main h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .quiz-panel__content p,
    .quiz-main p {
        margin: 24px 0 30px;
    }

    .quiz-layout {
        gap: 20px;
        padding: 20px;
    }

    .quiz-consultant {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .quiz-consultant__photo {
        height: 136px;
    }

    .quiz-consultant__body {
        padding: 16px;
    }

    .quiz-consultant__body h3 {
        font-size: 18px;
    }

    .quiz-consultant__body p {
        margin-bottom: 0;
        font-size: 13px;
    }

    .quiz-consultant__body span {
        display: none;
    }

    .quiz-main__top {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }

    .quiz-options {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .quiz-option {
        min-height: 56px;
        padding: 10px 16px;
        font-size: 15px;
    }

    .quiz-form {
        margin-top: 24px;
    }

    .quiz-back {
        margin-top: 22px;
    }

    .quiz-panel--start .quiz-panel__content {
        padding: 34px 24px;
    }

    .quiz-panel--start h2 {
        gap: 10px;
        font-size: 28px;
        line-height: 1.18;
    }

    .quiz-panel--start .quiz-panel__content p {
        margin: 22px 0 28px;
        font-size: 16px;
        line-height: 1.35;
    }

    .quiz-panel--start .quiz-panel__bg {
        height: 320px;
    }

    .contacts-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
    }

    .contacts-section__map {
        order: 2;
        height: 620px;
        max-height: 50vh;
    }

    .contacts-section__overlay {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
        transform: none;
        pointer-events: auto;
    }

    .contacts-card {
        width: 100%;
        min-height: auto;
        padding: 36px 28px;
        padding: 0;
        gap: 10px;
        display: flex;
        flex-direction: column;
        /* text-align: center; */
    }

    .contacts-card p {margin: 0 !important;padding:0;}

    .contacts-card__dealer {
        margin-bottom: 0px;
        margin-top: 0;
        line-height: 120%;
    }

    .contacts-card__phone {
        padding-bottom:0;
        margin-bottom: 0;
    }

    .site-footer__logo {
        width: min(320px, 100%);
        height: auto;
        aspect-ratio: 395.89 / 43.9878;
    }

    .site-footer__phone {
        font-size: 24px;
        line-height: 30px;
    }

    .site-footer__bottom {
        display: grid;
    }

    .popup-form {
        padding: 32px 20px;
    }

    .form-title {
        font-size: 28px;
    }
}

@media (max-width: 430px) {
    .site-header__grid {
        grid-template-columns: 132px 1fr 40px;
    }

    .site-logo img {
        width: 132px;
    }

    .site-header__phone {
        font-size: 13px;
    }

    .model-gallery__thumb {
        min-height: 55px;
    }

    .spec-list div {
        grid-template-columns: minmax(0, 1fr) minmax(0, auto);
        gap: 12px;
        padding: 9px 0;
    }

    .spec-list dd {
        text-align: right;
    }
}








