:root {
    --color-primary: #5A9AF0;
    --color-secondary: #2DB182;
    --color-dark: #313131;
    --color-gray: #747474;
    --color-light-gray: #E6E6E6;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F9FF;
    --font-family-base: 'Onest', sans-serif;
    --container-width: 82.011vw;
    --container-padding: 1.323vw;
}

/* Smooth scrolling для всей страницы */
html {
    scroll-behavior: smooth;
}

/* Visually hidden class (для screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* General styles */
body {
    font-family: var(--font-family-base);
    color: var(--color-dark);
    background-color: var(--color-bg);
    margin: 0;
    font-size: 0.926vw;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.661vw;
    padding: 1.241vh 1.323vw;
    border-radius: 0.331vw;
    border: 0.066vw solid transparent;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button--outline {
    border-color: var(--color-dark);
    background-color: transparent;
    color: var(--color-dark);
}

.button--outline:hover {
    background-color: var(--color-dark);
    color: var(--color-bg);
}

.button--outline:hover img {
    filter: brightness(0) invert(1);
}

.button--primary {
    background: linear-gradient(104deg, #2DB182 0%, #2FCD96 61%, #2DB182 100%);
    box-shadow: 0 0.372vh 0 0 #25A679;
    color: var(--color-bg-alt, #F4F9FF);
    border-radius: 5.291vw;
    padding: 2.729vh 2.646vw;
    font-size: 0.926vw;
    font-weight: 600;
    text-transform: uppercase;
}
.button--primary:hover {
    transform: translateY(0.124vh);
    box-shadow: 0 0.248vh 0 0 #25A679;
}

/* Header */
.header {
    width: 100%;
}

.header__top {
    padding: 3.474vh 0;
    background: var(--color-bg);
    box-shadow: 0 0.124vh 0.124vh 0 rgba(0, 0, 0, 0.05);
}

.header__top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo__subtitle {
    font-size: 0.728vw;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.033vw;
    margin-top: 1.985vh;
}

.header__partners {
    display: flex;
    align-items: center;
    gap: 2.646vw;
    margin-left: 3.307vw;
    margin-right: auto;
}

.partner img {
    width: 10vw;
}

.partner:nth-child(2) {
    display: none;

}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 1.984vw;
}

.header__messengers {
    display: flex;
    gap: 0.794vw;
}

.header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.496vh;
}

.header__phone {
    font-weight: 500;
    font-size: 0.99vw;
    display: flex;
    align-items: center;
    gap: 0.529vw;
    color: var(--color-gray);

}

.header__email {
    font-size: 0.794vw;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 0.463vw;
}

.header__email img {
    filter: invert(1);
}

.header__auth-button {
    margin-left: 1.323vw;
}

.header__bottom {
    background: rgba(252, 252, 252, 0.8);
    border-top: 0.124vh solid var(--color-light-gray);
    border-bottom: 0.124vh solid var(--color-light-gray);
}

/* Desktop Navigation Styles */
@media (min-width: 1025px) {
    .nav__list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 1.861vh 0;
        width: 100%;
    }

    .nav__item {
        flex: 1;
        text-align: center;
        position: relative;
        white-space: nowrap;
    }

    .nav__item:not(:last-child) {
        border-right: 0.066vw solid var(--color-light-gray);
    }

    .nav__link {
        font-size: 0.875vw;
        color: var(--color-gray);
        transition: color 0.3s ease;
        display: block;
        padding: 0 1vw;
        width: 100%;
        height: 100%;
    }

    .nav__link--active,
    .nav__link:hover {
        color: var(--color-dark);
        font-weight: 500;
    }
}

/* Адаптация навигации для разных размеров экрана (только десктоп) */
@media (min-width: 1920px) {
    .nav__link {
        font-size: 1.175vw;
    }

    .header__phone {
        font-size: 1vw;
    }

    .header__email {
        font-size: 1vw;
    }

    .header__phone img,
    .header__email img{
        width: 1vw;
        height: 1vw;
    }

    .header__auth-button img {
        width: 1vw;
    }

    .header__auth-button {
        font-size: 1vw;
    }

    .messenger img {
        width: 2vw;
        height: 2vw;
    }


    .language-selector__text {
        font-size: 1vw !important;
    }

    .language-selector__flag {
        width: 1.5vw !important;
        height: 1.5vw !important;
    }

    .language-selector__toggle {
        height: 60px !important;
        border-radius: 60px !important;
    }

    .language-selector__option-flag {
        width: 1.5vw !important;
        height: 1.5vw !important;
    }

    .language-selector__option--active .language-selector__option-text, .language-selector__option-text {
        font-size: 1vw !important;
    }

    .quick-implementation__image {
        flex: none;
        width: 45vw;
        height: 45vh;
        object-fit: cover;
    }

    .quick-implementation__card {
        width: 25vw;
        height: 25vh;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .nav__link {
        font-size: 0.85vw;
        padding: 0 0.8vw;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .nav__link {
        font-size: 0.8vw;
        padding: 0 0.6vw;
    }
}

/* Burger Button */
.header__burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 2.481vh 1.323vw;
    box-sizing: border-box;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.481vh;
    border-bottom: 0.124vh solid var(--color-light-gray);
}

.mobile-menu__close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu__controls {
    display: flex;
    align-items: center;
    gap: 0.992vw;
}

.mobile-menu__body {
    flex-grow: 1;
    padding-top: 2.481vh;
}

.mobile-menu .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.481vh;
}
.mobile-menu .nav__item {
    padding: 1.241vh 0;
    width: 100%;
    border-bottom: 0.124vh solid var(--color-light-gray);
}

.mobile-menu .nav__item:not(:last-child)::after {
    display: none;
}

.mobile-menu .nav__link {
    font-size: 1.19vw;
}

