@font-face {
    font-family: "NKDuy Mono";
    /* A name you choose to reference the font */
    src: url(../landing-assets/fonts/NKDuyMono/NKDuyMono-Regular.9bb8a61eb62b13f6aa35.woff2) format("woff2");
    /* Fallback for older browsers */
    font-weight: normal;
    /* Specifies the weight of this particular font file */
    font-style: normal;
    /* Specifies the style (normal, italic, oblique) */
    font-display: swap;
    /* Controls how the font is displayed while loading */
}

@font-face {
    font-family: "NKDuy Mono";
    /* A name you choose to reference the font */
    src: url(../landing-assets/fonts/NKDuyMono/NKDuyMono-Bold.f905924c54094f41bc22.woff2) format("woff2");
    /* Fallback for older browsers */
    font-weight: bold;
    /* Specifies the weight of this particular font file */
    font-style: normal;
    /* Specifies the style (normal, italic, oblique) */
    font-display: swap;
    /* Controls how the font is displayed while loading */
}

@font-face {
    font-family: "Geist";
    /* A name you choose to reference the font */
    src: url(../landing-assets/fonts/Geist/Geist-Regular.3664c78826390146d0fe.woff2) format("woff2");
    /* Fallback for older browsers */
    font-weight: 400;
    /* Specifies the weight of this particular font file */
    font-style: normal;
    /* Specifies the style (normal, italic, oblique) */
    font-display: swap;
    /* Controls how the font is displayed while loading */
}

@font-face {
    font-family: "Geist";
    /* A name you choose to reference the font */
    src: url(../landing-assets/fonts/Geist/Geist-Medium.7d5b09fea8f217bbe3ba.woff2) format("woff2");
    /* Fallback for older browsers */
    font-weight: 500;
    /* Specifies the weight of this particular font file */
    font-style: normal;
    /* Specifies the style (normal, italic, oblique) */
    font-display: swap;
    /* Controls how the font is displayed while loading */
}

@font-face {
    font-family: "Geist";
    /* A name you choose to reference the font */
    src: url(../landing-assets/fonts/Geist/Geist-SemiBold.175d19905967c2e34165.woff2) format("woff2");
    /* Fallback for older browsers */
    font-weight: 600;
    /* Specifies the weight of this particular font file */
    font-style: normal;
    /* Specifies the style (normal, italic, oblique) */
    font-display: swap;
    /* Controls how the font is displayed while loading */
}

:root {
    --container-width: 95rem;

    --navbar-height: 7rem;

    --section-gap: 10.625rem;
    --section-title-height: 4.225rem;
    --section-multiline-title-height: 8.45rem;

    --ai-card-background-width: 83.75rem;
    --ai-card-height: 37rem;
    --ai-background-card-visible-height: 1.5rem;

    --red-main: #F03226;
    --red-main-10: rgba(240, 50, 38, 0.10);
    --red-light: #FF584E;
    --text-white: #FFFFFF;
    --text-white-40: rgba(255, 255, 255, 0.40);
    --text-white-60: #ffffff99;
    --text-black: #000000;
    --text-black-40: rgba(0, 0, 0, 0.40);
    --text-black-60: rgba(0, 0, 0, 0.60);
    --background-black: #232323;
    --background-main: #ffffff;
    --white-10: rgba(255, 255, 255, 0.10);
    --white-40: rgba(255, 255, 255, 0.40);
    --cards-background: #f6f6f6;
    --black-3: rgba(0, 0, 0, 0.03);
    --black-10: rgba(0, 0, 0, 0.10);
    --backblock: #F0F0F0;
    --line: #D3D3D3;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "NKDuy Mono", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    background: var(--background-main);
}

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

/* Cookie Popup */

#cookie-popup {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    width: 56rem;
    transform: translateX(-50%);
    border-radius: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
    padding: 0.75rem 3.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-family: "Geist", sans-serif;
    z-index: 10000;
    text-align: center;
}

#cookie-popup a {
    color: var(--red-light);
    text-decoration: none;
}

#cookie-popup a:hover {
    text-decoration: underline;
}

.cookie-popup-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-popup-buttons button {
    padding: 0.5rem 1.5rem;
    border-radius: 6.25rem;
    border: 1px solid var(--red-light);
    background: var(--red-light);
    color: var(--text-white);
    cursor: pointer;
}

.cookie-popup-buttons button:hover {
    background: var(--red-main);
    border-color: var(--red-main);
}

.cookie-popup-buttons button.outlined {
    background: transparent;
    color: var(--red-light);
}

/* Navigation */
.navbar {
    width: 100%;
    background: var(--background-black);
    color: var(--text-white);
    border: 0;
    font-family: "Geist", sans-serif;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.floating-navbar {
    position: fixed;
    top: 0;
    transition: top 0.2s ease-in-out;
    width: 100%;
    z-index: 1000;
}

.nav-up {
    top: calc(var(--navbar-height) * -1);
}

.floating-navbar .navbar.white {
    background: var(--background-main);
    color: var(--text-black);
    box-shadow: 0 4px 20px 0 rgba(151, 151, 151, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    height: var(--navbar-height);
}

.nav-logo {}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
}

.nav-menu-contacts {
    gap: 1.25rem;
}

.nav-menu.right-menu {
    justify-content: flex-end;
    font-family: "NKDuy Mono", sans-serif;
}

.nav-menu.right-menu a {
    padding: 0.75rem 0;
}

.nav-menu.right-menu .underline-link {
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--red-main);
}

.nav-menu .buttons-container {
    display: flex;
    gap: 0.5rem;
}

.nav-menu .buttons-container a {
    color: inherit;
}

/* Icon Button */
.icon-button {
    display: flex;
    align-items: center;
    padding: 0.25rem;
    background: var(--white-10);
    border-radius: 0.25rem;
}

.icon-button:hover {
    background: var(--white-40);
}

.icon-button-black {
    background: var(--black-3);
}

.icon-button-black:hover {
    background: var(--black-10);
}

/* Underline link */
.underline-link::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.375rem;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22370%22%20height%3D%225%22%20viewBox%3D%220%200%20370%205%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1%204C2.98716%204%204.97432%204%2055.2006%203.41335C105.427%202.8267%20203.832%201.65341%20265.05%201.21282C326.267%200.772233%20347.315%201.09991%20369%201.43752%22%20stroke%3D%22%23F03226%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
}

