/* ========================================
   Base reset
======================================== */

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

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: #070707;
    color: #ffffff;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul,
ol {
    list-style: none;
}

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

a:hover {
    color: inherit;
}

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

img {
    height: auto;
}

button,
input,
textarea,
select {
    margin: 0;
    border-radius: 0;
    font: inherit;
}

button {
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

input,
textarea,
select {
    color: inherit;
}

textarea {
    resize: vertical;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

address {
    margin: 0;
    font-style: normal;
}

section {
    position: relative;
}

::selection {
    background: #ffffff;
    color: #070707;
}

/* ========================================
   General layout
======================================== */

.bf-site-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.bf-header {
    position: relative;
    z-index: 100;
    width: 100%;
}

.bf-main {
    width: 100%;
}
/* ========================================
   Header
======================================== */

.bf-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 96px;
    background: #080808;
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

.bf-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1650px;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    padding-right: 24px;
    padding-left: 24px;
}

.bf-header__logo {
    display: block;
    flex: 0 0 auto;
    width: 190px;
    transition: width 0.3s ease;
}

.bf-header__logo-image {
    display: block;
    width: 100%;
    height: auto;
}

.bf-header__nav {
    display: flex;
    align-items: center;
    gap: clamp(32px, 3vw, 60px);
    margin-right: auto;
    margin-left: clamp(80px, 10vw, 190px);
}

.bf-header__nav-link {
    position: relative;
    padding: 10px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.bf-header__nav-link::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: #ffffff;
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.25s ease;
}

.bf-header__nav-link:hover,
.bf-header__nav-link:focus-visible {
    color: #d5d5d5;
}

.bf-header__nav-link:hover::after,
.bf-header__nav-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.bf-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 64px;
}

.bf-header__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 49px;
    padding: 4px 24px 4px 4px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #dddddd;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.bf-header__button-icon {
    display: flex;
    flex: 0 0 41px;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.bf-header__button-icon svg {
    display: block;
}

.bf-header__button:hover,
.bf-header__button:focus-visible {
    background: #111111;
    color: #ffffff;
}

.bf-header__button:hover .bf-header__button-icon,
.bf-header__button:focus-visible .bf-header__button-icon {
    background: #ffffff;
    color: #111111;
    transform: translateX(2px);
}

.bf-header__button:focus-visible,
.bf-header__nav-link:focus-visible,
.bf-header__language:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

.bf-header__languages {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bf-header__language {
    color: #777777;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.bf-header__language:hover,
.bf-header__language:focus-visible,
.bf-header__language.is-active {
    color: #ffffff;
}

.bf-header__mobile-actions {
    display: none;
}

/* ========================================
   Header after scroll
======================================== */

.bf-header.is-scrolled {
    height: 72px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.bf-header.is-scrolled .bf-header__logo {
    width: 164px;
}

.bf-header.is-scrolled .bf-header__button {
    min-height: 47px;
}

.bf-header.is-scrolled .bf-header__button-icon {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
}

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

.bf-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 990;
    visibility: hidden;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: visibility 0s linear 0.4s, background-color 0.4s ease;
}

.bf-mobile-menu__panel {
    position: absolute;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #080808;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.4s ease;
}

.bf-mobile-menu.is-open {
    visibility: visible;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition-delay: 0s;
}

.bf-mobile-menu.is-open .bf-mobile-menu__panel {
    opacity: 1;
    transform: translateY(0);
}

.bf-mobile-menu__close {
    position: absolute;
    top: 27px;
    right: 20px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}
.bf-mobile-menu__close:focus {
    outline: none;
    box-shadow: none;
}

.bf-mobile-menu__close-line {
    position: absolute;
    top: 17px;
    left: 2px;
    width: 42px;
    height: 1.5px;
    background: #FFF;
}

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

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

.bf-mobile-menu__content {
    width: 100%;
    padding: 40px 40px 40px 58px;
}

.bf-mobile-menu__title {
    margin: 0;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.bf-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
}

.bf-mobile-menu__link {
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    transition: opacity 0.25s ease;
}

.bf-mobile-menu__link:hover,
.bf-mobile-menu__link:focus-visible {
    opacity: 0.55;
}

.bf-mobile-menu__contacts {
    margin-top: 40px;
}

.bf-mobile-menu__contacts-title {
    margin: 0;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.bf-mobile-menu__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 23px;
}

.bf-mobile-menu__messenger {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    transition: opacity 0.25s ease;
}

.bf-mobile-menu__messenger:hover,
.bf-mobile-menu__messenger:focus-visible {
    opacity: 0.55;
}

.bf-mobile-menu__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 57px;
    margin-top: 56px;
    padding: 5px 23px 5px 5px;
    border: 1px solid #FFF;
    border-radius: 999px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.bf-mobile-menu__button-icon {
    display: flex;
    flex: 0 0 45px;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFF;
    color: #0B0B0B;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.bf-mobile-menu__button:hover,
.bf-mobile-menu__button:focus-visible {
    background: #FFF;
    color: #0B0B0B;
}

.bf-mobile-menu__button:hover .bf-mobile-menu__button-icon,
.bf-mobile-menu__button:focus-visible .bf-mobile-menu__button-icon {
    background: #0B0B0B;
    color: #FFF;
    transform: translateX(2px);
}

body.bf-menu-open {
    overflow: hidden;
}

/* ========================================
   Header: tablet
======================================== */
@media (max-width: 1540px) {
    .bf-header__container {
        padding-right: 24px;
        padding-left: 24px;
    }
}
@media (max-width: 1360px) {
    .bf-header__nav {
            margin-left: clamp(56px, 6vw, 190px);
    }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-header__container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .bf-header__logo {
        width: 165px;
    }

    .bf-header__nav {
        gap: 32px;
        margin-left: 56px;
    }

    .bf-header__actions {
        gap: 28px;
    }

    .bf-header__button {
        padding-right: 18px;
        display: none;
    }

    .bf-header__button-text {
        display: none;
    }

    .bf-header__language {
        font-size: 13px;
    }

    .bf-header__languages {
        gap: 16px;
    }
}

/* ========================================
   Header: mobile
======================================== */
@media (max-width: 991px) {

/*}
@media (max-width: 767.98px) {*/
    .bf-header,
    .bf-header.is-scrolled {
        height: 64px;
        box-shadow: none;
    }

    .bf-header__container {
        padding: 0 16px;
    }

    .bf-header__logo,
    .bf-header.is-scrolled .bf-header__logo {
        width: 155px;
    }

    .bf-header__nav,
    .bf-header__actions {
        display: none;
    }

    .bf-header__mobile-actions {
        display: flex;
        align-items: center;
        gap: 38px;
    }

    .bf-header__burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 20px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #ffffff;
        cursor: pointer;
    }

    .bf-header__burger-line {
        display: block;
        width: 32px;
        height: 1.5px;
        background: #FFF;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .bf-header__languages--mobile {
        display: flex;
        gap: 18px;
    }

    .bf-header__languages--mobile .bf-header__language {
        font-size: 14px;
    }
}

/* ========================================
   Header: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-header__container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-header__logo,
    .bf-header.is-scrolled .bf-header__logo {
        width: 145px;
    }

    .bf-header__mobile-actions {
        gap: 28px;
    }

    .bf-mobile-menu__content {
        padding-right: 30px;
        padding-left: 30px;
    }
}
/* ========================================
   Main banner
======================================== */

.bf-main-banner {
    --bf-header-height: 96px;
    position: relative;
    width: 100%;
    height: calc(100vh - var(--bf-header-height));
    height: calc(100svh - var(--bf-header-height));
    min-height: 704px;
    margin-top: var(--bf-header-height);
    overflow: hidden;
    background: #080808;
}

.bf-main-banner__slider,
.bf-main-banner__slider .swiper-wrapper,
.bf-main-banner__slide {
    width: 100%;
    height: 100%;
}

.bf-main-banner__slide {
    position: relative;
    overflow: hidden;
    background: #080808;
}

.bf-main-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bf-main-banner__media::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.72) 30%, rgba(4, 4, 4, 0.15) 62%, rgba(4, 4, 4, 0.05) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.05) 65%, rgba(0, 0, 0, 0.18) 100%);
    content: "";
    pointer-events: none;
}

.bf-main-banner__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bf-main-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bf-main-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1650px;
    margin: 0 auto;
    padding: 135px 39px 210px;
}

.bf-main-banner__content-inner {
    width: 100%;
    max-width: 680px;
    transform: translateY(-28px);
}

.bf-main-banner__subtitle {
    margin: 0;
    color: #c5c5c5;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
}

.bf-main-banner__title {
    max-width: 650px;
    margin: 25px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-main-banner__description {
    max-width: 600px;
    margin: 40px 0 0;
    color: #c3c3c3;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
}

.bf-main-banner__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 55px;
    margin-top: 40px;
    padding: 5px 24px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.bf-main-banner__button-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #e2e2e2;
    color: #111111;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.bf-main-banner__button-icon svg {
    display: block;
}

.bf-main-banner__button-text {
    white-space: nowrap;
}

.bf-main-banner__button-text--mobile {
    display: none;
}

.bf-main-banner__button:hover,
.bf-main-banner__button:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

.bf-main-banner__button:hover .bf-main-banner__button-icon,
.bf-main-banner__button:focus-visible .bf-main-banner__button-icon {
    background: #111111;
    color: #ffffff;
    transform: translateX(2px);
}

.bf-main-banner__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ========================================
   Main banner controls
======================================== */

.bf-main-banner__navigation {
    position: absolute;
    bottom: 80px !important;
    left: max(39px, calc((100% - 1650px) / 2 + 39px));
    z-index: 10;
    display: flex;
    gap: 8px;
}

.bf-main-banner__arrow {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(117, 117, 117, 0.48);
    color: #ffffff;
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.bf-main-banner__arrow:hover,
.bf-main-banner__arrow:focus-visible {
    background: #ffffff;
    color: #111111;
}

.bf-main-banner__arrow:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.bf-main-banner__arrow.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.bf-main-banner__pagination {
    position: absolute;
    right: max(39px, calc((100% - 1650px) / 2 + 39px));
    bottom: 80px !important;
    left: auto !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 178px !important;
    height: 43px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(185, 185, 185, 0.4);
}

.bf-main-banner__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    border-radius: 50%;
    background: #000000;
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.bf-main-banner__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.05);
}