.mobile-menu__footer {
    padding-top: 2.481vh;
    border-top: 0.124vh solid var(--color-light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.722vh;
}

.mobile-menu__footer .header__info {
    align-items: center;
}

.mobile-menu__footer .header__partners {
    margin: 0;
}


/* Responsive */
@media (max-width: 79.365vw) {
    .header__partners {
        display: none;
    }
    .header__burger-button {
        display: block;
    }
     .header__contacts {
        display: none;
    }

    .header__auth-button {
        display: none;
    }
}

@media (max-width: 65.609vw) {
    .header__bottom,
    .header__contacts,
    .header__auth-button {
        display: none;
    }
    .header__burger-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header__burger-button img {
        width: 1.587vw;
    }
     .header__top-container {
        justify-content: space-between;
    }
}

@media (max-width: 79.365vw) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 47.146vh;
        position: relative;
    }
     .hero__content {
       margin: 0 auto;
    }
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__visual {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 39.682vw;
        height: 47.146vh;
    }
    .hero__image--laptop {
        width: 100%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
     .hero__image--phone {
        width: 40%;
        left: 10%;
        bottom: -2.481vh;
    }
    .hero__image--kaska {
        width: 25%;
        left: 50%;
        bottom: 40%;
    }
    .hero__video-link {
        left: 50%;
        bottom: 35%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
}


@media (max-width: 50.794vw) {
    .logo__subtitle {
        display: none;
    }
     .header__top {
        padding: 1.861vh 0;
    }
    .hero {
        padding-top: 3.722vh;
    }
    .hero__container {
        padding-bottom: 37.221vh;
    }
    .hero__title {
        font-size: 2.116vw;
    }
    .hero__subtitle {
        font-size: 1.058vw;
    }

    .hero__visual {
       height: 37.221vh;
    }

     .hero__image--phone {
       bottom: -1.241vh;
    }

    .hero__image--kaska {
        bottom: 35%;
    }
     .hero__video-link {
        transform: translateX(-50%) scale(0.9);
    }
}

@media (max-width: 31.746vw) {
    .hero__container {
        padding-bottom: 27.295vh;
    }
    .hero__visual {
       height: 27.295vh;
    }
    .hero__video-link {
       display: none;
    }
}


/* Industries Section */
.industries {
    padding: 14.888vh 0;
}

.industries__container {
    display: flex;
    gap: 6.614vw;
    align-items: flex-start;
}

.industries__info {
    flex: 0 0 auto;
    width: 100%;
    max-width: 26.455vw;
}

.industries__list-wrapper {
    flex: 1 1 auto;
}

.industries__image-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 19.841vw;
}

.industries__title {
    font-size: 2.646vw;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 28.536vh;
    max-width: 23.81vw;
}

.industries__card {
    background-color: var(--color-bg-alt);
    border-radius: 1.984vw;
    padding: 4.963vh 1.323vw 4.963vh 10.582vw;
    position: relative;
    min-height: 18.61vh;
    display: flex;
    align-items: center;
}

.industries__card::before {
    content: '';
    position: absolute;
    left: 2.646vw;
    bottom: 50%;
    transform: translateY(50%);
    width: 5.291vw;
    height: 9.926vh;
    border-radius: 50%;
    background-color: var(--color-primary);
    z-index: 1;
}

.industries__card-img {
    position: absolute;
    left: 2.58vw;
    bottom: 50%;
    transform: translateY(50%);
    width: 5.423vw;
    height: auto;
    z-index: 2;
}

.industries__card-text {
    font-size: 0.992vw;
    line-height: 1.6;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0;
}

.industries__list {
    display: flex;
    flex-direction: column;
}

.industries__item {
    display: flex;
    flex-direction: column;
    border-bottom: 0.124vh solid var(--color-light-gray);
    transition: background-color 0.3s ease;
}

.industries__item:first-child {
    border-top: 0.124vh solid var(--color-light-gray);
}

.industries__item.is-active {
    background-color: var(--color-bg-alt);
}

.industries__item-header {
    display: flex;
    align-items: center;
    padding: 3.102vh 0;
    cursor: pointer;
}

.industries__item-icon {
    margin-right: 1.323vw;
    width: 1.323vw;
    height: 2.481vh;
    flex-shrink: 0;
}

.industries__item-text {
    font-size: 1.19vw;
    line-height: 1.6;
    margin-right: auto;
}

li.industries__item.is-active {
    padding: 15px;
    border-radius: 6px;
}

.industries__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.315vw;
    height: 4.342vh;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.industries__item-link:hover {
    transform: scale(1.1);
    background-color: var(--color-secondary);
}

.industries__item-link img {
    transition: transform 0.3s ease;
}

.industries__item.is-active .industries__item-link img {
    transform: rotate(90deg);
}

.industries__item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
}

.industries__item.is-active .industries__item-content {
    max-height: 500px;
    opacity: 1;
    padding: 0 0 3.102vh 0;
}

.industries__item-description {
    font-size: 1.05vw;
    line-height: 1.6;
    color: var(--color-dark);
    padding-left: calc(1.323vw + 1.323vw);
    padding-right: 3vw;
}

.industries__image-wrapper {
    border-radius: 1.323vw;
    overflow: hidden;
    height: 100%;
    min-height: 60.918vh;
}

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

@media (max-width: 79.365vw) {
    .industries__container {
        flex-wrap: wrap;
        gap: 1.984vw;
    }

    .industries__info {
        max-width: 48%;
    }

    .industries__list-wrapper {
        max-width: 48%;
    }

    .industries__image-wrapper {
        max-width: 100%;
        order: 3;
    }
}

@media (max-width: 65.609vw) {
    .industries {
        padding: 9.926vh 0;
    }

    .industries__container {
        flex-direction: column;
        gap: 2.646vw;
    }

    .industries__info,
    .industries__list-wrapper,
    .industries__image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .industries__title {
        font-size: 2.116vw;
        margin-bottom: 6.203vh;
        text-align: center;
    }

    .industries__card {
        padding: 12.407vh 1.984vw 3.722vh;
        text-align: center;
    }

    .industries__card::before {
        left: 50%;
        top: 2.481vh;
        bottom: auto;
        transform: translateX(-50%);
    }

    .industries__card-img {
        left: 50%;
        top: 3.349vh;
        bottom: auto;
        transform: translateX(-50%);
    }

    .industries__image-wrapper {
       height: 49.628vh;
       min-height: auto;
    }

    .industries__item {
        padding: 2.481vh 0;
    }

    .industries__item-text {
        font-size: 1.058vw;
    }
}

/* System Structure Section */
.system-structure {
    padding: 14.888vh 0;
    background-color: var(--color-bg);
}

.system-structure__title {
    font-size: 2.646vw;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 9.926vh;
}

