:root {
    /* Цветовая палитра */
    --color-primary: #3991FB;
    /* Основной цвет */
    --color-secondary: #56D9FC;
    /* Второстепенный цвет */
    --color-background: #e8ebed;
    /* Цвет фона */
    --color-surface: #ecf0f3;
    /* Поверхностный цвет */
    --color-text: #31456a;
    /* Основной текст */
    --color-text-light: #6c757d;
    /* Второстепенный текст */

    /* Шрифты */
    --font-family-base: 'Montserrat', sans-serif;
    /* Базовый шрифт */

    /* Адаптивные размеры шрифта */
    --font-size-base: 1rem;
    /* Базовый размер текста (16px) */
    --font-size-small: 0.875rem;
    /* Для мелкого текста (14px) */
    --font-size-large: 1.25rem;
    /* Увеличенный текст (20px) */
    --font-size-h1: clamp(18px, 2.5vw, 48px);
    /* Заголовки H1 */
    --font-size-h2: clamp(16px, 2vw, 42px);
    /* Заголовки H2 */
    --font-size-h3: clamp(14px, 1.5vw, 36px);
    /* Заголовки H3 */
    --font-size-h4: clamp(14px, 1.5vw, 32px);
    /* Отступы и поля */
    --spacing-xs: 14px;
    /* Минимальный отступ */
    --spacing-sm: 28px;
    /* Маленький отступ */
    --spacing-md: 56px;
    --spacing-md-2: 84px;
    /* Средний отступ */
    --spacing-lg: 120px;
    /* Большой отступ */
    --spacing-xl: 240px;
    /* Максимальный отступ */

    /* Радиусы */
    --radius-sm: 4px;
    /* Малый радиус */
    --radius-md: 8px;
    /* Средний радиус */
    --radius-lg: 16px;
    /* Большой радиус */

    /* Тени */
    --box-shadow-sm: 0px 1px 3px rgba(0, 0, 0, 0.1);
    /* Маленькая тень */
    --box-shadow-md: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Средняя тень */
    --box-shadow-lg: 0px 10px 15px rgba(0, 0, 0, 0.2);
    /* Большая тень */

    /* Ширина контейнера */
    --container-width: 1160px;
    /* Максимальная ширина контейнера */
    --container-padding: 14px;
    /* Внутренние отступы контейнера */

    /* Breakpoints для адаптива */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;

    /* Примеры анимаций */
    --transition-duration: 0.2s;
    /* Длительность переходов */
    --transition-easing: ease-in-out;
    /* Плавность переходов */
}

/* Базовые стили для всего документа */
html {
    font-size: 100%;
    /* Устанавливаем 1rem = 16px */
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-family-base);
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.6;
    font-size: var(--font-size-base);
    background-color: var(--color-background);
    color: var(--color-text);
    margin: 0;
}

/* Контейнер */
.container {
    max-width: var(--container-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

/* Заголовки */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-base);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    text-transform: uppercase;
}

h4 strong {
    font-weight: 700;
}



h5 {
    font-size: 1rem;
}

h6 {
    font-size: var(--font-size-small);
}

/* Абзацы */
p {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Ссылки */
a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition-duration) var(--transition-easing);
}

a:hover {
    color: var(--color-secondary);
}

/* Кнопки */
button,
.btn {
    position: relative;
    font-family: var(--font-family-base);
    padding: 18px 58px;
    border: none;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 2px rgba(86, 217, 252, 0.8);
    transition: all var(--transition-duration) var(--transition-easing);
    z-index: 1;
    cursor: pointer;
    display: block;
    width: fit-content;
}

button::before,
.btn::before,
button::after,
.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    box-sizing: content-box;
    pointer-events: none;
    border-radius: 30px;
    transition: opacity var(--transition-duration) var(--transition-easing);
}

button::before,
.btn::before {
    z-index: -2;
    opacity: 1;
    background-color: transparent;
    background-image: linear-gradient(0.25turn, rgba(86, 217, 252, 1) 0%, rgba(57, 145, 251, 1) 100%);
}

button::after,
.btn::after {
    z-index: -1;
    opacity: 0;
    background-color: transparent;
    background-image: linear-gradient(0.778turn, rgba(86, 217, 252, 1) 0%, rgba(57, 145, 251, 1) 100%);
}

button:hover::after,
.btn:hover::after {
    opacity: 1;
}


button:hover,
.btn:hover {
    color: #fff;
}


button:disabled,
.btn:disabled {
    background-color: var(--color-text-light);
    cursor: not-allowed;
}