/* Hero Section */
.hero {
    background: var(--background-black);
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    height: 100%;
}

.hero-container img {
    max-width: 100%;
    object-fit: contain;
}

.hero-title {
    margin-top: 6.5rem;
    margin-bottom: 0.75rem;
    font-size: 4.375rem;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
}

.hero-description {
    font-family: "Geist", sans-serif;
    line-height: 140%;
    color: var(--text-white-60);
    margin-bottom: 1.5rem;
}


/* Pill Button */
.pill-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.375rem;
    background: var(--red-main);
    color: var(--text-white);
    border-radius: 6.25rem;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem 0.25rem 0.25rem 1.25rem;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: "NKDuy Mono", sans-serif;
    line-height: 110%;
    font-size: 1.125rem;
}

.pill-button:hover {
    background: var(--red-light);
}

.pill-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--text-white);
    border-radius: 6.25rem;
    padding: 0.25rem;
    height: 3rem;
    width: 3rem;
    color: var(--red-main);
}

.pill-button-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Section */
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.375rem;
    width: 100%;
}

.section__header {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 130%;
    text-align: center;
    text-transform: uppercase;
}

.section__header-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: var(--section-gap);
    right: 0;
    left: 0;
}

/* AI Section */
.ai {
    --title-top: 5rem;
    --title-card-margin: 2.375rem;
}

.ai h2 {
    top: var(--title-top);
    margin-bottom: calc(var(--title-card-margin) + var(--ai-background-card-visible-height) + var(--ai-card-height));
    /* title card margin + background card visible height + card height + ?  */
}

.ai-features-list {
    display: grid;
    grid-gap: 6.25rem;
    position: relative;
    font-family: "Geist", sans-serif;
    margin-top: calc(var(--title-card-margin) - var(--ai-background-card-visible-height) - var(--ai-card-height));
    /* title card margin - background card visible height - card height - ?  */
}

.ai-features-list__item {
    list-style: none;
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--title-top) + var(--section-multiline-title-height) + var(--title-card-margin) + var(--ai-background-card-visible-height));
    /* title sticky top + title height + title card margin + background card visible height + ?  */
    right: 0;
    left: 0;
    width: var(--container-width);
    height: auto;
    background: var(--cards-background);
    border-radius: 1.5rem;
}

.ai-features-list__item:first-of-type:before {
    content: "";
    position: absolute;
    top: calc(var(--title-card-margin) * -1);
    left: 50%;
    transform: translateX(-50%);
    width: var(--ai-card-background-width);
    height: 9rem;
    background: var(--backblock);
    border-radius: 1.5rem;
    z-index: -1;
}

.ai-features-list__item article {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    height: 100%;
    width: 100%;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: var(--cards-background);
}

.ai-features-list__item-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex: 1;
}

.ai-features-list__item-description h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.ai-features-list__item-description p {
    line-height: 140%;
}

.ai-features-list__item-description .pill-button {
    margin-top: 1.5rem;
}

.ai-features-list__item article video {
    width: 60.438rem;
    height: 100%;
    object-fit: contain;
    border-radius: 1.25rem;
}

/* Reviews Section */

.reviews {
    margin-right: 0;
    max-width: calc(var(--container-width) + (100vw - var(--container-width)) / 2);
}

.reviews-title-container {
    width: calc(100% - ((100vw - var(--container-width)) / 2));
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-container {
    width: 100%;
}

.reviews-carousel {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    max-width: 100%;
    position: relative;
    font-family: "Geist", sans-serif;
}

.swiper_big {
    width: 63rem;
}

.swiper_small {
    flex: 1;
}

.swiper-control-next,
.swiper-control-prev {
    padding: 1.25rem 0.75rem;
    position: absolute;
    top: unset;
    left: unset;
    z-index: 10;
    color: var(--text-black);
    display: flex;
    cursor: pointer;
}

.swiper-control-next:hover,
.swiper-control-prev:hover {
    color: var(--red-main);
}

.hidden {
    visibility: hidden;
}

.swiper-slide {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    background: transparent;
    color: var(--text-black);
    display: flex;
    flex-direction: column;
    width: 63rem;
}

.swiper_small .swiper-slide {
    width: 30.875rem;
}

.swiper-slide-media {
    border-radius: 1.5rem;
}

.swiper-slide-media iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    width: 100%;
    border-radius: 1.5rem;
}

.swiper-slide-preview {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
    cursor: pointer;
}

.swiper-slide-title {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    line-height: 130%;
}

.swiper-slide-description {
    font-size: 1rem;
    line-height: 140%;
    color: var(--text-black-60);
}

.swiper_small .swiper-slide-title {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    line-height: 140%;
}

.swiper_small .swiper-slide-description {
    font-size: 0.875rem;
}

.reviews-link-container {
    margin-top: 1.25rem;
    width: calc(100% - ((100vw - var(--container-width)) / 2));
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-link {
    font-size: 1.125rem;
}

/* Features Section */

.features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    grid-template-rows: repeat(2, 22.25rem);
}

.features-grid__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    font-family: "Geist", sans-serif;
}

.features-grid__item:first-of-type {
    border-left: 1px solid var(--line);
}

.features-grid__item:nth-of-type(odd) {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.features-grid__item:nth-of-type(n+5) {
    border-bottom: 1px solid var(--line);
}

.features-grid__item:last-of-type {
    border-right: 1px solid var(--line);
}

.features-grid__item.borderless-top {
    border-top: none;
}

.features-grid__item.borderless-bottom {
    border-bottom: none;
}

.features-grid__item.no-padding-top {
    padding-top: 0;
}

.features-grid__item.center-content {
    align-items: center;
    justify-content: center;
}

.features-grid__item-title-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
}

.features-grid__item-title {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 120%;
}

.features-grid__item-link-icon {
    visibility: hidden;
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.features-grid__item-link-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.features-grid__item-description {
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--text-black-60);
}

.features-grid__item-icon {
    width: 15rem;
    height: 13.25rem;
}

.features-grid__item_hoverable:hover,
.features-grid__item_hoverable:hover .features-grid__item-description {
    color: var(--text-white);
    cursor: pointer;
}

