@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --container-padding: 16px;
    }

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .button {
        gap: 10px;
        padding: 10px 15px;
        border-radius: 5px;
        border-width: 1px;
    }

    .button--primary {
        border-radius: 80px;
        padding: 22px 10px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
    }

    .header__top {
        padding: 0;
        height: 70px;
        background: rgba(255, 255, 255, 0.8);
    }

    .header__top-container {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .logo {
        display: none;
    }

    .header__partners {
        display: none;
    }

    .header__contacts {
        display: none;
    }

    /* Кнопка авторизации в свернутом хэдере */
    .header__top-container .header__auth-button {
        padding: 7px 5px;
        gap: 10px;
        height: 40px;
        width: 145px;
        font-size: 11px;
        position: absolute;
        right: 16px;
        top: 15px;
        z-index: 100;
    }

    /* Скрываем соцсети в свернутом хэдере на мобильных */
    .header__top-container .header__messengers {
        display: none;
    }

    /* Позиционирование селектора языка в хэдере */
    .header__top-container .language-selector {
        position: absolute;
        left: 50%;
        transform: translateX(-70%);
        top: 50%;
        margin-top: -19px;
        z-index: 99;
    }

    .mobile-menu .language-selector__toggle {
      display: none;  
    } 
    
    .header__top-container .language-selector__toggle {
        height: 38px;
        min-width: 68px;
    }
    
    .header__top-container .language-selector__dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px) scale(0.95);
    }
    
    .header__top-container .language-selector__dropdown--open {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .header__burger-button {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: absolute;
        left: 16px;
        top: 22px;
        width: 35px;
        height: 26px;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        z-index: 1002;
    }

    .header__burger-button span {
        display: block;
        width: 35px;
        height: 4px;
        background: #313131;
        border-radius: 50px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* Блокировка скролла body когда меню открыто */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }

    /* Анимация крестика при открытии меню */
    body.menu-open .header__burger-button span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    body.menu-open .header__burger-button span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .header__burger-button span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .header__burger-button img {
        display: none;
    }

    .header__bottom {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Динамическая высота viewport для мобильных */
        background: transparent;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        pointer-events: none;
        overflow: hidden;
    }

    .mobile-menu.is-open {
        transform: translateX(0);
        pointer-events: all;
        background: rgba(163, 163, 163, 0.8);
    }

    .mobile-menu__header {
        height: 70px;
        min-height: 70px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: end;
        position: relative;
        padding: 0 16px;
        border-bottom: none;
        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
        flex-shrink: 0;
        z-index: 1;
    }

    /* Скрываем старую кнопку закрытия - используем бургер с анимацией */
    .mobile-menu__close-button {
        display: none;
    }

    .mobile-menu__controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu__controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu__controls .language-toggle--mobile-menu {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(13, 27, 42, 0.1);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu__controls .language-toggle--mobile-menu:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu__controls .header__messengers {
        position: relative;
        left: auto;
        transform: none;
        display: flex;
        gap: 10px;
    }

    .mobile-menu__controls .messenger {
        width: 40px;
        height: 40px;
        padding: 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-sizing: border-box;
    }

    .mobile-menu__controls .messenger--whatsapp {
        background: #00E510;
    }

    .mobile-menu__controls .messenger--telegram {
        background: linear-gradient(180deg, #2AABEE 0%, #229ED9 100%);
    }

    .mobile-menu__controls .messenger img {
        width: 40px;
        height: 40px;
    }

    .mobile-menu__controls .header__auth-button {
        display: flex;
        position: relative;
        right: auto;
        top: auto;
        height: 40px;
        width: 163px;
        font-size: 11px;
        padding: 7px 5px;
        gap: 10px;
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu__body {
        background: #fff;
        flex: 1 1 auto;
        padding: 20px 19px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0; /* Важно для правильной работы flex */
        -webkit-overflow-scrolling: touch; /* Плавная прокрутка на iOS */
    }

    .mobile-menu .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .mobile-menu .nav__item {
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #E6E6E6;
        border-right: none;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        flex: none;
        text-align: center;
        white-space: normal;
    }

    .mobile-menu .nav__item:first-child {
        border-top: none;
    }

    .mobile-menu .nav__item::after {
        display: none;
    }

    .mobile-menu .nav__link {
        font-size: 14px;
        font-weight: 400;
        line-height: 10px;
        color: #747474;
        text-align: center;
        padding: 0;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .mobile-menu .nav__link--active {
        color: #313131;
    }

    /* Footer мобильного меню - НОВЫЙ */
    .mobile-menu__footer {
        background: #fff;
        padding: 30px 16px 30px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        box-shadow: 0px -1px 1px 0px rgba(0, 0, 0, 0.05);
        flex-shrink: 0;
        min-height: fit-content;
        z-index: 1;
    }

    /* Контакты */
    .mobile-menu__contacts {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .mobile-menu__phone {
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #313131;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .mobile-menu__phone:active {
        opacity: 0.7;
    }

    .mobile-menu__phone .mobile-menu__icon {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

    .mobile-menu__email {
        font-size: 12px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 7px;
        color: #747474;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .mobile-menu__email:active {
        opacity: 0.7;
    }

    .mobile-menu__email .mobile-menu__icon {
        width: 11px;
        height: 11px;
        flex-shrink: 0;
    }

    /* Партнеры */
    .mobile-menu__partners {
        display: flex;
        gap: 30px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .mobile-menu__partner {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s ease;
    }

    .mobile-menu__partner:active {
        opacity: 0.7;
    }

    .mobile-menu__partners:nth-child(2) {
        display: none;
    }

    .mobile-menu__partner img {
        height: 30px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
    }

    /* Конкретные размеры для логотипов */
    .mobile-menu__partner:first-child img {
        max-width: 130px;
    }

    .mobile-menu__partner:last-child img {
        max-width: 106px;
    }

    .hero {
        padding-top: 0;
        border-radius: 0 0 30px 30px;
    }

    .hero__container {
        display: flex;
        flex-direction: column;
        padding: 52px 16px 0;
        gap: 0;
    }

    .hero__content {
        order: 1;
        text-align: left;
        margin-bottom: 112px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 17px;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 45px;
    }

    .hero__cta-button {
        width: 100%;
        max-width: 250px;
    }

    .hero__visual {
        position: relative;
        width: 100%;
        min-height: 208px;
        order: 2;
        margin-bottom: 0;
    }

    .hero__image--laptop {
        width: 100vw;
        max-width: none;
        right: auto;
        left: 50%;
        transform: translateX(-30%);
        bottom: 10.118vh;
    }

    .hero__image--phone {
        width: 60vw;
        max-width: none;
        left: -15vw;
        z-index: 3;
        bottom: 0.059vh;
    }

    .hero__image--kaska {
        width: 30.232vw;
        max-width: none;
        left: 42.511vw;
        bottom: 26.311vh;
    }

    .header__info {
        display: none;
    }

    .industries__item-link {
        width: 8.315vw;
    }

    .hero__video-link {
        display: none;
    }

    .industries {
        padding: 50px 0;
    }

    .industries__container {
        flex-direction: column;
        gap: 20px;
    }

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

    .industries__image-wrapper {
        display: none;
    }

    .industries__title {
        font-size: 30px;
        line-height: 1.33;
        margin: 0 0 30px;
        max-width: 100%;
        text-align: center;
    }

    .industries__card {
        padding: 20px 16px;
        text-align: center;
        min-height: 120px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .industries__card::before {
        left: 50%;
        top: 21px;
        bottom: auto;
        transform: translateX(-50%);
        width: 69px;
        height: 69px;
    }

    .industries__card-img {
        left: 50%;
        top: 27px;
        bottom: auto;
        transform: translateX(-50%);
        width: 70px;
        height: auto;
    }

    .industries__card-text {
        font-size: 15px;
        line-height: 1.67;
        margin-top: 86px;
    }

    .industries__list {
        margin-top: 20px;
    }

    .industries__item {
        gap: 0;
    }

    .industries__item-header {
        padding: 20px 0;
        gap: 15px;
    }

    .industries__item-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }

    .industries__item-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .industries__item-link {
        width: 40px;
        height: 40px;
    }

    .industries__item-link img {
        width: 18px;
        height: auto;
    }

    .industries__item.is-active .industries__item-content {
        padding: 0 0 20px 0;
    }

    .industries__item-description {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 36px;
        padding-right: 50px;
    }

    .industries__image-wrapper {
        height: 232px;
        min-height: auto;
        border-radius: 20px;
        margin-top: 20px;
    }

    .system-structure {
        padding: 50px 0;
    }

    .system-structure__title {
        font-size: 30px;
        margin-bottom: 30px;
        text-align: left;
    }

    .system-structure__content {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        background: var(--color-bg-alt);
        border-radius: 30px;
        padding: 50px 16px;
    }

    .system-structure__info {
        max-width: 100%;
        flex-direction: row;
        gap: 20px;
        justify-content: space-between;
    }

    .system-structure__section {
        gap: 13px;
    }

    .system-structure__section-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .system-structure__list {
        gap: 0;
    }

    .system-structure__list-item {
        font-size: 17px;
        line-height: 1.3;
        padding-left: 16px;
    }

    .system-structure__list-item::before {
        width: 6px;
        height: 6px;
    }

    .system-structure__visual {
        padding: 0;
        position: relative;
        margin-top: 0vh;
    }

    .system-structure__image {
        max-width: 100vw;
        width: 100vw;
        margin: 0 auto;
        display: block;
    }

    .system-structure__badge {
        padding: 5px;
        gap: 5px;
        border-radius: 50px;
    }

    .system-structure__badge-icon {
        width: 15px;
        height: 15px;
    }

    .system-structure__badge-text {
        font-size: 13px;
        line-height: 1.92;
    }

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

    .system-structure__badge--mobile {
        bottom: 4vh;
        left: 14vw;
    }

    .steps {
        padding: 50px 0;
    }

    .steps__title {
        font-size: 30px;
        line-height: 1.33;
        margin-bottom: 30px;
    }

    .steps__container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

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

    .steps__badge {
        padding: 10px;
        gap: 10px;
        border-radius: 50px;
        height: 40px;
    }

    .steps__badge--alt {
        padding: 7px 10px;
    }

    .steps__number {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .steps__label {
        font-size: 15px;
        line-height: 2;
    }

    .steps__badge--alt .steps__label {
        line-height: 1.67;
    }

    .steps__image-wrapper {
        height: 120px;
        border-radius: 20px;
    }

    .steps__item--1 .steps__image {
        max-width: 100px;
        margin-bottom: -40px;
    }

    .steps__item--2 .steps__image {
        max-width: 170px;
        margin-left: -3px;
        margin-bottom: -44px;
    }

    .steps__item--3 .steps__image {
        max-width: 85px;
        margin-bottom: -40px;
    }

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

    .steps__image--gear {
        width: 240px;
        left: 90px;
        top: -10px;
    }

    .steps__image--screen {
        width: 71px;
        left: 15px;
        top: -20px;
    }

    .steps__item--5 .steps__image {
        max-width: 115px;
        margin-bottom: -40px;
    }

    .steps__button {
        left: 50%;
        top: 125px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        border-radius: 100px;
    }

    .steps__button::before {
        width: 50px;
        height: 50px;
    }

    .steps__button img {
        width: 20px;
        height: 20px;
    }

    .steps__arrow {
        display: none;
    }

    .blocks {
        padding: 40px 0;
        min-height: auto;
    }

    .blocks__title {
        font-size: 30px;
        line-height: 1.33;
        margin: 40px 0;
        text-align: left;
    }

    .blocks__content {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .blocks__column {
        width: 100%;
        max-width: none;
    }

    .blocks__column--left {
        order: 1;
    }

    .blocks__column--right {
        margin-top: 0;
        order: 3;
        flex-direction: column;
        gap: 40px;
    }

    .blocks__group {
        gap: 30px;
    }

    .blocks__group-title {
        font-size: 20px;
        line-height: 1;
    }

    .blocks__list {
        gap: 20px;
    }

    .blocks__item {
        font-size: 17px;
        line-height: 1.29;
        gap: 15px;
    }

    .blocks__icon {
        width: 15px;
        height: 15px;
    }

    .blocks__visual {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        order: 2;
        max-width: 340px;
        margin: 0 auto;
    }

    .blocks__screen {
        width: 100%;
    }

    .blocks__cta {
        position: relative;
        left: 50%;
        bottom: auto;
        transform: translate(-50%);
        width: 85%;
        max-width: none;
        flex-direction: column;
        padding: 22px 24px 24px;
        gap: 10px;
        border-radius: 20px;
        border-width: 2px;
    }

    .blocks__cta-text {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .blocks__cta-button {
        width: 100%;
        padding: 27px 10px;
        gap: 10px;
        border-radius: 10vw;
        justify-content: center;
        font-size: 14px;
    }

    .blocks__cta-icon {
        width: 25px;
        height: 25px;
    }

    .analytics {
        padding: 50px 0;
    }

    .analytics__content {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .analytics__card {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 61px 50px;
        border-radius: 30px;
        order: 1;
    }

    .analytics__icon {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .analytics__icon img {
        width: 20px;
        height: 20px;
    }

    .analytics__title {
        font-size: 30px;
        line-height: 1.33;
        margin-bottom: 30px;
    }

    .analytics__description {
        font-size: 17px;
        line-height: 1.47;
    }

    .analytics__screen {
        position: relative;
        left: 0vw;
        width: 100%;
        height: auto;
        max-width: 486px;
        order: 2;
        margin: 0 auto;
        overflow: hidden;
        margin-left: 0;
    }

    .analytics__screen img {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
    }

    .analytics__qr-card {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 20px 22px;
        order: 3;
        border-radius: 20px;
        margin: 0;
        max-width: 163px;
        position: relative;
        top: -30vh;
        left: 50vw;
    }

    .analytics__qr-title {
        font-size: 15px;
        line-height: 1.33;
        margin-bottom: 10px;
    }

    .analytics__qr-image {
        width: 110px;
        height: 82px;
    }

    .reviews {
        padding: 50px 0;
    }

    .reviews__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .reviews__viewport {
        overflow: hidden;
        margin: 0;
        padding: 0 16px;
    }

    .reviews__track {
        gap: 18px;
    }

    .reviews__slide {
        flex: 0 0 253px;
        height: 402px;
        border-radius: 20px;
    }

    .reviews__controls {
        margin-top: 30px;
        padding: 0 16px;
    }

    .reviews__dots {
        gap: 15px;
    }

    .reviews__dot {
        width: 15px;
        height: 15px;
    }

    .reviews__dot--active,
    .reviews__dot--bar {
        width: 50px;
        border-radius: 20px;
    }

    .reviews__arrows {
        gap: 10px;
    }

    .reviews__arrow {
        width: 50px;
        height: 50px;
        border-radius: 30px;
        border-width: 1px;
    }

    .reviews__arrow::before {
        width: 11.67px;
        height: 11.67px;
        border-width: 0.9375px;
    }

    .economy {
        padding: 50px 0;
    }

    .economy__content {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .economy__info {
        max-width: 100%;
        z-index: 10;
        order: 1;
    }

    .economy__title {
        font-size: 30px;
        line-height: 1.33;
        margin-bottom: 20px;
    }

    .economy__description {
        font-size: 17px;
        line-height: 1.76;
        margin-bottom: 30px;
    }

    .economy__button {
        width: 100%;
        max-width: none;
        height: 69px;
        gap: 16px;
        font-size: 14px;
    }

    .economy__button svg {
        width: 25px;
        height: 25px;
    }

    .economy__visual {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        max-width: none;
        order: 2;
        display: none;
    }

    .economy__stats {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        gap: 15px;
        order: 3;
    }

    .economy__stat {
        padding: 15px 16px;
        gap: 20px;
        border-radius: 20px;
        flex-direction: row;
        align-items: center;
    }

    .economy__stat:nth-child(2) {
        padding: 15px 16px;
    }

    .economy__stat-value {
        font-size: 8vw;
        line-height: 0.75;
        min-width: 116px;
        flex-shrink: 0;
    }

    .economy__stat-value-number {
        font-size: 4vw;
    }

    .economy__stat-text {
        font-size: 16px;
        line-height: 1.375;
        max-width: none;
        flex: 1;
    }

    .economy__stat:nth-child(2) .economy__stat-value {
        width: 115px;
        font-size: 8vw;
    }

    .economy__stat:nth-child(2) .economy__stat-text {
        width: auto;
    }

    .benefits {
        padding: 50px 0;
    }

    .benefits__container {
        flex-direction: column;
        gap: 30px;
    }

    .benefits__header {
        flex: 1;
    }

    .benefits__title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .benefits__subtitle {
        font-size: 17px;
        line-height: 1.76;
    }

    .benefits__grid {
        flex-direction: column;
    }

    .benefits__column {
        flex: 1;
    }

    .benefits__item {
        padding: 28px 0;
        gap: 10px;
        border-top: 1px solid #EBEBEB;
    }

    .benefits__item:last-child {
        border-bottom: 1px solid #EBEBEB;
    }

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

    .benefits__item-header {
        gap: 15px;
    }

    .benefits__icon {
        width: 20px;
        height: 20px;
    }

    .benefits__item-title {
        font-size: 17px;
        line-height: 1.6;
    }

    .benefits__item-text {
        font-size: 17px;
        line-height: 1.6;
    }

    .video-promo {
        padding: 0;
        overflow: hidden;
    }

    .video-promo__container {
        align-items: flex-start;
    }

    .economy__button span {
        font-size: 4.026vw;
    }

    .video-promo__title {
        font-size: 14px;
        line-height: 1.43;
        max-width: 121px;
        margin: 0 0 40px;
        color: #fff;
        text-align: right;
        align-self: flex-end;
        position: relative;
        left: -42px;
    }

    .video-promo__content {
        width: 100%;
    }

    .video-promo__wrapper {
        max-width: none;
    }

    .video-promo__cover {
        height: 220px;
        border-radius: 20px;
    }

    .video-promo__arrow {
        display: none;
    }

    .video-promo__play-button {
        width: 60px;
        height: 60px;
    }

    .video-promo__play-icon {
        width: 20px;
        height: 20px;
    }

    .video-promo__duration {
        padding: 0 10px;
        height: 45px;
        font-size: 16px;
        line-height: 2.92;
        border-radius: 50px;
        bottom: 15px;
        color: #040404;
    }

    .contacts {
        padding: 50px 0;
    }

    .contacts__title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .contacts__content {
        flex-direction: column;
        gap: 40px;
    }

    .contacts__form {
        width: 100%;
        order: 2;
    }

    .contacts__form-card {
        padding: 40px;
        border-radius: 20px;
    }

    .contacts__fields {
        gap: 20px;
    }

    .contacts__input {
        height: 70px;
        border-radius: 50px;
        padding: 0 30px;
        font-size: 17px;
    }

    .contacts__phone {
        gap: 10px;
    }

    .contacts__phone img {
        width: 21px;
        height: 15px;
    }

    .contacts__submit {
        height: 70px;
        border-radius: 80px;
        font-size: 17px;
        gap: 10px;
    }

    .contacts__submit img {
        width: 25px;
        height: 25px;
    }

    .contacts__agree {
        margin-top: 5px;
        font-size: 12px;
    }

    .contacts__phone-visual {
        display: none;
    }

    .contacts__cards {
        width: 100%;
        gap: 15px;
        order: 1;
    }

    .contacts__card {
        padding: 15px 25px;
        gap: 20px;
        border-radius: 20px;
        height: 80px;
    }

    .contacts__icon {
        width: 50px;
        height: 50px;
        border-radius: 100px;
    }

    .contacts__icon img {
        width: 15px;
        height: auto;
    }

    .contacts__value {
        font-size: 20px;
    }

    .contacts__card--social {
        gap: 15px;
    }

    .contacts__social {
        width: 50px;
        height: 50px;
        border-radius: 100px;
    }

    .contacts__social img {
        width: auto;
        height: 20px;
    }

    .contacts__social--wa img {
        width: 50px !important;
        height: 50px !important;
        padding: 0;
    }

    .contacts__social--tg .contacts__social-arrow {
        width: 5vw;
        height: 5vw;
        margin-right: 2px;
    }

    .contacts__spacer {
        display: none;
    }

    .contacts__card--zen {
        padding: 15px 25px;
    }

    .contacts__zen {
        gap: 10px;
        font-size: 28px;
    }

    .contacts__zen img {
        width: 105.86px;
        height: 29.83px;
    }

    .contacts__zen-button {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        border-radius: 50%;
    }

    .contacts__zen-button svg {
        width: 24px !important;
        height: 24px !important;
    }

    footer {
        padding: 50px 0;
        border-radius: 30px 30px 0 0;
    }

    .footer__container {
        flex-direction: column;
        gap: 50px;
        padding: 0 15px;
        max-width: 100%;
    }

    .footer__column {
        width: 100%;
    }

    .footer__column--1 {
        order: 1;
    }

    .footer__column--2 {
        order: 3;
    }

    .footer__column--3 {
        order: 2;
    }

    .footer__column--4 {
        order: 4;
    }

    .footer__logo {
        gap: 10px;
        margin-bottom: 40px;
    }

    .footer__logo-img {
        width: 50vw;
        height: 10vh;
    }

    .footer__logo-text {
        font-size: 16px;
        line-height: 1.25;
    }

    .footer__links {
        gap: 4px;
    }

    .footer__link {
        font-size: 16px;
        line-height: 1.19;
    }

    .footer__heading {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .footer__company-name {
        font-size: 16px;
        margin-bottom: 13px;
    }

    .footer__company-inn {
        font-size: 16px;
        line-height: 1.67;
        margin-bottom: 15px;
    }

    .footer__company-address {
        font-size: 16px;
        line-height: 1.67;
    }

    .footer__stores {
        gap: 20px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .footer__store-link {
        width: 110px;
        height: auto;
    }

    .footer__contacts {
        margin-bottom: 26px;
    }

    .footer__contact-item {
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer__contact-item img {
        width: 15px;
        height: 15px;

    }

    .footer__contact-phone,
    .footer__contact-email {
        font-size: 18px;
        line-height: 1.3;
    }

    .footer__schedule {
        font-size: 16px;
        margin: 22px 0 25px;
    }

    .footer__social {
        gap: 10px;
        margin-bottom: 47px;
    }

    .footer__social-link {
        width: 50px;
        height: 50px;
    }

    .footer__social-link img {
        width: 30px;
        height: 30px;

    }

    .footer__social-link--tg img {
        margin-right: 2px;
    }

    .footer__signin-btn {
        padding: 7px 5px;
        gap: 10px;
        height: 40px;
        border-width: 1px;
    }

    .footer__signin-btn img {
        width: 15px;
        height: 15px;
    }

    .footer__signin-text {
        font-size: 11px;
        line-height: 1.6;
    }
    
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

    body {
        font-size: 15px;
    }

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

    .hero__title {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .industries__container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .industries__info {
        max-width: 45%;
    }

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

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

    .blocks__content {
        flex-wrap: wrap;
    }

    .blocks__column--left,
    .blocks__column--right {
        width: 45%;
    }

    .blocks__visual {
        width: 100%;
        order: 2;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 40px auto;
    }

    .analytics__content {
        flex-wrap: wrap;
    }

    .analytics__card {
        width: 100%;
        max-width: 48%;
    }

    .analytics__screen {
        width: 100%;
        max-width: 48%;
        position: relative;
        left: auto;
    }

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

    .footer__container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__column--1,
    .footer__column--2 {
        width: 45%;
    }

    .footer__column--3,
    .footer__column--4 {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .industries__title,
    .system-structure__title,
    .steps__title,
    .blocks__title,
    .reviews__title,
    .economy__title,
    .benefits__title,
    .contacts__title {
        font-size: 26px;
    }

    .steps__container {
        gap: 15px;
    }

    .reviews__slide {
        flex: 0 0 220px;
        height: 350px;
    }

    /* Industries Accordion Mobile */
    .industries__item-header {
        padding: 16px 0;
    }

    .industries__item-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .industries__item-text {
        font-size: 14px;
    }

    .industries__item-link {
        width: 36px;
        height: 36px;
    }

    .industries__item-link img {
        width: 16px;
    }

    .industries__item-description {
        font-size: 13px;
        padding-left: 30px;
        padding-right: 40px;
    }

    .industries__item.is-active .industries__item-content {
        padding: 0 0 16px 0;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 375px) {
    .header__top-container .header__auth-button {
        width: 130px;
        font-size: 10px;
        padding: 6px 4px;
    }

    .header__top-container .language-selector__toggle {
        height: 34px;
        min-width: 62px;
        padding: 0 10px;
        gap: 4px;
    }
    
    .header__top-container .language-selector__flag {
        width: 17px;
        height: 17px;
    }
    
    .header__top-container .language-selector__text {
        font-size: 11px;
    }
    
    .header__top-container .language-selector__dropdown {
        min-width: 140px;
    }

    .mobile-menu__controls {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .mobile-menu__controls .header__auth-button {
        width: 140px;
        font-size: 10px;
    }
    
    .mobile-menu__controls .language-selector__toggle {
        height: 38px;
        min-width: 66px;
    }
}

@media (max-width: 320px) {
    .header__top-container .header__auth-button {
        width: 110px;
        font-size: 9px;
        padding: 5px 3px;
    }

    .header__burger-button {
        width: 30px;
        left: 12px;
    }

    .header__burger-button span {
        width: 30px;
    }
    
    .header__top-container .language-selector__toggle {
        height: 32px;
        min-width: 58px;
        padding: 0 8px;
        gap: 3px;
    }
    
    .header__top-container .language-selector__flag {
        width: 16px;
        height: 16px;
    }
    
    .header__top-container .language-selector__text {
        font-size: 10px;
    }
    
    .header__top-container .language-selector__arrow {
        width: 9px;
        height: 9px;
    }
    
    .header__top-container .language-selector__dropdown {
        min-width: 130px;
        font-size: 12px;
    }
}