/* Списки */
ul,
ol {
    padding-left: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
}

li {
    margin-bottom: 0;
}

/* Формы */
input,
textarea,
select {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    padding: var(--spacing-xs);
    border: 1px solid var(--color-surface);
    border-radius: var(--radius-sm);
    width: 100%;
    transition: border-color var(--transition-duration) var(--transition-easing);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Карточки */
.card {
    background-color: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow-md);
    transition: box-shadow var(--transition-duration) var(--transition-easing);
}

.card:hover {
    box-shadow: var(--box-shadow-lg);
}

/* Таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-md);
}

th,
td {
    padding: var(--spacing-xs);
    text-align: left;
    border-bottom: 1px solid var(--color-surface);
}

th {
    font-weight: bold;
    background-color: var(--color-background);
}

/* Адаптивные стили */
@media (max-width: var(--breakpoint-lg)) {
    h1 {
        font-size: calc(var(--font-size-h1) - 4px);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}

.hidden {
    display: none !important;
}

header {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.header-logo {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-switch img {
    max-height: 30px;
}

.lang-switch {
    display: flex;
    align-items: center;
}
.header-logo img {
    max-width: 240px;
}

.header-bg {
    background-color: rgb(18 18 18 / 60%);
    background-image: url(/img/BackGround.svg);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    z-index: 0;
    overflow: hidden;
}

.header-wrap {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--spacing-lg);
}

.header-title {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

@keyframes pulsing {
    0% {
        transform: scale(0.5, 0.5);
        animation-timing-function: linear;
    }

    21% {
        transform: scale(0.5, 0.5);
        animation-timing-function: ease-in-out;
    }

    42% {
        transform: scale(1.3, 1.3);
        animation-timing-function: ease-in-out;
    }

    63% {
        transform: scale(1.3, 1.3);
        animation-timing-function: ease-in-out;
    }

    100% {
        transform: scale(0.5, 0.5);
    }
}

.pulsing-circle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.pulsing-circle::before {
    content: url(/img/BLUR.svg);
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 0.5;
    animation: pulsing 4.6s infinite linear;
}

.pulsing-circle::after {
    content: url(/img/Ellipse.png);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
}

.header-socials {
    padding: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-socials .social img {
    width: 30px;
    height: 30px;
}

.section-1 {
    padding: var(--spacing-lg) 0;
}

.section-1 .section-title {
    margin-top: var(--spacing-md);
    font-weight: 700;
}

.subtitle.text-grad {
    background: linear-gradient(to right, #56D9FC 0%, #3991FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 26px;
    text-transform: uppercase;
    background-position: center center;
    width: fit-content;
    margin-bottom: var(--spacing-sm);
}

.target-section,
.technology-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
    border-radius: var(--radius-md);
    position: relative;
}

.target-section .content {
    max-width: 68%;
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg) 0;
    padding-right: var(--spacing-sm);
    margin-left: auto;
}

.technology-section .content {
    max-width: 84%;
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg) 0 var(--spacing-lg) var(--spacing-lg);
    margin-right: auto;
}

.target-section .image {
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-left: auto;
}

.technology-section .image {
    max-width: 60%;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-right: auto;
}


.target-section .image img,
.technology-section .image img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 1140px;
}

.technology-section .image img {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.target-section .left {
    position: absolute;
    width: 50%;
    background-color: var(--color-surface);
    z-index: 2;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.technology-section .right {
    position: absolute;
    width: 50%;
    background-color: var(--color-surface);
    z-index: 2;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    right: 0;
}


.info-section {
    padding: var(--spacing-lg);
}

.info-cards {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.card {
    flex: 1;
    background-color: #e8ebed;
    border-radius: var(--radius-lg);
    box-shadow: 0px 15px 30px -10px rgba(49, 69, 106, 0.2);
    padding: var(--spacing-md);
    text-align: left;
    border: 1px solid #fff;
}

.card-title {
    margin-bottom: var(--spacing-sm);
}

.card-subtitle {
    color: transparent;
    background-image: linear-gradient(0.25turn, rgba(49, 69, 106, 1) 0%, rgba(57, 145, 251, 1) 100%);
    -webkit-background-clip: text;
    will-change: transform;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
}

.consultation {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    background-color: #e8ebed;
    border-radius: var(--radius-lg);
    box-shadow: 0px 15px 30px -10px rgba(49, 69, 106, 0.2);
    padding: 0 0 0 var(--spacing-md);
    border: 1px solid #fff;
}

.consultation-text {
    flex: 1;
    text-align: left;
}

.consultation-title {
    margin-bottom: var(--spacing-md);
}

.consultation-image {
    max-width: 60%;
    max-height: 270px;
    border-radius: var(--radius-md);
    width: 100%;
    height: 270px;
    background-image: url(/img/consult.jpg);
    background-position: center;
    background-size: cover;
}

.info-section .pulsing-circle,
.section-5 .pulsing-circle {
    margin-right: auto;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.fw-600 {
    font-weight: 600;
}

.technology-section ul {
    margin-bottom: var(--spacing-md);
}

.section-5 .section-title,
.section-5 ul {
    font-weight: 700;
    font-size: var(--font-size-h3);
    text-transform: none;
}

.section-5 {
    padding: var(--spacing-lg) 0;
}

.interactive-section {
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: var(--radius-md);
}

.image-container {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-md);
    width: 100%;
}

.main-image {
    width: 100%;
    border-radius: 30px;
}

.tooltip {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e8ebed;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    padding: 10px;
    text-align: center;
    width: 200px;
    z-index: -4;
    transition: opacity .2s ease;
    opacity: 0;
}

.tooltip img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.tooltip p,
.tooltip ul {
    font-size: 1rem;
    color: #333;
    margin: 0;
    text-align: left;
    text-transform: none;
    font-weight: 400;
}

.interactive-section .pulsing-circle:hover .tooltip {
    opacity: 1;
    z-index: 10;
}

.interactive-section .pulsing-circle {
    position: absolute;
}

.wonder-in-md {
    padding: var(--spacing-lg) 0;
}

.wonder-in-md h4 {
    margin-bottom: var(--spacing-md);
}

.insta-swiper-container {
    width: 50%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, opacity 0.3s;
}

.swiper-slide {
    scale: 0.7;
    /* Базовый размер для всех слайдов */
    border-radius: 15px;
    transition: scale .2s linear;
}

.swiper-slide-active {
    scale: 1;
    /* Увеличенный размер для активного слайда */
}

.swiper-slide-prev img,
.swiper-slide-next img {
    opacity: 0.7;
    /* Уменьшенная прозрачность для соседних слайдов */
}


.wonder-in-md .swiper-slide img {
    max-height: 490px;
    width: auto;
}


.nav-button-next,
.nav-button-prev {
    width: 50px;
    height: 50px;
    border: 1px solid #31456a;
    border-radius: 100%;
    background-color: rgba(232, 235, 237, 0.70);
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--transition-easing)
}

.nav-button-next:hover,
.nav-button-prev:hover {
    border-color: #fff;
}

.nav-button-next polyline,
.nav-button-prev polyline {
    transition: all .2s var(--transition-easing);
}

.nav-button-next:hover polyline,
.nav-button-prev:hover polyline {
    stroke: #fff;
}

.nav-button-prev {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.nav-button-prev svg {
    rotate: -180deg;
}

.arrow {
    width: 11px;
}

.nav-button-next {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.insta-swiper-container p {
    font-size: 18px;
    color: #31456a;
    font-weight: 700;
}

.insta-swiper-container .swiper-title {
    margin-bottom: 8px;
}

.slide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.insta-swiper-container .swiper-subtitle {
    font-weight: 500;
}

.calc .card {
    max-width: 460px;
    position: relative;
    left: -50px;
}

.calculator {
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    color: rgb(49, 69, 106);
    font-family: 'Montserrat', sans-serif;
}

.calculator label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.calculator input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

.calculator .output {
    font-size: 18px;
    font-weight: bold;
    color: #3991fb;
    margin-bottom: 15px;
}

.calculator .result {
    font-size: 18px;
    font-weight: bold;
    color: rgb(49, 69, 106);
    text-align: center;
    margin-top: 20px;
}

.support .image img {
    max-height: 865px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.contact .images .card {
    width: 100%;
    height: inherit;
    padding: 0;
}

.contact {
    padding: var(--spacing-lg) 0;
    padding-bottom: var(--spacing-sm);
}

.contact .contact-wrap {
    display: flex;
    gap: var(--spacing-sm);
    max-height: 435px;
    align-items: center;
}

.contact .form {
    max-width: 35%;
    flex-grow: 1;
    height: 100%;
    flex: 1;
}

.contact .images img {
    object-fit: cover;
    max-height: 435px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

.contact .images {
    max-width: 65%;
    width: 100%;
    border-radius: var(--radius-lg);
    height: 435px;
}

.contact .form label {
    display: block;
    color: rgb(49, 69, 106);
    font-size: 18px;
    font-weight: 700;
}

.contact .form input {
    border: 0;
    border-bottom: 1px solid rgb(49, 69, 106);
    background-color: transparent;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 500;
    height: 40px;
    margin-bottom: 12px;
}

.contact .form .form-group {
    margin-bottom: 15px;
}

.consent {
    margin: 0;
    font-size: 12px;
    color: rgb(49, 69, 106);
    margin-top: 15px;
    font-weight: 700;
    line-height: 1;
}

.contact .form button {
    margin-top: 0;
}

.contact .form .card {
    padding: 69px 40px;
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .card {
    padding: 30px 50px;
}

.footer-socials img,
.footer-socials a {
    width: 29px;
    height: 29px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

footer .btn {
    padding: 12px 32px;
    font-size: 16px;
}

footer {
    margin-bottom: var(--spacing-sm);
}

.footer-phone a {
    color: #31456a;
    font-size: 18px;
    font-weight: 500;
}

.footer-copyright {
    color: #31456a;
}

.form .iti__selected-flag {
    background-color: transparent;
}

ul#iti-0__country-listbox {
    max-width: 370px;
    font-size: 10px;
}

.target-section.calc .btn {
    margin-left: var(--spacing-md);
}

.mobile-bottom-links {
    display: none;
}

/* Попап скрыт по умолчанию */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    /* Начальные значения для анимации */
    opacity: 0;
    visibility: hidden;

    /* Плавный переход */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.popup .popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 40%;
    max-height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup .popup-close {
    position: absolute;
    top: 4px;
    right: 4px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 999999;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #fff;
    box-shadow: 0 0 9px #e1e1e1;
}

.popup .swiper-container {
    width: 100%;
    height: 100%;
}

.popup .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

#mobile-menu {
    display: none;
}

.consent.status-sending {
    color: blue;
}

.consent.status-success {
    color: green;
}

.consent.status-error {
    color: red;
}

.inst-link {
    margin-top: 20px;
    color: #31456a;
    border: 2px solid #ecf0f3;
    background-color: #ecf0f3;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.25);
    height: 45px;
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
    display: flex;
}

@media (max-width: 768px) {
    
    .header-logo img {
        max-width: 180px;
    }
    .header-logo .lang-switch {
        display: none;
    }
    header video {
        height: 100%;
    }

    .header-socials {
        display: none;
    }

    .header-wrap {
        justify-content: normal;
    }

    .header-content {
        margin: auto 0;
        gap: 48px;
    }

    .header-logo {
        padding: 26px 20px;
    }


    .section-1 {
        padding: var(--spacing-md) 40px;
    }

    h3 {
        font-size: 20px;
    }

    .section-1 .section-title {
        margin-top: var(--spacing-sm);
    }

    .target-section {
        flex-direction: column-reverse;
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .target-section .left {
        position: relative;
        width: 100%;
        border-radius: 20px;
        padding: 10px 10px;
        top: -100px;
        max-width: calc(100% - 20px);
    }

    .target-section .image {
        max-width: 100%;
    }

    .target-section .image img,
    .technology-section .image img {
        border-radius: 26px;
    }

    .target-section .content,
    .technology-section .content {
        max-width: 100%;
        padding: 60px 40px;
    }

    .info-section {
        padding: var(--spacing-md) 0;
    }

    .info-section .pulsing-circle,
    .section-5 .pulsing-circle {
        margin: 0 auto;
        margin-bottom: 20px;
    }

    h4 {
        font-size: 20px;
        line-height: 31px;
    }

    .info-section h4 {
        text-align: center;
    }

    .info-cards {
        flex-direction: column;
    }

    .card {
        padding: 40px;
        width: 100%;
    }

    .consultation-title {
        margin-bottom: 40px;
    }

    h4.card-title {
        text-align: left;
    }

    .card-subtitle {
        margin: 0;
    }

    .consultation {
        flex-wrap: wrap;
        padding: 40px;
        gap: 50px;
    }

    .consultation .btn {
        margin: 0 auto;
    }

    .consultation-image {
        max-width: 100%;
    }

    .technology-section .image {
        max-width: 100%;
        max-height: 300px;
    }

    .technology-section .image img {
        max-height: 300px;
    }

    .technology-section .right {
        position: relative;
        width: calc(100% - 20px);
        padding: 10px;
        top: -100px;
        border-radius: 20px;
        margin: 0 auto;
    }

    .technology-section {
        flex-wrap: wrap;
        padding-bottom: 0;
        padding-top: 0;
    }

    .technology-section .content {
        max-width: 100%;
    }

    button,
    .btn {
        font-size: 16px;
    }

    .technology-section .btn {
        padding: 12px 28px;
        text-align: center;
    }

    .section-5 {
        padding: 0px 40px;
    }

    .section-5 .section-title,
    .section-5 ul {
        font-size: 20px;
    }

    .interactive-section {
        background-color: transparent;
        padding: var(--spacing-md) 0;
    }

    .tooltip p,
    .tooltip ul {
        font-size: 14px;
    }

    .wonder-in-md {
        padding: var(--spacing-sm) 20px;
        overflow: hidden;
    }

    .wonder-in-md h4 {
        text-align: center;
    }

    .insta-swiper-container {
        width: 65%;
    }

    .nav-button-next {
        right: -26%;
    }

    .nav-button-prev {
        left: -26%;
    }

    .calc .card {
        left: 0;
        padding: 20px;
    }

    .subtitle.text-grad {
        font-size: 22px;
        line-height: 1;
    }

    .target-section.calc .btn {
        margin: 0 auto;
    }

    .contact .contact-wrap {
        max-height: 100%;
        flex-direction: column;
    }

    .contact .form {
        max-width: 100%;
    }

    .contact {
        padding: 0;
        padding-bottom: var(--spacing-sm);
    }

    .contact h4 {
        text-align: center;
    }

    .contact .images {
        max-width: 100%;
        height: 185px;
    }

    .footer-wrap {
        flex-direction: column;
        gap: 22px;
    }

    footer {
        margin-bottom: 95px;
    }

    .pulsing-circle::after {
        content: "";
        width: 15px;
        height: 15px;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(0.25turn, rgba(86, 217, 252, 1) 0%, rgba(57, 145, 251, 1) 100%);
        border-radius: 100%;
        top: 12.5px;
        left: 12.5px;
    }

    .mobile-fixed-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .mobile-bottom-links {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        list-style-type: none;
        margin: 0;
        padding: 0;
        background-color: #fefefe;
    }

    .t975__list-item {
        padding: 12px 12px 10px 12px;
        -webkit-flex-grow: 1;
        flex-grow: 1;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        -webkit-flex-basis: auto;
        flex-basis: auto;
        box-sizing: border-box;
        min-width: calc(100% / 3);
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .popup .popup-content {
        max-width: 85%;
    }

    .t975__menu-text {
        font-size: 12px;
        color: #31456a;
        font-weight: 600;
    }

    .t975__icon-wrapper,
    .t975__icon-wrapper img {
        width: 21px;
        height: 21px;
    }

    .t975__menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Кнопка меню */
    #mobile-menu-btn,
    #close-menu-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        background: #ffffff;
        color: #000;
        border: none;
        border-radius: 100%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-direction: column;
        gap: 4px;
        opacity: 1;
        transition: opacity .2s ease;
    }

    #mobile-menu-btn {
        z-index: 9999999;
    }

    .menu-btn-line {
        height: 2px;
        width: 22px;
        background-color: #31456a;
    }

    /* Меню */
    #mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: left 0.2s ease-in-out;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #mobile-menu-btn.hide {
        opacity: 0;
        z-index: -10;
    }

    /* Шапка меню */
    .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #fff;
    }

    .menu-logo {
        height: 40px;
    }

    .menu-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    /* Навигация */
    .menu-nav {
        padding: 20px;
        flex: 1;
    }

    .menu-nav a {
        font-size: 20px;
        color: #31456a;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 15px;
        display: block;
        line-height: 1.1;
    }

    /* Подвал меню */
    .menu-footer {
        padding: 20px;
        background: #fff;
        text-align: left;
    }

    .menu-footer a {
        font-weight: 700;
        font-size: 20px;
    }

    .menu-icons {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .menu-icons a {
        width: 30px;
        height: 30px;
    }

    #close-menu-btn {
        z-index: 9999;
        box-shadow: 0 0px 20px 1px #5d5d5d30;
    }

    /* Показать меню */
    #mobile-menu.open {
        left: 0;
    }

    body>main>section.interactive-section>div>div>div:nth-child(2) .tooltip {
        left: 230%;
    }

}

.popup.hide {
    opacity: 0;
    visibility: hidden;
}

.popup.open {
    opacity: 1;
    visibility: visible;
}

#contact-popup .popup-content {
    padding: 0;
}

#contact-popup .contact .form {
    max-width: 100%;
}

#contact-popup .contact .form button {
    padding: 12px 28px;
}

.iti {
    width: 100%;
}