.features-grid__item_hoverable:hover .features-grid__item-link-icon {
    visibility: visible;
    color: inherit;
    background: var(--background-main);
}

.features-grid__item_hoverable:nth-of-type(1):hover {
    background-color: #2451E5;
}

.features-grid__item_hoverable:nth-of-type(1):hover .features-grid__item-link-icon {
    color: #2451E5;
}

.features-grid__item_hoverable:nth-of-type(2):hover {
    background-color: #9C8B6F;
}

.features-grid__item_hoverable:nth-of-type(2):hover .features-grid__item-link-icon {
    color: #9C8B6F;
}

.features-grid__item_hoverable:nth-of-type(3):hover {
    background-color: #3A9B5B;
}

.features-grid__item_hoverable:nth-of-type(3):hover .features-grid__item-link-icon {
    color: #3A9B5B;
}

.features-grid__item_hoverable:nth-of-type(5):hover {
    background-color: #F03226;
}

.features-grid__item_hoverable:nth-of-type(5):hover .features-grid__item-link-icon {
    color: #F03226;
}

.features-grid__item_hoverable:nth-of-type(7):hover {
    background-color: #9C6ADE;
}

.features-grid__item_hoverable:nth-of-type(7):hover .features-grid__item-link-icon {
    color: #9C6ADE;
}

.features-grid__item_hoverable:nth-of-type(8):hover {
    background-color: #4B5D75;
}

.features-grid__item_hoverable:nth-of-type(8):hover .features-grid__item-link-icon {
    color: #4B5D75;
}

/* Modal */

.modal {
    border: none;
    margin: auto;
    background-color: transparent;
    align-items: flex-start;
    padding-left: 3.5rem;
    cursor: default;
    font-family: "Geist", sans-serif;
    overflow: visible;
    z-index: 1000;
}

.modal[open] {
    display: flex;
}

.modal[open]::-ms-backdrop {
    background-color: rgba(0, 0, 0, 0.65);
}

.modal[open]::backdrop {
    background-color: rgba(0, 0, 0, 0.65);
}

.modal-content {
    width: 37.5rem;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background-color: var(--background-main);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    cursor: text;
}

.modal .close-button {
    width: 3.25rem;
    height: 3.25rem;
    outline: none;
    border: none;
    color: var(--line);
    background-color: transparent;
    cursor: pointer;
    padding: 0.625rem;
    margin-left: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .close-button:hover {
    color: var(--text-white-40);
}

.feature-modal .subtitle {
    color: var(--text-black);
    font-weight: 600;
}

.feature-modal p {
    font-size: 1.125rem;
    color: var(--text-black-60);
    line-height: 140%;
    text-align: justify;
    cursor: text;
}

/* Migration Section */

.migration {
    --migration-section-gap: 2.375rem;
    --migration-horizontal-section-height: 23.375rem;
    --migration-card-width: 30.75rem;
    --migration-cards-number: 4;
    --migration-horizontal-section-start-offset: calc((100vw - var(--container-width)) / 2);
    --migration-pill-button-height: 3.5rem;
    --migration-pill-button-margin-bottom: 1.375rem;
    --migration-link-height: 2.5rem;
    display: block;
    position: relative;
}

.migration h2 {
    margin-bottom: calc(var(--migration-section-gap) + var(--migration-horizontal-section-height) + var(--migration-section-gap) + var(--migration-pill-button-height) + var(--migration-pill-button-margin-bottom) + var(--migration-link-height));
}

.migration-container {
    position: relative;
    width: 100%;
}

.migration .vertical-parent {
    margin-top: calc(-1 * var(--migration-horizontal-section-height) - var(--migration-section-gap) - var(--migration-pill-button-height) - var(--migration-pill-button-margin-bottom) - var(--migration-link-height));
    /* horizontal section height + card width * cards number + gap * (cards number - 1) + container width + custom value */
    height: calc(var(--migration-horizontal-section-height) + var(--migration-card-width) * var(--migration-cards-number) - (1.25rem * (var(--migration-cards-number) - 1)) - var(--container-width) + 300px);
    position: relative;
}

.migration .horizontal-sticky-container {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--section-gap) + var(--section-title-height) + var(--migration-section-gap));
    max-height: var(--migration-horizontal-section-height);
    overflow-x: hidden;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 var(--migration-horizontal-section-start-offset);
    margin-bottom: calc(var(--migration-section-gap) + var(--migration-pill-button-height) + var(--migration-pill-button-margin-bottom) + var(--migration-link-height));
}

.migration .road-image-container-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.migration .road-image-container {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--section-gap) + var(--section-title-height) + var(--migration-section-gap));
    height: var(--migration-horizontal-section-height);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--migration-section-gap) + var(--migration-pill-button-height) + var(--migration-pill-button-margin-bottom) + var(--migration-link-height));
}

.migration .road-image {
    width: 200%;
    height: 12rem;
    z-index: -1;
}

.migration .flex-item {
    display: flex;
    min-width: var(--migration-card-width);
    height: var(--migration-horizontal-section-height);
}

.migration .flex-item:nth-of-type(odd) {
    align-items: flex-start;
}

.migration .flex-item:nth-of-type(even) {
    align-items: flex-end;
}

.migration .card-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: var(--migration-card-width);
    height: 11.125rem;
    background: var(--cards-background);
    border-radius: 1rem;
    padding: 1.5rem;
    font-family: "Geist", sans-serif;
}

.card-step .card-step__title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.card-step .card-step__description {
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--text-black-60);
}

.migration .pill-button-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: calc(100% - var(--migration-horizontal-section-height) - var(--migration-section-gap));
    position: absolute;
    top: calc(var(--migration-horizontal-section-height) + var(--migration-section-gap));
    gap: var(--migration-pill-button-margin-bottom);
}

.migration .pill-button {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--section-gap) + var(--section-title-height) + var(--migration-section-gap) + var(--migration-horizontal-section-height) + var(--migration-section-gap));
    margin-bottom: calc(var(--migration-pill-button-margin-bottom) + var(--migration-link-height));
}

