/* =========================================
   Reset
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

body {
    min-width: 320px;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
}

img,
svg,
picture {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================================
   Header
========================================= */
.be-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 88px;
    background: #F0EEF0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.be-header.is-scrolled {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(125px);
}

.be-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.be-header__logo {
    width: 186px;
    display: block;
    justify-self: start;
}

.be-header__logo img,
.be-mobile-menu__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.be-header__nav {
    min-width: 640px;
    height: 56px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.be-header__nav-link {
    position: relative;
    color: #222222;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.be-header__nav-link::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: '';
    background: #222222;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

.be-header__nav-link:hover {
    color: #222222;
}

.be-header__nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.be-header__actions {
    display: flex;
    align-items: center;
    justify-self: end;
}

.be-header__mail,
.be-header__menu-button,
.be-mobile-menu__close {
    width: 56px;
    height: 56px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    color: #222222;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.be-header__mail:hover,
.be-header__menu-button:hover,
.be-mobile-menu__close:hover {
    color: #222222;
    background: #69e8df;
    transform: scale(1.06);
}

.be-header__menu-button {
    display: none;
    border-radius: 0;
    background: transparent;
}

.be-header__menu-button span {
    width: 32px;
    height: 2px;
    display: block;
    background: #222222;
}

.be-header__menu-button span + span {
    margin-top: 7px;
}

.be-mobile-menu {
    position: fixed;
    z-index: 1100;
    inset: 0;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    transform: translateY(-15px);
    transition: visibility 0s linear 0.4s, opacity 0.4s ease, transform 0.4s ease;
}

.be-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.be-mobile-menu__header {
    min-height: 142px;
    padding: calc(20px + env(safe-area-inset-top)) 16px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.be-mobile-menu__logo {
    width: 185px;
    margin-top: 1px;
    display: block;
}

.be-mobile-menu__close {
    position: relative;
    background: #f5f5f7;
}

.be-mobile-menu__close span {
    position: absolute;
    width: 25px;
    height: 1.5px;
    background: #222222;
}

.be-mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.be-mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

.be-mobile-menu__nav {
    padding: 32px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

.be-mobile-menu__link {
    color: #222222;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.be-mobile-menu__link:hover {
    color: #42dcd2;
    transform: scale(1.05);
}

body.be-menu-open {
    overflow: hidden;
}
@media (max-width:1199px) {
    .be-header__nav {
        gap: 24px;
        min-width: 560px;
    }
    .be-header__inner {
        grid-template-columns: 1fr auto 0.5fr;
    }
}
@media (max-width: 991.98px) {
    .be-header__inner {
        padding: 0 16px;
        display: flex;
    }

    .be-header__logo {
        width: 185px;
    }

    .be-header__nav {
        display: none;
    }

    .be-header__actions {
        margin-left: auto;
        gap: 32px;
    }

    .be-header__menu-button {
        display: block;
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 374.98px) {
    .be-header__logo,
    .be-mobile-menu__logo {
        width: 160px;
    }

    .be-header__actions {
        gap: 20px;
    }
}
/* =========================================
   Hero
========================================= */
.be-hero {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 88px);
    overflow: hidden;
    color: #222222;
    background: #f5f5f6;
}

.be-hero__picture {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
    overflow: hidden;
}

.be-hero__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.be-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: calc(100svh - 88px);
    padding: clamp(78px, 9vh, 96px) 39px clamp(70px, 8vh, 85px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
}

.be-hero__title {
    width: min(680px, 40vw);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 3.6vw, 62px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.be-hero__title strong,
.be-hero__title span {
    display: block;
}

.be-hero__title strong {
    margin-bottom: 4px;
    font-weight: 700;
}

.be-hero__description {
    width: min(590px, 38vw);
    margin: auto 0 0;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(18px, 1.2vw, 20px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.be-hero__scroll {
    position: absolute;
    z-index: 3;
    right: 40px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #222222;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.be-hero__scroll span {
    writing-mode: vertical-rl;
}

.be-hero__scroll i {
    position: relative;
    width: 1px;
    height: 118px;
    margin-top: 25px;
    display: block;
    background: #777777;
    transition: height 0.3s ease, background-color 0.3s ease;
}

.be-hero__scroll i::before,
.be-hero__scroll i::after {
    position: absolute;
    bottom: 0;
    width: 7px;
    height: 1px;
    content: '';
    background: #777777;
}

.be-hero__scroll i::before {
    display: none;
}

.be-hero__scroll i::after {
    position: absolute;
    right: auto;
    bottom: 1px;
    left: 50%;
    width: 8px;
    height: 8px;
    content: '';
    border-right: 1px solid #777777;
    border-bottom: 1px solid #777777;
    background: transparent;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: center;
}

.be-hero__scroll:hover i::after {
    border-color: #222222;
    background: transparent;
}

.be-hero__scroll:hover {
    color: #222222;
}

.be-hero__scroll:hover i {
    height: 130px;
    background: #222222;
}

.be-hero__scroll:hover i::before,
.be-hero__scroll:hover i::after {
    background: #222222;
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .be-hero__picture {
        width: 100%;
    }

    .be-hero__title {
        width: 43vw;
        font-size: clamp(42px, 4.2vw, 54px);
    }

    .be-hero__description {
        width: 40vw;
    }
}

@media (max-width: 767.98px) {
    .be-hero {
        min-height: 0;
        overflow: hidden;
    }

    .be-hero__picture {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: clamp(390px, 116vw, 467px);
    }

    .be-hero__image {
        object-fit: cover;
        object-position: center;
    }

    .be-hero__content {
        min-height: 307px;
        padding: 31px 16px 34px;
        display: block;
        background: #f5f5f6;
    }

    .be-hero__title {
        width: 100%;
        font-size: clamp(24px, 6.25vw, 26px);
        line-height: 1.4;
        letter-spacing: -0.025em;
    }

    .be-hero__title strong {
        margin-bottom: 0;
        white-space: nowrap;
    }

    .be-hero__description {
        width: 100%;
        max-width: 370px;
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.4;
    }

    .be-hero__scroll {
        display: none;
    }
}

@media (max-width: 374.98px) {
    .be-hero__title {
        font-size: 22px;
    }

    .be-hero__description {
        font-size: 14px;
    }
}
.be-selection {
    position: relative;
    padding: 122px 0 165px;
    overflow: hidden;
    color: #222222;
    background: #ffffff;
}

.be-selection__content {
    position: relative;
    width: 100%;
    padding: 0 39px;
}

.be-selection__heading {
    position: relative;
    z-index: 2;
}

.be-selection__label {
    margin-bottom: 24px;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.be-selection__title {
    max-width: 1380px;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(58px, 5.25vw, 90px);
    font-weight: 300;
    line-height: 1.22;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.be-selection__image {
    position: absolute;
    z-index: 1;
    top: 55px;
    right: -5px;
    width: clamp(330px, 25vw, 440px);
    height: auto;
    pointer-events: none;
}

.be-selection__columns {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 880px) minmax(0, 780px);
    justify-content: space-between;
    margin-top: 80px;
    gap: 80px;
}

.be-selection__text {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.be-selection__text p {
    margin: 0;
}

.be-selection__text p + p {
    margin-top: 22px;
}

.be-selection__accent {
    align-self: start;
    max-width: 560px;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.be-selection__tags {
    width: 100%;
    margin-top: 120px;
}

.be-selection__marquee {
    width: 100%;
    overflow: hidden;
}

.be-selection__marquee + .be-selection__marquee {
    margin-top: 16px;
}

.be-selection__track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.be-selection__marquee.is-ready .be-selection__track {
    animation-duration: var(--marquee-duration, 30s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.be-selection__marquee--dark .be-selection__track {
    animation-name: be-selection-left-to-right;
}

.be-selection__marquee--light .be-selection__track {
    animation-name: be-selection-right-to-left;
}

.be-selection__tag-group {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    padding-right: 8px;
}

.be-selection__tag {
    min-height: 56px;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #222222;
    border-radius: 100px;
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.be-selection__marquee--dark .be-selection__tag {
    color: #ffffff;
    background: #222222;
}

.be-selection__marquee--light .be-selection__tag {
    color: #222222;
    background: #ffffff;
}

@keyframes be-selection-left-to-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes be-selection-right-to-left {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 767.98px) {
    .be-selection {
        padding: 57px 0 74px;
    }

    .be-selection__content {
        padding: 0 16px;
    }

    .be-selection__label {
        max-width: 290px;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.4;
    }

    .be-selection__title {
        font-size: 32px;
        line-height: 1.4;
        letter-spacing: -0.025em;
    }

    .be-selection__image {
        display: none;
    }

    .be-selection__columns {
        display: block;
        margin-top: 28px;
    }

    .be-selection__text {
        font-size: 16px;
        line-height: 1.4;
    }

    .be-selection__text p + p {
        margin-top: 23px;
    }

    .be-selection__accent {
        margin-top: 32px;
        font-size: 21px;
        line-height: 1.35;
    }

    .be-selection__tags {
        margin-top: 40px;
    }

    .be-selection__marquee + .be-selection__marquee {
        margin-top: 9px;
    }

    .be-selection__tag-group {
        gap: 8px;
        padding-right: 8px;
    }

    .be-selection__tag {
        min-height: 56px;
        padding: 0 24px;
        font-size: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .be-selection__track {
        animation-play-state: paused !important;
    }
}
/* =========================================
   Product series slider
========================================= */

.be-series {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
    color: #222222;
    background-color: #ffffff;
}
.be-series.pb-0 {
    padding-bottom: 0;
}
.be-series__title {
    margin: 0;
    padding: 0 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.be-series__slider {
    width: calc(100% - 39px);
    margin-top: 60px;
    margin-left: 39px;
    overflow: visible;
}

.be-series.is-few .be-series__slider {
    width: calc(100% - 78px);
    margin-right: 39px;
}

.be-series__slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.be-series__slide {
    width: 510px;
    height: 548px;
}

.be-series__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #222222;
    background-color: #f1f1f5;
    border-radius: 7px;
}

.be-series__image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    padding: 28px 32px 0;
}

.be-series__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    mix-blend-mode: multiply;
}

.be-series__item-title {
    margin: 16px 24px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.be-series__parameters {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 13px 24px 0;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {
    .be-series__item:hover .be-series__image img {
        transform: scale(1.2);
    }
}

/* =========================================
   Controls
========================================= */

.be-series__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 39px);
    gap: 24px;
    margin-top: 56px;
    margin: 56px auto 0 auto;
}

.be-series__arrow {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #ffffff;
    background-color: #222222;
    border: 0;
    border-radius: 50%;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.be-series__arrow:hover,
.be-series__arrow:focus-visible {
    color: #ffffff;
    background-color: #69e8df;
    transform: scale(1.06);
}

.be-series__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 44px;
    gap: var(--pagination-gap, 32px);
    padding: 0 19px;
    background-color: #f6f6f6;
    border-radius: 50px;
}

.be-series__dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    padding: 0;
    background-color: #222222;
    border: 0;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.be-series__pagination {
    width: max-content;
    max-width: 100%;
    padding: 0 clamp(20px, 2vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 1.8vw, 30px);
}

.be-series__dot {
    flex: 0 0 8px;
}

.be-series__dot.is-active {
    background-color: #69e8df;
    transform: scale(1.15);
}

.be-series.is-single .be-series__controls {
    display: none;
}

/* Две или три карточки полностью помещаются на десктопе */

@media (min-width: 768px) {
    /*
    .be-series.is-few .be-series__controls {
        display: none;
    }

    .be-series.is-few .be-series__slider {
        cursor: default !important;
    }*/
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {
    .be-series {
        padding-bottom: 79px;
    }

    .be-series__title {
        font-size: 26px;
        line-height: 1.2;
        text-align: left;
    }

    .be-series__slider,
    .be-series.is-few .be-series__slider {
        width: 100%;
        margin-top: 35px;
        margin-right: 0;
        margin-left: 0;
    }

    .be-series__slide {
        width: min(360px, calc(100vw - 42px));
        height: 548px;
    }

    .be-series__image {
        height: 360px;
        padding: 24px 24px 0;
    }

    .be-series__item-title {
        margin-top: 8px;
        font-size: 20px;
    }

    .be-series__parameters {
        font-size: 15px;
    }

    .be-series__controls,
    .be-series.is-few .be-series__controls {
        display: flex;
        width: 100%;
        gap: 8px;
        margin-top: 33px;
        margin-left: 0;
    }
}
/* =========================================
   Product banner
========================================= */

.be-product-banner {
    position: relative;
    width: 100%;
    height: 664px;
    overflow: hidden;
    overflow: clip;
    padding: 0 40px;
    color: #222222;
    background-color: #ffffff;
    margin-bottom: 80px;
}

.be-product-banner__media {
    display: block;
    width: 80%;
    height: 100%;
    overflow: hidden;
    border-radius: 80px;
}

.be-product-banner__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Изображение слева, текст справа */

.be-product-banner--image-left .be-product-banner__media {
    margin-right: auto;
    margin-left: 0;
}

.be-product-banner--image-left .be-product-banner__content {
    right: clamp(40px, 5.1vw, 96px);
    left: auto;
}

/* Изображение справа, текст слева */

.be-product-banner--image-right .be-product-banner__media {
    margin-right: 0;
    margin-left: auto;
}

.be-product-banner--image-right .be-product-banner__content {
    right: auto;
    left: clamp(40px, 10.2vw, 176px);
}

/* Контент */

.be-product-banner__content {
    position: absolute;
    z-index: 2;
    top: 188px;
    width: min(620px, 42vw);
    min-width: 0;
}

.be-product-banner__subtitle {
    max-width: 100%;
    font-family: "Work Sans", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.be-product-banner__title {
    max-width: 100%;
    margin-top: 19px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(72px, 5.56vw, 96px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.be-product-banner__text {
    max-width: 620px;
    margin-top: 44px;
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

/* =========================================
   Tablet and mobile
========================================= */
@media (max-width: 1440px) {
    .be-product-banner {
        height: 560px;
    }
    .be-product-banner__content {
        top: 160px;
    }
}
@media (max-width: 1280px) {
    .be-product-banner {
        height: 480px;
    }
    .be-product-banner__content {
        top: 140px;
    }
    .be-product-banner__subtitle {
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0.025em;
    }

    .be-product-banner__title {
        margin-top: 12px;
        font-size: clamp(42px, 12.44vw, 52px);
        line-height: 1.2;
        letter-spacing: -0.035em;
    }

    .be-product-banner__text {
        max-width: 100%;
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0;
    }
}
@media (max-width: 991.98px) {
    .be-product-banner {
        height: auto;
        padding: 0px 16px 0px;
        margin-bottom: 40px;
    }

    .be-product-banner__media,
    .be-product-banner--image-left .be-product-banner__media,
    .be-product-banner--image-right .be-product-banner__media {
        width: 100%;
        height: clamp(323px, 52vw, 520px);
        margin: 0;
        border-radius: 8px;
    }

    .be-product-banner__content,
    .be-product-banner--image-left .be-product-banner__content,
    .be-product-banner--image-right .be-product-banner__content {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 34px;
    }

    .be-product-banner__subtitle {
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0.025em;
    }

    .be-product-banner__title {
        margin-top: 12px;
        font-size: clamp(42px, 12.44vw, 52px);
        line-height: 1.2;
        letter-spacing: -0.035em;
    }

    .be-product-banner__text {
        max-width: 100%;
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0;
    }
}

/* =========================================
   Small mobile
========================================= */

@media (max-width: 575.98px) {
    .be-product-banner__media,
    .be-product-banner--image-left .be-product-banner__media,
    .be-product-banner--image-right .be-product-banner__media {
        height: 323px;
    }
}
/* =========================================
   Projects
========================================= */

.be-projects {
    overflow: hidden;
    padding: 120px 0 40px;
    color: #222222;
    background-color: #ffffff;
}

.be-projects__content {
    padding: 0 39px;
    text-align: center;
}

.be-projects__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.be-projects__title {
    max-width: 1450px;
    margin: 28px auto 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 76px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.be-projects__text {
    max-width: 920px;
    margin: 44px auto 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.be-projects__slider {
    width: calc(100% - 40px);
    margin-top: 88px;
    margin-left: 40px;
    overflow: visible;
}

.be-projects__slider .swiper-wrapper {
    will-change: transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.be-projects__slide {
    width: 304px;
    height: 221px;
    backface-visibility: hidden;
}

.be-projects__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 38px;
    background-color: #f1f1f5;
    border-radius: 8px;
}

.be-projects__icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

.be-projects__item-title {
    max-width: 230px;
    margin-top: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.be-projects__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    gap: 24px;
    margin-top: 56px;
    margin: 56px auto;
}

.be-projects__arrow {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #ffffff;
    background-color: #222222;
    border: 0;
    border-radius: 50%;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.be-projects__arrow:hover,
.be-projects__arrow:focus-visible {
    color: #ffffff;
    background-color: #69e8df;
    transform: scale(1.06);
}

.be-projects__pagination {
    width: max-content;
    max-width: 100%;
    height: 44px;
    padding: 0 clamp(20px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 1.8vw, 30px);
    background-color: #f5f5f5;
    border-radius: 50px;
}

.be-projects__dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    padding: 0;
    background-color: #222222;
    border: 0;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.be-projects__dot.is-active {
    background-color: #69e8df;
    transform: scale(1.15);
}
@media (max-width: 1480px) {
    .be-projects__title {
        font-size: 56px;
    }
}
@media (max-width: 910px) {
    .be-projects__title {
        font-size: 44px;
    }
}
.be-projects__slide {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.be-projects__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 38px;
    color: #222222;
    background-color: #f1f1f5;
    border-radius: 8px;
    transform: scale(1);
    transform-origin: left;
    transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.be-projects__item-title {
    color: inherit;
    transition: color 0.35s ease;
}

.be-projects__icon {
    transition: filter 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .be-projects__slide:hover {
        z-index: 10;
    }

    .be-projects__slide:hover .be-projects__item {
        color: #ffffff;
        background-color: #222222;
        transform: scale(1.06);
    }

    .be-projects__slide:hover .be-projects__icon {
        filter: brightness(0) invert(1);
    }
}
/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {
    .be-projects {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .be-projects__content {
        padding: 0 16px;
    }

    .be-projects__subtitle {
        font-size: 18px;
        line-height: 1.3;
    }

    .be-projects__title {
        margin-top: 24px;
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .be-projects__text {
        margin-top: 31px;
        font-size: 20px;
        line-height: 1.4;
    }

    .be-projects__slider {
        width: calc(100% - 16px);
        margin-top: 58px;
        margin-left: 16px;
    }

    .be-projects__slide {
        width: 232px;
        height: 218px;
    }

    .be-projects__item {
        padding: 38px;
    }

    .be-projects__item-title {
        margin-top: 21px;
        font-size: 20px;
        line-height: 1.3;
    }

    .be-projects__controls {
        width: calc(100% - 16px);
        gap: 8px;
        margin: 32px auto 0 auto;
    }
}
.be-projects__slide {
    position: relative;
    overflow: visible;
}

/* =========================================
   Elements selection
========================================= */

.be-elements {
    position: relative;
    overflow: hidden;
    padding: 144px 0 56px;
    background-color: #ffffff;
}

.be-elements__feature {
    position: relative;
    height: 556px;
    margin: 0 40px;
    background-color: #f1f1f5;
    border-radius: 30px;
}

.be-elements__content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 104px 56px 0;
}

.be-elements__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.be-elements__title {
    max-width: 960px;
    margin-top: 24px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.be-elements__text {
    max-width: 670px;
    margin-top: 64px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.be-elements__illustration {
    position: absolute;
    z-index: 1;
    top: -112px;
    right: -40px;
    width: 720px;
    max-width: none;
    height: 640px;
    object-fit: contain;
    pointer-events: none;
}

.be-elements__slider {
    width: calc(100% - 40px);
    margin-top: 50px;
    margin-left: 40px;
    overflow: visible;
}

.be-elements__slide {
    width: 250px;
    height: 170px;
}

.be-elements__item {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 29px;
    background-color: #f1f1f5;
    border-radius: 28px;
}

.be-elements__number {
    position: absolute;
    top: 10px;
    right: 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 88px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.7);
}

.be-elements__item-title {
    position: relative;
    z-index: 1;
    max-width: 195px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.be-elements__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 39px);
    gap: 24px;
    margin-top: 56px;
    margin-left: 39px;
}

.be-elements__arrow {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #ffffff;
    border: 0;
    border-radius: 50%;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.be-elements__arrow:hover {
    transform: scale(1.06);
}

.be-elements__arrow.swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.be-elements__prev,
.be-elements__next {
    color: #ffffff;
    background-color: #222222;
}

.be-elements__arrow:hover,
.be-elements__arrow:focus-visible {
    color: #ffffff;
    background-color: #69e8df;
    transform: scale(1.06);
}

.be-elements__next {
    background-color: #222222;
}

.be-elements__pagination {
    width: max-content;
    max-width: 100%;
    height: 44px;
    padding: 0 clamp(20px, 2vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 1.8vw, 30px);
    background-color: #f5f5f5;
    border-radius: 50px;
}

.be-elements__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    flex: 0 0 8px;
}

.be-elements__dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    padding: 0;
    background-color: #222222;
    border: 0;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.be-elements__dot.is-active {
    background-color: #69e8df;
    transform: scale(1.15);
}

.be-elements__slider .swiper-wrapper {
    will-change: transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.be-elements__slide {
    backface-visibility: hidden;
}
.be-elements__slide {
    position: relative;
    z-index: 1;
    backface-visibility: hidden;
}

.be-elements__item {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 29px;
    color: #222222;
    background-color: #f1f1f5;
    border-radius: 28px;
    transform: scale(1);
    transform-origin: center;
    transition: color 0.35s ease, background-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.be-elements__number {
    transition: color 0.35s ease;
}

.be-elements__item-title {
    color: inherit;
    transition: color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .be-elements__slide:hover {
        z-index: 5;
    }

    .be-elements__slide:hover .be-elements__item {
        color: #ffffff;
        background-color: #222222;
        transform: scale(1.1);
    }

    .be-elements__slide:hover .be-elements__number {
        color: rgba(255, 255, 255, 0.16);
    }
}
@media (max-width: 1640px) {
    .be-elements__illustration {
        right: -160px;
        width: 640px;
    }
    .be-elements {
        padding-top: 120px;
    }
}
@media (max-width: 1360px) {
    .be-elements__illustration {
        right: -160px;
        width: 560px;
    }
    .be-elements {
        padding-top: 80px;
    }
}
@media (max-width: 1199px) {
    .be-elements__illustration {
        display: none;
    }
    .be-elements {
        padding-top: 0px;
    }
    .be-elements__feature {
        margin: 0 24px;
    }
    .be-elements__slider {
        width: calc(100% - 24px);
        margin-top: 48px;
        margin-left: 24px;
        overflow: visible;
    }
}
@media (max-width: 991px) {
    .be-elements__feature {
        height: auto;
        padding-bottom: 40px;
    }
    .be-elements__content {
        padding-top: 80px;
    }
}
/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {
    .be-elements {
        padding-top: 40px;
        padding-bottom: 53px;
    }

    .be-elements__feature {
        padding-bottom: 320px;
        margin-right: 16px;
        margin-left: 16px;
    }
    .be-elements__illustration {
        display: block;
    }
    .be-elements__content {
        max-width: none;
        padding: 49px 23px 0;
    }

    .be-elements__subtitle {
        font-size: 15px;
        line-height: 1.3;
        letter-spacing: 0.025em;
    }

    .be-elements__title {
        max-width: none;
        margin-top: 23px;
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.025em;
    }

    .be-elements__text {
        max-width: none;
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.5;
    }

    .be-elements__illustration {
        top: auto;
        right: -40px;
        bottom: -48px;
        width: 410px;
        height: 350px;
    }

    .be-elements__slider {
        width: calc(100% - 16px);
        margin-top: 79px;
        margin-left: 16px;
    }

    .be-elements__controls {
        width: calc(100% - 16px);
        gap: 8px;
        margin-top: 32px;
        margin-left: unset;
        margin: 32px auto 0 auto;
    }
}

/* =========================================
   B2B section
========================================= */

.be-b2b {
    position: relative;
    overflow: hidden;
    padding: 124px 39px 0;
    background-color: #ffffff;
}

.be-b2b__card {
    position: relative;
    color: #f3f3f3;
    background-color: #222222;
    border-radius: 29px;
}

.be-b2b__content {
    position: relative;
    z-index: 2;
    padding: 180px 63px 74px;
}

.be-b2b__decoration {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.be-b2b__mark {
    position: absolute;
    top: -36px;
    right: 340px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 230px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #ffffff;
    white-space: nowrap;
}

.be-b2b__cube {
    position: absolute;
    top: -94px;
    right: -91px;
    z-index: 2;
    width: 480px;
    max-width: none;
    height: auto;
}

.be-b2b__header {
    max-width: 880px;
}

.be-b2b__subtitle {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.035em;
    color: #c9c9c9;
    text-transform: uppercase;
}

.be-b2b__title {
    max-width: 880px;
    margin-top: 24px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.be-b2b__intro {
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(0, 780px);
    justify-content: space-between;
    margin-top: 56px;
    gap: 64px;
}

.be-b2b__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #e3e3e3;
}

.be-b2b__lead {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.36;
    color: #f3f3f3;
}

.be-b2b__advantages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 120px;
}

.be-b2b__advantage {
    min-height: 165px;
    padding: 38px 64px 32px;
}

.be-b2b__advantage:not(:nth-child(3n + 1)) {
    border-left: 1px solid #414141;
}

.be-b2b__advantage:nth-child(n + 4) {
    border-top: 1px solid #414141;
}

.be-b2b__advantage-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.be-b2b__advantage-text {
    margin-top: 17px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.38;
    color: #e3e3e3;
}

.be-b2b__card {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    --spotlight-trail-x: 50%;
    --spotlight-trail-y: 50%;
    --spotlight-opacity: 0;
    --spotlight-size: 260px;
    --spotlight-trail-size: 380px;

    isolation: isolate;
}

.be-b2b__card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle var(--spotlight-size) at var(--spotlight-x) var(--spotlight-y), rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.09) 34%, rgba(255, 255, 255, 0.025) 54%, rgba(255, 255, 255, 0) 72%),
        radial-gradient(circle var(--spotlight-trail-size) at var(--spotlight-trail-x) var(--spotlight-trail-y), rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.035) 38%, rgba(255, 255, 255, 0) 72%);
    border-radius: inherit;
    opacity: var(--spotlight-opacity);
    mix-blend-mode: screen;
    transition: opacity 0.35s ease;
}

@media (max-width: 767.98px) {
    .be-b2b__card {
        --spotlight-size: 220px;
        --spotlight-trail-size: 320px;
    }
}

/* =========================================
   Tablet
========================================= */
@media (max-width: 1366px) {
    .be-b2b__advantages {
        margin-top: 80px;
    }
    .be-b2b__advantage {
        min-height: 165px;
        padding: 24px 24px 24px 32px;
    }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
    .be-b2b__advantage:not(:nth-child(3n + 1)) {
        border-left: 0;
    }
    .be-b2b {
        padding-right: 24px;
        padding-left: 24px;
    }

    .be-b2b__content {
        padding-right: 40px;
        padding-left: 40px;
    }

    .be-b2b__title {
        max-width: 650px;
        font-size: 36px;
    }

    .be-b2b__intro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 60px;
    }

    .be-b2b__advantages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .be-b2b__advantage {
        border: 0;
    }

    .be-b2b__advantage:nth-child(even) {
        border-left: 1px solid #414141;
    }

    .be-b2b__advantage:nth-child(n + 3) {
        border-top: 1px solid #414141;
    }
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {
    .be-b2b {
        padding: 120px 16px 0;
    }

    .be-b2b__card {
        border-radius: 30px;
    }

    .be-b2b__content {
        padding: 140px 24px 64px;
    }

    .be-b2b__mark {
        top: -16px;
        right: 172px;
        left: auto;
        font-size: 100px;
        line-height: 1;
        letter-spacing: -0.09em;
    }

    .be-b2b__cube {
        top: -102px;
        right: -48px;
        width: 250px;
    }
    .be-b2b__mark,
    .be-b2b__cube {
        will-change: transform;
    }
    .be-b2b__header {
        max-width: none;
    }

    .be-b2b__subtitle {
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0.025em;
    }

    .be-b2b__title {
        max-width: none;
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.28;
        letter-spacing: -0.02em;
    }

    .be-b2b__intro {
        display: block;
        margin-top: 28px;
    }

    .be-b2b__text {
        font-size: 16px;
        line-height: 1.4;
    }

    .be-b2b__lead {
        margin-top: 48px;
        font-size: 20px;
        line-height: 1.4;
    }

    .be-b2b__advantages {
        display: block;
        margin-top: 56px;
    }

    .be-b2b__advantage {
        min-height: 0;
        padding: 33px 0 31px;
        border: 0;
        border-bottom: 1px solid #414141;
    }

    .be-b2b__advantage:not(:nth-child(3n + 1)),
    .be-b2b__advantage:nth-child(n + 4) {
        border-left: 0;
        border-top: 0;
    }

    .be-b2b__advantage:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .be-b2b__advantage-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .be-b2b__advantage-text {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.4;
    }
}

/* =========================================
   Order section
========================================= */

.be-order {
    padding: 120px 16px 151px;
    color: #222222;
    background-color: #ffffff;
}

.be-order__content {
    text-align: center;
}

.be-order__subtitle {
    font-family: "Work Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.be-order__title {
    max-width: 1350px;
    margin: 24px auto 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(54px, 4.52vw, 78px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.be-order__text {
    max-width: 950px;
    margin: 64px auto 0;
    font-family: "Work Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

.be-order__email {
    display: inline-flex;
    align-items: center;
    min-width: 258px;
    height: 57px;
    gap: 20px;
    margin-top: 58px;
    padding: 6px 32px 6px 6px;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #222222;
    border-radius: 50px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.be-order__email-icon {
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #222222;
    background-color: #69e8df;
    border-radius: 50%;
}

.be-order__email:hover {
    color: #ffffff;
    background-color: #222222;
}

.be-order__email:hover .be-order__email-icon {
    color: #222222;
}

@media (max-width: 767.98px) {
    .be-order {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .be-order__subtitle {
        font-size: 16px;
        line-height: 1.2;
    }

    .be-order__title {
        margin-top: 16px;
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .be-order__text {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .be-order__email {
        margin-top: 40px;
    }
}
/* =========================================
   Footer
========================================= */

.be-footer {
    margin-right: clamp(16px, 2.25vw, 40px);
    margin-left: clamp(16px, 2.25vw, 40px);
    color: #ffffff;
    background-color: #222222;
    border-radius: 30px;
    margin-bottom: 40px;
}

.be-footer__inner {
    display: flex;
    align-items: center;
    min-height: 160px;
    padding: 40px clamp(40px, 4.4vw, 72px);
}

.be-footer__logo {
    flex: 0 0 auto;
    width: 190px;
    margin-right: clamp(60px, 8.9vw, 156px);
    display: flex;
}

.be-footer__logo img {
    width: 100%;
    height: auto;
    max-height: 48px;
}

.be-footer__address {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    margin: 0;
    font-style: normal;
}

.be-footer__city {
    margin-bottom: 2px;
    font-size: 16px;
    line-height: 1.25;
}

.be-footer__street {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.be-footer__legal {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    padding-left: 40px;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.be-footer__link {
    transition: opacity 0.2s ease;
}

.be-footer__link:hover,
.be-footer__link:focus-visible {
    color: #ffffff;
    opacity: 0.7;
}

.be-footer__copyright {
    white-space: nowrap;
}

/* =========================================
   Mobile and tablet
========================================= */

@media (max-width: 1199.98px) {
    .be-footer__inner {
        display: block;
        min-height: auto;
        padding: 70px 37px 50px;
    }

    .be-footer__logo {
        width: 187px;
        margin: 0;
    }

    .be-footer__address {
        margin-top: 48px;
    }

    .be-footer__city {
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 1.2;
    }

    .be-footer__street {
        font-size: 20px;
        line-height: 1.25;
        white-space: normal;
    }

    .be-footer__legal {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-top: 51px;
        margin-left: 0;
        padding-left: 0;
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .be-footer {
        margin-right: 16px;
        margin-left: 16px;
        border-radius: 30px;
    }

    .be-footer__inner {
        padding-right: 37px;
        padding-left: 37px;
    }
}

@media (max-width: 389.98px) {
    .be-footer__inner {
        padding-right: 28px;
        padding-left: 28px;
    }

    .be-footer__street {
        font-size: 18px;
    }

    .be-footer__legal {
        font-size: 15px;
    }
}

[data-title-reveal] {
    overflow: hidden;
}

.be-title-reveal__inner {
    display: block;
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 110%, 0);
    transform-origin: left bottom;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, filter 0.8s ease;
    transition-delay: var(--title-reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

[data-title-reveal].is-visible .be-title-reveal__inner {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .be-title-reveal__inner {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

/* =========================================
   Preloader
========================================= */
body.be-page-loading {
    overflow: hidden;
}

.be-preloader {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

.be-preloader__panel {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 50.1%;
    background-color: #202020;
    transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.be-preloader__panel::after {
    position: absolute;
    inset: 0;
    content: '';
    background: radial-gradient(circle at center, rgba(105, 232, 223, 0.11), transparent 58%);
}

.be-preloader__panel--left {
    left: 0;
}

.be-preloader__panel--right {
    right: 0;
}

.be-preloader.is-leaving {
    pointer-events: none;
}

.be-preloader.is-leaving .be-preloader__panel--left {
    transform: translate3d(-100%, 0, 0);
}

.be-preloader.is-leaving .be-preloader__panel--right {
    transform: translate3d(100%, 0, 0);
}

.be-preloader__logo {
    position: absolute;
    z-index: 3;
    top: 32px;
    left: 39px;
    width: 185px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.35s ease, transform 0.5s ease;
}

.be-preloader__background-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(170px, 25vw, 430px);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.08em;
    white-space: nowrap;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.be-preloader__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.35s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.be-preloader__visual {
    position: relative;
    width: min(360px, 72vw);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.be-preloader__circle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: rotate(-90deg);
}

.be-preloader__circle-background,
.be-preloader__circle-progress {
    fill: none;
    stroke-width: 2;
}

.be-preloader__circle-background {
    stroke: rgba(255, 255, 255, 0.12);
}

.be-preloader__circle-progress {
    stroke: #69e8df;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    filter: drop-shadow(0 0 8px rgba(105, 232, 223, 0.8));
    transition: stroke-dashoffset 0.12s linear;
}

.be-preloader__orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: be-preloader-orbit 2.2s linear infinite;
}

.be-preloader__orbit span {
    position: absolute;
    top: -2px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #69e8df;
    box-shadow: 0 0 10px #69e8df, 0 0 28px rgba(105, 232, 223, 0.85), 0 0 60px rgba(105, 232, 223, 0.4);
    transform: translateX(-50%);
}

.be-preloader__number {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-family: 'Space Grotesk', sans-serif;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.be-preloader__value {
    min-width: 2ch;
    font-size: clamp(105px, 10vw, 170px);
    font-weight: 300;
    letter-spacing: -0.08em;
    text-align: center;
}

.be-preloader__number small {
    margin-top: 18px;
    margin-left: 11px;
    color: #69e8df;
    font-family: 'Work Sans', sans-serif;
    font-size: 22px;
    font-weight: 400;
}

.be-preloader__status {
    min-width: 270px;
    margin-top: 29px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.25em;
    text-align: center;
}

.be-preloader__footer {
    position: absolute;
    z-index: 3;
    right: 39px;
    bottom: 31px;
    left: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.22em;
    transition: opacity 0.3s ease;
}

.be-preloader.is-complete .be-preloader__circle-progress {
    filter: drop-shadow(0 0 14px rgba(105, 232, 223, 1));
}

.be-preloader.is-complete .be-preloader__orbit span {
    animation: be-preloader-complete-pulse 0.55s ease forwards;
}

.be-preloader.is-leaving .be-preloader__content {
    opacity: 0;
    transform: scale(1.18);
}

.be-preloader.is-leaving .be-preloader__logo {
    opacity: 0;
    transform: translateY(-20px);
}

.be-preloader.is-leaving .be-preloader__footer {
    opacity: 0;
}

@keyframes be-preloader-orbit {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes be-preloader-complete-pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(3);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) scale(6);
    }
}

@media (max-width: 767.98px) {
    .be-preloader__logo {
        top: 20px;
        left: 16px;
        width: 175px;
    }

    .be-preloader__visual {
        width: min(270px, 72vw);
    }

    .be-preloader__value {
        font-size: 100px;
    }

    .be-preloader__number small {
        margin-top: 10px;
        margin-left: 7px;
        font-size: 17px;
    }

    .be-preloader__status {
        min-width: 240px;
        margin-top: 24px;
        font-size: 10px;
    }

    .be-preloader__footer {
        right: 16px;
        bottom: 22px;
        left: 16px;
        font-size: 9px;
        letter-spacing: 0.14em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .be-preloader__orbit {
        animation: none;
    }

    .be-preloader__panel,
    .be-preloader__content,
    .be-preloader__logo {
        transition-duration: 0.25s;
    }
}
.be-preloader {
    color: #222222;
    background: transparent;
}

.be-preloader__panel {
    background-color: #f5f5f6;
}

.be-preloader__panel::before {
    position: absolute;
    inset: 0;
    content: '';
    opacity: 0.28;
    background-image: linear-gradient(rgba(34, 34, 34, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 34, 34, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
}

.be-preloader__panel::after {
    position: absolute;
    inset: 0;
    content: '';
    background: radial-gradient(circle at center, rgba(105, 232, 223, 0.2) 0%, rgba(105, 232, 223, 0.07) 30%, transparent 65%);
}

.be-preloader__logo {
    filter: none;
}

.be-preloader__background-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(34, 34, 34, 0.095);
}

.be-preloader__visual::before {
    position: absolute;
    z-index: -1;
    inset: 12%;
    content: '';
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 80px rgba(34, 34, 34, 0.055), inset 0 0 50px rgba(105, 232, 223, 0.08);
}

.be-preloader__circle-background {
    stroke: rgba(34, 34, 34, 0.11);
}

.be-preloader__circle-progress {
    stroke: #69e8df;
    filter: drop-shadow(0 0 6px rgba(69, 210, 201, 0.7));
}

.be-preloader__orbit span {
    background: #69e8df;
    box-shadow: 0 0 8px #69e8df, 0 0 24px rgba(105, 232, 223, 0.9), 0 0 55px rgba(105, 232, 223, 0.5);
}

.be-preloader__value {
    color: #222222;
}

.be-preloader__number small {
    color: #47d9cf;
}

.be-preloader__status {
    color: rgba(34, 34, 34, 0.58);
}

.be-preloader__footer {
    color: rgba(34, 34, 34, 0.3);
}

.be-preloader.is-complete .be-preloader__circle-progress {
    filter: drop-shadow(0 0 12px rgba(69, 210, 201, 1));
}
.be-preloader__background-text {
    transition: opacity 0.15s ease;
}

.be-preloader.is-leaving .be-preloader__background-text {
    opacity: 0;
}

/* =========================================
   Scroll top
========================================= */

.be-scroll-top {
    position: fixed;
    z-index: 900;
    right: 28px;
    bottom: max(28px, env(safe-area-inset-bottom));
    width: 64px;
    height: 64px;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    transform: translateY(18px) scale(0.9);
    pointer-events: none;
    cursor: pointer;
    transition: visibility 0s linear 0.35s, opacity 0.35s ease, transform 0.35s ease;
}

.be-scroll-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition-delay: 0s;
}

.be-scroll-top__progress {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: rotate(-90deg);
}

.be-scroll-top__track,
.be-scroll-top__value {
    fill: none;
    stroke-width: 2;
}

.be-scroll-top__track {
    stroke: rgba(34, 34, 34, 0.12);
}

.be-scroll-top__value {
    stroke: #69e8df;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    filter: drop-shadow(0 0 4px rgba(105, 232, 223, 0.55));
    transition: stroke-dashoffset 0.1s linear;
}

.be-scroll-top__button {
    position: absolute;
    inset: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50%;
    background: #222222;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.be-scroll-top:hover .be-scroll-top__button {
    color: #222222;
    background: #69e8df;
    transform: scale(1.06);
}

.be-scroll-top:active .be-scroll-top__button {
    transform: scale(0.94);
}

.be-scroll-top:focus-visible {
    outline: 2px solid #69e8df;
    outline-offset: 4px;
}

@media (max-width: 767.98px) {
    .be-scroll-top {
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }

    .be-scroll-top__button {
        inset: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .be-scroll-top,
    .be-scroll-top__button,
    .be-scroll-top__value {
        transition-duration: 0.01ms;
    }
}

.be-text-page {
	padding: 80px 0 80px;
}

.be-text-page__header {
	margin-bottom: 48px;
}

.be-text-page__title {
	margin: 0;
	font-size: clamp(48px, 3.6vw, 62px);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.be-text-page__content {
	font-size: 18px;
	line-height: 1.7;
}

.be-text-page__content > *:first-child {
	margin-top: 0;
}

.be-text-page__content > *:last-child {
	margin-bottom: 0;
}

.be-text-page__content h2,
.be-text-page__content h3,
.be-text-page__content h4 {
	margin-top: 48px;
	margin-bottom: 20px;
	line-height: 1.2;
}

.be-text-page__content p,
.be-text-page__content ul,
.be-text-page__content ol {
	margin-bottom: 24px;
}
.be-text-page__content ul {
    list-style-type: disc;
}
.be-text-page__content ul,
.be-text-page__content ol {
	padding-left: 24px;
}

.be-text-page__content a {
	text-decoration: underline;
}

.be-text-page__content img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 991.98px) {
	.be-text-page {
		padding: 56px 0 56px;
	}

	.be-text-page__header {
		margin-bottom: 32px;
	}

	.be-text-page__content {
		font-size: 16px;
	}
}