.system-structure__content {
    display: flex;
    gap: 3.968vw;
    align-items: center;
    background-color: var(--color-bg-alt);
    border-radius: 1.984vw;
    padding: 4.094vh 6.614vw;
}

.system-structure__info {
    flex: 0 0 auto;
    width: 100%;
    max-width: 13.889vw;
    display: flex;
    flex-direction: column;
    gap: 3.722vh;
}

.system-structure__section {
    display: flex;
    flex-direction: column;
    gap: 0.868vh;
}

.system-structure__section-title {
    font-size: 1.124vw;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: var(--color-dark);
}

.system-structure__list {
    display: flex;
    flex-direction: column;
    gap: 0.62vh;
    margin: 0;
    padding: 0;
    list-style: none;
}

.system-structure__list-item {
    font-size: 1.124vw;
    line-height: 1.6;
    color: var(--color-gray);
    padding-left: 1.058vw;
    position: relative;
}

.system-structure__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.397vw;
    height: 0.744vh;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.system-structure__visual {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-structure__image {
    max-width: 130%;
    height: auto;
    border-radius: 0;
    width: 130%;
}

.system-structure__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.661vw;
    padding: 1.241vh 1.984vw;
    background-color: var(--color-primary);
    border-radius: 3.307vw;
    box-shadow: 0 0.496vh 0.744vh 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.992vw);
}

.system-structure__badge--cloud {
    top: 14.268vh;
    right: -1.323vw;
}

.system-structure__badge--mobile {
    bottom: 12.407vh;
    left: 3.638vw;
}

.system-structure__badge-icon {
    width: 1.323vw;
    height: 2.481vh;
    filter: brightness(0) invert(1);
}

.system-structure__badge-text {
    font-size: 0.992vw;
    line-height: 1.6;
    color: var(--color-bg);
    white-space: nowrap;
}

@media (max-width: 79.365vw) {
    .system-structure__content {
        flex-direction: column;
        gap: 2.646vw;
    }

    .system-structure__info {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }

    .system-structure__visual {
        padding: 4.963vh 2.646vw;
    }

    .system-structure__badge--cloud {
        top: 9.926vh;
        right: 2.646vw;
    }

    .system-structure__badge--mobile {
        bottom: 4.963vh;
        left: 2.646vw;
    }
}

@media (max-width: 50.794vw) {
    .system-structure {
        padding: 9.926vh 0;
    }

    .system-structure__title {
        font-size: 2.116vw;
        margin-bottom: 4.963vh;
    }

    .system-structure__info {
        flex-direction: column;
        gap: 1.323vw;
    }

    .system-structure__visual {
        padding: 2.481vh 1.323vw;
    }

    .system-structure__badge {
        padding: 0.993vh 0.992vw;
        font-size: 0.794vw;
    }

    .system-structure__badge-icon {
        width: 1.058vw;
        height: 1.985vh;
    }

    .system-structure__badge--cloud {
        top: 2.481vh;
        right: 1.323vw;
    }

    .system-structure__badge--mobile {
        bottom: 2.481vh;
        left: 1.323vw;
    }
}

/* Steps Section */
.steps {
    padding: 0 0 12.407vh 0;
    background-color: var(--color-bg);
}

.steps__title {
    font-size: 2.646vw;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 12.159vh;
    text-align: center;
}

.steps__container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.steps__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.481vh;
    flex-shrink: 0;
}

.steps__item--1 {
    width: 14.484vw;
}

.steps__item--2,
.steps__item--3,
.steps__item--4,
.steps__item--5 {
    width: 13.228vw;
}

.steps__item--4 {
    overflow: hidden;
}

.steps__badge {
    display: flex;
    align-items: center;
    gap: 0.992vw;
    padding: 1.241vh 0.992vw;
    background-color: var(--color-bg-alt);
    border-radius: 6.614vw;
    height: 6.203vh;
    box-sizing: border-box;
}

.steps__badge--highlight {
    background-color: var(--color-primary);
    gap: 1.323vw;
}

.steps__badge--highlight .steps__label {
    color: var(--color-bg);
}

.steps__number {
    width: 1.984vw;
    height: 3.722vh;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.926vw;
    font-weight: 500;
    flex-shrink: 0;
}

.steps__badge--highlight .steps__number {
    background-color: var(--color-bg);
    color: var(--color-primary);
}

.steps__label {
    font-size: 0.992vw;
    font-weight: 400;
    line-height: 2;
    color: var(--color-dark);
    white-space: nowrap;
}