.migration .migration-link {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--section-gap) + var(--section-title-height) + var(--migration-section-gap) + var(--migration-horizontal-section-height) + var(--migration-section-gap) + var(--migration-pill-button-height) + var(--migration-pill-button-margin-bottom));
    line-height: 110%;
    font-size: 1.125rem;
    margin-top: calc(-1 * var(--migration-pill-button-margin-bottom) - var(--migration-link-height));
    margin-bottom: 1rem;
    border: none;
    outline: none;
    background: transparent;
    font-family: "NKDuy Mono", sans-serif;
    cursor: pointer;
}

#migration-contact-modal .modal-content {
    width: 40rem;
    background-color: var(--cards-background);
}

#migration-contact-modal .submit-button {
    padding: 1.125rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Chat Section */

.chat {
    background: var(--cards-background);
    padding: 7.5rem 0;
    border-radius: 1.5rem;
    scroll-margin-top: 10rem;
    height: 46.75rem;
}

.chat-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.375rem;
    width: 100%;
    height: 100%;
}

.chat h2 {
    width: 65rem;
}

.chat-options-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 65rem;
}

.chat-options-container .pill-option {
    width: auto;
    border-radius: 6.25rem;
    border: 1px solid var(--line);
    background-color: var(--text-white-60);
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-family: "Geist", sans-serif;
    line-height: 130%;
    color: var(--text-black);
    cursor: pointer;
}

.chat-options-container .pill-option:hover {
    background-color: var(--text-white);
}

.chat-input-container {
    position: relative;
}

.chat-input {
    width: 57.5rem;
    border-radius: 6.25rem;
    padding: 1.5rem 3.75rem 1.5rem 1.5rem;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
    outline: none;
    border: none;
    font-size: 1.125rem;
    font-family: "Geist", sans-serif;
    line-height: 130%;
    color: var(--text-black);
}

.chat-input:-ms-input-placeholder {
    color: var(--text-black-40);
}

.chat-input::placeholder {
    color: var(--text-black-40);
}

.chat-input:focus:-ms-input-placeholder {
    color: transparent;
}

.chat-input:focus::placeholder {
    color: transparent;
}

.chat-send-button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    padding: 1rem;
    outline: none;
    border: none;
    cursor: pointer;
    color: var(--text-white);
    background: var(--red-main);
}

.chat-send-button svg {
    min-width: 1rem;
    min-height: 1rem;
}

.chat-send-button:disabled {
    color: var(--line);
    background-color: var(--cards-background);
}

.chat-output-container {
    display: none;
    width: 57.5rem;
    min-height: 20rem;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.chat-output-container #chat-prompt {
    font-family: "Geist", sans-serif;
    font-size: 1.125rem;
    line-height: 130%;
    background-color: var(--red-main-10);
    border-radius: 0.75rem;
    padding: 1rem;
    align-self: flex-end;
    margin-top: 0.75rem;
}

.chat-output-container #chat-output {
    font-family: "Geist", sans-serif;
    font-size: 1.125rem;
    line-height: 130%;
    align-self: flex-start;
}

.chat-link {
    display: inline-flex;
    align-self: flex-start;
    margin: 0.25rem;
}

/* Security Section */

.security .flex-container-row {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    width: 100%;
    height: 29.125rem;
}

.security .flex-container-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 50%;
}


.security .flex-container-column .flex-item {
    width: 100%;
    height: 50%;
}

.security .flex-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-radius: 1.5rem;
    background-color: var(--cards-background);
    padding: 3.125rem;
    gap: 0.5rem;
    position: relative;
    font-family: "Geist", sans-serif;
}

.security .flex-item img {
    width: 13.75rem;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.security .flex-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.security .flex-item p {
    max-width: 32.25rem;
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--text-black-40);
}

/* Pricing Section */

.pricing {
    height: 45.75rem;
    background: var(--cards-background);
    padding: 7.5rem 0;
    border-radius: 1.5rem;
}

/* Single Range Slider Styles */
.single-range {
    width: 51.125rem;
    height: 1.375rem;
    min-height: 1.375rem;
    position: relative;
}

.single-range__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.single-range__track-bg {
    height: 50%;
    width: 100%;
    background: #e0e0e0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 6.25rem;
}

.single-range__fill {
    height: 50%;
    width: 0%;
    opacity: 0.8;
    background: var(--red-main);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 6.25rem;
    transition: width 0.1s ease;
}

