/* --- Combined and fixed CSS --- */

            /* BASE LAYOUT */
            :root {
                --text-primary: #050f19;
                --text-accept: #0057ff;
                --text-gray: #050f1966;
            }
            *,
            *:before,
            *:after {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }
            html {
                font-size: 10px;
                line-height: 1.15;
                scroll-behavior: smooth;
                overflow-x: hidden;
            }
            @media (max-width: 1300px) {
                html {
                    font-size: 0.7vw;
                }
            }
            @media (max-width: 760px) {
                html {
                    font-size: 10px;
                }
            }
            body {
                font-family: Inter, sans-serif;
                font-weight: 500;
                min-height: 100vh;
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: space-between;
                background-color: #fafbfc;
                font-size: 2.4rem;
                overflow-x: hidden;
            }
            a {
                text-decoration: none;
                outline: none;
                color: inherit;
            }
            a:hover {
                text-decoration: none;
            }
            input,
            textarea,
            select {
                font-family: Inter, sans-serif;
                box-shadow: none;
                outline: none !important;
            }
            button {
                border: none;
                background: none;
                font-family: Inter, sans-serif;
                outline: none !important;
                cursor: pointer;
            }
            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 32px;
            }
            @media (max-width: 760px) {
                .container {
                    padding: 0 18px;
                }
            }
            svg.icon {
                display: inline-block;
                width: 1em;
                height: 1em;
                vertical-align: middle;
                fill: currentColor;
                transition: fill 0.25s ease;
            }
            #app {
                width: 100%;
            }

            /* HEADER & MENU */
            .header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                background-color: #fff;
                color: #323d46;
                z-index: 10000;
                padding: 20px 15px;
            }
            .header__wrap {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                height: 53px;
            }
            @media (max-width: 900px) {
                .header__wrap {
                    height: 61px;
                }
            }
            .header__logo {
                display: block;
                max-width: 16rem;
                margin-right: 4rem;
            }
            .header__logo svg {
                width: 100%;
            }
            .header__list {
                list-style-type: none;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.6rem;
                line-height: 100%;
            }
            @media (max-width: 760px) {
                .header__list {
                    display: none;
                }
            }
            .header__list-item {
                margin: 0 5px;
                margin-right: 1rem;
            }
            .header__list-item:last-child {
                margin-right: 0;
            }
            .header__list-button {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .header__list-button.active:after {
                transform: rotate(225deg);
                margin-bottom: -4px;
            }
            .header__list-button:after {
                content: " ";
                display: block;
                width: 6px;
                height: 6px;
                border-right: 1px solid;
                border-bottom: 1px solid;
                transform: rotate(45deg);
                margin-left: 7px;
                margin-bottom: 3px;
                transition: 0.3s;
            }
            .header__list-link {
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
                transition: 0.3s;
                color: var(--text-primary);
                font-weight: 700;
            }
            .header__list-link:hover {
                background-color: #efefef;
            }
            .header__actions {
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
            .header__lang {
                position: relative;
                display: flex;
                align-items: center;
            }
            .header__lang-current {
                display: inline-flex;
                align-items: center;
                justify-content: space-between;
                padding: 0.6rem 0.8rem;
                border-radius: 8px;
                transition: 0.3s;
                position: relative;
                z-index: 100;
                font-weight: 700;
                font-size: 15px;
                line-height: 100%;
                border: 0;
                background: transparent;
                color: var(--text-primary);
                min-width: 48px;
            }
            .header__lang-current:hover {
                background: #eff3f8;
            }
            .header__telegram {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                height: 4.7rem;
                padding: 0 2.4rem;
                border-radius: 5rem;
                background: #000;
                color: #fff;
                font-weight: 600;
                font-size: 1.6rem;
                margin-left: 20px;
                transition: 0.3s;
            }
            @media (max-width: 760px) {
                .header__telegram {
                    display: none;
                }
            }
            .header__telegram:hover {
                opacity: 0.8;
            }
            .burger {
                display: none;
            }
            @media (max-width: 760px) {
                .burger {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                    width: 24px;
                    height: 24px;
                    position: relative;
                    margin-left: 20px;
                }
                .burger span,
                .burger:before,
                .burger:after {
                    content: "";
                    position: absolute;
                    right: 0;
                    left: 0;
                    display: block;
                    width: inherit;
                    height: 2px;
                    background-color: #000;
                    border-radius: 4px;
                    transition: 0.5s;
                }
                .burger:before {
                    transform: translateY(-5px);
                }
                .burger:after {
                    transform: translateY(5px);
                }
            }

            .menu-mobile {
                width: 100%;
                position: fixed;
                top: 0;
                left: 0;
                height: 100%;
                overflow-y: auto;
                z-index: 1000;
                background: #fff;
                visibility: hidden;
                transition: 0.5s;
                opacity: 0;
                transform: translateY(-100%);
                display: none;
            }
            @media (max-width: 760px) {
                .menu-mobile {
                    display: block;
                }
            }
            .menu-mobile__wrap {
                width: 100%;
                padding: 100px 20px 61px;
            }
            .menu-mobile__sub {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                line-height: 100%;
                color: #000;
                text-align: center;
                margin-bottom: 24px;
                transition: 0.3s;
            }
            .menu-mobile__sub:hover {
                color: #007bfb;
            }
            .menu-mobile__sub.active:after {
                transform: rotate(225deg);
                margin-bottom: -4px;
            }
            .menu-mobile__sub:after {
                content: " ";
                display: block;
                width: 6px;
                height: 6px;
                border-right: 1px solid;
                border-bottom: 1px solid;
                transform: rotate(45deg);
                margin-left: 7px;
                margin-bottom: 3px;
                transition: 0.3s;
            }
            .menu-mobile-list {
                list-style-type: none;
                font-size: 16px;
                line-height: 100%;
                color: #000;
                text-align: center;
            }
            .menu-mobile-list li {
                margin-bottom: 24px;
            }
            .menu-mobile-list a {
                transition: 0.3s;
            }
            .menu-mobile-list a:hover {
                color: #007bfb;
            }
            .menu-mobile-list__hide {
                display: none;
                font-weight: 600;
                font-size: 16px;
                line-height: 100%;
                color: currentColor;
            }
            .menu-mobile-list.active .menu-mobile-list__hide {
                display: block;
            }
            .menu-open {
                overflow: hidden;
            }
            .menu-open .menu-mobile {
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
            }
            .menu-open .burger span {
                opacity: 0;
            }
            .menu-open .burger:before {
                transform: rotate(45deg);
            }
            .menu-open .burger:after {
                transform: rotate(-45deg);
            }

            .menu-products {
                opacity: 0;
                z-index: 1000;
                position: fixed;
                top: 93px;
                right: 0;
                left: 0;
                padding: 6rem;
                color: #000;
                transform: translate3d(0, -10%, 0);
                transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
                pointer-events: none;
                visibility: hidden;
                background: rgba(255, 255, 255, 0.97);
            }
            @media (max-width: 900px) {
                .menu-products {
                    top: 61px;
                }
            }
            @media (max-width: 760px) {
                .menu-products {
                    display: none;
                }
            }
            .menu-products.active {
                opacity: 1;
                pointer-events: all;
                transform: translateZ(0);
                visibility: visible;
            }
            .menu-products__wrap {
                position: relative;
                display: flex;
                gap: 20px;
            }
            .menu-products__item {
                display: block;
                padding-left: 5.6rem;
                background-size: 3.2rem auto;
                background-repeat: no-repeat;
                color: currentColor;
                cursor: pointer;
                width: 100%;
                max-width: 37rem;
                margin-bottom: 4rem;
            }
            .menu-products__item-title {
                margin: 0 0 0.8rem;
                font-weight: 900;
                font-size: 2rem;
                line-height: 120%;
                transition: color 0.25s ease-in-out;
            }
            .menu-products__item:hover .menu-products__item-title {
                color: #007bfb;
            }
            .menu-products__item p {
                font-size: 1.6rem;
                line-height: 150%;
            }

            /* MAIN SECTIONS */
            .main {
                width: 100%;
                flex-grow: 1;
                min-height: 600px;
                padding-top: 156px;
            }
            @media (max-width: 760px) {
                .main {
                    padding-top: 92px;
                }
            }
            h2 {
                font-size: 5.2rem;
                font-weight: 700;
                line-height: 120%;
            }
            @media (max-width: 760px) {
                h2 {
                    font-size: 3rem;
                    margin-bottom: 30px !important;
                }
            }

            /* HOME */
            .home {
                width: 100%;
                margin-bottom: 12rem;
                overflow: hidden;
                padding-top: 1.6rem;
            }
            @media (max-width: 760px) {
                .home {
                    margin-bottom: 8rem;
                    padding-top: 0;
                }
            }
            .home__wrap {
                width: 100%;
                display: flex;
                align-items: flex-start;
                justify-content: space-between;
                gap: 4rem;
                padding: 4.8rem;
                border-radius: 3.2rem;
                background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
                box-shadow: 0 18px 48px rgba(24, 52, 89, 0.08);
            }
            @media (max-width: 760px) {
                .home__wrap {
                    display: block;
                    padding: 2.6rem 2rem;
                    border-radius: 2.4rem;
                }
            }
            .home__text {
                width: 100%;
                max-width: 71rem;
            }
            @media (max-width: 760px) {
                .home__text {
                    max-width: 100%;
                }
            }
            .home__text h1 {
                font-size: clamp(3.8rem, 7vw, 7.2rem);
                line-height: 120%;
                font-weight: 900;
                margin-bottom: 20px;
            }
            @media (max-width: 760px) {
                .home__text h1 {
                    text-align: center;
                    font-size: 3.4rem;
                }
            }
            @media (max-width: 370px) {
                .home__text h1 {
                    font-size: 3rem;
                }
            }
            .home__text p {
                max-width: 550px;
                font-size: 2.2rem;
                margin-bottom: 3rem;
                line-height: 150%;
            }
            @media (max-width: 760px) {
                .home__text p {
                    font-size: 1.8rem;
                    text-align: center;
                    margin: 0 auto;
                    margin-bottom: 2.4rem;
                }
            }
            .home__wallet {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 5rem;
                background: #007bfb;
                color: #fff;
                font-weight: 600;
                transition: 0.3s;
                text-align: center;
                max-width: 100%;
                height: 6.4rem;
                padding: 0 4rem;
                font-weight: 700;
                font-size: 1.9rem;
                box-shadow: 0 12px 26px rgba(0, 123, 251, 0.35);
            }
            @media (max-width: 760px) {
                .home__wallet {
                    width: 100%;
                    height: 5rem;
                    font-size: 1.8rem;
                }
            }
            .home__wallet:hover {
                background: #3056d3;
            }
            .home__image {
                width: min(52rem, 100%);
                display: flex;
                align-items: center;
                justify-content: flex-start;
            }
            @media (max-width: 760px) {
                .home__image {
                    width: 100%;
                    margin-top: 2.4rem;
                    padding: 0;
                }
            }
            .home__image img,
            .home__image svg {
                width: 100%;
            }

            /* HOW DOES IT WORK */
            .how-does {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .how-does {
                    margin-bottom: 8rem;
                }
            }
            .how-does__wrap {
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
            @media (max-width: 760px) {
                .how-does__wrap {
                    grid-template-columns: 1fr;
                }
            }
            .how-does__item {
                border-radius: 20px;
                padding: 5rem;
                overflow: hidden;
                display: block;
            }
            @media (max-width: 760px) {
                .how-does__item {
                    padding: 30px 24px;
                }
            }
            .how-does__item .title {
                display: block;
                font-size: 5.2rem;
                margin-bottom: 30px;
                font-weight: 700;
            }
            @media (max-width: 760px) {
                .how-does__item .title {
                    font-size: 3rem;
                    margin-bottom: 20px;
                }
            }
            .how-does__item .text {
                font-size: 2.4rem;
                line-height: 150%;
                display: block;
            }
            @media (max-width: 760px) {
                .how-does__item .text {
                    margin-bottom: 2.4rem;
                    font-size: 1.8rem;
                }
            }
            .how-does__item_first {
                display: flex;
                align-items: center;
                justify-content: space-between;
                grid-column-start: 1;
                grid-column-end: -1;
                background-color: #323d46;
                color: #fff;
            }
            @media (max-width: 760px) {
                .how-does__item_first {
                    display: block;
                }
            }
            .how-does__item_first .how-does__item-text {
                padding-right: 50px;
            }
            @media (max-width: 760px) {
                .how-does__item_first .how-does__item-text {
                    padding-right: 0;
                }
            }
            .how-does__item_first img {
                width: 340px;
                max-width: 405px;
                margin-left: 50px;
                transition: 1s;
                display: block;
            }
            @media (max-width: 760px) {
                .how-does__item_first img {
                    width: 100%;
                    max-width: 100%;
                    margin: 0;
                }
            }
            .how-does__item_second {
                background-color: #fff;
            }
            .how-does__item_second .title {
                font-size: 4rem;
            }
            @media (max-width: 760px) {
                .how-does__item_second .title {
                    font-size: 2.8rem;
                    margin-bottom: 20px;
                }
            }
            .how-does__item_third {
                color: #fff;
                background-color: #007bfb;
            }
            .how-does__item_third .title {
                font-size: 4rem;
                margin-bottom: 20px;
            }
            @media (max-width: 760px) {
                .how-does__item_third .title {
                    font-size: 2.8rem;
                    margin-bottom: 20px;
                }
            }
            .how-does__item_third img {
                width: 353px;
                max-width: 100%;
                transition: 1s;
                margin: 0 auto;
                display: block;
            }
            .how-does__item_third .link {
                margin-top: 20px;
                padding: 10px 20px;
                font-size: 1.8rem;
                font-weight: 700;
                transition: 0.3s;
                border-radius: 25px;
                display: inline-block;
                margin-left: -20px;
            }
            @media (max-width: 760px) {
                .how-does__item_third .link {
                    margin-left: -10px;
                }
            }
            .how-does__item_third .link .icon {
                margin-left: 5px;
            }
            .how-does__item_third:hover .link {
                background-color: #3056d3;
            }
            .how-does__item:hover img {
                transform: scale(1.1);
            }
            @media (max-width: 760px) {
                .how-does__item:hover img {
                    transform: scale(1.05);
                }
            }

            /* STATS */
            .stats {
                width: 100%;
                background-color: #007bfb;
                margin-bottom: 160px;
            }
            .stats__wrap {
                width: 100%;
                padding: 8.5rem 0;
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 3rem;
                color: #fff;
            }
            @media (max-width: 760px) {
                .stats__wrap {
                    gap: 70px;
                    grid-template-columns: 1fr;
                }
            }
            .stats__item {
                width: 100%;
            }
            .stats__item .num {
                font-size: 5.2rem;
                font-weight: 900;
                margin-bottom: 12px;
                line-height: 120%;
                display: block;
            }
            .stats__item p {
                font-size: 1.6rem;
                max-width: 325px;
            }

            /* HOW MUCH - Pricing block */
            .how-much {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .how-much {
                    margin-bottom: 8rem;
                }
            }
            .how-much__card {
                position: relative;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 4rem;
                padding: 4.8rem 5.6rem;
                border-radius: 2.4rem;
                background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
                color: var(--text-primary);
                box-shadow: 0 18px 48px rgba(24, 52, 89, 0.08);
            }
            @media (max-width: 760px) {
                .how-much__card {
                    flex-direction: column;
                    padding: 3.2rem 2.4rem;
                    gap: 2.4rem;
                }
            }
            .how-much__content {
                flex: 1;
                min-width: 0;
            }
            .how-much__image {
                flex-shrink: 0;
                width: min(28rem, 100%);
            }
            .how-much__image img {
                width: 100%;
                height: auto;
                display: block;
            }
            @media (max-width: 760px) {
                .how-much__image {
                    width: min(20rem, 100%);
                }
            }
            .how-much__badge {
                display: inline-flex;
                align-items: center;
                padding: 0.8rem 1.6rem;
                margin-bottom: 2rem;
                background-color: #ffa8001a;
                border-radius: 100px;
                font-weight: 700;
                font-size: 1.2rem;
                letter-spacing: 0.5px;
                color: #ffa800;
                text-transform: uppercase;
            }
            .how-much__title {
                font-weight: 700;
                font-size: 4rem;
                line-height: 1.2;
                margin: 0 0 3.2rem;
                max-width: 520px;
                color: var(--text-primary);
            }
            @media (max-width: 760px) {
                .how-much__title {
                    font-size: 2.8rem;
                    margin-bottom: 2.4rem;
                }
            }
            .how-much__price-block {
                margin-bottom: 3.2rem;
            }
            .how-much__from {
                display: block;
                font-weight: 500;
                font-size: 1.6rem;
                color: var(--text-gray);
                margin-bottom: 0.4rem;
            }
            .how-much__price {
                display: flex;
                align-items: baseline;
                gap: 1.2rem;
                margin-bottom: 1.6rem;
            }
            .how-much__price-num {
                font-weight: 800;
                font-size: 5.6rem;
                line-height: 1;
                color: var(--text-accept);
            }
            @media (max-width: 760px) {
                .how-much__price-num {
                    font-size: 4.4rem;
                }
            }
            .how-much__price-unit {
                font-weight: 500;
                font-size: 2rem;
                color: #637381;
            }
            @media (max-width: 760px) {
                .how-much__price-unit {
                    font-size: 1.6rem;
                }
            }
            .how-much__subtext {
                font-weight: 400;
                font-size: 1.8rem;
                line-height: 1.5;
                color: var(--text-primary);
                margin: 0;
                max-width: 480px;
            }
            @media (max-width: 760px) {
                .how-much__subtext {
                    font-size: 1.5rem;
                }
            }
            .how-much__cta {
                display: inline-flex;
                align-items: center;
                gap: 0.8rem;
                padding: 1.6rem 2.8rem;
                background: #007bfb;
                color: #fff;
                font-weight: 700;
                font-size: 1.8rem;
                border-radius: 1.2rem;
                transition: background 0.2s, transform 0.2s;
                box-shadow: 0 12px 26px rgba(0, 123, 251, 0.35);
            }
            .how-much__cta:hover {
                background: #3056d3;
                transform: translateY(-1px);
            }
            .how-much__cta .icon {
                width: 1.2em;
                height: 1.2em;
            }

            /* WHAT ELSE */
            .what-else {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .what-else {
                    margin-bottom: 8rem;
                }
            }
            .what-else__wrap {
                width: 100%;
            }
            .what-else__wrap h2 {
                margin: 0 0 5rem;
            }
            .what-else__item {
                width: 100%;
                display: flex;
                justify-content: space-between;
                padding: 6rem 7rem;
                border-radius: 3rem;
                margin-bottom: 6rem;
            }
            @media (max-width: 760px) {
                .what-else__item {
                    padding: 30px 24px 108px;
                    display: block;
                    margin-bottom: 3rem;
                    position: relative;
                }
            }
            .what-else__item_first {
                background-color: #323d46;
                color: #fff;
            }
            .what-else__item_first .what-else__item-link {
                color: #fff;
            }
            .what-else__item_first:hover .what-else__item-link {
                background-color: #3056d3;
                color: #fff;
            }
            .what-else__item_second {
                background-color: #fff;
                color: #000;
            }
            .what-else__item_second:hover .what-else__item-link {
                background-color: #3056d3;
                color: #fff;
            }
            .what-else__item:hover .what-else__item-image {
                transform: scale(1.05);
            }
            .what-else__item-text {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                width: 100%;
                max-width: 60rem;
                min-height: 100%;
            }
            @media (max-width: 760px) {
                .what-else__item-text {
                    margin-bottom: 30px;
                }
            }
            .what-else__item-text p {
                margin: 0;
                font-weight: 400;
                font-size: 2.4rem;
                line-height: 150%;
            }
            @media (max-width: 760px) {
                .what-else__item-text p {
                    font-size: 1.8rem;
                }
            }
            .what-else__item-title {
                display: block;
                font-weight: 700;
                font-size: 5.2rem;
                line-height: 120%;
                margin: 0 0 30px;
            }
            @media (max-width: 760px) {
                .what-else__item-title {
                    font-size: 3rem;
                    margin-bottom: 20px;
                }
            }
            .what-else__item-actions {
                display: flex;
                align-items: center;
                margin-top: auto;
                padding-top: 7.5rem;
            }
            @media (max-width: 760px) {
                .what-else__item-actions {
                    padding: 0;
                    bottom: 24px;
                    left: 20px;
                    right: 20px;
                    position: absolute;
                    justify-content: center;
                    flex-direction: column;
                }
            }
            .what-else__item-image {
                width: 100%;
                max-width: 40rem;
                transition: 1s;
                display: block;
            }
            .what-else__item-image img {
                width: 100%;
            }
            .what-else__item-link {
                padding: 10px 20px;
                font-size: 1.8rem;
                font-weight: 700;
                transition: 0.3s;
                border-radius: 25px;
                display: inline-block;
                margin-left: -20px;
                white-space: nowrap;
            }
            @media (max-width: 760px) {
                .what-else__item-link {
                    font-size: 1.6rem;
                    margin-left: 0;
                }
            }
            .what-else__item-link .icon {
                margin-left: 5px;
            }
            .what-else__item-info {
                min-width: 45.5rem;
                margin-left: 4.4rem;
                min-height: 4rem;
                border: 1px solid rgba(0, 0, 0, 0.1);
                padding: 1.2rem 1.2rem 1.2rem 6.3rem;
                border-radius: 1.4rem;
                box-sizing: border-box;
            }
            @media (max-width: 760px) {
                .what-else__item-info {
                    order: -1;
                    margin-left: 0;
                    margin-bottom: 24px;
                    background-size: auto 20px;
                    padding: 10px 16px 10px 16px;
                    min-width: 100%;
                }
            }
            .what-else__item-info .text {
                margin: 0;
                font-weight: 400;
                line-height: 140%;
                font-size: 1.5rem;
                color: #637381;
                display: block;
            }

            /* YEARS STATS */
            .years-stats {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .years-stats {
                    margin-bottom: 8rem;
                }
            }
            .years-stats__wrap h2 {
                font-weight: 900;
                font-size: 10rem;
                line-height: 120%;
                text-align: center;
            }
            @media (max-width: 760px) {
                .years-stats__wrap h2 {
                    font-size: 4.8rem;
                    margin-bottom: 0 !important;
                }
            }
            .years-stats__wrap p {
                margin-bottom: 20px;
                font-weight: 500;
                font-size: 3.2rem;
                line-height: 150%;
                text-align: center;
            }
            @media (max-width: 760px) {
                .years-stats__wrap p {
                    font-size: 1.6rem;
                    margin-bottom: 12px;
                }
            }

            /* OUR TEAM */
            .our-team {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .our-team {
                    margin-bottom: 8rem;
                }
            }
            .our-team__wrap h2 {
                margin: 0 0 3rem;
                text-align: center;
            }
            @media (max-width: 760px) {
                .our-team__wrap h2 {
                    font-size: 3rem;
                    margin-bottom: 20px !important;
                }
            }
            .our-team__wrap > p {
                margin-bottom: 5rem;
                text-align: center;
                font-weight: 400;
                font-size: 2.4rem;
                line-height: 150%;
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }
            @media (max-width: 760px) {
                .our-team__wrap > p {
                    margin-bottom: 40px;
                    font-size: 1.8rem;
                }
            }
            .our-team-list {
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 3rem;
            }
            @media (max-width: 760px) {
                .our-team-list {
                    display: flex;
                    gap: 0;
                    width: calc(100% + 40px);
                    overflow: auto;
                    position: relative;
                    left: -20px;
                    padding: 0 10px 30px;
                    scroll-snap-type: x mandatory;
                }
            }
            .our-team-list__item {
                display: flex;
                flex-direction: column;
                overflow: hidden;
                border-radius: 3rem;
                background-color: #fff;
            }
            @media (max-width: 760px) {
                .our-team-list__item {
                    margin: 0 10px;
                    min-width: 246px;
                    scroll-snap-align: center;
                }
            }
            .our-team-list__item-thumb img {
                width: 100%;
                vertical-align: bottom;
            }
            .our-team-list__item-info {
                display: flex;
                flex-direction: column;
                flex-grow: 1;
                padding: 2.4rem;
                background-color: #fff;
            }
            .our-team-list__item-label {
                margin-bottom: 2rem;
                font-weight: 600;
                font-size: 1.8rem;
                line-height: 100%;
                color: #a1a1a1;
            }
            .our-team-list__item-name {
                font-weight: 600;
                font-size: 2.8rem;
                line-height: 150%;
            }
            @media (max-width: 760px) {
                .our-team-list__item-name {
                    font-size: 2rem;
                }
            }

            /* REVIEWS & SWIPER OVERRIDES */
            .reviews {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .reviews {
                    margin-bottom: 8rem;
                }
            }
            .reviews__wrap {
                width: 100%;
                position: relative;
            }
            .reviews__title {
                width: 100%;
                margin-bottom: 5rem;
                padding-right: 19rem;
            }
            @media (max-width: 760px) {
                .reviews__title {
                    margin-bottom: 30px;
                    padding-right: 0;
                }
            }
            .reviews__title h2 {
                margin: 0 0 3rem;
            }
            .reviews__title p {
                font-weight: 400;
                line-height: 150%;
                font-size: 2rem;
            }
            .reviews__actions {
                display: none;
            } /* Hiding external swiper buttons since we use native CSS scroll */
            .swiper-wrapper {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
                gap: 20px;
                padding-bottom: 20px;
            }
            .swiper-wrapper::-webkit-scrollbar {
                display: none;
            }
            .swiper-slide {
                scroll-snap-align: start;
                flex: 0 0 auto;
                width: 100%;
            }
            .reviews__slider-item {
                display: flex;
                align-items: center;
            }
            @media (max-width: 760px) {
                .reviews__slider-item {
                    display: block;
                }
            }
            .reviews__slider-item-image {
                width: 100%;
                max-width: 47rem;
                margin-right: 6rem;
            }
            @media (max-width: 760px) {
                .reviews__slider-item-image {
                    max-width: 100%;
                    margin-bottom: 2rem;
                    margin-right: 0;
                }
            }
            .reviews__slider-item-image img {
                width: 100%;
                vertical-align: bottom;
                border-radius: 25px;
            }
            .reviews__slider-item-text {
                width: 100%;
                max-width: 57rem;
            }
            .reviews__slider-item-text > p {
                margin: 0;
                font-weight: 600;
                font-size: 2.4rem;
                margin-bottom: 3rem;
            }
            @media (max-width: 760px) {
                .reviews__slider-item-text > p {
                    margin-bottom: 2.4rem;
                    font-size: 1.8rem;
                }
            }
            .reviews__slider-item-text small {
                display: block;
                font-weight: 500;
                font-size: 1.6rem;
                line-height: 140%;
            }
            .reviews__slider-item-text small a {
                color: #007bfb;
                transition: 0.3s;
            }

            /* PARTNERS */
            .partners {
                width: 100%;
                margin-bottom: 16rem;
                overflow: hidden;
            }
            @media (max-width: 760px) {
                .partners {
                    margin-bottom: 8rem;
                }
            }
            .partners__wrap h2 {
                margin: 0 0 5rem;
            }
            .partners__swiper {
                margin-bottom: 20px;
            }
            .partners__swiper .swiper-slide {
                width: 270px;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 140px;
                padding: 0 15px;
                background-color: #fff;
                border-radius: 20px;
            }
            @media (max-width: 760px) {
                .partners__swiper .swiper-slide {
                    width: 150px;
                    height: 80px;
                }
            }
            .partners__swiper .swiper-slide img {
                width: auto;
                max-width: 100%;
                height: auto;
                max-height: 90px;
            }

            /* WHY AMLBOT */
            .why-amlbot {
                width: 100%;
                margin-bottom: 16rem;
            }
            @media (max-width: 760px) {
                .why-amlbot {
                    margin-bottom: 8rem;
                }
            }
            .why-amlbot__wrap h2 {
                margin-bottom: 5rem;
            }
            .why-amlbot__items {
                width: 100%;
                display: flex;
                justify-content: space-between;
                margin-bottom: 3rem;
            }
            @media (max-width: 760px) {
                .why-amlbot__items {
                    display: block;
                    margin-bottom: 0;
                }
            }
            .why-amlbot__item {
                padding: 5rem;
                border-radius: 20px;
                box-sizing: border-box;
            }
            @media (max-width: 760px) {
                .why-amlbot__item {
                    width: 100% !important;
                    margin-bottom: 3rem;
                    padding: 30px 24px;
                }
            }
            .why-amlbot__item_white {
                background-color: #fff;
                color: #000;
            }
            .why-amlbot__item_blue {
                background-color: #007bfb;
                color: #fff;
            }
            .why-amlbot__item_gray {
                background-color: #323d46;
                color: #fff;
                padding-right: 4rem;
                padding-left: 4rem;
            }
            .why-amlbot__item_first {
                width: calc(50% - 1.5rem);
            }
            .why-amlbot__item_first .why-amlbot__item-image img {
                max-width: 17.5rem;
            }
            .why-amlbot__item_second {
                width: calc(50% - 1.5rem);
            }
            .why-amlbot__item_second .why-amlbot__item-image {
                max-width: 39rem;
                margin-right: auto;
                margin-left: auto;
            }
            .why-amlbot__item_third {
                width: calc(66.6666666% - 1.5rem);
            }
            @media (max-width: 760px) {
                .why-amlbot__item_third .why-amlbot__item-image {
                    max-width: 220px;
                    margin: 0 auto;
                }
            }
            .why-amlbot__item_third .why-amlbot__item-image img {
                max-width: 40rem;
                margin-bottom: -15%;
                margin-left: -10%;
            }
            .why-amlbot__item_fourth {
                width: calc(33.3333333% - 1.5rem);
            }
            .why-amlbot__item_fourth .why-amlbot__item-image {
                max-width: 18.5rem;
                margin-right: auto;
                margin-left: auto;
            }
            .why-amlbot__item-title {
                display: block;
                font-weight: 900;
                font-size: 4rem;
                line-height: 120%;
                margin: 0 0 20px;
            }
            @media (max-width: 760px) {
                .why-amlbot__item-title {
                    font-size: 2.8rem;
                    margin-bottom: 2rem;
                }
            }
            .why-amlbot__item-text {
                display: block;
                margin: 0;
                font-weight: 400;
                font-size: 2.4rem;
                line-height: 150%;
                margin-bottom: 3rem;
            }
            @media (max-width: 760px) {
                .why-amlbot__item-text {
                    font-size: 1.8rem;
                    margin-bottom: 2.4rem;
                }
            }
            .why-amlbot p {
                margin-bottom: 3rem;
                display: block;
                font-size: 1.4rem;
                line-height: 140%;
                color: #637381;
            }
            .why-amlbot__item-image img {
                display: block;
                width: 100%;
                max-width: 100%;
                height: auto;
                margin-top: 30px;
            }

            /* FAQ */
            .faq {
                width: 100%;
                margin-bottom: 16rem;
            }
            .faq__wrap h2 {
                text-align: center;
                margin-bottom: 5rem;
            }
            .faq__block {
                width: 100%;
                display: flex;
                justify-content: space-between;
            }
            @media (max-width: 760px) {
                .faq__block {
                    flex-direction: column;
                }
            }
            .faq__nonfind {
                align-self: flex-start;
                position: -webkit-sticky;
                position: sticky;
                top: 163px;
                width: 100%;
                max-width: 39rem;
                padding: 4rem 4rem 3rem;
                border-radius: 2rem;
                background-color: #a7eaff33;
                box-sizing: border-box;
            }
            @media (max-width: 760px) {
                .faq__nonfind {
                    order: 2;
                    padding: 20px;
                    margin-top: 30px;
                }
            }
            .faq__nonfind .title {
                display: block;
                margin: 0 0 2rem;
                font-weight: 700;
                font-size: 2.4rem;
                line-height: 140%;
                color: #183b56;
            }
            .faq__nonfind > p {
                margin: 0 0 2rem;
                font-size: 1.8rem;
                line-height: 140%;
                color: #323d46;
            }
            .faq__nonfind small {
                display: block;
                font-size: 1.2rem;
                line-height: 140%;
                color: #064c61;
            }
            .faq__nonfind .telegram {
                position: relative;
                display: inline-flex;
                align-items: center;
                margin-bottom: 2rem;
                padding: 1rem 1.5rem;
                box-sizing: border-box;
                cursor: pointer;
            }
            .faq__nonfind .telegram:before {
                content: "";
                z-index: -1;
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background-color: #fff;
                border-radius: 1.6rem;
                transition: transform 0.25s ease-in-out;
            }
            .faq__nonfind .telegram:hover:before {
                transform: scale(1.05);
            }
            .faq__nonfind .telegram__icon {
                display: flex;
                align-items: center;
                margin-right: 12px;
                font-size: 2.8rem;
                color: #34aadf;
            }
            .faq__nonfind .telegram h4 {
                margin: 0 0 3px;
                font-weight: 500;
                font-size: 1.6rem;
                line-height: 100%;
                color: #34aadf;
            }
            .faq__nonfind .telegram p {
                margin: 0;
                font-weight: 500;
                font-size: 1.2rem;
                line-height: 100%;
                color: #82b2c8;
            }
            .faq__items {
                width: 67rem;
                margin-top: 10px;
                padding-left: 11rem;
                box-sizing: content-box;
            }
            @media (max-width: 760px) {
                .faq__items {
                    padding-left: 0;
                    width: 100%;
                    margin-bottom: 2rem;
                }
            }
            .faq-item {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                padding-bottom: 1.5rem;
                margin-bottom: 1rem;
            }
            .faq-item__top {
                font-size: 2.4rem;
                position: relative;
                margin: 0;
                padding: 3rem 4rem 1.5rem 0;
                font-weight: 500;
                line-height: 130%;
                cursor: pointer;
            }
            @media (max-width: 760px) {
                .faq-item__top {
                    font-size: 1.8rem;
                    padding-top: 2rem;
                }
            }
            .faq-item__top:before {
                content: " ";
                position: absolute;
                top: 4.7rem;
                right: 0;
                width: 2.4rem;
                height: 0.3rem;
                background-color: #000;
                border-radius: 2px;
            }
            @media (max-width: 760px) {
                .faq-item__top:before {
                    top: 30px;
                    width: 20px;
                    height: 2px;
                }
            }
            .faq-item__top:after {
                content: " ";
                position: absolute;
                top: 3.6rem;
                right: 1rem;
                width: 0.3rem;
                height: 2.4rem;
                background-color: #000;
                border-radius: 2px;
                transition: all 0.25s ease-in-out;
            }
            @media (max-width: 760px) {
                .faq-item__top:after {
                    top: 21px;
                    right: 9px;
                    width: 2px;
                    height: 20px;
                }
            }
            .faq-item__content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
                font-size: 2rem;
                line-height: 140%;
                color: #637381;
                font-weight: 300;
            }
            @media (max-width: 760px) {
                .faq-item__content {
                    font-size: 1.6rem;
                }
            }
            .faq-item.active .faq-item__top:after {
                opacity: 0;
                transform: rotate(90deg);
            }

            /* FOOTER */
            .footer {
                width: 100%;
                padding: 6rem 0 4rem;
                background-color: #000;
            }
            @media (max-width: 760px) {
                .footer {
                    padding: 4rem 0;
                }
            }
            .footer_logo {
                max-width: 24rem;
                margin-bottom: 30px;
                display: block;
            }
            @media (max-width: 760px) {
                .footer_logo {
                    max-width: 144px;
                }
            }
            .footer__top {
                margin-bottom: 4rem;
                border-bottom: 1px solid #323d46;
                padding-bottom: 4rem;
            }
            .footer__top .label {
                display: block;
                font-weight: 700;
                font-size: 1.8rem;
                line-height: 100%;
                color: #a1a1a1;
                margin-bottom: 1.2rem;
            }
            .footer__top p {
                margin: 0;
                text-transform: uppercase;
                font-size: 1.6rem;
                line-height: 140%;
                color: #a1a1a1;
                max-width: 320px;
            }
            .footer__bottom {
                display: flex;
                justify-content: space-between;
            }
            @media (max-width: 760px) {
                .footer__bottom {
                    display: block;
                }
            }
            .footer__item {
                margin-bottom: 11rem;
            }
            @media (max-width: 760px) {
                .footer__item {
                    margin-bottom: 50px;
                }
            }
            .footer__item_social {
                width: 100%;
                max-width: 33.3333%;
            }
            @media (max-width: 760px) {
                .footer__item_social {
                    max-width: 100%;
                }
            }
            .footer__item .label {
                margin: 0 0 3rem;
                font-weight: 400;
                font-size: 2rem;
                line-height: 120%;
                color: #a1a1a1;
                display: block;
            }
            .footer__item ul {
                margin: 0;
                padding: 0;
                list-style: none;
            }
            .footer__item ul li:not(:last-child) {
                margin-bottom: 2rem;
                display: flex;
            }
            .footer__item ul a {
                position: relative;
                display: inline-flex;
                align-items: center;
                padding: 6px 8px;
                font-weight: 500;
                font-size: 1.6rem;
                line-height: 120%;
                color: #fff;
                border-radius: 8px;
                transition: all 0.25s ease-in-out;
            }
            .footer__item ul a svg {
                position: relative;
                margin-right: 1.2rem;
                border-radius: 50%;
                font-size: 2.8rem;
                color: #1d1d1d;
            }
            .footer__item ul a:hover {
                background-color: #ffffff1a;
            }
            .footer__social {
                display: flex;
                flex-wrap: wrap;
                align-items: flex-start;
            }
            .footer__social li {
                width: 50%;
            }
            @media (max-width: 370px) {
                .footer__social li {
                    width: 100%;
                }
            }
            .footer__info {
                margin: 0;
                font-weight: 500;
                font-size: 1.6rem;
                line-height: 100%;
                color: #a1a1a1;
            }

            /* FORCE AOS ANIMATIONS VISIBLE (Since we removed AOS JS) */
            [data-aos] {
                opacity: 1 !important;
                transform: none !important;
            }