/* ========================================
   Main banner: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-main-banner {
        min-height: 760px;
    }

    .bf-main-banner__content {
        padding-right: 24px;
        padding-bottom: 170px;
        padding-left: 24px;
    }

    .bf-main-banner__content-inner {
        max-width: 560px;
    }

    .bf-main-banner__subtitle {
        font-size: 16px;
    }

    .bf-main-banner__title {
        max-width: 560px;
        font-size: 38px;
    }

    .bf-main-banner__description {
        max-width: 520px;
        font-size: 19px;
    }

    .bf-main-banner__navigation {
        bottom: 40px !important;
        left: 24px;
    }

    .bf-main-banner__pagination {
        right: 24px;
        bottom: 40px !important;
    }
}

/* ========================================
   Main banner: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-main-banner {
        --bf-header-height: 64px;
        --bf-main-banner-media-height: clamp(460px, 129.35vw, 520px);
        height: auto;
        min-height: calc(var(--bf-main-banner-media-height) + 274px);
        margin-top: var(--bf-header-height);
    }

    .bf-main-banner__slider,
    .bf-main-banner__slider .swiper-wrapper {
        height: auto;
    }

    .bf-main-banner__slide {
        display: grid;
        grid-template-rows: var(--bf-main-banner-media-height) auto;
        height: auto;
        min-height: calc(var(--bf-main-banner-media-height) + 274px);
    }

    .bf-main-banner__media {
        position: relative;
        inset: auto;
        grid-row: 1;
        width: 100%;
        height: var(--bf-main-banner-media-height);
    }

    .bf-main-banner__media::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 50%, rgba(0, 0, 0, 0.18) 100%);
    }

    .bf-main-banner__image {
        object-position: center center;
    }

    .bf-main-banner__content {
        display: block;
        grid-row: 2;
        height: auto;
        min-height: 274px;
        padding: 38px 16px 34px;
        background: linear-gradient(135deg, #242424 0%, #151515 100%);
    }

    .bf-main-banner__content-inner {
        max-width: 370px;
        transform: none;
    }

    .bf-main-banner__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-main-banner__title {
        max-width: 370px;
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.025em;
    }

    .bf-main-banner__description {
        display: none;
    }

    .bf-main-banner__button {
        min-height: 49px;
        margin-top: 24px;
        padding: 4px 21px 4px 4px;
        font-size: 16px;
    }

    .bf-main-banner__button-icon {
        flex-basis: 39px;
        width: 39px;
        height: 39px;
    }

    .bf-main-banner__button-text--desktop {
        display: none;
    }

    .bf-main-banner__button-text--mobile {
        display: inline;
    }

    .bf-main-banner__navigation {
        top: calc(var(--bf-main-banner-media-height) - 67px);
        bottom: auto;
        left: 16px;
        gap: 2px;
    }

    .bf-main-banner__arrow {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        background: rgba(116, 116, 116, 0.72);
    }

    .bf-main-banner__pagination {
        display: none;
        top: calc(var(--bf-main-banner-media-height) - 67px);
        right: auto;
        bottom: auto;
        left: 102px !important;
        width: 128px !important;
        height: 44px;
        padding: 0 18px;
        background: rgba(174, 174, 174, 0.42);
    }

    .bf-main-banner__pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* ========================================
   Main banner: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-main-banner {
        --bf-main-banner-media-height: 460px;
    }

    .bf-main-banner__content {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-main-banner__title {
        font-size: 22px;
    }

    .bf-main-banner__navigation {
        left: 14px;
    }

    .bf-main-banner__pagination {
        left: 100px !important;
    }
}
/* ========================================
   Main banner: cinematic effects
======================================== */

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__picture {
    position: relative;
    overflow: hidden;
}

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__picture::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 28%),
        rgba(0, 0, 0, 0.38);
    content: "";
    opacity: 0;
    pointer-events: none;
}

/* Неактивные слайды */

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__subtitle,
.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__title,
.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__description,
.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__button {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}

/* Активное изображение */

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__image {
    animation: bf-main-banner-image-enter 7s cubic-bezier(0.18, 0.75, 0.24, 1) both;
}

/* Затемнение поверх изображения при появлении */

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__picture::after {
    animation: bf-main-banner-overlay-enter 1.25s cubic-bezier(0.22, 0.75, 0.25, 1) both;
}

/* Последовательное появление текста */

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__subtitle {
    animation: bf-main-banner-text-enter 0.75s cubic-bezier(0.22, 0.75, 0.25, 1) 0.22s both;
}

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__title {
    animation: bf-main-banner-text-enter 0.95s cubic-bezier(0.22, 0.75, 0.25, 1) 0.42s both;
}

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__description {
    animation: bf-main-banner-text-enter 0.85s cubic-bezier(0.22, 0.75, 0.25, 1) 0.6s both;
}

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__button {
    animation: bf-main-banner-button-enter 0.75s cubic-bezier(0.22, 0.75, 0.25, 1) 0.85s both;
}

/* Уходящий слайд */

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-leaving .bf-main-banner__image {
    animation: bf-main-banner-image-leave 0.9s cubic-bezier(0.55, 0, 0.75, 0.25) both;
}

.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-leaving .bf-main-banner__subtitle,
.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-leaving .bf-main-banner__title,
.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-leaving .bf-main-banner__description,
.bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-leaving .bf-main-banner__button {
    animation: bf-main-banner-text-leave 0.42s ease both;
}

/* ========================================
   Cinematic keyframes
======================================== */

@keyframes bf-main-banner-image-enter {
    0% {
        opacity: 0.45;
        filter: brightness(0.62) contrast(1.08) saturate(0.78);
        transform: translate3d(1.8%, 0, 0) scale(1.13);
    }

    16% {
        opacity: 1;
        filter: brightness(0.92) contrast(1.04) saturate(0.94);
    }

    45% {
        filter: brightness(1) contrast(1) saturate(1);
    }

    100% {
        opacity: 1;
        filter: brightness(1) contrast(1) saturate(1);
        transform: translate3d(-0.5%, 0, 0) scale(1.025);
    }
}

@keyframes bf-main-banner-image-leave {
    from {
        opacity: 1;
        filter: brightness(1);
        transform: scale(1.025);
    }

    to {
        opacity: 0.38;
        filter: brightness(0.58);
        transform: scale(1.065);
    }
}

@keyframes bf-main-banner-overlay-enter {
    0% {
        opacity: 0.85;
    }

    38% {
        opacity: 0.22;
    }

    100% {
        opacity: 0;
    }
}