.single-range__handle {
    width: 5.625rem;
    height: 4.625rem;
    position: absolute;
    top: 50%;
    cursor: grab;
    transform: translateY(-50%);
    transition: left 0.1s ease;
    background: url(../landing-assets/images/forklift.5dfe384a5651def44f0c.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.single-range__handle:active {
    cursor: grabbing;
}

.single-range__ticks {
    height: 100%;
    width: 100%;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.single-range__tick {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--red-main);
    border-radius: 6.25rem;
}

.single-range__tick:first-of-type {
    visibility: hidden;
}

.single-range__tick:last-of-type {
    visibility: hidden;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
}

.limit,
.price-container {
    font-family: "Geist", sans-serif;
    font-size: 1.75rem;
    line-height: 120%;
    font-weight: 400;
}

.pricing .note {
    min-height: 1.5rem;
    line-height: 140%;
    font-family: "Geist", sans-serif;
    color: var(--text-black-40);
    text-align: center;
    margin-top: 0.25rem;
}

.price,
.limit-value {
    font-size: 2.25rem;
    font-family: "Geist", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.approximation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.approximation img {
    width: 2.688rem;
    height: 2.688rem;
}

.frequency {
    position: relative;
}

.frequency-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.frequency-button:hover {
    cursor: pointer;
    color: var(--red-main);
    transition: color 0.1s ease;
}

.frequency-tooltip {
    display: none;
    width: -webkit-max-content;
    width: max-content;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0.5rem;
    background-color: var(--background-main);
    box-shadow: 0 0 20px 0 rgba(33, 33, 33, 0.10);
}

.frequency-tooltip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frequency-tooltip-list-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    line-height: 130%;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.frequency-tooltip-list-item:first-of-type {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.frequency-tooltip-list-item:last-of-type {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.frequency-tooltip-list-item svg {
    visibility: hidden;
}

.frequency-tooltip-list-item.selected {
    background-color: var(--cards-background);
}

.frequency-tooltip-list-item.selected svg {
    visibility: visible;
}

.frequency-tooltip-list-item:not(.selected):hover {
    background-color: var(--cards-background);
}

.price-button {
    margin: 0;
}

/* Online store Section */
.online-store-container {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    height: 31.25rem;
}

.online-store-container>* {
    width: 50%;
}

.online-store-video-container {
    border-radius: 1.25rem;
    background: var(--cards-background);
    padding: 1.5rem;
}

.online-store-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.25rem;
}

.online-store-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.online-store-description .online-store-link {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.125rem;
    font-family: "NKDuy Mono", sans-serif;
    cursor: pointer;
}

.online-store-description ul li {
    list-style: none;
    font-family: "Geist", sans-serif;
    cursor: pointer;
}

.online-store-description li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0.75rem;
    border-top: 1px solid var(--line);
    background: linear-gradient(to right, var(--black-3) 50%, transparent 50% 100%);
    background-size: 200%;
    background-position: 100%;
}

.online-store-description ul li img {
    width: 3rem;
    height: 2.5rem;
}

.online-store-description ul li h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.online-store-description ul li p {
    font-size: 1.25rem;
    line-height: 130%;
    color: var(--text-black-60);
}

.online-store-modal .modal-content {
    width: 40rem;
    background-color: var(--cards-background);
}

.online-store-modal .next-button {
    padding: 1.125rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Сompetence Section */
.competence img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
}


/* FAQ Section */

.faq {
    border-radius: 1.5rem;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.125rem 0;
    background-color: transparent;
    border: none;
    border-top: 1px solid var(--line);
    cursor: pointer;
    outline: none;
    transition: 0.4s;
    font-family: "Geist", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.accordion svg {
    transition: transform 0.4s ease;
}

.accordion.active svg {
    transform: rotate(45deg);
}

.panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel:last-of-type {
    border-bottom: 1px solid var(--line);
}

.panel p {
    max-width: 50%;
    font-family: "Geist", sans-serif;
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--text-black-60);
    text-align: left;
}

.panel p:last-of-type {
    padding-bottom: 2.125rem;
}

.faq-link {
    display: inline-flex;
}

.faq-button {
    display: inline-flex;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    font-family: "NKDuy Mono", sans-serif;
    cursor: pointer;
}

#faq-contact-modal .modal-content {
    background-color: var(--cards-background);
}

#faq-contact-modal .submit-button {
    padding: 1.125rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Clients Section */

:root {
    --start-scroll-x: 0;
    --end-scroll-x: -100%;
    --translate-x-reverse: calc(100vw - 100%);
    --start-scroll-x-reverse: var(--translate-x-reverse);
    --end-scroll-x-reverse: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(var(--start-scroll-x));
    }

    100% {
        transform: translateX(var(--end-scroll-x));
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(var(--start-scroll-x-reverse));
    }

    100% {
        transform: translateX(var(--end-scroll-x-reverse));
    }
}

.clients-carousel {
    width: 100%;
    height: 5.375rem;
    position: relative;
    overflow: hidden;
}

.clients-carousel::before,
.clients-carousel::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 12.5rem;
    z-index: 2;
}

.clients-carousel::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.clients-carousel::before {
    left: 0;
    top: 0;
}

.clients-carousel .slide-track {
    animation: scroll 200s linear infinite;
    display: flex;
    gap: 3.75rem;
    width: -webkit-max-content;
    width: max-content;
    height: 100%;
}

.clients-carousel-reverse .slide-track {
    animation: scroll-reverse 120s linear infinite;
}

.clients-carousel .slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-carousel .slide:first-of-type {
    margin-left: 3.75rem;
}

.clients-carousel .slide:last-of-type {
    margin-right: 3.75rem;
}

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


/* Socials Section */

.socials-title-container {
    width: 100%;
    position: relative;
}

.swiper_socials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;

}

.swiper_socials-control-next,
.swiper_socials-control-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.75rem 0.625rem;
}

.swiper_socials-control-next:hover,
.swiper_socials-control-prev:hover {
    color: var(--red-main);
}

.socials-list {
    width: 100%;
    height: 22.875rem;
}

.social-profile {
    width: 22.813rem;
    min-width: 22.813rem;
    height: 22.875rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: "Geist", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 130%;
    text-decoration: none;
    text-align: start;
    background: var(--social-provile-background-color);
}

.social-profile:hover {
    background: var(--social-provile-hover-background-color);
}


.social-profile-icon {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 1rem;
}

.social-profile:hover .social-profile-icon {
    background-color: var(--background-main);
}

.social-post {
    width: 22.813rem;
    min-width: 22.813rem;
    height: 13.875rem;
    border-radius: 1.5rem;
    background: var(--cards-background);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid var(--background-black);
    position: relative;
}

.social-post:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 0.8;
    z-index: 1;
}

.social-post-overlay {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 1.75rem;
    line-height: 110%;
    font-family: "Geist", sans-serif;
    font-weight: 500;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.social-post:hover .social-post-overlay {
    display: flex;
}

.social-post img {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
}

/* Contacts Section */

.contacts .flex-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
}

.contacts h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.contacts .flex-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1.5rem;
    background-color: var(--cards-background);
    padding: 2.5rem;
    font-family: "Geist", sans-serif;
}

.contacts .flex-item:first-of-type {
    justify-content: space-between;
}

.contacts-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.contacts-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: "NKDuy Mono", sans-serif;
    color: var(--text-black);
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--red-main);
}

.contacts-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.contacts-info p {
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--text-black);
}

.contacts-info .contacts-info-description {
    color: var(--text-black-40);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    height: 100%;
    text-align: start;
}

.contacts-form-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form label {
    display: block;
    font-size: 1.125rem;
    line-height: 130%;
    color: var(--text-black-40);
    margin-bottom: 0.5rem;
}

.form .ts-wrapper {
    position: relative;
}

.form .dropdown-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    transition: transform 0.25s ease;
}

.form .ts-wrapper.dropdown-active .dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

.form .ts-control {
    padding: 1.25rem;
    font-size: 1.25rem;
    line-height: 130%;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    outline: none;
}

.form .ts-control .item:first-letter {
    text-transform: uppercase;
}