.steps__image-wrapper {
    position: relative;
    background-color: var(--color-bg-alt);
    border-radius: 1.984vw;
    width: 100%;
    height: 22.333vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.steps__image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.steps__item--1 .steps__image {
    max-width: 62%;
    margin-bottom: -2.978vh;
}

.steps__item--2 .steps__image {
    max-width: 115%;
    margin-left: -8%;
    margin-bottom: -2.481vh;
}

.steps__item--3 .steps__image {
    max-width: 64%;
    margin-bottom: -2.481vh;
}

.steps__item--4 .steps__image-wrapper {
    overflow: visible;
    background-color: #5a9af0;
}

.steps__image--gear {
    position: absolute;
    left: 0;
    top: 4.963vh;
    width: 163%;
    height: auto;
    max-width: none;
    filter: drop-shadow(0 0.496vh 0.496vh rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.steps__image--screen {
    position: absolute;
    left: -1.587vw;
    top: 14.02vh;
    width: 48.5%;
    height: auto;
    z-index: 2;
}

.steps__item--5 .steps__image {
    max-width: 97%;
    margin-bottom: -1.489vh;
}

.steps__button {
    position: absolute;
    left: 9.325vw;
    top: 23.573vh;
    width: 5.159vw;
    height: 9.677vh;
    border-radius: 6.614vw;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(0.331vw);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}

.steps__button::before {
    content: '';
    position: absolute;
    width: 3.968vw;
    height: 7.444vh;
    border-radius: 50%;
    background: linear-gradient(104deg, #2DB182 0%, #2FCD96 61%, #2DB182 100%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.steps__button img {
    width: 1.323vw;
    height: 2.481vh;
    position: relative;
    z-index: 1;
}

.steps__arrow {
    width: 0.992vw;
    height: auto;
    align-self: flex-start;
    margin: 1.861vh 1.323vw 0;
    flex-shrink: 0;
}

@media (max-width: 79.365vw) {
    .steps__container {
        flex-wrap: wrap;
        gap: 1.984vw;
        justify-content: space-between;
    }

    .steps__item {
        flex: 0 0 calc(50% - 0.992vw);
    }

    .steps__item--1,
    .steps__item--2,
    .steps__item--3,
    .steps__item--4,
    .steps__item--5 {
        width: 100%;
        max-width: 19.841vw;
    }

    .steps__arrow {
        display: none;
    }

    .steps__button {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 50.794vw) {
    .steps {
        padding: 9.926vh 0;
    }

    .steps__title {
        font-size: 2.116vw;
        margin-bottom: 7.444vh;
    }

    .steps__container {
        flex-direction: column;
        gap: 3.722vh;
        align-items: center;
    }

    .steps__item {
        flex: 0 0 100%;
        width: 100% !important;
        max-width: 100%;
    }

    .steps__image-wrapper {
        height: 24.814vh !important;
    }

    .steps__button {
        width: 3.968vw;
        height: 7.444vh;
        top: 19.851vh;
    }

    .steps__button::before {
        width: 2.976vw;
        height: 5.583vh;
    }

    .steps__button img {
        width: 1.058vw;
        height: 1.985vh;
    }
}

/* Blocks Section */
.blocks {
    position: relative;
    min-height: 90.943vh;
    padding: 9.926vh 0;
    overflow: hidden;
}

.blocks__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: -1;
}

.blocks__title {
    font-size: 2.976vw;
    font-weight: 500;
    line-height: 1.33;
    color: var(--color-bg);
    margin: 10.546vh 0 10.546vh;
    text-align: start;
}

.blocks__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

.blocks__column {
    flex-shrink: 0;
}

.blocks__column--left {
    width: 14.484vw;
}

.blocks__column--right {
    width: 17.196vw;
    display: flex;
    flex-direction: column;
    gap: 4.963vh;
    position: relative;
    margin-top: -16.749vh;
    z-index: 2;
}

/* .blocks__column--right .blocks__group:last-child - удалено пустое правило */

.blocks__group {
    display: flex;
    flex-direction: column;
    gap: 3.722vh;
}

.blocks__group-title {
    font-size: 1.654vw;
    font-weight: 500;
    line-height: 0.8;
    color: var(--color-bg);
    margin: 0;
}

.blocks__list {
    display: flex;
    flex-direction: column;
    gap: 2.481vh;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blocks__item {
    display: flex;
    align-items: center;
    gap: 0.992vw;
    color: var(--color-bg);
    font-size: 1.124vw;
    line-height: 1.35;
}

.blocks__icon {
    width: 0.992vw;
    height: 1.861vh;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.blocks__visual {
    position: absolute;
    left: 45%;
    top: -9.926vh;
    transform: translateX(-50%);
    width: 54.233vw;
    z-index: 1;
}

.blocks__screen {
    width: 100%;
    height: auto;
    display: block;
}

.blocks__cta {
    position: absolute;
    left: 50%;
    bottom: 6.824vh;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.323vw;
    padding: 1.861vh 1.323vw 1.861vh 2.91vw;
    background: rgba(255, 255, 255, 0.6);
    border: 0.132vw solid rgba(255, 255, 255, 0.5);
    border-radius: 3.307vw;
    backdrop-filter: blur(0.992vw);
    box-shadow: inset 0 0 1.323vw 0 rgba(255, 255, 255, 0.05), inset 0 0.496vh 0.496vh 0 rgba(255, 255, 255, 0.15);
    width: 36.905vw;
    z-index: 10;
}

.blocks__cta-text {
    font-size: 1.058vw;
    line-height: 1.6;
    color: #747474;
    margin: 0;
    text-align: right;
}

.blocks__cta-button {
    display: flex;
    align-items: center;
    gap: 1.058vw;
    padding: 2.854vh 1.654vw 2.854vh 1.918vw;
    background: linear-gradient(104deg, #2DB182 0%, #2FCD96 61%, #2DB182 100%);
    border: none;
    border-radius: 5.291vw;
    box-shadow: 0 0.372vh 0 0 #25A679;
    cursor: pointer;
    color: var(--color-bg);
    font-size: 0.926vw;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.19;
    flex-shrink: 0;
}

.blocks__cta-icon {
    width: 1.654vw;
    height: 3.102vh;
    flex-shrink: 0;
}

@media (max-width: 79.365vw) {
    .blocks__content {
        flex-direction: column;
        align-items: center;
        gap: 4.963vh;
    }

    .blocks__visual {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 39.682vw;
    }

    .blocks__column {
        width: 100%;
        max-width: 26.455vw;
    }

    .blocks__column--right {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
        gap: 2.646vw;
    }

    .blocks__cta {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 7.444vh;
        width: 100%;
        max-width: 36.905vw;
    }
}

@media (max-width: 50.794vw) {
    .blocks {
        padding: 7.444vh 0 9.926vh;
    }

    .blocks__title {
        font-size: 2.116vw;
        margin-bottom: 6.203vh;
    }

    .blocks__content {
        gap: 3.722vh;
    }

    .blocks__column--right {
        flex-direction: column;
    }

    .blocks__cta {
        flex-direction: column;
        padding: 3.722vh 1.323vw;
        text-align: center;
        margin-top: 4.963vh;
    }

    .blocks__cta-text {
        text-align: center;
    }

    .blocks__cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Analytics Section */
.analytics {
    padding: 12.407vh 0;
    background-color: var(--color-bg);
}

.analytics__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.968vw;
}

.analytics__card {
    position: relative;
    background-color: var(--color-bg-alt);
    border-radius: 1.984vw;
    width: 26.455vw;
    height: 50.868vh;
    flex-shrink: 0;
    padding: 7.444vh 3.968vw;
    box-sizing: border-box;
}

.analytics__icon {
    position: absolute;
    top: 3.722vh;
    right: 1.984vw;
    width: 3.968vw;
    height: 7.444vh;
    border-radius: 5.291vw;
    background-color: var(--color-primary);
    border: 0.124vh solid var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics__icon img {
    width: 1.654vw;
    height: 3.102vh;
    filter: brightness(0) invert(1);
}

.analytics__text {
    position: relative;
    z-index: 2;
}

.analytics__title {
    font-size: 2.646vw;
    font-weight: 500;
    line-height: 1.125;
    color: var(--color-dark);
    margin: 0 0 3.722vh;
}

.analytics__description {
    font-size: 1.124vw;
    font-weight: 400;
    line-height: 1.47;
    color: var(--color-dark);
    margin: 0;
}

.analytics__screen {
    position: absolute;
    left: 40%;
    width: 40.675vw;
    height: 63.523vh;
}
.analytics__screen img {
    position: absolute;
    top: -0.993vh;
    left: 0;
    width: 40.675vw;
    height: auto;
}

.analytics__qr-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.984vw;
    padding: 4.963vh 2.712vw;
    width: 22.156vw;
    height: 47.146vh;
    box-sizing: border-box;
    box-shadow: 0 0.248vh 0.496vh 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(0.992vw);
    flex-shrink: 0;
}

.analytics__qr-title {
    font-size: 1.323vw;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-dark);
    margin: 0 0 1.241vh;
}

.analytics__qr-image {
    width: 18.188vw;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 79.365vw) {
    .analytics__content {
        flex-direction: column;
        gap: 4.963vh;
        align-items: center;
    }

    .analytics__card {
        width: 100%;
        max-width: 33.071vw;
        height: auto;
        min-height: 50.868vh;
    }

    .analytics__screen {
        width: 100%;
        height: auto;
        max-width: 39.682vw;
    }

    .analytics__qr-card {
        width: 100%;
        max-width: 26.455vw;
    }
}

@media (max-width: 50.794vw) {
    .analytics {
        padding: 9.926vh 0;
    }

    .analytics__content {
        gap: 4.963vh;
    }

    .analytics__card {
        padding: 4.963vh 1.984vw;
        min-height: auto;
    }

    .analytics__title {
        font-size: 2.116vw;
        margin-bottom: 2.481vh;
    }

    .analytics__description {
        font-size: 1.058vw;
    }

    .analytics__icon {
        width: 3.307vw;
        height: 6.203vh;
        top: 2.481vh;
        right: 1.323vw;
    }

    .analytics__icon img {
        width: 1.323vw;
        height: 2.481vh;
    }

    .analytics__qr-card {
        padding: 3.722vh 1.323vw;
        height: auto;
    }

    .analytics__qr-title {
        font-size: 1.19vw;
        margin-bottom: 2.481vh;
    }

    .analytics__qr-image {
        width: 9.921vw;
    }
}

/* Hero Section */

/* Reviews */
.reviews {
    padding: 0;
}

.reviews__viewport {
    position: relative;
    overflow: hidden;
}

.reviews__title {
    font-size: 2.976vw;
    font-weight: 500;
    text-align: center;
    margin: 0 0 6.203vh;
}

.reviews__viewport {
    overflow: hidden;
    user-select: none;
}

.reviews__track {
    display: flex;
    gap: 1.984vw;
    will-change: transform;
    transition: transform 0.5s ease-in-out;
}

.reviews__slide {
    flex: 0 0 19.511vw;
    height: 58.313vh;
    border-radius: 1.323vw;
    box-shadow: 0 0.372vh 0.372vh rgba(0,0,0,0.15);
    overflow: hidden;
    pointer-events: none;
}

.reviews__slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.reviews__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.722vh;
}

.reviews__dots {
    display: flex;
    align-items: center;
    gap: 0.992vw;
}

.reviews__dot {
    width: 0.992vw;
    height: 1.861vh;
    border-radius: 50%;
    background: #F4F9FF;
    transition: all 0.3s ease;
}

.reviews__dot--active {
    width: 3.307vw;
    border-radius: 1.323vw;
    background: linear-gradient(189deg, #5A9AF0 7%, #8BBCFF 100%);
}

.reviews__arrows {
    display: flex;
    align-items: center;
    gap: 1.323vw;
}

.reviews__arrow {
    width: 3.968vw;
    height: 7.444vh;
    border-radius: 1.984vw;
    border: 0.066vw solid #5A9AF0;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: relative;
}

.reviews__arrow:hover {
    transform: scale(1.05);
}

.reviews__arrow--right {
    background: linear-gradient(189deg, #5A9AF0 7%, #8BBCFF 100%);
    border: none;
}

.reviews__arrow--left::before,
.reviews__arrow--right::before {
    content: '';
    display: block;
    width: 0.794vw;
    height: 1.489vh;
    border-top: 0.132vw solid #5A9AF0;
    border-right: 0.132vw solid #5A9AF0;
    transform: rotate(225deg);
}

.reviews__arrow--right::before {
    border-color: #fff;
    transform: rotate(45deg);
}

@media (max-width: 79.365vw) {
    .reviews__track { gap: 1.323vw; }
    .reviews__slide { flex: 0 0 16.534vw; height: 400px; }
}

@media (max-width: 50.794vw) {
    .reviews { padding: 9.926vh 0; }
    .reviews__title { font-size: 2.116vw; }
    .reviews__slide { flex: 0 0 13.228vw; height: 350px; }
}

/* Economy */
.economy {
    padding: 5vh 0;
    overflow: hidden;
}

.economy__content {
    position: relative;
    min-height: 86.849vh;
}

.economy__info {
    position: relative;
    z-index: 10;
    max-width: 26.455vw;
}

.economy__title {
    font-size: 2.646vw;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 2.481vh;
    color: var(--color-dark);
}

.economy__title span {
    color: #5A9AF0;
}

.economy__description {
    font-size: 1.124vw;
    font-weight: 400;
    line-height: 1.76;
    margin: 0 0 6.203vh;
    color: var(--color-gray);
}

.economy__button {
    width: 19.841vw;
    height: 8.685vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.992vw;
    border: none;
    border-radius: 5.291vw;
    background: linear-gradient(104deg, #2DB182 0%, #2FCD96 61%, #2DB182 100%);
    box-shadow: 0 0.372vh 0 0 #25A679;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.economy__button:hover {
    transform: translateY(-0.248vh);
}

.economy__button svg {
    flex-shrink: 0;
}

.economy__button span {
    font-family: 'Onest', sans-serif;
    font-size: 0.926vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.001vw;
}

.economy__visual {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    max-width: 79.365vw;
    height: 86.849vh;
    pointer-events: none;
    z-index: 1;
}

.economy__tools {
    position: absolute;
    left: 55%;
    top: 1.861vh;
    transform: translateX(-50%);
    width: 38.161vw;
    height: auto;
    filter: blur(0.066vw);
    z-index: 1;
}

.economy__phone {
    position: absolute;
    left: 45%;
    top: 1.241vh;
    transform: translateX(-50%);
    width: 27.778vw;
    height: auto;
    z-index: 2;
}

.economy__stats {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 2.481vh;
    width: 33.399vw;
    z-index: 5;
}

.economy__stat-value-number {
    font-size: 1.323vw;
    color: var(--color-dark);
}

.economy__stat {
    display: flex;
    gap: 1.323vw;
    align-items: center;
    padding: 4.342vh 2.315vw;
    background: rgba(253, 253, 253, 0.8);
    border: 0.066vw solid rgba(255, 255, 255, 1);
    border-radius: 1.323vw;
    box-shadow: 0 0.248vh 0.496vh 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(0.496vw);
    -webkit-backdrop-filter: blur(0.496vw);
}

.economy__stat-value {
    font-family: 'Onest', sans-serif;
    font-size: 2.646vw;
    font-weight: 700;
    line-height: 0.75;
    text-transform: uppercase;
    color: #2DB182;
    flex-shrink: 0;
    min-width: 8.796vw;
}

.economy__stat-text {
    font-size: 1.19vw;
    font-weight: 600;
    line-height: 1.39;
    margin: 0;
    color: var(--color-dark);
    max-width: 18.519vw;
}

@media (max-width: 79.365vw) {
    .economy__content {
        min-height: auto;
    }

    .economy__info {
        margin-bottom: 4.963vh;
    }

    .economy__visual {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        height: 62.035vh;
        margin-bottom: 4.963vh;
    }

    .economy__tools {
        left: 50%;
        transform: translateX(-50%);
        width: 26.455vw;
    }

    .economy__phone {
        left: 50%;
        transform: translateX(-50%);
        width: 16.534vw;
        top: 12.407vh;
    }

    .economy__stats {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        z-index: 10;
    }
}

@media (max-width: 50.794vw) {
    .economy {
        padding: 9.926vh 0;
    }

    .economy__title {
        font-size: 2.116vw;
    }

    .economy__description {
        font-size: 1.058vw;
    }

    .economy__button {
        width: 100%;
    }

    .economy__visual {
        height: 49.628vh;
    }

    .economy__tools {
        width: 19.841vw;
    }

    .economy__phone {
        width: 11.905vw;
        top: 9.926vh;
    }

    .economy__stat {
        padding: 3.102vh 1.654vw;
        gap: 0.992vw;
    }

    .economy__stat-value {
        font-size: 2.116vw;
        min-width: 6.614vw;
    }

    .economy__stat-text {
        font-size: 1.058vw;
    }
}

/* Video Promo */
.video-promo {
    padding: 0;
}

.video-promo__container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.video-promo__title {
    font-size: 1.984vw;
    font-weight: 600;
    line-height: 1.5;
    text-align: right;
    max-width: 27.778vw;
    margin: 0 0 5.583vh;
    color: #fff;
}

.video-promo__content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-promo__wrapper {
    position: relative;
    width: 100%;
    max-width: 82.011vw;
}

.video-promo__cover {
    position: relative;
    width: 100%;
    height: 80.645vh;
    border-radius: 3.307vw;
    background: #D9D9D9;
    overflow: hidden;
}

.video-promo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.video-promo__arrow {
    position: absolute;
    left: calc(50% - 4.96vw - 3.968vw);
    top: calc(50% - 3.226vh);
    width: 2.646vw;
    height: 6.576vh;
    z-index: 3;
}

.video-promo__play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 9.921vw;
    height: 18.61vh;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 0 1.323vw 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0.992vw);
    -webkit-backdrop-filter: blur(0.992vw);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-promo__play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(255, 255, 255, 0.55);
}

.video-promo__play-icon {
    width: 1.984vw;
    height: 3.722vh;
}

.video-promo__duration {
    position: absolute;
    left: 50%;
    bottom: 3.722vh;
    transform: translateX(-50%);
    padding: 0 1.984vw;
    height: 7.444vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.307vw;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: inset 0 0 1.323vw 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0.992vw);
    -webkit-backdrop-filter: blur(0.992vw);
    font-size: 0.926vw;
    font-weight: 400;
    line-height: 3.21;
    color: #3b3b3b;
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 79.365vw) {
    .video-promo__container {
        align-items: center;
    }

    .video-promo__title {
        text-align: center;
    }

    .video-promo__cover {
        height: 62.035vh;
    }

    .video-promo__arrow {
        display: none;
    }
}

@media (max-width: 50.794vw) {
    .video-promo {
        padding: 9.926vh 0;
    }

    .video-promo__title {
        font-size: 1.587vw;
    }

    .video-promo__cover {
        height: 49.628vh;
        border-radius: 1.984vw;
    }

    .video-promo__play-button {
        width: 6.614vw;
        height: 12.407vh;
    }

    .video-promo__play-icon {
        width: 1.323vw;
        height: 2.481vh;
    }

    .video-promo__duration {
        font-size: 0.794vw;
        height: 6.203vh;
        padding: 0 1.323vw;
    }
}

/* Benefits */
.benefits {
    padding: 0 12.407vh;
}

/* Contacts */
.contacts {
    padding: 14.888vh 0 17.369vh;
}

.contacts__title {
    font-size: 2.976vw;
    font-weight: 500;
    text-align: center;
    margin: 0 0 4.963vh;
}

.contacts__content {
    position: relative;
    display: flex;
    align-items: start;
    justify-content: space-between;
    overflow: hidden;
}


.contacts__form {
    display: flex;
    align-items: center;
    width: 35%;
}

.contacts__form-card {
    width: 100%;
    background: #F4F9FF;
    border-radius: 1.984vw;
    padding: 4.963vh 2.646vw 3.722vh;
}

.contacts__fields {
    display: flex;
    flex-direction: column;
    gap: 2.481vh;
}

.contacts__field {
    display: flex;
}

.contacts__input {
    width: 100%;
    height: 7.444vh;
    border-radius: 3.307vw;
    border: none;
    outline: none;
    padding: 0 1.984vw;
    background: #fff;
    font-size: 1.124vw;
    color: var(--color-dark);
}

.contacts__phone {
    display: flex;
    align-items: center;
    gap: 0.661vw;
    width: 100%;
}

.iti {
    width: 100%;
}

.contacts__submit {
    height: 8.685vh;
    border-radius: 5.291vw;
    border: none;
    background: linear-gradient(104deg, #2DB182 0%, #2FCD96 61%, #2DB182 100%);
    box-shadow: 0 0.372vh 0 0 #25A679;
    color: #fff;
    font-size: 1.124vw;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.794vw;
    cursor: pointer;
}

.contacts__agree {
    margin: 0.62vh 0 0;
    font-size: 0.794vw;
    color: #999;
    text-align: center;
}

.contacts__phone-visual { position: absolute; left: 50%; transform: translateX(-50%); width: 21.164vw; }
.contacts__phone-img { width: 100%; height: auto; }

.contacts__cards {
    display: flex;
    flex-direction: column;
    gap: 2.481vh;
    justify-content: center;
}

.contacts__card {
    display: flex;
    align-items: center;
    gap: 1.323vw;
    background: #F4F9FF;
    border-radius: 1.984vw;
    padding: 3.102vh 1.984vw;
    height: 12.407vh;
}

.contacts__card--social {
    gap: 1.984vw;
}

.contacts__icon {
    width: 3.307vw;
    height: 6.203vh;
    border-radius: 1.654vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts__icon--blue {
    background: linear-gradient(189deg, #5A9AF0 7%, #8BBCFF 100%);
}

.contacts__value {
    color: #313131;
    font-size: 1.323vw;
    font-weight: 500;
}


.contacts__social { width: 3.307vw; height: 6.203vh; border-radius: 1.654vw; display: inline-flex; align-items: center; justify-content: center; }
.contacts__social img { display: block; }
.contacts__social--wa { background: #00E510; }
.contacts__social--tg { background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%); position: relative; }
.contacts__social--vk { background: linear-gradient(-24deg, #1568C8 5%, #3F98FF 92%); }

.contacts__social--tg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contacts__social-arrow { position: absolute; width: 1.323vw; height: 1.985vh; }

.contacts__spacer {
    width: 1.984vw;
    height: 0.124vh;
}

.contacts__card--zen {
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contacts__card--zen:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contacts__zen {
    display: inline-flex;
    align-items: center;
    gap: 0.794vw;
    font-size: 1.852vw;
    font-weight: 600;
}

.contacts__zen-button {
    width: 3.968vw;
    height: 3.968vw;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background: #202022;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 5;
}

.contacts__zen-button:hover {
    background: #303032;
    transform: scale(1.05);
}

.contacts__zen-button svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.contacts__zen-button svg path {
    stroke: white !important;
    stroke-width: 2 !important;
}

@media (max-width: 79.365vw) {
    .contacts__content { flex-direction: column; align-items: center; }
    .contacts__form { flex: 1; }
    .contacts__phone-visual { position: relative; left: 0; transform: none; order: -1; margin: 2.481vh 0; }
    .contacts__cards { width: 100%; }
}

@media (max-width: 50.794vw) {
    .contacts { padding: 9.926vh 0 12.407vh; }
    .contacts__title { font-size: 2.116vw; }
    .contacts__form-card { padding: 3.722vh 1.984vw; }
    .contacts__card { padding: 2.481vh 1.323vw; }
}

/* Footer */
footer {
    background: #F4F9FF;
    border-radius: 3.307vw 3.307vw 0 0;
    padding: 12.283vh 0 12.283vh;
    position: relative;
}

.footer__container {
    max-width: 95.238vw;
    margin: 0 auto;
    padding: 0 6.614vw;
    display: flex;
    justify-content: space-between;
    gap: 6.944vw;
}

.footer__column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__column--1 {
    width: 13.889vw;
}

.footer__column--2 {
    width: 12.566vw;
}

.footer__column--3 {
    width: 9.921vw;
}

.footer__column--4 {
    width: 19.511vw;

}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 1.985vh;
    margin-bottom: 10.546vh;
}

.footer__logo-img {
    width: 11.177vw;
    height: 2.481vh;
}

.footer__logo-text {
    font-size: 0.728vw;
    font-weight: 400;
    line-height: 0.91;
    text-transform: uppercase;
    color: #747474;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.496vh;
}

.footer__link {
    font-size: 0.794vw;
    font-weight: 400;
    line-height: 1.19;
    color: #747474;
    text-decoration: none;
}

.footer__link:hover {
    color: #313131;
}

.footer__heading {
    font-size: 0.86vw;
    font-weight: 500;
    line-height: 1.19;
    color: #313131;
    margin: 0 0 3.846vh;
}

.footer__company-name {
    font-size: 0.794vw;
    font-weight: 400;
    line-height: 1.5;
    color: #747474;
    margin: 0 0 1.613vh;
}

.footer__company-inn {
    font-size: 0.794vw;
    font-weight: 400;
    line-height: 1.7;
    color: #747474;
    margin: 0 0 1.985vh;
}

.footer__company-address {
    font-size: 0.794vw;
    font-weight: 400;
    line-height: 1.67;
    color: #747474;
    margin: 0;
}

.footer__stores {
    display: flex;
    flex-direction: column;
    gap: 2.481vh;
}

.footer__store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.921vw;
    height: 6.702vh;
    background: #000;
    border-radius: 0.661vw;
    text-decoration: none;
}

.footer__store-link img {
    width: auto;
    height: 2.481vh;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.661vw;
    margin-bottom: 1.241vh;
}

.footer__contact-item img {
    width: 0.992vw;
    height: 1.861vh;
    filter: invert(1);
}

.footer__contact-phone {
    font-size: 0.926vw;
    font-weight: 400;
    line-height: 1.6;
    color: #313131;
    text-decoration: none;
}

.footer__contact-email {
    font-size: 0.926vw;
    font-weight: 400;
    line-height: 1.6;
    color: #313131;
    text-decoration: none;
    text-transform: lowercase;
}

.footer__schedule {
    font-size: 0.926vw;
    font-weight: 400;
    line-height: 1.6;
    color: #313131;
    margin: 2.729vh 0 3.102vh;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 0.661vw;
    margin-bottom: 5.831vh;
}

.footer__social-link {
    width: 1.984vw;
    height: 3.722vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer__social-link--wa {
    background: #00E510;
}

.footer__social-link--tg {
    background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
    position: relative;
}

.footer__social-link--tg img {
    width: 1.058vw;
    height: 1.985vh;
    margin-right: 0.132vw;
}

.footer__social-link--vk {
    background: linear-gradient(-24deg, #1568C8 5%, #3F98FF 92%);
}

.footer__social-link--vk img {
    width: 1.058vw;
    height: 1.985vh;
}

.footer__social-link--zen {
    background: #202022;
}

.footer__social-link--zen img {
    width: 1.058vw;
    height: 1.985vh;
}

.footer__signin-text {
    font-size: 0.794vw;
    font-weight: 400;
    line-height: 1.6;
    text-transform: uppercase;
    color: #313131;
}

.footer__signin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.661vw;
    padding: 1.241vh 1.323vw;
    border-radius: 0.331vw;
    border: 0.066vw solid transparent;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__signin-btn {
    border-color: var(--color-dark);
    background-color: transparent;
    color: var(--color-dark);
}

.footer__signin-btn:hover {
    background-color: var(--color-dark);
    color: var(--color-bg);
}

.footer__signin-btn:hover img {
    filter: brightness(0) invert(1);
}

.footer__signin-btn:hover .footer__signin-text {
    color: var(--color-bg);
}




@media (max-width: 79.365vw) {
    .footer__container {
        flex-wrap: wrap;
        gap: 6.614vw;
        padding: 0 3.307vw;
    }
    
    .footer__column--1,
    .footer__column--2,
    .footer__column--3,
    .footer__column--4 {
        width: calc(50% - 1.984vw);
    }
    
    .footer__logo {
        margin-bottom: 4.963vh;
    }
}

@media (max-width: 50.794vw) {
    footer {
        padding: 7.444vh 0;
        border-radius: 1.984vw 1.984vw 0 0;
    }
    
    .footer__container {
        flex-direction: column;
        gap: 4.963vh;
        padding: 0 1.323vw;
    }
    
    .footer__column--1,
    .footer__column--2,
    .footer__column--3,
    .footer__column--4 {
        width: 100%;
    }
    
    .footer__logo {
        margin-bottom: 3.722vh;
    }
}

.benefits__container {
    display: flex;
    gap: 8.267vw;
}

.benefits__header {
    flex: 0 0 26.455vw;
}

.benefits__title {
    font-size: 2.646vw;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 2.481vh;
    color: var(--color-dark);
}

.benefits__subtitle {
    font-size: 1.124vw;
    font-weight: 400;
    line-height: 1.76;
    margin: 0;
    color: var(--color-gray);
}

.benefits__grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.benefits__column {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    gap: 1.241vh;
    padding: 3.474vh 0;
    border-top: 0.124vh solid #EBEBEB;
}

.benefits__column:first-child .benefits__item {
    padding-right: 4.101vw;
}

.benefits__column:last-child .benefits__item {
    padding-left: 4.167vw;
}

.benefits__item:last-child {
    border-bottom: 0.124vh solid #EBEBEB;
}

.benefits__item-header {
    display: flex;
    align-items: center;
    gap: 0.992vw;
}

.benefits__icon {
    width: 1.323vw;
    height: 2.481vh;
    flex-shrink: 0;
}

.benefits__item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.024vw;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: var(--color-dark);
}

.benefits__item-text {
    font-size: 1.124vw;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: var(--color-gray);
}

@media (max-width: 79.365vw) {
    .benefits__container {
        flex-direction: column;
        gap: 7.444vh;
    }

    .benefits__header {
        flex: 1;
    }

    .benefits__column:first-child .benefits__item {
        padding-right: 1.323vw;
    }

    .benefits__column:last-child .benefits__item {
        padding-left: 1.323vw;
    }
}

@media (max-width: 50.794vw) {
    .benefits {
        padding: 9.926vh 0;
    }

    .benefits__title {
        font-size: 2.116vw;
    }

    .benefits__subtitle {
        font-size: 1.058vw;
    }

    .benefits__grid {
        flex-direction: column;
    }

    .benefits__column {
        flex: 1;
    }

    .benefits__column:first-child .benefits__item,
    .benefits__column:last-child .benefits__item {
        padding-left: 0;
        padding-right: 0;
    }
}

.hero {
    background-color: var(--color-bg-alt);
    padding-top: 7.444vh;
    border-radius: 0 0 3.307vw 3.307vw;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: minmax(auto, 41.667vw) 1fr;
    align-items: center;
    gap: 1.323vw;
}

.hero__content {
    position: relative;
    z-index: 5;
}

.hero__title {
    font-size: 3.307vw;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 2.481vh;
}

.hero__subtitle {
    font-size: 1.124vw;
    line-height: 1.6;
    color: var(--color-gray);
    max-width: 23.81vw;
    margin: 0 0 4.963vh;
}

.hero__visual {
    position: relative;
    width: 100%;
    min-height: 66.998vh;
}

.hero__image {
    position: absolute;
    bottom: 0;
    user-select: none;
    pointer-events: none;
}

.hero__image--laptop {
    width: 120%;
    max-width: 56.878vw;
    right: -14%;
    bottom: 0;
    z-index: 2;
}

.hero__image--phone {
    width: 50%;
    max-width: 19.841vw;
    left: -50%;
    bottom: 0;
    z-index: 1;
}

.hero__image--kaska {
    width: 30%;
    max-width: 12.566vw;
    left: 28%;
    bottom: 60%;
    z-index: 1;
}

.hero__video-link {
    position: absolute;
    left: 15%;
    bottom: 40%;
    display: flex;
    align-items: center;
    gap: 0.992vw;
    padding: 1.861vh 1.654vw 1.861vh 0.992vw;
    border-radius: 3.307vw;
    border: 0.132vw solid rgba(255, 255, 255, 0.50);
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 0.496vh 0.496vh 0 rgba(255, 255, 255, 0.15) inset, 0 0 1.323vw 0 rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(0.496vw);
    z-index: 3;
    color: var(--color-gray);
    font-size: 1.058vw;
}

.hero__video-icon-wrapper {
    width: 3.307vw;
    height: 6.203vh;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__video-icon {
    filter: brightness(0) invert(1);
}