@keyframes bf-main-banner-text-enter {
    from {
        opacity: 0;
        filter: blur(8px);
        transform: translate3d(0, 32px, 0);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bf-main-banner-button-enter {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translate3d(-18px, 0, 0);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bf-main-banner-text-leave {
    from {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 0;
        filter: blur(5px);
        transform: translate3d(0, -16px, 0);
    }
}

/* ========================================
   Cinematic effects: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__subtitle,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__title,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide:not(.is-bf-cinematic-active):not(.is-bf-cinematic-leaving) .bf-main-banner__button {
        transform: translate3d(0, 20px, 0);
    }

    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__slide.is-bf-cinematic-active .bf-main-banner__image {
        animation-duration: 6.5s;
    }
}

/* ========================================
   Reduced motion
======================================== */

@media (prefers-reduced-motion: reduce) {
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__image,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__picture::after,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__subtitle,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__title,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__description,
    .bf-main-banner.is-bf-cinematic-ready .bf-main-banner__button {
        animation: none !important;
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* ========================================
   Mission about
======================================== */

.bf-mission-about {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 890px;
    overflow: hidden;
    background: #080808;
}

.bf-mission-about__media {
    position: relative;
    min-width: 0;
    min-height: 890px;
    overflow: hidden;
    background: #151515;
}

.bf-mission-about__video {
    position: absolute;
    inset: -2px;
    display: block;
    width: calc(100% + 4px);
    max-width: none;
    height: calc(100% + 4px);
    object-fit: cover;
    object-position: center center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bf-mission-about__content {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 80px 76px;
}

.bf-mission-about__content-inner {
    width: 100%;
    max-width: 650px;
}

.bf-mission-about__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.bf-mission-about__title {
    max-width: 650px;
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-mission-about__text {
    max-width: 620px;
    margin-top: 42px;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.bf-mission-about__text p {
    margin: 0;
}

.bf-mission-about__text p + p {
    margin-top: 24px;
}

/* ========================================
   Mission about: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-mission-about {
        min-height: 720px;
    }

    .bf-mission-about__media {
        min-height: 720px;
    }

    .bf-mission-about__content {
        padding: 60px 40px;
    }

    .bf-mission-about__subtitle {
        font-size: 16px;
    }

    .bf-mission-about__title {
        margin-top: 26px;
        font-size: 31px;
    }

    .bf-mission-about__text {
        margin-top: 34px;
        font-size: 17px;
    }

    .bf-mission-about__text p + p {
        margin-top: 24px;
    }
}

/* ========================================
   Mission about: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-mission-about {
        display: flex;
        flex-direction: column;
        min-height: 0;
        padding: 68px 16px 54px;
    }

    .bf-mission-about__content {
        display: block;
        order: 1;
        padding: 0;
    }

    .bf-mission-about__content-inner {
        max-width: none;
    }

    .bf-mission-about__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-mission-about__title {
        max-width: 370px;
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.22;
        letter-spacing: -0.025em;
    }

    .bf-mission-about__text {
        max-width: 370px;
        margin-top: 27px;
        font-size: 18px;
        line-height: 1.4;
    }

    .bf-mission-about__text p + p {
        margin-top: 28px;
    }

    .bf-mission-about__media {
        position: relative;
        order: 2;
        width: 100%;
        min-height: 0;
        margin-top: 62px;
        overflow: hidden;
        border-radius: 32px;
        aspect-ratio: 370 / 386;
        isolation: isolate;
        transform: translateZ(0);
    }

    .bf-mission-about__video {
        object-position: center center;
    }
}

/* ========================================
   Mission about: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-mission-about {
        padding: 60px 14px 48px;
    }

    .bf-mission-about__title {
        font-size: 22px;
    }

    .bf-mission-about__text {
        font-size: 17px;
    }

    .bf-mission-about__media {
        margin-top: 52px;
        border-radius: 28px;
    }
}
/* ========================================
   Mission
======================================== */

.bf-mission {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 760px;
    padding: 160px 0 40px;
    overflow: hidden;
    background: #080808;
}

.bf-mission__container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.bf-mission__title {
    width: 100%;
    max-width: 1540px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(58px, 4.45vw, 76px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.bf-mission__title-white {
    color: #ffffff;
}

.bf-mission__title-accent {
    color: #bd7777;
}

/* ========================================
   Mission scroller
======================================== */

.bf-mission__scroller {
    width: 100%;
    overflow: hidden;
}

.bf-mission__track {
    display: flex;
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    animation: bf-mission-scroll 32s linear infinite;
}

.bf-mission__group {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
    gap: 16px;
    padding-right: 16px;
}

.bf-mission__item {
    position: relative;
    flex-shrink: 0;
    height: 164px;
    overflow: hidden;
    border-radius: 30px;
    background: #171717;
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bf-mission__item--wide {
    width: 355px;
}

.bf-mission__item--medium {
    width: 290px;
}

.bf-mission__item--narrow {
    width: 205px;
}

.bf-mission__image {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    display: block;
    width: calc(100% + 4px);
    max-width: none;
    height: calc(100% + 4px);
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes bf-mission-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

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

/* ========================================
   Mission: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-mission {
        min-height: 700px;
        padding: 110px 0 35px;
    }

    .bf-mission__container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .bf-mission__title {
        max-width: 1100px;
        font-size: clamp(44px, 5.2vw, 62px);
    }

    .bf-mission__item {
        height: 164px;
        border-radius: 24px;
    }

    .bf-mission__item--wide {
        width: 320px;
    }

    .bf-mission__item--medium {
        width: 265px;
    }

    .bf-mission__item--narrow {
        width: 190px;
    }
}

/* ========================================
   Mission: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-mission {
        min-height: 640px;
        padding: 56px 0 0;
    }

    .bf-mission__container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .bf-mission__title {
        max-width: 370px;
        font-size: 40px;
        line-height: 1.2;
        letter-spacing: -0.03em;
    }

    .bf-mission__title-white,
    .bf-mission__title-accent {
        display: block;
    }

    .bf-mission__track {
        animation-duration: 26s;
    }

    .bf-mission__group {
        gap: 14px;
        padding-right: 14px;
    }


    .bf-mission__item {
        height: 140px;
        border-radius: 24px;
    }

    .bf-mission__item--wide,
    .bf-mission__item--medium {
        width: 320px;
    }

    .bf-mission__item--narrow {
        width: 185px;
    }
}

/* ========================================
   Mission: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-mission__container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-mission__title {
        font-size: 36px;
    }

    .bf-mission__item--wide,
    .bf-mission__item--medium {
        width: 295px;
    }

    .bf-mission__item--narrow {
        width: 175px;
    }
}

/* ========================================
   Reduced motion
======================================== */

@media (prefers-reduced-motion: reduce) {
    .bf-mission__track {
        animation-play-state: paused;
    }
}
/* ========================================
   Problem
======================================== */

.bf-problem {
    position: relative;
    width: 100%;
    min-height: 896px;
    padding: 160px 40px 120px;
    overflow: hidden;
    background: #080808;
}

.bf-problem__container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.bf-problem__header {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.92fr);
    align-items: start;
    justify-content: space-between;
    gap: clamp(80px, 9vw, 170px);
    width: 100%;
}

.bf-problem__heading {
    min-width: 0;
}

.bf-problem__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.bf-problem__title {
    max-width: 690px;
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-problem__title-line {
    display: block;
}

.bf-problem__description {
    max-width: 650px;
    margin: 56px 0 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.bf-problem__slider {
    width: 100%;
    margin-top: 126px;
    overflow: visible;
}

.bf-problem__wrapper {
    align-items: stretch;
}

.bf-problem__slide {
    height: auto;
}

.bf-problem__card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 332px;
    padding: 34px 34px 36px;
    overflow: hidden;
    border-radius: 29px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(135deg, #252525 0%, #171717 100%);
    transition: transform 0.3s ease;
}

.bf-problem__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #191919;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bf-problem__card > * {
    position: relative;
    z-index: 1;
}

.bf-problem__slide:hover .bf-problem__card {
    transform: scale(1.1);
}

.bf-problem__slide:hover .bf-problem__card::before {
    opacity: 1;
}

.bf-problem__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 70px;
    height: 78px;
    color: #ffffff;
}

.bf-problem__icon svg {
    display: block;
    width: auto;
    max-width: 70px;
    height: 70px;
}

.bf-problem__card-title {
    max-width: 290px;
    margin: 18px 0 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.bf-problem__card-text {
    max-width: 285px;
    margin: 24px 0 0;
    color: #bdbdbd;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.bf-problem__slide:hover .bf-problem__card-text {
    color: #ffffff;
}

/* ========================================
   Problem: desktop grid
======================================== */

@media (min-width: 1200px) {
    .bf-problem__wrapper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
        transform: none !important;
    }

    .bf-problem__slide {
        width: auto !important;
        margin: 0 !important;
    }
}

/* ========================================
   Problem: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-problem {
        min-height: auto;
        padding: 100px 24px 80px;
    }

    .bf-problem__header {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 55px;
    }

    .bf-problem__subtitle {
        font-size: 16px;
    }

    .bf-problem__title {
        margin-top: 30px;
        font-size: 36px;
    }

    .bf-problem__description {
        margin-top: 62px;
        font-size: 16px;
    }

    .bf-problem__slider {
        margin-top: 90px;
    }

    .bf-problem__wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        transform: none !important;
    }

    .bf-problem__slide {
        width: auto !important;
        margin: 0 !important;
    }

    .bf-problem__card {
        min-height: 285px;
        padding: 30px;
    }

    .bf-problem__card-title {
        font-size: 22px;
    }

    .bf-problem__card-text {
        font-size: 16px;
    }
}

/* ========================================
   Problem: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-problem {
        min-height: 820px;
        padding: 58px 0 78px;
    }

    .bf-problem__container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .bf-problem__header {
        display: block;
        width: 100%;
        padding: 0 16px;
    }

    .bf-problem__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-problem__title {
        max-width: 370px;
        margin-top: 21px;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .bf-problem__title-line {
        display: inline;
    }

    .bf-problem__description {
        max-width: 370px;
        margin-top: 27px;
        font-size: 18px;
        line-height: 1.4;
    }

    .bf-problem__slider {
        width: 100%;
        margin-top: 63px;
        padding-right: 16px;
        padding-left: 16px;
        overflow: visible;
    }

    .bf-problem__wrapper {
        display: flex;
        align-items: stretch;
    }

    .bf-problem__slide {
        flex-shrink: 0;
        width: min(327px, calc(100vw - 60px)) !important;
        height: auto;
        margin: 0;
    }

    .bf-problem__card {
        min-height: 273px;
        padding: 27px 25px 31px;
        border-radius: 29px;
    }

    .bf-problem__icon {
        width: 62px;
        height: 73px;
    }

    .bf-problem__icon svg {
        max-width: 62px;
        height: 66px;
    }

    .bf-problem__card-title {
        max-width: 270px;
        margin-top: 12px;
        font-size: 20px;
        line-height: 1.3;
    }

    .bf-problem__card-text {
        max-width: 270px;
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.42;
    }
}

/* ========================================
   Problem: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-problem__header {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-problem__title {
        font-size: 22px;
    }

    .bf-problem__description {
        font-size: 17px;
    }

    .bf-problem__slider {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-problem__card {
        padding-right: 22px;
        padding-left: 22px;
    }

    .bf-problem__card-title {
        font-size: 19px;
    }

    .bf-problem__card-text {
        font-size: 15px;
    }
}
/* ========================================
   What is BAT.FLY
======================================== */

.bf-about-product {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 808px;
    padding: 160px 40px 80px;
    overflow: hidden;
    background-color: #080808;
    background-image: url("../images/about-product-desktop.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.bf-about-product::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.22);
    content: "";
    pointer-events: none;
}

.bf-about-product__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    text-align: center;
}

.bf-about-product__subtitle {
    margin: 0;
    color: #c5c5c5;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.bf-about-product__title {
    max-width: 1130px;
    margin: 35px 0 0;
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1ю2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-about-product__title-line {
    display: block;
}

.bf-about-product__description {
    max-width: 1110px;
    margin: 45px 0 0;
    color: #c8c8c8;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.48;
    letter-spacing: 0.005em;
}

.bf-about-product__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    margin-top: 42px;
    padding: 5px 24px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.bf-about-product__button-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.bf-about-product__button-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.bf-about-product__button-text {
    white-space: nowrap;
}

.bf-about-product__button:hover,
.bf-about-product__button:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

.bf-about-product__button:hover .bf-about-product__button-icon,
.bf-about-product__button:focus-visible .bf-about-product__button-icon {
    background: #111111;
    color: #ffffff;
    transform: translateX(2px);
}

.bf-about-product__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ========================================
   What is BAT.FLY: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {

    .bf-about-product {
        min-height: 720px;
        padding: 150px 24px 90px;
        background-attachment: scroll;
    }

    .bf-about-product__container {
        max-width: 950px;
    }

    .bf-about-product__subtitle {
        font-size: 16px;
    }

    .bf-about-product__title {
        max-width: 900px;
        margin-top: 30px;
        font-size: 46px;
    }

    .bf-about-product__description {
        max-width: 850px;
        margin-top: 38px;
        font-size: 20px;
    }
}

/* ========================================
   What is BAT.FLY: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-about-product {
        min-height: 708px;
        padding: 135px 16px 70px;
        background-image: url("../images/about-product-mobile.webp");
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }

    .bf-about-product::before {
        background: rgba(0, 0, 0, 0.3);
    }

    .bf-about-product__container {
        width: 100%;
        max-width: 370px;
    }

    .bf-about-product__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-about-product__title {
        max-width: 350px;
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .bf-about-product__title-line {
        display: inline;
    }

    .bf-about-product__description {
        max-width: 365px;
        margin-top: 27px;
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .bf-about-product__button {
        display: inline-flex;
        min-height: 57px;
        margin-top: 41px;
        padding-right: 23px;
        font-size: 16px;
    }

    .bf-about-product__button-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }
}

/* ========================================
   What is BAT.FLY: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-about-product {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-about-product__title {
        font-size: 22px;
    }

    .bf-about-product__description {
        font-size: 17px;
    }

    .bf-about-product__button {
        gap: 11px;
        padding-right: 18px;
        font-size: 15px;
    }
}
/* ========================================
   Product line
======================================== */

.bf-product-line {
    position: relative;
    width: 100%;
    min-height: 1055px;
    padding: 120px 40px 40px;
    overflow: hidden;
    background: #080808;
}

.bf-product-line__container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.bf-product-line__header {
    width: 100%;
    max-width: 720px;
}

.bf-product-line__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bf-product-line__title {
    max-width: 710px;
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-product-line__title-line {
    display: block;
}

.bf-product-line__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    width: 100%;
    margin-top: 164px;
}

.bf-product-line__item {
    min-width: 0;
}

.bf-product-line__card {
    position: relative;
    display: block;
    width: 100%;
    min-height: 560px;
    padding: 398px 35px 45px;
    border-radius: 27px;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(255, 255, 255, 0.035) 0%,
            rgba(255, 255, 255, 0) 43%
        ),
        linear-gradient(
            135deg,
            #202020 0%,
            #121212 100%
        );
    color: #ffffff;
    isolation: isolate;
    transition:
        min-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease;
}

/* Градиент между изображением и текстом */

.bf-product-line__card::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
            rgba(12, 12, 12, 0) 10%,
            rgba(12, 12, 12, 0.3) 20%,
            rgba(12, 12, 12, 0.5) 40%,
            rgba(12, 12, 12, 0.8) 50%,
            rgba(12, 12, 12, 0.95) 70%,
            #121212 100%
    );
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.bf-product-line__visual {
    position: absolute;
    top: -73px;
    right: 20px;
    left: 20px;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 445px;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bf-product-line__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.bf-product-line__summary {
    position: relative;
    z-index: 3;
    transition:
        opacity 0.3s ease,
        transform 0.4s ease;
}

.bf-product-line__card-title,
.bf-product-line__details-title {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.bf-product-line__card-title span,
.bf-product-line__details-title span {
    color: #bdbdbd;
}

.bf-product-line__card-subtitle,
.bf-product-line__details-subtitle {
    margin: 22px 0 0;
    color: #c5c5c5;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.bf-product-line__details {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    padding: 96px 40px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px);
    transition:
        opacity 0.35s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bf-product-line__details-subtitle {
    margin-top: 20px;
    color: #d0d0d0;
}

.bf-product-line__details-text {
    max-width: 390px;
    margin: 28px 0 0;
    color: #bdbdbd;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.46;
}

.bf-product-line__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
}

.bf-product-line__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #eeeeee;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.bf-product-line__card:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 5px;
}

/* ========================================
   Active card
======================================== */

.bf-product-line__card.is-active::after {
    opacity: 1;
}

.bf-product-line__card.is-active .bf-product-line__visual {
    transform: translateY(-18px) scale(1.02);
}

.bf-product-line__card.is-active .bf-product-line__summary {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
}

.bf-product-line__card.is-active .bf-product-line__details {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ========================================
   Desktop hover
======================================== */

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
    .bf-product-line__card:hover::after,
    .bf-product-line__card:focus-visible::after {
        opacity: 1;
    }

    .bf-product-line__card:hover .bf-product-line__visual,
    .bf-product-line__card:focus-visible .bf-product-line__visual {
        transform: translateY(-18px) scale(1.02);
    }

    .bf-product-line__card:hover .bf-product-line__summary,
    .bf-product-line__card:focus-visible .bf-product-line__summary {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
    }

    .bf-product-line__card:hover .bf-product-line__details,
    .bf-product-line__card:focus-visible .bf-product-line__details {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* ========================================
   Product line: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-product-line {
        min-height: auto;
        padding: 90px 24px 65px;
    }

    .bf-product-line__subtitle {
        font-size: 16px;
    }

    .bf-product-line__title {
        max-width: 610px;
        margin-top: 28px;
        font-size: 36px;
    }

    .bf-product-line__grid {
        gap: 18px;
        margin-top: 125px;
    }

    .bf-product-line__card {
        min-height: 480px;
        padding: 360px 24px 24px;
    }

    .bf-product-line__visual {
        top: -60px;
        right: 10px;
        left: 10px;
        height: 400px;
    }

    .bf-product-line__card-title,
    .bf-product-line__details-title {
        font-size: 23px;
    }

    .bf-product-line__card-subtitle,
    .bf-product-line__details-subtitle {
        font-size: 14px;
    }

    .bf-product-line__details {
        padding: 96px 28px 28px;
    }

    .bf-product-line__details-text {
        margin-top: 20px;
        font-size: 14px;
    }

    .bf-product-line__tag {
        padding-right: 15px;
        padding-left: 15px;
        font-size: 11px;
        min-height: 32px;
    }
    .bf-product-line__tags {
        gap: 4px;
    }
}

/* ========================================
   Product line: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-product-line {
        min-height: auto;
        padding: 82px 16px 50px;
    }

    .bf-product-line__container {
        max-width: 370px;
    }

    .bf-product-line__header {
        max-width: none;
    }

    .bf-product-line__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-product-line__title {
        max-width: 370px;
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
    }

    .bf-product-line__title-line {
        display: inline;
    }

    .bf-product-line__grid {
        display: flex;
        flex-direction: column;
        gap: 92px;
        margin-top: 114px;
    }

    .bf-product-line__card {
        min-height: 480px;
        padding: 380px 24px 24px;
        border-radius: 30px;
    }

    .bf-product-line__card::after {
        background: linear-gradient(
            180deg,
            rgba(12, 12, 12, 0) 10%,
            rgba(12, 12, 12, 0.3) 20%,
            rgba(12, 12, 12, 0.5) 40%,
            rgba(12, 12, 12, 0.8) 50%,
            rgba(12, 12, 12, 0.95) 70%,
            #121212 100%
        );
    }

    .bf-product-line__card.is-active {
        min-height: 520px;
    }

    .bf-product-line__visual {
        top: -65px;
        right: 17px;
        left: 17px;
        height: 430px;
    }

    .bf-product-line__summary {
        opacity: 1;
        transform: none;
    }

    .bf-product-line__card-title,
    .bf-product-line__details-title {
        font-size: 23px;
        line-height: 1.2;
    }

    .bf-product-line__card-subtitle {
        max-width: 290px;
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.45;
    }

    .bf-product-line__details {
        display: flex;
        padding: 120px 28px 28px;
    }

    .bf-product-line__details-subtitle {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.4;
    }

    .bf-product-line__details-text {
        max-width: none;
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.45;
    }

    .bf-product-line__tags {
        gap: 8px;
        padding-top: 22px;
    }

    .bf-product-line__tag {
        min-height: 34px;
        padding: 7px 16px;
        font-size: 12px;
    }

    .bf-product-line__card.is-active .bf-product-line__visual {
        transform: translateY(-16px) scale(1.02);
    }

    .bf-product-line__card.is-active .bf-product-line__summary {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
    }

    .bf-product-line__card.is-active .bf-product-line__details {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* ========================================
   Product line: small mobile
======================================== */

@media (max-width: 374.98px) {
    .bf-product-line {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-product-line__title {
        font-size: 22px;
    }

    .bf-product-line__grid {
        margin-top: 105px;
    }

    .bf-product-line__card {
        min-height: 480px;
        padding: 366px 24px 34px;
    }

    .bf-product-line__card.is-active {
        min-height: 640px;
    }

    .bf-product-line__visual {
        top: -58px;
        height: 405px;
    }

    .bf-product-line__details {
        padding: 120px 24px 28px;
    }

    .bf-product-line__card-title,
    .bf-product-line__details-title {
        font-size: 21px;
    }

    .bf-product-line__card-subtitle,
    .bf-product-line__details-subtitle {
        font-size: 14px;
    }

    .bf-product-line__details-text {
        font-size: 14px;
    }

    .bf-product-line__tag {
        padding-right: 13px;
        padding-left: 13px;
        font-size: 11px;
    }
}
/* ========================================
   Technological approach
======================================== */

.bf-technology {
    position: relative;
    width: 100%;
    min-height: 960px;
    padding: 120px 40px 40px;
    overflow: hidden;
    background: #000;
}

.bf-technology__container {
    position: relative;
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.bf-technology__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
}

.bf-technology__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bf-technology__title {
    max-width: 660px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-technology__title-line {
    display: block;
}

.bf-technology__description {
    max-width: 660px;
    margin: 40px 0 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.bf-technology__visual {
    position: absolute;
    top: 0px;
    right: -10px;
    z-index: 1;
    width: min(850px, 53vw);
    height: 580px;
    overflow: hidden;
    pointer-events: none;
}

.bf-technology__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.bf-technology__slider {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 112px;
    overflow: visible;
}

.bf-technology__wrapper {
    align-items: stretch;
}

.bf-technology__slide {
    height: auto;
    
}

.bf-technology__card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 282px;
    padding: 38px 35px 36px;
    overflow: hidden;
    border-radius: 30px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255, 255, 255, 0.035) 0%,
            rgba(255, 255, 255, 0) 42%
        ),
        linear-gradient(135deg, #252525 0%, #171717 100%);

    transition: transform 0.3s ease;
}

.bf-technology__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #B7716E;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bf-technology__card > * {
    position: relative;
    z-index: 1;
}

.bf-technology__slide:hover .bf-technology__card {
    transform: scale(1.1);
}

.bf-technology__slide:hover .bf-technology__card::before {
    opacity: 1;
}

.bf-technology__card-number {
    margin: 0;
    color: #d3d3d3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.bf-technology__card-title {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.bf-technology__card-text {
    max-width: 285px;
    margin: 24px 0 0;
    color: #bdbdbd;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}


.bf-technology__slide:hover .bf-technology__card-text{
    color: #FFF;
}
.bf-technology__slide:hover .bf-technology__card-number {
    color: #FFF;
}

/* ========================================
   Desktop grid
======================================== */
@media (max-width: 1366px) {
    .bf-technology__visual {
        right: -120px;
    }
}
@media (min-width: 1200px) {
    .bf-technology__wrapper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        transform: none !important;
    }

    .bf-technology__slide {
        width: auto !important;
        margin: 0 !important;
    }
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {

    .bf-technology {
        min-height: auto;
        padding: 100px 24px 70px;
    }

    .bf-technology__subtitle {
        font-size: 16px;
    }

    .bf-technology__title {
        max-width: 560px;
        margin-top: 30px;
        font-size: 36px;
    }

    .bf-technology__description {
        max-width: 560px;
        margin-top: 30px;
        font-size: 16px;
    }

    .bf-technology__visual {
        top: -20px;
        right: -40px;
        width: 560px;
        height: 480px;
    }

    .bf-technology__slider {
        margin-top: 90px;
    }

    .bf-technology__wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        transform: none !important;
    }

    .bf-technology__slide {
        width: auto !important;
        margin: 0 !important;
    }

    .bf-technology__card {
        min-height: 250px;
        padding: 34px 32px;
    }

    .bf-technology__card-title {
        font-size: 23px;
    }

    .bf-technology__card-text {
        margin-top: 24px;
        font-size: 16px;
    }
}

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

@media (max-width: 767.98px) {
    .bf-technology {
        min-height: 1068px;
        padding: 78px 0 24px;
    }

    .bf-technology__container {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .bf-technology__content {
        width: 100%;
        max-width: none;
        padding: 0 16px;
    }

    .bf-technology__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-technology__title {
        max-width: 370px;
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .bf-technology__title-line {
        display: inline;
    }

    .bf-technology__description {
        max-width: 370px;
        margin-top: 27px;
        font-size: 18px;
        line-height: 1.4;
    }

    .bf-technology__visual {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 330px;
        margin-top: 32px;
        overflow: hidden;
    }

    .bf-technology__video {
        width: 470px;
        max-width: none;
        height: 100%;
        margin-left: 15px;
        object-fit: contain;
        object-position: left center;
    }

    .bf-technology__slider {
        width: 100%;
        margin-top: -22px;
        padding-right: 16px;
        padding-left: 16px;
        overflow: visible;
    }

    .bf-technology__wrapper {
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .bf-technology__slide {
        flex-shrink: 0;
        width: min(327px, calc(100vw - 60px)) !important;
        height: auto;
        margin: 0;
    }

    .bf-technology__card {
        min-height: 276px;
        padding: 39px 37px 34px;
        border-radius: 29px;
    }

    .bf-technology__card-number {
        font-size: 16px;
    }

    .bf-technology__card-title {
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
    }

    .bf-technology__card-text {
        max-width: 250px;
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.4;
    }
}

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

@media (max-width: 374.98px) {
    .bf-technology {
        padding-top: 68px;
    }

    .bf-technology__content {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-technology__title {
        font-size: 22px;
    }

    .bf-technology__description {
        font-size: 17px;
    }

    .bf-technology__visual {
        height: 310px;
    }

    .bf-technology__video {
        width: 430px;
        margin-left: 0;
    }

    .bf-technology__slider {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-technology__card {
        padding-right: 30px;
        padding-left: 30px;
    }

    .bf-technology__card-title {
        font-size: 21px;
    }

    .bf-technology__card-text {
        font-size: 15px;
    }
}
/* ========================================
   For whom
======================================== */

.bf-audience {
    width: 100%;
    min-height: 960px;
    padding: 80px 40px 100px;
    overflow: hidden;
    background: #080808;
}

.bf-audience__container {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.bf-audience__header {
    width: 100%;
    max-width: 650px;
}

.bf-audience__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.bf-audience__title {
    max-width: 620px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-audience__title-line {
    display: block;
}

.bf-audience__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(70px, 7vw, 125px);
    row-gap: 92px;
    width: 100%;
    margin-top: 120px;
}

.bf-audience__item {
    display: grid;
    grid-template-columns: 175px minmax(0, 1fr);
    align-items: start;
    min-width: 0;
}

.bf-audience__number {
    margin-top: 23px;
    color: #333;
    font-size: 132px;
    font-weight: 700;
    line-height: 0.76;
    letter-spacing: -0.075em;
    white-space: nowrap;
    user-select: none;
}

.bf-audience__content {
    min-width: 0;
}

.bf-audience__item-title {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bf-audience__item-text {
    max-width: 490px;
    margin: 24px 0 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

/* ========================================
   For whom: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-audience {
        min-height: auto;
        padding: 80px 24px 90px;
    }

    .bf-audience__subtitle {
        font-size: 16px;
    }

    .bf-audience__title {
        max-width: 540px;
        font-size: 36px;
    }

    .bf-audience__grid {
        column-gap: 45px;
        row-gap: 70px;
        margin-top: 95px;
    }

    .bf-audience__item {
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .bf-audience__number {
        margin-top: 17px;
        font-size: 88px;
    }

    .bf-audience__item-title {
        font-size: 25px;
    }

    .bf-audience__item-text {
        margin-top: 18px;
        font-size: 16px;
    }
}

/* ========================================
   For whom: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-audience {
        min-height: auto;
        padding: 68px 16px 62px;
    }

    .bf-audience__container {
        max-width: 370px;
    }

    .bf-audience__header {
        max-width: none;
    }

    .bf-audience__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-audience__title {
        max-width: 370px;
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
    }

    .bf-audience__title-line {
        display: inline;
    }

    .bf-audience__grid {
        display: flex;
        flex-direction: column;
        gap: 39px;
        margin-top: 52px;
    }

    .bf-audience__item {
        display: grid;
        grid-template-columns: 95px minmax(0, 1fr);
        width: 100%;
    }

    .bf-audience__number {
        margin-top: 11px;
        color: #202020;
        font-size: 67px;
        line-height: 0.8;
        letter-spacing: -0.07em;
    }

    .bf-audience__item-title {
        font-size: 23px;
        line-height: 1.25;
        letter-spacing: -0.015em;
    }

    .bf-audience__item-text {
        max-width: 260px;
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.4;
    }
}

@media (max-width: 374.98px) {
    .bf-audience {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-audience__title {
        font-size: 22px;
    }

    .bf-audience__item {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .bf-audience__number {
        font-size: 62px;
    }

    .bf-audience__item-title {
        font-size: 21px;
    }

    .bf-audience__item-text {
        font-size: 15px;
    }
}
/* ========================================
   Platform roadmap
======================================== */

.bf-roadmap {
    position: relative;
    width: 100%;
    min-height: 1055px;
    padding: 160px 40px 88px;
    overflow: hidden;
    background: #0b0b0b
}

.bf-roadmap__container {
    position: relative;
    width: 100%;
    max-width: 1650px;
    min-height: 805px;
    margin: 0 auto;
}

.bf-roadmap__header {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 650px;
}

.bf-roadmap__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bf-roadmap__title {
    max-width: 640px;
    margin: 32px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-roadmap__title-line {
    display: block;
}

.bf-roadmap__visual {
    position: absolute;
    top: -95px;
    left: 50%;
    z-index: 1;
    width: min(650px, 43%);
    height: 900px;
    transform: translateX(-8%);
    pointer-events: none;
}

.bf-roadmap__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.bf-roadmap__slider {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 103px;
    overflow: visible;
}

.bf-roadmap__wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    transform: none;
}

.bf-roadmap__slide {
    width: auto;
    height: auto;
    margin: 0;
}

.bf-roadmap__card {
    position: relative;
    width: 100%;
    min-height: 277px;
    padding: 32px 30px 34px;
    overflow: hidden;
    border-radius: 25px;
    background: linear-gradient(135deg, #252525 0%, #191919 100%);
    transition: transform 0.3s ease;
}

.bf-roadmap__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #B7716E;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bf-roadmap__card > * {
    position: relative;
    z-index: 1;
}

.bf-roadmap__slide:hover .bf-roadmap__card {
    transform: scale(1.1);
}

.bf-roadmap__slide:hover .bf-roadmap__card::before {
    opacity: 1;
}
.bf-roadmap__slide:hover .bf-roadmap__card-title {
    color: #FFF;
}
.bf-roadmap__slide:hover .bf-roadmap__card-text {
    color: #FFF;
}
.bf-roadmap__slide:hover .bf-roadmap__stage {
    color: #FFF;
}
.bf-roadmap__stage {
    margin: 0;
    color: #bdbdbd;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.bf-roadmap__card--current .bf-roadmap__stage {
    color: #ff2d2d;
}

.bf-roadmap__card-title {
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.bf-roadmap__card-text {
    max-width: 290px;
    margin: 24px 0 0;
    color: #bdbdbd;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
}

/* ========================================
   Platform roadmap: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-roadmap {
        min-height: 930px;
        padding: 100px 24px 70px;
    }

    .bf-roadmap__container {
        min-height: 760px;
    }

    .bf-roadmap__subtitle {
        font-size: 16px;
    }

    .bf-roadmap__title {
        max-width: 520px;
        margin-top: 28px;
        font-size: 36px;
    }

    .bf-roadmap__visual {
        top: -45px;
        left: 48%;
        width: 520px;
        height: 760px;
    }

    .bf-roadmap__slider {
        margin-top: 85px;
    }

    .bf-roadmap__wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .bf-roadmap__card {
        min-height: 250px;
    }
}

/* ========================================
   Platform roadmap: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-roadmap {
        min-height: 934px;
        padding: 44px 0 45px;
    }

    .bf-roadmap__container {
        width: 100%;
        max-width: none;
        min-height: 845px;
        margin: 0;
    }

    .bf-roadmap__header {
        width: 100%;
        max-width: none;
        padding: 0 16px;
    }

    .bf-roadmap__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-roadmap__title {
        max-width: 370px;
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
    }

    .bf-roadmap__title-line {
        display: block;
    }

    .bf-roadmap__visual {
        top: 150px;
        left: 50%;
        width: 390px;
        height: 700px;
        transform: translateX(-50%);
    }

    .bf-roadmap__image {
        object-position: center top;
    }

    .bf-roadmap__slider {
        width: 100%;
        margin-top: 181px;
        padding-left: 16px;
        overflow: visible;
    }

    .bf-roadmap__wrapper {
        display: flex;
        gap: 0;
        transform: translate3d(0, 0, 0);
    }

    .bf-roadmap__slide {
        flex-shrink: 0;
        width: 328px;
        height: auto;
    }

    .bf-roadmap__card {
        min-height: 280px;
        padding: 39px 37px 35px;
        border-radius: 29px;
    }

    .bf-roadmap__stage {
        font-size: 15px;
    }

    .bf-roadmap__card-title {
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
    }

    .bf-roadmap__card-text {
        max-width: 255px;
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.42;
    }
    .bf-roadmap__slide:hover .bf-roadmap__card {
        background: #B7716E;
        transform: scale(1);
    }
}

@media (max-width: 374.98px) {
    .bf-roadmap__header {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-roadmap__title {
        font-size: 22px;
    }

    .bf-roadmap__visual {
        width: 355px;
    }

    .bf-roadmap__slider {
        padding-left: 14px;
    }

    .bf-roadmap__slide {
        width: calc(100% - 58px);
    }

    .bf-roadmap__card {
        padding-right: 30px;
        padding-left: 30px;
    }

    .bf-roadmap__card-title {
        font-size: 21px;
    }

    .bf-roadmap__card-text {
        font-size: 15px;
    }
}
/* ========================================
   Scientific and clinical basis
======================================== */

.bf-clinical {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-height: 896px;
    overflow: hidden;
    background: #0a0a0a;
}

.bf-clinical__media {
    position: relative;
    min-width: 0;
    min-height: 896px;
    overflow: hidden;
}

.bf-clinical__picture {
    display: block;
    width: 100%;
    height: 100%;
}

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

.bf-clinical__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 109px clamp(55px, 6.6vw, 115px) 90px 90px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, #171717 0%, #0b0b0b 100%);
}

.bf-clinical__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.bf-clinical__title {
    max-width: 670px;
    margin: 31px 0 0;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-clinical__title-line {
    display: block;
}

.bf-clinical__items {
    display: flex;
    flex-direction: column;
    gap: 57px;
    max-width: 650px;
    margin-top: 59px;
}

.bf-clinical__item {
    margin: 0;
}

.bf-clinical__item-title {
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.bf-clinical__item-text {
    max-width: 610px;
    margin: 15px 0 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

/* ========================================
   Scientific and clinical basis: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-clinical {
        min-height: 760px;
    }

    .bf-clinical__media {
        min-height: 760px;
    }

    .bf-clinical__content {
        padding: 80px 45px 70px;
    }

    .bf-clinical__subtitle {
        font-size: 16px;
    }

    .bf-clinical__title {
        margin-top: 24px;
        font-size: 33px;
    }

    .bf-clinical__items {
        gap: 42px;
        margin-top: 50px;
    }

    .bf-clinical__item-title {
        font-size: 24px;
    }

    .bf-clinical__item-text {
        font-size: 17px;
    }
}

/* ========================================
   Scientific and clinical basis: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-clinical {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 44px 15px 0;
        background: #080808;
    }

    .bf-clinical__content {
        order: 1;
        width: 100%;
        padding: 0;
        background: transparent;
    }

    .bf-clinical__media {
        order: 2;
        width: 100%;
        min-height: 0;
        margin-top: 63px;
        overflow: hidden;
        border-radius: 30px;
        aspect-ratio: 370 / 370;
    }

    .bf-clinical__picture {
        height: 100%;
    }

    .bf-clinical__image {
        height: 100%;
        object-position: center center;
    }

    .bf-clinical__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-clinical__title {
        max-width: 370px;
        margin-top: 16px;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .bf-clinical__title-line {
        display: block;
    }

    .bf-clinical__items {
        gap: 40px;
        max-width: 370px;
        margin-top: 41px;
    }

    .bf-clinical__item-title {
        font-size: 20px;
        line-height: 1.25;
        letter-spacing: 0;
    }

    .bf-clinical__item-text {
        max-width: 365px;
        margin-top: 15px;
        font-size: 16px;
        line-height: 1.42;
        letter-spacing: 0;
    }
}

@media (max-width: 374.98px) {
    .bf-clinical {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-clinical__title {
        font-size: 24px;
    }

    .bf-clinical__item-title {
        font-size: 19px;
    }

    .bf-clinical__item-text {
        font-size: 15px;
    }
}

/* ========================================
   Process: desktop layout
======================================== */

.bf-process {
    position: relative;
    width: 100%;
    min-height: 1120px;
    padding: 104px 0 96px;
    overflow: hidden;
    background: #080808;
}

.bf-process__container {
    display: grid;
    grid-template-columns: minmax(0, 50vw) minmax(0, 50vw);
    align-items: stretch;
    width: 100%;
    max-width: none;
    min-height: 920px;
    margin: 0;
}

.bf-process__left {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 920px;
}

.bf-process__header {
    position: relative;
    z-index: 2;
    padding-right: 0px;
    padding-left: max(39px, calc((100vw - 1650px) / 2));
}

.bf-process__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
}

.bf-process__title {
    max-width: 590px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 48px;
    display: block;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.bf-process__visual {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 0;
    margin-top: 35px;
    overflow: hidden;
}

.bf-process__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.bf-process__right {
    min-width: 0;
    padding-top: 280px;
    padding-right: max(39px, calc((100vw - 1650px) / 2 + 39px));
}

.bf-process__timeline {
    --bf-process-progress: 0;
    position: relative;
    width: calc(100% + 32px);
    max-width: none;
    margin: 0 0 0 -32px;
    padding: 0;
    list-style: none;
}

.bf-process__timeline::before,
.bf-process__timeline::after {
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 32px;
    width: 1px;
    content: "";
    pointer-events: none;
}

.bf-process__timeline::before {
    background: rgba(255, 255, 255, 0.25);
}

.bf-process__timeline::after {
    background: rgba(255, 255, 255, 0.9);
    transform: scaleY(var(--bf-process-progress));
    transform-origin: top center;
    transition: transform 0.45s ease;
}

.bf-process__step {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 48px;
    min-height: 154px;
}

.bf-process__step:last-child {
    min-height: 0;
}

.bf-process__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: #080808;
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.bf-process__step-content {
    min-width: 0;
    padding-top: 2px;
    transition: opacity 0.35s ease;
}

.bf-process__step-title {
    margin: 0;
    color: #777777;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    transition: color 0.35s ease;
}

.bf-process__step-text {
    max-width: 640px;
    margin: 16px 0 48px 0;
    color: #666666;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.35s ease;
}

.bf-process__step.is-active .bf-process__number {
    border-color: #d8d8d8;
    background: #d8d8d8;
    color: #222;
    transform: scale(1.04);
}

.bf-process__step.is-active .bf-process__step-title {
    color: #ffffff;
}

.bf-process__step.is-active .bf-process__step-text {
    color: #bdbdbd;
}

.bf-process__step:not(.is-active) .bf-process__step-content {
    opacity: 0.72;
}
@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-process {
        min-height: 980px;
        padding: 80px 0;
    }

    .bf-process__container {
        grid-template-columns: minmax(0, 50vw) minmax(0, 50vw);
        min-height: 820px;
    }

    .bf-process__left {
        min-height: 820px;
    }

    .bf-process__header {
        padding-right: 35px;
        padding-left: 24px;
    }

    .bf-process__subtitle {
        font-size: 16px;
    }

    .bf-process__title {
        font-size: 36px;
    }

    .bf-process__visual {
        margin-top: 30px;
    }

    .bf-process__right {
        padding-top: 180px;
        padding-right: 24px;
    }

    .bf-process__timeline {
        width: calc(100% + 28px);
        margin-left: -28px;
    }

    .bf-process__timeline::before,
    .bf-process__timeline::after {
        top: 28px;
        bottom: 28px;
        left: 28px;
    }

    .bf-process__step {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 32px;
        min-height: 145px;
    }

    .bf-process__number {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .bf-process__step-title {
        font-size: 24px;
    }

    .bf-process__step-text {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    .bf-process {
        min-height: auto;
        padding: 68px 16px 70px;
    }

    .bf-process__container {
        display: block;
        width: 100%;
        max-width: 370px;
        min-height: 0;
        margin: 0 auto;
    }

    .bf-process__left {
        display: block;
        width: 100%;
        min-height: 0;
        height: auto;
    }

    .bf-process__header {
        width: 100%;
        padding: 0;
    }

    .bf-process__subtitle {
        margin: 0;
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-process__title {
        width: 100%;
        max-width: none;
        margin: 16px 0 0;
        font-size: 24px;
        line-height: 1.22;
        letter-spacing: -0.025em;
    }

    .bf-process__title-line {
        display: inline;
    }

    .bf-process__visual {
        display: none;
        width: 0;
        height: 0;
        min-height: 0;
        margin: 0;
    }

    .bf-process__right {
        width: 100%;
        padding: 0px 0 0;
    }

    .bf-process__timeline {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .bf-process__timeline::before,
    .bf-process__timeline::after {
        display: none;
    }

    .bf-process__step {
        position: relative;
        display: grid;
        grid-template-columns: 65px minmax(0, 1fr);
        gap: 24px;
        min-height: 0;
    }

    .bf-process__step:nth-child(1) {
        min-height: 120px;
    }

    .bf-process__step:nth-child(2) {
        min-height: 200px;
    }

    .bf-process__step:nth-child(3) {
        min-height: 160px;
    }

    .bf-process__step:nth-child(4) {
        min-height: 180px;
    }

    .bf-process__step:nth-child(5) {
        min-height:220px;
    }

    .bf-process__step:not(:last-child)::after {
        position: absolute;
        top: 65px;
        left: 32px;
        z-index: 0;
        width: 1px;
        height: calc(100% - 65px);
        background: rgba(255, 255, 255, 0.65);
        content: "";
        pointer-events: none;
    }

    .bf-process__number {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 65px;
        height: 65px;
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 50%;
        background: #080808;
        color: #ffffff;
        font-size: 24px;
        font-weight: 500;
        line-height: 1;
        transform: none;
        transition: color 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
    }

    .bf-process__step-content {
        min-width: 0;
        padding-top: 2px;
        opacity: 1;
        transform: none;
    }

    .bf-process__step-title {
        margin: 0;
        color: #969696;
        font-size: 23px;
        font-weight: 500;
        line-height: 1.2;
        transition: color 0.35s ease;
    }

    .bf-process__step-text {
        max-width: 255px;
        margin: 17px 0 0;
        color: #737373;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.38;
        transition: color 0.35s ease;
    }

    .bf-process__step.is-active .bf-process__number {
        border-color: #d8d8d8;
        background: #d8d8d8;
        color: #ffffff;
        transform: none;
    }

    .bf-process__step.is-active .bf-process__step-title {
        color: #ffffff;
    }

    .bf-process__step.is-active .bf-process__step-text {
        color: #bdbdbd;
    }

    .bf-process__step.is-active .bf-process__step-content,
    .bf-process__step:not(.is-active) .bf-process__step-content {
        opacity: 1;
        transform: none;
    }
}
/* ========================================
   We do not accept limitations
======================================== */

.bf-limitations {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 896px;
    padding: 80px 32px;
    overflow: hidden;
    background-color: #111111;
    background-image: url("../images/limitations-bg-desktop.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

.bf-limitations__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.48);
    pointer-events: none;
}

.bf-limitations__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.bf-limitations__title {
    max-width: 1100px;
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


.bf-limitations__description {
    max-width: 980px;
    margin: 43px 0 0;
    color: #f0f0f0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

.bf-limitations__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 57px;
    margin-top: 43px;
    padding: 5px 23px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.bf-limitations__button-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.bf-limitations__button-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.bf-limitations__button-text {
    white-space: nowrap;
}

.bf-limitations__button:hover,
.bf-limitations__button:focus-visible {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

.bf-limitations__button:hover .bf-limitations__button-icon,
.bf-limitations__button:focus-visible .bf-limitations__button-icon {
    background: #111111;
    color: #ffffff;
    transform: translateX(2px);
}

.bf-limitations__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ========================================
   Limitations: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-limitations {
        min-height: 760px;
        padding-right: 24px;
        padding-left: 24px;
        background-attachment: scroll;
    }

    .bf-limitations__container {
        max-width: 900px;
    }

    .bf-limitations__title {
        font-size: 45px;
    }

    .bf-limitations__description {
        max-width: 820px;
        font-size: 20px;
    }
}

/* ========================================
   Limitations: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-limitations {
        min-height: 640px;
        padding: 110px 19px 90px;
        background-image: url("../images/limitations-bg-mobile.webp");
        background-position: center center;
        background-attachment: scroll;
    }

    .bf-limitations__overlay {
        background: rgba(0, 0, 0, 0.42);
    }

    .bf-limitations__container {
        max-width: 365px;
    }

    .bf-limitations__title {
        max-width: 365px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }
    .bf-limitations__description {
        max-width: 365px;
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .bf-limitations__button {
        min-height: 58px;
        margin-top: 41px;
        padding-right: 23px;
        font-size: 16px;
    }

    .bf-limitations__button-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 374.98px) {
    .bf-limitations {
        padding-right: 15px;
        padding-left: 15px;
    }

    .bf-limitations__title {
        font-size: 24px;
    }

    .bf-limitations__description {
        font-size: 15px;
    }

    .bf-limitations__button {
        gap: 11px;
        padding-right: 18px;
        font-size: 15px;
    }
}
/* ========================================
   Career at BAT.FLY
======================================== */

.bf-career {
    width: 100%;
    min-height: 896px;
    padding: 160px 40px 120px;
    background: #080808;
}

.bf-career__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50%;
    align-items: start;
    gap: clamp(80px, 8vw, 185px);
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
}

.bf-career__content {
    min-width: 0;
}

.bf-career__subtitle {
    margin: 0;
    color: #bdbdbd;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bf-career__title {
    max-width: 720px;
    margin: 32px 0 0;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


.bf-career__description {
    display: flex;
    flex-direction: column;
    gap: 34px;
    max-width: 835px;
    margin-top: 76px;
}

.bf-career__description p {
    margin: 0;
    color: #bdbdbd;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.bf-career__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 520px;
    margin-top: 50px;
    padding: 70px 68px 54px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(135deg, #1d1d1d 0%, #111111 100%);
}

.bf-career__card-title {
    max-width: 510px;
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bf-career__card-text {
    max-width: 520px;
    margin: 40px 0 0;
    color: #bfbfbf;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.bf-career__button {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 14px;
    min-height: 57px;
    margin-top: auto;
    padding: 5px 28px 5px 7px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #dddddd;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.bf-career__button-icon {
    display: flex;
    flex: 0 0 43px;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.bf-career__button-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.bf-career__button-text {
    white-space: nowrap;
}

.bf-career__button:hover,
.bf-career__button:focus-visible {
    border-color: #ffffff;
    background: #111111;
    color: #ffffff;
}

.bf-career__button:hover .bf-career__button-icon,
.bf-career__button:focus-visible .bf-career__button-icon {
    background: #ffffff;
    color: #111111;
    transform: translateX(2px);
}

.bf-career__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}
/* ========================================
   Career: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-career {
        min-height: auto;
        padding: 100px 24px;
    }

    .bf-career__container {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
        gap: 56px;
    }

    .bf-career__title {
        font-size: 36px;
    }

    .bf-career__description {
        margin-top: 60px;
    }

    .bf-career__description p {
        font-size: 20px;
    }

    .bf-career__card {
        min-height: 460px;
        margin-top: 30px;
        padding: 52px 42px 44px;
    }

    .bf-career__card-title {
        font-size: 28px;
    }

    .bf-career__card-text {
        font-size: 19px;
    }
}

/* ========================================
   Career: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-career {
        min-height: 987px;
        padding: 84px 16px 64px;
    }

    .bf-career__container {
        display: flex;
        flex-direction: column;
        gap: 38px;
        max-width: 370px;
    }

    .bf-career__subtitle {
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-career__title {
        max-width: 370px;
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.18;
        letter-spacing: -0.025em;
    }


    .bf-career__description {
        gap: 24px;
        max-width: 370px;
        margin-top: 26px;
    }

    .bf-career__description p {
        font-size: 16px;
        line-height: 1.4;
    }

    .bf-career__card {
        min-height: 422px;
        margin-top: 0;
        padding: 43px 26px 39px;
        border-radius: 29px;
    }

    .bf-career__card-title {
        max-width: 305px;
        font-size: 20px;
        line-height: 1.28;
        letter-spacing: 0;
    }

    .bf-career__card-text {
        max-width: 305px;
        margin-top: 27px;
        font-size: 18px;
        line-height: 1.4;
    }

    .bf-career__button {
        gap: 14px;
        min-height: 57px;
        margin-top: auto;
        padding: 5px 24px 5px 7px;
        font-size: 15px;
    }

    .bf-career__button-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }
}

@media (max-width: 374.98px) {
    .bf-career {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-career__title {
        font-size: 22px;
    }

    .bf-career__card {
        padding-right: 22px;
        padding-left: 22px;
    }

    .bf-career__card-title {
        font-size: 19px;
    }

    .bf-career__card-text {
        font-size: 17px;
    }

    .bf-career__button {
        gap: 10px;
        padding-right: 18px;
        font-size: 14px;
    }
}
/* ========================================
   Team
======================================== */

.bf-team {
    width: 100%;
    min-height: 940px;
    padding: 120px 40px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, #101010 0%, #0d0d0d 48%, #171717 100%);
}

.bf-team__container {
    width: 100%;
    max-width: 1652px;
    margin: 0 auto;
}

.bf-team__subtitle {
    color: #c4c4c4;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.bf-team__title {
    max-width: 720px;
    margin-top: 32px;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


.bf-team__description {
    max-width: 1110px;
    margin-top: 80px;
    color: #c5c5c5;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

.bf-team__directions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    width: 100%;
    margin-top: 112px;
}

.bf-team__direction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 10px 40px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    color: #eeeeee;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.bf-team__direction:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #111111;
}

/* Порядок элементов в десктопной версии */

.bf-team__direction--engineering {
    order: 1;
}

.bf-team__direction--robotics {
    order: 2;
}

.bf-team__direction--industrial {
    order: 3;
}

.bf-team__direction--biomechanics {
    order: 4;
}

.bf-team__direction--medical {
    order: 5;
}

.bf-team__direction--embedded {
    order: 6;
}

.bf-team__direction--software {
    order: 7;
}

.bf-team__direction--product {
    order: 8;
}

.bf-team__direction--operations {
    order: 9;
}

.bf-team__direction--partnerships {
    order: 10;
}

/* ========================================
   Team: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-team {
        min-height: auto;
        padding: 90px 24px;
    }

    .bf-team__title {
        font-size: 38px;
    }

    .bf-team__description {
        max-width: 950px;
        margin-top: 70px;
        font-size: 20px;
    }

    .bf-team__directions {
        margin-top: 80px;
    }

    .bf-team__direction {
        min-height: 50px;
        padding-right: 30px;
        padding-left: 30px;
        font-size: 18px;
    }
}

/* ========================================
   Team: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-team {
        min-height: 840px;
        padding: 55px 16px 51px;
        background:
            radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0) 38%),
            linear-gradient(145deg, #151515 0%, #0b0b0b 72%, #101010 100%);
    }

    .bf-team__container {
        max-width: 370px;
    }

    .bf-team__subtitle {
        font-size: 16px;
        line-height: 1.3;
    }

    .bf-team__title {
        max-width: 360px;
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }

    .bf-team__description {
        max-width: 365px;
        margin-top: 30px;
        font-size: 18px;
        line-height: 1.39;
        letter-spacing: 0;
    }

    .bf-team__directions {
        gap: 8px;
        margin-top: 72px;
    }

    .bf-team__direction {
        min-height: 38px;
        padding: 8px 16px;
        font-size: 16px;
        line-height: 1.2;
    }

    .bf-team__direction--engineering,
    .bf-team__direction--robotics,
    .bf-team__direction--industrial,
    .bf-team__direction--biomechanics,
    .bf-team__direction--medical,
    .bf-team__direction--software,
    .bf-team__direction--partnerships,
    .bf-team__direction--embedded,
    .bf-team__direction--operations,
    .bf-team__direction--product {
        order: initial;
    }
}

@media (max-width: 374.98px) {
    .bf-team {
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-team__title {
        font-size: 22px;
    }

    .bf-team__description {
        font-size: 16px;
    }

    .bf-team__directions {
        gap: 8px;
    }

    .bf-team__direction {
        padding-right: 15px;
        padding-left: 15px;
        font-size: 15px;
    }
}
/* ========================================
   Transformation symbol
======================================== */

.bf-symbol {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 1015px;
    padding: 96px 32px 96px;
    overflow: hidden;
    background-color: #090909;
    background-image: url("../images/symbol-bg-desktop.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.bf-symbol::before,
.bf-symbol::after {
    display: none;
}

.bf-symbol::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.28) 100%),
        radial-gradient(circle at center, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.48) 100%);
    content: "";
    pointer-events: none;
}

.bf-symbol__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.bf-symbol__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 365px;
}

.bf-symbol__image {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 28px rgba(128, 45, 45, 0.18));
}

.bf-symbol__subtitle {
    margin-top: 44px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
}

.bf-symbol__title {
    max-width: 650px;
    margin-top: 32px;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.bf-symbol__description {
    max-width: 920px;
    margin-top: 40px;
    color: #c7c7c7;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.bf-symbol__button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-height: 56px;
    margin-top: 36px;
    padding: 5px 21px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.bf-symbol__button-icon {
    display: flex;
    flex: 0 0 39px;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bf-symbol__button-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.bf-symbol__button-text {
    white-space: nowrap;
}

.bf-symbol__button:hover,
.bf-symbol__button:focus-visible {
    background: #ffffff;
    color: #111111;
}

.bf-symbol__button:hover .bf-symbol__button-icon,
.bf-symbol__button:focus-visible .bf-symbol__button-icon {
    background: #111111;
    color: #ffffff;
    transform: translateX(2px);
}

.bf-symbol__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ========================================
   Transformation symbol: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-symbol {
        min-height: 900px;
        padding-top: 80px;
        padding-bottom: 80px;
        background-attachment: scroll;
    }

    .bf-symbol__visual {
        min-height: 320px;
    }

    .bf-symbol__image {
        width: 270px;
    }

    .bf-symbol__subtitle {
        margin-top: 32px;
    }

    .bf-symbol__title {
        font-size: 32px;
    }

    .bf-symbol__description {
        max-width: 800px;
        font-size: 18px;
    }
}

/* ========================================
   Transformation symbol: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-symbol {
        min-height: 889px;
        padding: 91px 19px 66px;
        background-image: url("../images/symbol-bg-mobile.webp");
        background-position: center top;
        background-size: cover;
        background-attachment: scroll;
    }

    .bf-symbol::before {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: block;
        background: rgba(0, 0, 0, 0.08);
        content: "";
        pointer-events: none;
    }

    .bf-symbol__container {
        position: relative;
        z-index: 1;
    }

    .bf-symbol__visual {
        min-height: 266px;
    }

    .bf-symbol__image {
        width: 232px;
    }

    .bf-symbol__subtitle {
        margin-top: 36px;
        font-size: 15px;
        line-height: 1.3;
    }

    .bf-symbol__title {
        max-width: 360px;
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.22;
        letter-spacing: -0.025em;
    }

    .bf-symbol__description {
        max-width: 365px;
        margin-top: 40px;
        font-size: 18px;
        line-height: 1.39;
        letter-spacing: 0;
    }

    .bf-symbol__button {
        min-height: 57px;
        margin-top: 39px;
        padding-right: 22px;
        font-size: 15px;
    }

    .bf-symbol__button-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .bf-symbol__button-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 374.98px) {
    .bf-symbol {
        padding-right: 16px;
        padding-left: 16px;
    }

    .bf-symbol__image {
        width: 210px;
    }

    .bf-symbol__title {
        font-size: 22px;
    }

    .bf-symbol__description {
        font-size: 17px;
    }

    .bf-symbol__button {
        gap: 11px;
        padding-right: 18px;
        font-size: 14px;
    }
}
/* ========================================
   Footer gallery
======================================== */

.bf-footer-gallery {
    width: 100%;
    padding: 32px 40px 32px;
    background: #070707;
}

.bf-footer-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
}

.bf-footer-gallery__item {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 32px;
    background: #111111;
    aspect-ratio: 1 / 1;
}

.bf-footer-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
    .bf-footer-gallery__item:hover .bf-footer-gallery__image {
        transform: scale(1.25);
    }
}

/* ========================================
   Footer gallery: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-footer-gallery {
        padding-right: 24px;
        padding-left: 24px;
    }

    .bf-footer-gallery__item {
        border-radius: 24px;
    }
}

/* ========================================
   Footer gallery: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-footer-gallery {
        padding: 0 16px 32px;
    }

    .bf-footer-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px;
    }

    .bf-footer-gallery__item {
        border-radius: 26px;
    }
}

/* ========================================
   Footer
======================================== */

.bf-footer {
    width: 100%;
    padding: 0 40px 36px;
    background: #070707;
}

.bf-footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 540px;
    padding: 88px 70px 46px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(255, 255, 255, 0.025) 0,
            rgba(255, 255, 255, 0) 34%
        ),
        linear-gradient(
            120deg,
            #121212 0%,
            #0e0e0e 50%,
            #141414 100%
        );
}

.bf-footer__top {
    display: grid;
    grid-template-columns:
        minmax(440px, 530px)
        minmax(145px, 180px)
        minmax(145px, 180px)
        minmax(170px, 200px);
    align-items: start;
    column-gap: clamp(48px, 5.8vw, 100px);
}

.bf-footer__intro {
    min-width: 0;
}

.bf-footer__logo {
    display: inline-block;
    width: 248px;
}

.bf-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.bf-footer__description {
    max-width: 440px;
    margin-top: 25px;
    color: #f1f1f1;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

.bf-footer__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    margin-top: 63px;
    padding: 5px 22px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: #f4f4f4;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.bf-footer__button-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.bf-footer__button-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.bf-footer__button-text {
    white-space: nowrap;
}

.bf-footer__button:hover,
.bf-footer__button:focus-visible {
    background: #ffffff;
    color: #111111;
}

.bf-footer__button:hover .bf-footer__button-icon,
.bf-footer__button:focus-visible .bf-footer__button-icon {
    background: #111111;
    color: #ffffff;
    transform: translateX(2px);
}

.bf-footer__navigation {
    display: contents;
}

.bf-footer__column {
    min-width: 0;
}

.bf-footer__column-title {
    margin-bottom: 32px;
    color: #bdbdbd;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.bf-footer__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bf-footer__menu-item {
    margin: 0;
    padding: 0;
}

.bf-footer__menu-link {
    position: relative;
    display: inline-block;
    color: #eeeeee;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.bf-footer__legal-link {
    position: relative;
    display: inline-block;
    color: inherit;
    white-space: nowrap;
}

.bf-footer__menu-link::after,
.bf-footer__legal-link::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: #FFF;
    content: "";
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.25s ease;
}

.bf-footer__menu-link:hover::after,
.bf-footer__menu-link:focus-visible::after,
.bf-footer__legal-link:hover::after,
.bf-footer__legal-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.bf-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.bf-footer__copyright {
    margin: 0;
    color: #eeeeee;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.35;
}

.bf-footer__legal {
    display: flex;
    align-items: center;
    gap: 40px;
    color: #eeeeee;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.35;
}

.bf-footer__logo:focus-visible,
.bf-footer__button:focus-visible,
.bf-footer__menu-link:focus-visible,
.bf-footer__legal-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* ========================================
   Footer: laptop and tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-footer {
        padding-right: 24px;
        padding-left: 24px;
    }

    .bf-footer__inner {
        padding-right: 48px;
        padding-left: 48px;
    }

    .bf-footer__top {
        grid-template-columns:
            minmax(300px, 1.5fr)
            repeat(3, minmax(120px, 1fr));
        column-gap: 32px;
    }

    .bf-footer__logo {
        width: 210px;
    }

    .bf-footer__description {
        font-size: 18px;
    }

    .bf-footer__menu-link {
        font-size: 18px;
    }
}

/* ========================================
   Footer: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-footer {
        padding: 0 16px 34px;
        
    }

    .bf-footer__inner {
        min-height: 1054px;
        padding: 55px 34px;
        border-radius: 31px;
    }

    .bf-footer__top {
        display: block;
    }

    .bf-footer__logo {
        width: 171px;
    }

    .bf-footer__description {
        max-width: 292px;
        margin-top: 43px;
        font-size: 19px;
        line-height: 1.35;
    }

    .bf-footer__button {
        min-height: 57px;
        margin-top: 39px;
        padding-right: 21px;
        font-size: 15px;
    }

    .bf-footer__button-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .bf-footer__navigation {
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        column-gap: 34px;
        row-gap: 65px;
        margin-top: 79px;
    }

    .bf-footer__column--contacts {
        grid-column: 1 / -1;
    }

    .bf-footer__column-title {
        margin-bottom: 33px;
        font-size: 15px;
    }

    .bf-footer__menu {
        gap: 17px;
    }

    .bf-footer__menu-link {
        font-size: 20px;
        line-height: 1.35;
    }

    .bf-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 0 7px;
    }

    .bf-footer__legal {
        order: 1;
        width: 100%;
        gap: 39px;
        font-size: 15px;
        white-space: nowrap;
    }

    .bf-footer__copyright {
        order: 2;
        max-width: 290px;
        margin-top: 25px;
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 374.98px) {
    .bf-footer__inner {
        min-height: auto;
        padding-right: 27px;
        padding-left: 27px;
    }

    .bf-footer__navigation {
        column-gap: 24px;
    }

    .bf-footer__legal {
        gap: 22px;
        font-size: 14px;
    }

    .bf-footer__menu-link {
        font-size: 18px;
    }

    .bf-footer__button {
        gap: 11px;
        padding-right: 17px;
        font-size: 14px;
    }
}

.bf-highlight-word {
    display: inline;
    padding: 0 0.12em;
    color: inherit;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0 100%;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: background-size 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease 0.12s;
}

.js-bf-highlight-title.is-highlighted .bf-highlight-word {
    color: #111111;
    background-size: 100% 100%;
}

/* ========================================
   Page
======================================== */

.bf-page{
    width: 100%;
    min-height: 940px;
    padding: 120px 40px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, #101010 0%, #0d0d0d 48%, #171717 100%);
}

.bf-page__container {
    width: 100%;
    max-width: 1652px;
    margin: 0 auto;
}

.bf-page__subtitle {
    color: #c4c4c4;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.bf-page__title {
    max-width: 720px;
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}


.bf-page__description {
    max-width: 1110px;
    margin-top: 64px;
    color: #c5c5c5;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.005em;
}

.bf-page__description p, .bf-page__description ul {
    margin-bottom: 24px;
}

.bf-page__description h2, .bf-page__description h3 {
    max-width: 720px;
    margin: 32px 0 24px 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}
.bf-page__container ul {
    list-style: circle;
    padding-left: 40px;
}
.bf-page__container ol {
    list-style: decimal;
    padding-left: 40px;
}

/* ========================================
   Team: tablet
======================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {
    .bf-page{
        min-height: auto;
        padding: 90px 24px;
    }

    .bf-page__title {
        font-size: 38px;
    }
    .bf-page__description h2, .bf-page__description h3 {
        font-size: 28px;
    }

    .bf-page__description {
        max-width: 950px;
        margin-top: 64px;
        font-size: 20px;
    }
}

/* ========================================
   Team: mobile
======================================== */

@media (max-width: 767.98px) {
    .bf-page {
        min-height: 840px;
        padding: 96px 16px 52px 16px;
        background:
            radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0) 38%),
            linear-gradient(145deg, #151515 0%, #0b0b0b 72%, #101010 100%);
    }

    .bf-page__container {
        max-width: 370px;
    }

    .bf-page__subtitle {
        font-size: 16px;
        line-height: 1.3;
    }

    .bf-page__title {
        max-width: 360px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.025em;
    }
    .bf-page__description h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .bf-page__description h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .bf-page__description {
        max-width: 365px;
        margin-top: 30px;
        font-size: 18px;
        line-height: 1.39;
        letter-spacing: 0;
    }


}

@media (max-width: 374.98px) {
    .bf-page{
        padding-right: 14px;
        padding-left: 14px;
    }

    .bf-page__title {
        font-size: 28px;
    }

    .bf-page__description {
        font-size: 16px;
    }
    
}
/* =========================================================
   CONTACT MODAL
========================================================= */

.bf-contact-modal {
    --bs-modal-width: 810px;
    padding-right: 0 !important;
}

.bf-contact-modal .modal-dialog {
    width: calc(100% - 32px);
    max-width: 810px;
    margin-right: auto;
    margin-left: auto;
}

.bf-contact-modal__content {
    position: relative;
    max-height: calc(100vh - 32px);
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, #1d1d1d 0%, #101010 100%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: #3a3a3a transparent;
}

.bf-contact-modal__content::-webkit-scrollbar {
    width: 5px;
}

.bf-contact-modal__content::-webkit-scrollbar-track {
    background: transparent;
}

.bf-contact-modal__content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #3a3a3a;
}

.bf-contact-modal__body {
    padding: 48px 64px 48px 64px;
}

.bf-contact-modal__close {
    position: absolute;
    top: 34px;
    right: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.bf-contact-modal__close:hover {
    color: #b7716e;
    transform: rotate(90deg);
}

.bf-contact-modal__close:focus-visible {
    outline: 2px solid #b7716e;
    outline-offset: 3px;
}

.bf-contact-modal__close svg {
    display: block;
    width: 42px;
    height: 42px;
}

.bf-contact-modal__header {
    max-width: 630px;
    padding-right: 55px;
}

.bf-contact-modal__sub-title {
    margin: 0;
    color: #c9c9c9;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.bf-contact-modal__title {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.bf-contact-modal__text {
    max-width: 600px;
    margin: 25px 0 0;
    color: #c0c0c0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.bf-contact-modal__form {
    margin-top: 55px;
}

.bf-contact-modal__agree-text {
    max-width: 670px;
    margin-top: 39px;
    color: #989898;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
}


/* =========================================================
   CONTACT FORM 7 GRID
========================================================= */

.bf-contact-modal .wpcf7 {
    width: 100%;
}

.bf-contact-modal .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 26px;
    margin: 0;
}

.bf-contact-modal .wpcf7-form > p {
    min-width: 0;
    margin: 0;
}

/* Select, textarea и кнопка — на всю ширину */

.bf-contact-modal .wpcf7-form > p:nth-of-type(5),
.bf-contact-modal .wpcf7-form > p:nth-of-type(6),
.bf-contact-modal .wpcf7-form > p:nth-of-type(7) {
    grid-column: 1 / -1;
}


/* =========================================================
   LABELS
========================================================= */

.bf-contact-modal .wpcf7-form label {
    display: block;
    margin: 0;
    color: #dedede;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.bf-contact-modal .wpcf7-form label > br {
    display: none;
}

/* Звёздочка обязательного поля */

.bf-contact-modal .wpcf7-form label > span:not(.wpcf7-form-control-wrap) {
    color: #b7716e;
}

.bf-contact-modal .wpcf7-form-control-wrap {
    display: block;
    margin-top: 10px;
}


/* =========================================================
   INPUTS, SELECT, TEXTAREA
========================================================= */

.bf-contact-modal .wpcf7-text,
.bf-contact-modal .wpcf7-email,
.bf-contact-modal .wpcf7-tel,
.bf-contact-modal .wpcf7-select,
.bf-contact-modal .wpcf7-textarea {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    border: 1px solid #292929;
    border-radius: 16px;
    color: #ffffff;
    background-color: #0b0b0b;
    box-shadow: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    outline: none;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.bf-contact-modal .wpcf7-text,
.bf-contact-modal .wpcf7-email,
.bf-contact-modal .wpcf7-tel,
.bf-contact-modal .wpcf7-select {
    height: 56px;
    padding: 0 25px;
}

.bf-contact-modal .wpcf7-textarea {
    height: 95px;
    min-height: 95px;
    padding: 16px 25px;
    resize: vertical;
}

.bf-contact-modal .wpcf7-text::placeholder,
.bf-contact-modal .wpcf7-email::placeholder,
.bf-contact-modal .wpcf7-tel::placeholder,
.bf-contact-modal .wpcf7-textarea::placeholder {
    color: #515151;
    opacity: 1;
}

.bf-contact-modal .wpcf7-text:hover,
.bf-contact-modal .wpcf7-email:hover,
.bf-contact-modal .wpcf7-tel:hover,
.bf-contact-modal .wpcf7-select:hover,
.bf-contact-modal .wpcf7-textarea:hover {
    border-color: #3b3b3b;
}

.bf-contact-modal .wpcf7-text:focus,
.bf-contact-modal .wpcf7-email:focus,
.bf-contact-modal .wpcf7-tel:focus,
.bf-contact-modal .wpcf7-select:focus,
.bf-contact-modal .wpcf7-textarea:focus {
    border-color: #b7716e;
    background-color: #0e0e0e;
    box-shadow: 0 0 0 3px rgba(183, 113, 110, 0.12);
}


/* =========================================================
   SELECT
========================================================= */

.bf-contact-modal .wpcf7-select {
    padding-right: 58px;
    color: #5a5a5a;
    background-image:
        linear-gradient(45deg, transparent 50%, #dedede 50%),
        linear-gradient(135deg, #dedede 50%, transparent 50%);
    background-repeat: no-repeat;
    background-position:
        calc(100% - 30px) 24px,
        calc(100% - 24px) 24px;
    background-size: 7px 7px, 7px 7px;
    appearance: none;
    cursor: pointer;
}

.bf-contact-modal .wpcf7-select option {
    color: #ffffff;
    background: #111111;
}

.bf-contact-modal .wpcf7-select:has(option:checked:not([value=""])) {
    color: #ffffff;
}


/* =========================================================
   AUTOFILL
========================================================= */

.bf-contact-modal input:-webkit-autofill,
.bf-contact-modal input:-webkit-autofill:hover,
.bf-contact-modal input:-webkit-autofill:focus,
.bf-contact-modal textarea:-webkit-autofill,
.bf-contact-modal select:-webkit-autofill {
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 0 0 1000px #0b0b0b inset;
    transition: background-color 9999s ease-out;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.bf-contact-modal .wpcf7-form > p:last-of-type {
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin-top: 15px;
}

.bf-contact-modal .wpcf7-submit {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    min-width: 192px;
    max-width: 100%;
    height: 56px;
    margin: 0;
    padding: 0 32px 0 64px;
    border: 1px solid #efefef;
    border-radius: 999px;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    appearance: none;
    cursor: pointer;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}
.bf-contact-modal .wpcf7-form > p:last-of-type::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b7716e;
    pointer-events: none;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.bf-contact-modal .wpcf7-form > p:last-of-type::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    width: 16px;
    height: 16px;
    background-color: #171717;
    mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8H14M14 8L9 3M14 8L9 13' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8H14M14 8L9 3M14 8L9 13' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.bf-contact-modal .wpcf7-form > p:last-of-type:hover .wpcf7-submit {
    color: #171717;
    border-color: #ffffff;
    background-color: #ffffff;
}

.bf-contact-modal .wpcf7-form > p:last-of-type:hover::before {
    background-color: #171717;
    transform: translateX(2px);
}

.bf-contact-modal .wpcf7-form > p:last-of-type:hover::after {
    background-color: #ffffff;
    transform: translateX(2px);
}

.bf-contact-modal .wpcf7-submit:focus-visible {
    outline: 2px solid #b7716e;
    outline-offset: 3px;
}

.bf-contact-modal .wpcf7-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}


/* Spinner CF7 */

.bf-contact-modal .wpcf7-spinner {
    position: absolute;
    top: 16px;
    right: 13px;
    z-index: 4;
    margin: 0;
}


/* =========================================================
   VALIDATION
========================================================= */

.bf-contact-modal .wpcf7-not-valid {
    border-color: #b7716e;
    box-shadow: 0 0 0 3px rgba(183, 113, 110, 0.1);
}

.bf-contact-modal .wpcf7-not-valid-tip {
    display: block;
    margin-top: 7px;
    color: #d98b87;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.bf-contact-modal .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 0 !important;
    padding: 13px 17px !important;
    border: 1px solid #383838 !important;
    border-radius: 12px;
    color: #d0d0d0;
    background: rgba(255, 255, 255, 0.025);
    font-size: 14px;
    line-height: 1.4;
}

.bf-contact-modal .wpcf7-form.invalid .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.unaccepted .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.payment-required .wpcf7-response-output {
    border-color: rgba(183, 113, 110, 0.7) !important;
    color: #e0a09d;
    background: rgba(183, 113, 110, 0.08);
}

.bf-contact-modal .wpcf7-form.sent .wpcf7-response-output {
    border-color: rgba(128, 174, 132, 0.7) !important;
    color: #b7d4b9;
    background: rgba(128, 174, 132, 0.08);
}

.bf-contact-modal .wpcf7-form.spam .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.failed .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.aborted .wpcf7-response-output {
    border-color: rgba(183, 113, 110, 0.7) !important;
    color: #e0a09d;
}


/* =========================================================
   BACKDROP
========================================================= */

.modal-backdrop.show {
    opacity: 0.82;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {
    .bf-contact-modal {
        padding: 0 !important;
    }

    .bf-contact-modal .modal-dialog {
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        min-height: 100%;
        margin: 0 auto;
    }

    .bf-contact-modal__content {
        width: 100%;
        max-height: none;
        min-height: 100dvh;
        border-radius: 28px;
    }

    .bf-contact-modal__body {
        padding: 69px 19px 40px;
    }

    .bf-contact-modal__close {
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .bf-contact-modal__close svg {
        width: 40px;
        height: 40px;
    }

    .bf-contact-modal__header {
        max-width: none;
        padding-right: 0;
    }

    .bf-contact-modal__sub-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .bf-contact-modal__title {
        margin-top: 15px;
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .bf-contact-modal__text {
        margin-top: 25px;
        font-size: 16px;
        line-height: 1.42;
    }

    .bf-contact-modal__form {
        margin-top: 43px;
    }

    .bf-contact-modal .wpcf7-form {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 26px;
    }

    .bf-contact-modal .wpcf7-form > p,
    .bf-contact-modal .wpcf7-form > p:nth-of-type(5),
    .bf-contact-modal .wpcf7-form > p:nth-of-type(6),
    .bf-contact-modal .wpcf7-form > p:nth-of-type(7) {
        grid-column: 1;
    }

    .bf-contact-modal .wpcf7-text,
    .bf-contact-modal .wpcf7-email,
    .bf-contact-modal .wpcf7-tel,
    .bf-contact-modal .wpcf7-select {
        height: 56px;
        padding-right: 25px;
        padding-left: 25px;
    }

    .bf-contact-modal .wpcf7-select {
        padding-right: 55px;
    }

    .bf-contact-modal .wpcf7-textarea {
        height: 117px;
        min-height: 117px;
        padding: 16px 25px;
    }

    .bf-contact-modal .wpcf7-form > p:last-of-type {
        width: 100%;
        margin-top: 14px;
    }

    .bf-contact-modal .wpcf7-submit {
        width: 100%;
    }

    .bf-contact-modal__agree-text {
        margin: 40px 3px 0;
        font-size: 16px;
        line-height: 1.45;
    }

    .bf-contact-modal .wpcf7-response-output {
        font-size: 13px;
    }

    .bf-contact-modal .wpcf7-spinner {
        right: 15px;
    }
}

.bf-contact-modal .wpcf7-response-output {
    order: -1;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 0 6px !important;
    padding: 13px 17px !important;
    border: 1px solid #383838 !important;
    border-radius: 12px;
    color: #d0d0d0;
    background: rgba(255, 255, 255, 0.025);
    font-size: 14px;
    line-height: 1.4;
}

.bf-contact-modal .wpcf7-form.invalid .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.unaccepted .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.payment-required .wpcf7-response-output {
    border-color: rgba(183, 113, 110, 0.7) !important;
    color: #e0a09d;
    background: rgba(183, 113, 110, 0.08);
}

.bf-contact-modal .wpcf7-form.sent .wpcf7-response-output {
    border-color: rgba(128, 174, 132, 0.7) !important;
    color: #b7d4b9;
    background: rgba(128, 174, 132, 0.08);
}

.bf-contact-modal .wpcf7-form.init .wpcf7-response-output,
.bf-contact-modal .wpcf7-form.submitting .wpcf7-response-output {
    display: none;
}

@media (max-width: 767.98px) {
    .bf-contact-modal .wpcf7-response-output {
        order: 10;
        grid-column: 1;
        margin: 6px 0 0 !important;
    }
}

.cky-btn-accept {
    background: #B7716E !important;
    border-color: #B7716E !important;
}
.cky-btn-reject {
    background: #D9D9D9 !important;
    border-color: #D9D9D9 !important;
    color: #222 !important;
}
.cky-btn-preferences {
    background: #D9D9D9 !important;
    border-color: #D9D9D9 !important;
    color: #222 !important;
}