.form .ts-dropdown {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 0 20px 0 rgba(33, 33, 33, 0.10);
}

.form .ts-dropdown-content {
    border-radius: 0.75rem;
}

.form .option {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.form .option svg {
    visibility: hidden;
}

.form .option.selected,
.form .option.active {
    color: var(--text-black);
    background-color: var(--cards-background);
}

.form .option.selected svg {
    visibility: visible;
}

.form .option:first-of-type {
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.form .option:last-of-type {
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}

.form .color-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.form .color-preview .color-item {
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
}

.black {
    background-color: #000000;
}

.silver {
    background: linear-gradient(181deg, #E0E0E0 27.09%, #9F9F9F 99.22%);
}

.white {
    background-color: #FFFFFF;
}

.gray {
    background-color: #808080;
}

.blue {
    background-color: #1D62ED;
}

.red {
    background-color: #EF5350;
}

.green {
    background-color: #7CB342;
}

.brown {
    background-color: #806C4E;
}

.beige {
    background-color: #F3DFBF;
}

.light-green {
    background-color: #36C606;
}

.pink {
    background-color: #BA68C8;
}

.purple {
    background-color: #7758FF;
}

.orange {
    background-color: #F9A825;
}

.form .radio-input-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
}

.form .radio-input-container input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1.125rem;
    width: 1.125rem;
    border-radius: 50%;
    opacity: 0;
}

.form .radio-input-container label {
    color: var(--text-black);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 1.625rem;
    font-size: 1rem;
    line-height: 130%;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
}

.form .radio-input-container .checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 1.125rem;
    width: 1.125rem;
    border: 2px solid var(--line);
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.form .radio-input-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--red-main);
}

.form .radio-input-container label input:checked~.checkmark {
    background-color: var(--cards-background);
}

.form .radio-input-container label input:checked~.checkmark:after {
    display: block;
}

.form input {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    outline: none;
    font-size: 1.25rem;
    font-family: "Geist", sans-serif;
    line-height: 130%;
    color: var(--text-black);
    background-color: var(--background-main);
}

.form input.error {
    border: 1px solid var(--red-main);
}

.form .error-message {
    color: var(--red-main);
    font-size: 1rem;
    line-height: 140%;
    margin-top: 0.5rem;
}

.checkbox-wrapper * {
    box-sizing: border-box;
}

.checkbox-wrapper .cbx {
    -webkit-user-select: none;
    -ms-user-select: none;
        user-select: none;
    cursor: pointer;
    padding: 0.375rem;
    margin: 0;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
}

.checkbox-wrapper .cbx.error {
    border: 1px solid var(--red-main);
}

.form .checkbox-wrapper .error-message {
    margin-top: 0;
}

.checkbox-wrapper .cbx:not(:last-child) {
    margin-right: 0.375rem;
}

.checkbox-wrapper .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper .cbx span:first-of-type {
    position: relative;
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.25rem;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.checkbox-wrapper .cbx span:first-of-type svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1rem;
    stroke-dashoffset: 1rem;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper .cbx span:last-of-type {
    padding-left: 0.5rem;
    line-height: 1.125rem;
}

.checkbox-wrapper .cbx:hover span:first-of-type {
    border-color: var(--red-light);
}

.checkbox-wrapper .cbx a {
    color: var(--red-light);
    text-decoration: none;
}

.checkbox-wrapper .cbx a:hover {
    text-decoration: underline;
}

.checkbox-wrapper .inp-cbx {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper .inp-cbx:checked+span:first-of-type {
    background: var(--red-light);
    border-color: var(--red-light);
    animation: wave-4 0.4s ease;
}

.checkbox-wrapper .inp-cbx:checked+span:first-of-type svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

@keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}

.iti {
    width: 100%;
}

.iti__flag,
.iti__flag-box {
    display: none;
}

.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 0;
}

.outline-pill-button {
    width: -webkit-max-content;
    width: max-content;
    padding: 1.125rem 2.5rem;
    border: 1px solid var(--red-main);
    border-radius: 6.25rem;
    color: var(--red-main);
    font-size: 1.125rem;
    font-family: "NKDuy Mono", sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background-color: transparent;
}

.outline-pill-button:hover {
    background-color: var(--red-main-10);
}

@keyframes loading-circle {
    0% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 100px, 200px;
        stroke-dashoffset: -15px;
    }

    100% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: -126px;
    }
}

@keyframes loading-rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

#submit-button.loading {
    padding-right: 1.5rem;
}

#submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-spinner {
    display: inline-block;
    color: var(--red-main);
    animation: 1.4s linear 0s infinite normal none running loading-rotation;
    width: 1.25rem;
    height: 1.25rem;
}

.loading-spinner.white-loader {
    color: var(--text-white);
}

.loading-spinner svg circle {
    animation: 1.4s linear 0s infinite normal none running loading-circle;
    stroke: currentcolor;
}

#toast-container {
    position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column-reverse;
    /* New toasts appear above old ones */
    gap: 1rem;
    z-index: 10000;
}

.toast {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(20px);
    background-color: #EDF7ED;
    color: #1E4620;
    font-family: "Geist", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: #EDF7ED;
    color: #1E4620;
}

.toast.error {
    background-color: #FFE3E3;
    color: #F03226;
}

.footer {
    padding-top: 5rem;
    padding-bottom: 3.75rem;
    background-color: var(--background-black);
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 5rem;
    font-family: "Geist", sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.footer .flex-container {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
}

.footer .flex-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer .flex-item:first-of-type,
.footer .flex-item:last-of-type {
    justify-content: space-between;
}

.footer .flex-item:nth-of-type(2) {
    gap: 1.25rem;
}

.footer h4 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.footer .app-promo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer .app-promo svg {
    width: 4rem;
    height: 4rem;
}

.footer .app-promo p {
    line-height: 140%;
    color: var(--text-white-60);
}

.footer .app-promo a {
    text-decoration: none;
    color: var(--text-white);
}

.footer .app-promo a:hover {
    text-decoration: underline;
    color: var(--red-main);
}

.footer .social-networks {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer .social-networks-title {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.125rem;
    line-height: 130%;
}

.footer .social-networks-pointer-wrapper {
    min-width: 1.2rem;
    position: relative;
}

.footer .social-networks-pointer {
    position: absolute;
    top: 0.5rem;
    min-width: 1rem;
    min-height: 2rem;
    color: var(--text-white-60);
}

.footer .social-networks-links {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer .social-networks-links a {
    width: 2rem;
    height: 2rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    color: var(--line);
    background-color: var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social-networks-links a:hover {
    background-color: var(--white-40);
}

.footer .contact-link {
    color: var(--text-white);
}

.footer .contact-link:hover {
    color: var(--red-main);
}

.footer .contacts-info p {
    color: var(--text-white);
}

.footer .contacts-info .contacts-info-description {
    font-size: 1rem;
    color: var(--text-white-40);
}

.footer .flex-item:last-of-type a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-white);
    font-family: "NKDuy Mono", sans-serif;
}

.footer .flex-item:last-of-type a:hover {
    color: var(--red-main);
    text-decoration: underline;
}

.footer .flex-item:last-of-type p {
    color: var(--text-white-40);
    font-size: 0.875rem;
    line-height: 140%;
}

.footer-registration-payments-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

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

@media (max-width: 1599px) {
    :root {
        --container-width: 70rem;

        --navbar-height: 5.375rem;

        --section-gap: 9.375rem;
        --section-title-height: 3.25rem;
        --section-multiline-title-height: 8.45rem;

        --ai-card-background-width: 62.5rem;
        --ai-card-height: 27.75rem;
        --ai-background-card-visible-height: 1.5rem;
    }

    body {
        gap: var(--section-gap);
        font-size: 0.875rem;
    }

    .nav-logo {
        width: 6rem;
    }

    .nav-menu-contacts {
        gap: 0.625rem;
    }

    .nav-menu.right-menu a {
        padding: 0.625rem 0;
    }

    .nav-link {
        gap: 0.25rem;
    }

    .nav-menu .buttons-container {
        gap: 0.25rem;
    }

    .icon-button svg {
        width: 1rem;
        height: 1rem;
    }

    .hero-title {
        margin-top: 6.25rem;
        margin-bottom: 0.625rem;
        font-size: 3.5rem;
    }

    .hero-description {
        margin-bottom: 1.125rem;
    }

    .pill-button {
        gap: 0.625rem;
        margin-bottom: 1.875rem;
        font-size: 1rem;
    }

    .pill-button-icon {
        height: 2.5rem;
        width: 2.5rem;
    }

    .section {
        gap: 1.875rem;
    }

    .section__header {
        font-size: 2.5rem;
    }

    .ai {
        --title-top: 5rem;
        --title-card-margin: 1.875rem;
    }

    .ai-features-list__item-description h3 {
        font-size: 1.25rem;
    }

    .ai-features-list__item-description .pill-button {
        margin-top: 0.75rem;
    }

    .ai-features-list__item article video {
        width: 43.125rem;
    }

    .swiper_big {
        width: 46.25rem;
    }

    .swiper-control-next,
    .swiper-control-prev {
        padding: 0.875rem 0.5rem;
    }

    .swiper-control-next svg,
    .swiper-control-prev svg {
        width: 1rem;
        height: 1rem;
    }

    .swiper-slide {
        width: 46.25rem;
    }

    .swiper_small .swiper-slide {
        width: 22.5rem;
    }

    .swiper-slide-media {
        border-radius: 1.5rem;
    }

    .swiper-slide-title {
        margin-top: 0.75rem;
    }

    .swiper_small .swiper-slide-title {
        margin-top: 0.625rem;
    }

    .reviews-link {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-rows: repeat(2, 16.75rem);
    }

    .features-grid__item {
        padding: 1.125rem;
    }

    .features-grid__item-title {
        font-size: 1.25rem;
    }

    .features-grid__item-link-icon {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
        min-height: 2.25rem;
    }

    .features-grid__item-link-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .features-grid__item-description {
        font-size: 1rem;
    }

    .features-grid__item-icon {
        width: 12.75rem;
        height: 11.5rem;
    }

    .modal-content {
        width: 35rem;
        padding: 1.875rem;
    }

    .modal h3 {
        font-size: 1.25rem;
    }

    .feature-modal p {
        font-size: 1rem;
    }

    .migration {
        --migration-section-gap: 1.875rem;
        --migration-horizontal-section-height: 20.75rem;
        --migration-card-width: 22.5rem;
        --migration-cards-number: 4;
        --migration-horizontal-section-start-offset: calc((100vw - var(--container-width)) / 2);
        --migration-pill-button-height: 3rem;
        --migration-pill-button-margin-bottom: 1.375rem;
        --migration-link-height: 2.625rem;
    }

    .migration .road-image {
        height: 9.375rem;
    }

    .migration .card-step {
        height: 9.75rem;
        padding: 1.125rem;
    }

    .card-step .card-step__title {
        font-size: 1.25rem;
    }

    .card-step .card-step__description {
        font-size: 1rem;
    }

    .migration .migration-link {
        line-height: 125%;
        font-size: 1rem;
    }

    #migration-contact-modal .modal-content {
        width: 35rem;
    }

    #migration-contact-modal .submit-button {
        padding: 0.875rem 0;
    }

    .chat {
        padding: 6.25rem 0;
        height: 35rem;
    }

    .chat-start {
        gap: 1.875rem;
    }

    .chat-options-container {
        width: 57.5rem;
    }

    .chat-options-container .pill-option {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
        line-height: 140%;
    }

    .chat-input {
        width: 41.875rem;
        padding: 1rem 3.25rem 1rem 1rem;
        font-size: 1rem;
        line-height: 140%;
    }

    .chat-send-button {
        width: 2.25rem;
        height: 2.25rem;
        padding: 0.625rem;
    }

    .chat-send-button svg {
        min-width: 0.75rem;
        min-height: 0.75rem;
    }

    .chat-output-container #chat-prompt {
        font-size: 1rem;
        line-height: 140%;
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .chat-output-container #chat-output {
        font-size: 1rem;
        line-height: 140%;
    }

    .security .flex-container-row {
        height: 23.125rem;
    }

    .security .flex-item {
        padding: 2.25rem;
        gap: 0.375rem;
    }

    .security .flex-item img {
        width: 10.375rem;
        top: -2.5rem;
    }

    .security .flex-item h3 {
        font-size: 1.25rem;
    }

    .security .flex-item p {
        font-size: 1rem;
        line-height: 140%;
    }

    .pricing {
        height: 35.5rem;
        padding: 6.625rem 0;
    }

    .single-range {
        width: 37.375rem;
        height: 1rem;
        min-height: 1rem;
    }

    .single-range__handle {
        width: 4.25rem;
        height: 3.5rem;
    }

    .price-container {
        min-height: 2rem;
    }

    .limit,
    .price-container {
        font-size: 1.25rem;
        line-height: 130%;
    }

    .pricing .note {
        min-height: 1.25rem;
        line-height: 140%;
    }

    .price,
    .limit-value {
        font-size: 1.625rem;
    }

    .approximation img {
        width: 2rem;
        height: 2rem;
    }

    .frequency-tooltip-list-item {
        gap: 0.25rem;
        font-size: 1.25rem;
        line-height: 140%;
        padding: 0.5rem 0.75rem;
    }

    .online-store-container {
        height: 23.5rem;
    }

    .online-store-video-container {
        padding: 1.125rem;
    }

    .online-store-description .online-store-link {
        font-size: 1rem;
    }

    .online-store-description li {
        gap: 0.75rem;
        padding: 1.125rem 0.625rem;
    }

    .online-store-description ul li img {
        width: 2.25rem;
        height: 1.875rem;
    }

    .online-store-description ul li h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .online-store-description ul li p {
        font-size: 0.875rem;
        line-height: 140%;
    }

    .online-store-modal .modal-content {
        width: 35rem;
    }

    .online-store-modal .next-button {
        padding: 0.875rem 0;
    }

    .accordion {
        padding: 1.75rem 0;
        font-size: 1.25rem;
    }

    .accordion svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .panel p {
        font-size: 1rem;
        line-height: 140%;
    }

    .panel p:last-of-type {
        padding-bottom: 1.75rem;
    }

    .faq-button {
        font-size: 0.875rem;
    }

    #faq-contact-modal .submit-button {
        padding: 0.875rem 0;
    }

    .clients-carousel {
        height: 2.25rem;
    }

    .clients-carousel::before,
    .clients-carousel::after {
        width: 6.5rem;
    }

    .clients-carousel .slide-track {
        gap: 2.5rem;
    }

    .clients-carousel .slide:first-of-type {
        margin-left: 3.75rem;
    }

    .clients-carousel .slide:last-of-type {
        margin-right: 3.75rem;
    }

    .swiper_socials-control-next,
    .swiper_socials-control-prev {
        padding: 0.5rem 0.5rem;
    }

    .swiper_socials-controls svg {
        width: 1rem;
        height: 1rem;
    }

    .socials-list {
        height: 13rem;
    }

    .social-profile {
        width: 13rem;
        min-width: 13rem;
        height: 13rem;
        padding: 0.875rem;
        font-size: 0.875rem;
        line-height: 140%;
    }

    .social-profile-icon {
        padding: 0.625rem;
    }

    .social-profile-icon svg {
        width: 0.875rem;
        height: 0.875rem;
    }

    .social-post {
        width: 13rem;
        min-width: 13rem;
        height: 7.875rem;
    }

    .social-post-overlay {
        gap: 0.5rem;
        font-size: 1.25rem;
        line-height: 120%;
    }

    .social-post-overlay svg {
        width: 1rem;
        height: 1rem;
    }

    .contacts h3 {
        font-size: 1.25rem;
    }

    .contacts .flex-item {
        padding: 1.875rem;
    }

    .contacts-container {
        gap: 1rem;
    }

    .contacts-links {
        gap: 0.5rem;
    }

    .contact-link {
        gap: 0.5rem;
        font-size: 0.875rem;
    }

    .contacts-info p {
        font-size: 0.875rem;
        line-height: 140%;
    }

    .form {
        gap: 1rem;
    }

    .contacts-form-container {
        gap: 0.5rem;
    }

    .form label {
        font-size: 0.875rem;
        line-height: 140%;
        margin-bottom: 0.375rem;
    }

    .form .dropdown-icon {
        right: 1rem;
        width: 1rem;
        height: 1rem;
    }

    .form .ts-control {
        padding: 1rem;
        font-size: 1rem;
        line-height: 130%;
    }

    .form .option {
        font-size: 1rem;
    }

    .form .option svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .form .color-preview .color-item {
        min-width: 1.75rem;
        height: 1.75rem;
    }

    .form input {
        padding: 1rem;
        font-size: 1rem;
    }

    .form .error-message {
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }

    .outline-pill-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        line-height: 125%;
    }

    .footer {
        padding-top: 3.125rem;
        gap: 3.125rem;
    }

    .footer .footer-logo {
        width: 8rem;
        height: 2.25rem;
    }

    .footer-content {
        gap: 2.125rem;
    }

    .footer .flex-item:nth-of-type(2) {
        gap: 0.75rem;
    }

    .footer h4 {
        font-size: 1.25rem;
    }

    .footer .app-promo {
        gap: 0.5rem;
    }

    .footer .app-promo svg {
        width: 3rem;
        height: 3rem;
    }

    .footer .app-promo p {
        font-size: 0.875rem;
    }

    .footer .social-networks {
        gap: 0.25rem;
    }

    .footer .social-networks-title {
        font-size: 0.875rem;
    }

    .footer .social-networks-pointer-wrapper {
        min-width: 1rem;
    }

    .footer .social-networks-pointer {
        min-width: 0.75rem;
        width: 0.75rem;
        min-height: 1.375rem;
        height: 1.375rem;
    }

    .footer .social-networks-links {
        gap: 0.25rem;
    }

    .footer .social-networks-links a {
        width: 1.5rem;
        height: 1.5rem;
        padding: 0.25rem;
    }

    .footer .contacts-info .contacts-info-description {
        font-size: 0.875rem;
    }

    .footer .contact-link svg {
        width: 1rem;
        height: 1rem;
    }

    .footer .flex-item:last-of-type a {
        gap: 0.375rem;
    }

    .footer .flex-item:last-of-type a svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .footer .flex-item:last-of-type p {
        font-size: 0.875rem;
        line-height: 140%;
    }
}