/*style_gen.css*/


/* ================================
   FORMLOGIS MAIN HERO
================================ */

:root {
    --fl-blue: #0F2A5F;
    --fl-blue-hover: #153779;
    --fl-dark: #0A0E17;
    --fl-light: #FFFFFF;
    --fl-text: #070A10;
    --fl-muted: #596070;
    --fl-muted-light: #8B93A7;
    --fl-border: #E6EAF2;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background: var(--fl-dark);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}







/* ================================
   SITE MENU
================================ */

.fl-site-menu {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 9997;

    width: 100%;

    color: #121722;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    background: transparent;

    transform: translate3d(0, 0, 0);

    transition:
        background-color 420ms ease,
        color 420ms ease,
        box-shadow 420ms ease,
        transform 420ms ease;
}

/* Жёстко прибиваем к верху после скролла */
.fl-site-menu.is-scrolled {
    top: 0 !important;
    transform: translate3d(0, 0, 0) !important;
}


/* ================================
   TOP ROW
================================ */

.fl-menu-top {
    overflow: hidden;

    max-height: 46px;
    height: 46px;
    min-height: 46px;

    opacity: 1;
    transform: translateY(0);

    background: transparent;
    border-bottom: 1px solid rgba(10, 14, 23, 0.06);

    transition:
        max-height 560ms cubic-bezier(.2, .8, .2, 1),
        height 560ms cubic-bezier(.2, .8, .2, 1),
        min-height 560ms cubic-bezier(.2, .8, .2, 1),
        opacity 360ms ease,
        transform 560ms cubic-bezier(.2, .8, .2, 1),
        border-color 420ms ease,
        background-color 420ms ease;
}

.fl-menu-top-inner {
    width: 100%;
    min-height: 46px;

    padding: 0 var(--fl-page-x);

    display: grid;
    grid-template-columns: auto minmax(260px, 1fr) auto;
    align-items: center;
    gap: clamp(22px, 3vw, 52px);
}

.fl-site-menu.is-scrolled .fl-menu-top {
    max-height: 0;
    height: 0;
    min-height: 0;

    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;

    border-bottom-color: transparent;
}


/* ================================
   LOGO
================================ */

.fl-menu-brand,
.fl-menu-mobile-brand {
    min-width: 0;

    display: inline-flex;
    align-items: center;

    color: inherit;
    text-decoration: none;
}

/* DESKTOP LOGO */
.fl-menu-logo {
    width: clamp(112px, 7.8vw, 138px);
    max-height: 32px;
    height: auto;

    display: block;

    object-fit: contain;

    transition:
        filter 420ms ease,
        opacity 420ms ease;
}

/*
   Десктопный логотип оставляем как есть.
   При скролле верхняя строка скрывается, поэтому он не нужен в scrolled-состоянии.
*/
.fl-site-menu.is-scrolled .fl-menu-logo {
    filter: none;
}

/* MOBILE LOGO WRAPPER */
.fl-menu-mobile-brand {
    position: relative;

    display: none;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 auto;
}

/* MOBILE LOGO IMAGES */
.fl-menu-mobile-logo {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;
    object-fit: contain;

    transition:
        opacity 260ms ease,
        transform 260ms ease;
}

.fl-menu-mobile-logo-dark {
    opacity: 1;
    transform: scale(1);
}

.fl-menu-mobile-logo-light {
    opacity: 0;
    transform: scale(0.96);
}

/* На мобильном при скролле/открытом меню показываем светлый квадратный лого */
.fl-site-menu.is-scrolled .fl-menu-mobile-logo-dark,
.fl-site-menu.is-mobile-open .fl-menu-mobile-logo-dark {
    opacity: 0;
    transform: scale(0.96);
}

.fl-site-menu.is-scrolled .fl-menu-mobile-logo-light,
.fl-site-menu.is-mobile-open .fl-menu-mobile-logo-light {
    opacity: 1;
    transform: scale(1);
}


/* ================================
   NOTICE IN TOP ROW
================================ */

.fl-menu-notice {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: rgba(18, 23, 34, 0.58);

    transition:
        color 420ms ease,
        opacity 420ms ease;
}

.fl-menu-notice-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 auto;

    border-radius: 50%;
    background: #0F2A5F;
    opacity: 0.72;

    transition:
        background-color 420ms ease,
        box-shadow 420ms ease,
        opacity 420ms ease;
}

.fl-menu-notice p {
    margin: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 11px;
    line-height: 1;
    font-weight: 620;
    letter-spacing: -0.01em;
}


/* ================================
   TOP CONTACTS
================================ */

.fl-menu-contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

/* Почта изначально светлая, чтобы читалась на правой тёмной части героя */
.fl-menu-mail {
    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;

    font-size: 12px;
    line-height: 1;
    font-weight: 680;
    letter-spacing: -0.01em;

    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.fl-menu-mail:hover {
    color: #FFFFFF;
}

.fl-site-menu.is-scrolled .fl-menu-mail {
    color: rgba(255, 255, 255, 0.78);
}

.fl-site-menu.is-scrolled .fl-menu-mail:hover {
    color: #FFFFFF;
}

.fl-menu-icon-link {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;

    opacity: 0.82;

    transition:
        opacity 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.fl-menu-icon-link:hover {
    opacity: 1;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.fl-menu-icon-link svg {
    width: 18px;
    height: 18px;

    display: block;

    fill: currentColor;
}

/* ================================
   MENU PNG ICONS
================================ */

.fl-menu-icon-box {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 25px;

    overflow: hidden;
}

.fl-menu-icon-img {
    width: 100% !important;
    height: 100% !important;

    max-width: 25px !important;
    max-height: 25px !important;

    display: block;

    object-fit: contain;
    object-position: center;

    flex: 0 0 auto;

    pointer-events: none;
}


/* ================================
   MAIN ROW
================================ */

.fl-menu-main {
    margin-top: 0;

    background: transparent;
    border-top: 0;
    border-bottom: 1px solid rgba(10, 14, 23, 0.07);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    transition:
        margin-top 420ms ease,
        background 420ms ease,
        border-color 420ms ease,
        box-shadow 420ms ease,
        backdrop-filter 420ms ease;
}

.fl-menu-main-inner {
    width: 100%;
    min-height: 58px;

    padding: 0 var(--fl-page-x);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    transition:
        min-height 420ms ease;
}

/* Скролл: основная строка становится тёмной и прибитой к самому верху */
.fl-site-menu.is-scrolled .fl-menu-main {
    margin-top: -1px;

    background:
        linear-gradient(
            180deg,
            rgba(18, 29, 48, 0.94) 0%,
            rgba(10, 18, 32, 0.91) 100%
        );

    border-top: 0;
    border-bottom-color: rgba(127, 162, 255, 0.22);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 16px 44px rgba(5, 10, 18, 0.22);
}

.fl-site-menu.is-scrolled .fl-menu-main-inner {
    min-height: 56px;
}


/* ================================
   NAV
================================ */

.fl-menu-nav {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: clamp(24px, 2.6vw, 46px);
}

.fl-menu-nav a {
    position: relative;

    min-height: 58px;

    display: inline-flex;
    align-items: center;

    color: rgba(18, 23, 34, 0.68);
    text-decoration: none;

    font-size: 11px;
    line-height: 1;
    font-weight: 780;
    letter-spacing: 0.055em;
    text-transform: uppercase;

    transition:
        color 220ms ease,
        min-height 420ms ease;
}

.fl-menu-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background: currentColor;

    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;

    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.fl-menu-nav a:hover {
    color: #0F2A5F;
}

.fl-menu-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.fl-site-menu.is-scrolled .fl-menu-nav a {
    min-height: 56px;
    color: rgba(255, 255, 255, 0.68);
}

.fl-site-menu.is-scrolled .fl-menu-nav a:hover {
    color: #FFFFFF;
}

.fl-site-menu.is-scrolled .fl-menu-nav a::after {
    background: #7FA2FF;
}


/* ================================
   ACTIONS
================================ */

.fl-menu-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* Кнопка изначально такая же, как при скролле */
.fl-menu-cta {
    min-height: 36px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 999px;
    border: 1px solid rgba(127, 162, 255, 0.52);

    background: rgba(127, 162, 255, 0.08);

    color: #FFFFFF;
    text-decoration: none;

    font-size: 12px;
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.01em;

    transition:
        transform 180ms ease,
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.fl-menu-cta:hover {
    transform: translateY(-1px);
    background: rgba(127, 162, 255, 0.16);
    border-color: rgba(127, 162, 255, 0.82);
    color: #FFFFFF;
}

.fl-site-menu.is-scrolled .fl-menu-cta {
    border-color: rgba(127, 162, 255, 0.52);
    background: rgba(127, 162, 255, 0.08);
    color: #FFFFFF;
}

.fl-site-menu.is-scrolled .fl-menu-cta:hover {
    background: rgba(127, 162, 255, 0.16);
    border-color: rgba(127, 162, 255, 0.82);
}


/* ================================
   BURGER
================================ */

.fl-menu-burger {
    display: none;

    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.fl-menu-burger span {
    width: 22px;
    height: 1.5px;

    display: block;

    border-radius: 999px;
    background: #121722;

    transition:
        background-color 220ms ease,
        transform 180ms ease,
        opacity 180ms ease;
}

.fl-site-menu.is-scrolled .fl-menu-burger span,
.fl-site-menu.is-mobile-open .fl-menu-burger span {
    background: #FFFFFF;
}

.fl-site-menu.is-mobile-open .fl-menu-burger span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.fl-site-menu.is-mobile-open .fl-menu-burger span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}


/* ================================
   MOBILE DROPDOWN
================================ */

.fl-menu-mobile {
    display: none;

    background: rgba(10, 18, 32, 0.96);
    border-bottom: 1px solid rgba(127, 162, 255, 0.18);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.fl-site-menu.is-mobile-open .fl-menu-mobile {
    display: block;
}

.fl-site-menu.is-mobile-open .fl-menu-main {
    background:
        linear-gradient(
            180deg,
            rgba(18, 29, 48, 0.94) 0%,
            rgba(10, 18, 32, 0.90) 100%
        );

    border-bottom-color: rgba(127, 162, 255, 0.22);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.fl-menu-mobile-nav {
    padding:
        14px
        var(--fl-page-x)
        12px;

    display: grid;
}

.fl-menu-mobile-nav a {
    min-height: 48px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;

    font-size: 12px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color 180ms ease;
}

.fl-menu-mobile-nav a:hover {
    color: #FFFFFF;
}

.fl-menu-mobile-contacts {
    padding:
        10px
        var(--fl-page-x)
        18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.fl-menu-mobile-mail {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;

    font-size: 13px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.fl-menu-mobile-mail:hover {
    color: #FFFFFF;
}

.fl-menu-mobile-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}



/* Мобильные иконки соцсетей в выпадающем меню */
.fl-menu-mobile-icons .fl-menu-icon-link {
    width: 28px;
    height: 28px;
}

.fl-menu-mobile-icons .fl-menu-icon-box {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.fl-menu-mobile-icons .fl-menu-icon-img {
    width: 100% !important;
    height: 100% !important;

    max-width: 28px !important;
    max-height: 28px !important;

    object-fit: contain;
    object-position: center;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1180px) {
    .fl-menu-nav {
        gap: 26px;
    }

    .fl-menu-nav a {
        font-size: 10.5px;
        letter-spacing: 0.055em;
    }

    .fl-menu-cta {
        padding: 0 15px;
    }
}

@media (max-width: 980px) {
    .fl-menu-top {
        display: none;
    }

    .fl-menu-main {
        background: transparent;
    }

    .fl-menu-main-inner {
        min-height: 62px;
    }

    .fl-menu-mobile-brand {
        display: inline-flex;
    }

    .fl-menu-nav {
        display: none;
    }

    .fl-menu-cta {
        display: none;
    }

    .fl-menu-burger {
        display: inline-flex;
    }

    .fl-menu-actions {
        margin-left: auto;
    }

    .fl-site-menu.is-scrolled .fl-menu-main,
    .fl-site-menu.is-mobile-open .fl-menu-main {
        margin-top: -1px;

        background:
            linear-gradient(
                180deg,
                rgba(18, 29, 48, 0.94) 0%,
                rgba(10, 18, 32, 0.90) 100%
            );
    }
}

@media (max-width: 620px) {
    .fl-menu-main-inner {
        min-height: 58px;
        padding: 0 var(--fl-page-x);
    }

    .fl-menu-mobile-brand {
        width: 32px;
        height: 32px;
    }

    .fl-menu-burger {
        width: 36px;
        height: 36px;
    }

    .fl-menu-mobile-nav {
        padding:
            10px
            var(--fl-page-x)
            8px;
    }

    .fl-menu-mobile-nav a {
        min-height: 46px;
        font-size: 11px;
    }

    .fl-menu-mobile-contacts {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-site-menu,
    .fl-menu-top,
    .fl-menu-main,
    .fl-menu-main-inner,
    .fl-menu-logo,
    .fl-menu-mobile-logo,
    .fl-menu-notice,
    .fl-menu-notice-dot,
    .fl-menu-mail,
    .fl-menu-icon-link,
    .fl-menu-nav a,
    .fl-menu-nav a::after,
    .fl-menu-cta,
    .fl-menu-burger span,
    .fl-menu-mobile-nav a {
        transition: none;
    }
}








/* ================================
   DEV NOTICE
================================ */

.fl-dev-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;

    width: 100%;

    background: rgba(10, 14, 23, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.fl-dev-notice-inner {
    min-height: 38px;
    padding:
        0
        clamp(18px, 4.7vw, 76px);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fl-dev-notice-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    border-radius: 50%;
    background: #7FA2FF;
    box-shadow: 0 0 14px rgba(127, 162, 255, 0.72);
}

.fl-dev-notice p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 550;
    letter-spacing: -0.01em;
    text-align: center;
}

@media (max-width: 620px) {
    .fl-dev-notice-inner {
        min-height: 44px;
        padding: 8px 18px;
    }

    .fl-dev-notice p {
        font-size: 12px;
    }
}

/* ================================
   HERO BASE
================================ */

.fl-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100svh;
    overflow: hidden;
    background: var(--fl-dark);
}

/* ================================
   MAIN BACKGROUND
================================ */

.fl-hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image: url("/static/img/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fl-hero-soft-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.78) 0%,
            rgba(255, 255, 255, 0.52) 23%,
            rgba(255, 255, 255, 0.12) 43%,
            rgba(10, 14, 23, 0.00) 58%,
            rgba(10, 14, 23, 0.06) 100%
        );
}

/* ================================
   MENU SPACE
================================ */

.fl-hero-menu-space {
    position: relative;
    z-index: 5;
    height: clamp(76px, 8vw, 108px);
}

/* ================================
   HERO CONTENT
================================ */

.fl-hero-inner {
    position: relative;
    z-index: 4;

    width: 100%;
    min-height: calc(100svh - clamp(76px, 8vw, 108px));

    padding:
        0
        clamp(32px, 4.7vw, 76px)
        clamp(34px, 4vw, 58px);

    animation: flHeroContentIn 820ms ease forwards;
}

@keyframes flHeroContentIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   LEFT TEXT BLOCK
================================ */

.fl-hero-content {
    position: absolute;
    left: clamp(32px, 4.7vw, 76px);
    top: clamp(98px, 15.3vh, 176px);

    width: min(820px, 52vw);
    max-width: 820px;
}

.fl-hero-kicker {
    margin-bottom: 18px;

    color: var(--fl-blue);

    font-size: clamp(11px, 0.72vw, 13px);
    line-height: 1.3;
    font-weight: 780;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}


.fl-hero-title {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(48px, 4.6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.fl-hero-title span {
    display: block;
    white-space: nowrap;
}

.fl-hero-text {
    width: min(620px, 42vw);
    margin: clamp(20px, 2.1vw, 30px) 0 0;

    color: var(--fl-muted);

    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.6;
    letter-spacing: -0.012em;
    font-weight: 400;
}

/* ================================
   ACTIONS
================================ */

.fl-hero-actions {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.4vw, 24px);

    margin-top: clamp(26px, 2.8vw, 42px);
}

.fl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 999px;
    border: 1.5px solid transparent;

    text-decoration: none;
    font-size: clamp(13px, 0.78vw, 15px);
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1;

    transition:
        transform 180ms ease,
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-btn-primary {
    color: #FFFFFF;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.00) 42%
        ),
        var(--fl-blue);
    box-shadow: none;
}

.fl-btn-primary:hover {
    transform: translateY(-1px);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.00) 42%
        ),
        var(--fl-blue-hover);
    box-shadow: none;
}

.fl-btn-secondary {
    color: var(--fl-blue);
    background: rgba(255, 255, 255, 0.48);
    border-color: rgba(15, 42, 95, 0.58);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: none;
}

.fl-btn-secondary:hover {
    transform: translateY(-1px);
    color: #FFFFFF;
    background: var(--fl-blue);
    border-color: var(--fl-blue);
    box-shadow: none;
}

/* ================================
   TRUSTED / DIRECTIONS
================================ */

.fl-hero-trusted {
    position: absolute;
    left: clamp(32px, 4.7vw, 76px);
    bottom: clamp(34px, 4.5vw, 68px);

    width: min(760px, calc(52vw - 80px));
}

.fl-trusted-title {
    margin-bottom: clamp(20px, 2vw, 30px);

    color: #7A8190;

    font-size: clamp(10px, 0.62vw, 12px);
    line-height: 1.35;
    font-weight: 760;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.fl-trusted-list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.1vw, 36px);

    color: #AEB4BF;
    white-space: nowrap;
}

.fl-trusted-list span {
    display: inline-flex;
    align-items: center;

    min-height: 20px;

    font-size: clamp(13px, 0.88vw, 17px);
    line-height: 1;
    font-weight: 680;
    letter-spacing: -0.02em;

    opacity: 0.82;
}

/* ================================
   RIGHT INFOGRAPHIC NOTE
================================ */

.fl-hero-note {
    position: absolute;
    right: clamp(32px, 4.7vw, 76px);
    bottom: clamp(34px, 4.5vw, 68px);

    display: grid;
    grid-template-columns: 1px auto;
    column-gap: 28px;
    align-items: start;

    color: #AAB1C3;
}

.fl-hero-note::before {
    content: "";

    width: 1px;
    height: 78px;

    grid-row: 1 / span 2;

    background:
        linear-gradient(
            to bottom,
            rgba(73, 111, 217, 0.95),
            rgba(73, 111, 217, 0.20)
        );

    transform: translateY(2px);
}

.fl-note-dot {
    position: absolute;
    left: -3px;
    top: 0;

    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #7FA2FF;
    box-shadow: 0 0 16px rgba(127, 162, 255, 0.95);
}

.fl-hero-note p {
    margin: 0;

    color: #A8AFC0;

    font-size: clamp(10px, 0.72vw, 13px);
    line-height: 1.75;
    font-weight: 760;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1440px) {
    .fl-hero-content {
        width: min(760px, 54vw);
    }



    .fl-hero-title {
        font-size: clamp(43px, 4vw, 64px);
    }

    .fl-hero-text {
        width: min(580px, 44vw);
    }
}

@media (max-width: 1280px) {
    .fl-hero-content {
        top: clamp(98px, 15vh, 155px);
        width: min(700px, 56vw);
        max-width: 700px;
    }

    .fl-hero-title {
        font-size: clamp(40px, 3.9vw, 56px);
    }

    .fl-hero-trusted {
        width: min(650px, calc(54vw - 70px));
    }

    .fl-trusted-list {
        gap: clamp(16px, 1.8vw, 26px);
    }
}

@media (max-width: 1100px) {
    .fl-hero-title span {
        white-space: normal;
    }

    .fl-hero-content {
        width: min(540px, 52vw);
    }

    .fl-hero-text {
        width: min(440px, 48vw);
    }
}

@media (max-width: 1024px) {
    .fl-hero {
        min-height: 760px;
        height: auto;
    }

    .fl-hero-inner {
        min-height: 684px;
    }

    .fl-hero-bg-image {
        background-position: center center;
    }

    .fl-hero-soft-layer {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 255, 255, 0.62) 36%,
                rgba(255, 255, 255, 0.16) 62%,
                rgba(10, 14, 23, 0.16) 100%
            );
    }

    .fl-hero-content {
        left: clamp(28px, 5vw, 52px);
        top: 105px;

        width: min(500px, 56vw);
        max-width: 500px;
    }

    .fl-hero-title {
        font-size: clamp(38px, 5.2vw, 52px);
        line-height: 1;
    }

    .fl-hero-text {
        width: min(420px, 48vw);
    }

    .fl-hero-trusted {
        left: clamp(28px, 5vw, 52px);
        bottom: 42px;

        width: calc(100vw - 104px);
    }

    .fl-trusted-list {
        gap: 24px;
        overflow: hidden;
    }

    .fl-hero-note {
        right: 44px;
        bottom: 125px;
    }
}

/* ================================
   MOBILE / TABLET HERO
   более спокойная версия
================================ */

@media (max-width: 768px) {
    .fl-hero {
        min-height: 760px;
        height: auto;
        background: #F3F5F8;
    }

    .fl-hero-menu-space {
        height: 82px;
    }

    .fl-hero-inner {
        min-height: 678px;

        padding:
            0
            24px
            34px;
    }

    /* Приглушаем саму картинку */
    .fl-hero-bg-image {
        background-position: 62% center;

        opacity: 0.72;
        filter:
            saturate(0.62)
            contrast(0.86)
            brightness(1.08);

        transform: scale(1.02);
    }

    /* Делаем фон спокойнее и светлее */
    .fl-hero-soft-layer {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.72) 0%,
                rgba(255, 255, 255, 0.66) 34%,
                rgba(255, 255, 255, 0.58) 62%,
                rgba(247, 248, 250, 0.88) 100%
            ),
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.72) 0%,
                rgba(255, 255, 255, 0.38) 48%,
                rgba(10, 14, 23, 0.22) 100%
            );
    }

    .fl-hero-content {
        position: relative;
        left: auto;
        top: auto;

        width: 100%;
        max-width: 560px;

        margin-top: 28px;
        padding: 30px 26px 28px;

        border-radius: 30px;

        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(255, 255, 255, 0.72);

        box-shadow:
            0 20px 70px rgba(10, 14, 23, 0.10);

        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .fl-hero-kicker {
        margin-bottom: 16px;

        color: var(--fl-blue);

        font-size: 11px;
        line-height: 1.35;
        letter-spacing: 0.055em;
    }

    .fl-hero-title {
        color: var(--fl-text);

        font-size: clamp(38px, 8.6vw, 58px);
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .fl-hero-title span {
        white-space: normal;
    }

    .fl-hero-text {
        width: 100%;
        max-width: 440px;

        margin-top: 24px;

        color: #404757;

        font-size: 15px;
        line-height: 1.62;
    }

    .fl-hero-actions {
        margin-top: 30px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fl-btn {
        width: 100%;
        min-height: 54px;
        padding: 0 22px;

        justify-content: center;

        font-size: 14px;
    }

    .fl-btn-secondary {
        background: rgba(255, 255, 255, 0.62);
        border-color: rgba(15, 42, 95, 0.34);
    }

    /* Убираем лишний шум на мобильной версии */
    .fl-hero-note {
        display: none;
    }

    /* Блок доверия делаем не отдельной тяжелой плашкой, а спокойным нижним блоком */
    .fl-hero-trusted {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: 28px;
        padding: 0 4px;

        background: transparent;
        border: 0;
        border-radius: 0;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .fl-trusted-title {
        margin-bottom: 16px;

        color: rgba(15, 42, 95, 0.72);

        font-size: 10px;
        line-height: 1.45;
        font-weight: 820;
        letter-spacing: 0.035em;
    }

    .fl-trusted-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;

        gap: 8px;

        color: #596070;
        white-space: normal;
    }

    .fl-trusted-list span {
        min-height: 30px;
        padding: 0 12px;

        display: inline-flex;
        align-items: center;

        border-radius: 999px;
        border: 1px solid rgba(15, 42, 95, 0.14);
        background: rgba(255, 255, 255, 0.42);

        color: #596070;

        font-size: 12px;
        line-height: 1;
        font-weight: 720;
        letter-spacing: -0.01em;

        opacity: 1;

        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@media (max-width: 520px) {
    .fl-hero {
        min-height: 760px;
    }

    .fl-hero-menu-space {
        height: 72px;
    }

    .fl-hero-inner {
        min-height: 688px;

        padding:
            0
            18px
            30px;
    }

    .fl-hero-bg-image {
        background-position: 64% center;

        opacity: 0.64;
        filter:
            saturate(0.55)
            contrast(0.82)
            brightness(1.10);
    }

    .fl-hero-soft-layer {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.78) 0%,
                rgba(255, 255, 255, 0.70) 38%,
                rgba(255, 255, 255, 0.64) 68%,
                rgba(247, 248, 250, 0.92) 100%
            ),
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.76) 0%,
                rgba(255, 255, 255, 0.44) 52%,
                rgba(10, 14, 23, 0.20) 100%
            );
    }

    .fl-hero-content {
        margin-top: 20px;
        padding: 26px 22px 24px;

        border-radius: 26px;
    }

    .fl-hero-kicker {
        margin-bottom: 14px;
        font-size: 10.5px;
    }

    .fl-hero-title {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.02;
        letter-spacing: -0.05em;
    }

    .fl-hero-text {
        max-width: 360px;

        margin-top: 20px;

        font-size: 14px;
        line-height: 1.58;
    }

    .fl-hero-actions {
        margin-top: 26px;
        gap: 11px;
    }

    .fl-btn {
        min-height: 52px;
    }

    .fl-hero-trusted {
        margin-top: 24px;
        padding: 0;
    }

    .fl-trusted-title {
        margin-bottom: 14px;
        font-size: 9.5px;
    }

    .fl-trusted-list {
        gap: 7px;
    }

    .fl-trusted-list span {
        min-height: 28px;
        padding: 0 10px;

        font-size: 11.5px;
    }
}

@media (max-width: 390px) {
    .fl-hero {
        min-height: 780px;
    }

    .fl-hero-title {
        font-size: 34px;
    }

    .fl-hero-content {
        padding: 24px 20px 22px;
    }

    .fl-trusted-list span {
        font-size: 11px;
    }
}










/* ================================
   SERVICES / DIRECTIONS SECTION
================================ */

.fl-services {
    position: relative;
    width: 100%;
    background: #F7F8FA;
    border-top: 1px solid rgba(10, 14, 23, 0.08);
    overflow: hidden;
}

.fl-services-inner {
    width: 100%;
    margin: 0;

    padding:
        clamp(78px, 7vw, 118px)
        clamp(32px, 4.7vw, 76px)
        clamp(82px, 7vw, 122px);

    display: grid;
    grid-template-columns: minmax(270px, 360px) 1fr;
    gap: clamp(44px, 5.2vw, 88px);
    align-items: start;
}

.fl-services-info {
    max-width: 360px;
}

/* Общий лейбл */
.fl-section-label {
    margin-bottom: 22px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(10px, 0.62vw, 12px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.fl-services-title {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.fl-services-text {
    margin: 30px 0 0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.65;
    letter-spacing: -0.012em;
    font-weight: 400;
}

.fl-services-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 44px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: clamp(13px, 0.78vw, 15px);
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.01em;

    transition:
        gap 180ms ease,
        opacity 180ms ease;
}

.fl-services-link:hover {
    gap: 18px;
    opacity: 0.78;
}

.fl-services-content {
    min-width: 0;
}

/* ================================
   SERVICES CARDS
================================ */

.fl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.8vw, 30px);
}

.fl-service-card {
    min-height: 330px;

    padding:
        clamp(28px, 2.5vw, 38px)
        clamp(24px, 2.2vw, 34px);

    display: flex;
    flex-direction: column;

    background: #FFFFFF;
    border: 1px solid rgba(15, 42, 95, 0.14);
    border-radius: 24px;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.fl-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 42, 95, 0.30);
    background: #FFFFFF;
}

/* Метка LK / REQ / OPS */
.fl-service-mark {
    width: max-content;
    min-width: 52px;
    min-height: 34px;
    padding: 0 13px;
    margin-bottom: clamp(34px, 3vw, 48px);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: rgba(127, 162, 255, 0.10);
    border: 1px solid rgba(127, 162, 255, 0.48);

    color: #6F98FF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fl-service-card h3 {
    max-width: 360px;
    margin: 0;

    color: #111722;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(21px, 1.5vw, 27px);
    line-height: 1.08;
    letter-spacing: -0.052em;
    font-weight: 760;
}

.fl-service-card p {
    margin: 18px 0 0;

    color: #4F5868;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.96vw, 16px);
    line-height: 1.62;
    letter-spacing: -0.01em;
    font-weight: 440;
}

.fl-service-fit {
    margin-top: auto;
    padding-top: 26px;

    color: #687083;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(13px, 0.88vw, 14px);
    line-height: 1.62;
    letter-spacing: -0.01em;
    font-weight: 430;
}

.fl-service-fit::before {
    content: "";
    display: block;

    width: 100%;
    height: 1px;

    margin-bottom: 22px;

    background: rgba(15, 42, 95, 0.10);
}

.fl-service-fit span {
    display: block;
    margin-bottom: 9px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* ================================
   ACCENT CARD
================================ */

.fl-service-card-accent {
    background:
        linear-gradient(
            135deg,
            #0F2A5F 0%,
            #0A1734 58%,
            #07101E 100%
        );

    border-color: rgba(127, 162, 255, 0.32);
}

.fl-service-card-accent:hover {
    background:
        linear-gradient(
            135deg,
            #12306B 0%,
            #0B1A3A 58%,
            #07101E 100%
        );

    border-color: rgba(127, 162, 255, 0.52);
}

.fl-service-card-accent .fl-service-mark {
    background: rgba(127, 162, 255, 0.14);
    border-color: rgba(127, 162, 255, 0.58);
    color: #9EB8FF;
}

.fl-service-card-accent h3 {
    color: #FFFFFF;
}

.fl-service-card-accent p {
    color: rgba(255, 255, 255, 0.72);
}

.fl-service-card-accent .fl-service-fit {
    color: rgba(255, 255, 255, 0.68);
}

.fl-service-card-accent .fl-service-fit::before {
    background: rgba(255, 255, 255, 0.16);
}

.fl-service-card-accent .fl-service-fit span {
    color: #9EB8FF;
}

/* ================================
   SERVICES NOTE
================================ */

.fl-services-note {
    margin-top: clamp(28px, 3vw, 44px);
    padding:
        clamp(24px, 2.4vw, 34px)
        clamp(24px, 3vw, 42px);

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #0F2A5F 0%,
            #0A1734 58%,
            #07101E 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    color: rgba(255, 255, 255, 0.88);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.62;
    letter-spacing: -0.012em;
    font-weight: 500;
}

.fl-services-note span {
    display: block;
    margin-bottom: 10px;

    color: #9EB8FF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* ================================
   SERVICES RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-services-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .fl-services-info {
        max-width: 760px;
    }

    .fl-services-text {
        max-width: 680px;
    }

    .fl-services-link {
        margin-top: 34px;
    }

    .fl-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fl-service-card {
        min-height: 315px;
    }
}

@media (max-width: 980px) {
    .fl-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .fl-services-inner {
        padding:
            64px
            24px
            76px;
    }

    .fl-service-card {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .fl-services-inner {
        padding:
            56px
            18px
            68px;
    }

    .fl-section-label {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .fl-services-title {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.06;
    }

    .fl-services-text {
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-services-link {
        margin-top: 30px;
    }

    .fl-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fl-service-card {
        min-height: auto;
        padding: 26px 22px;
        border-radius: 22px;
    }

    .fl-service-mark {
        margin-bottom: 30px;
    }

    .fl-service-card h3 {
        font-size: 23px;
    }

    .fl-service-card p {
        margin-top: 16px;
    }

    .fl-service-fit {
        padding-top: 26px;
    }

    .fl-services-note {
        padding: 24px 22px;
        border-radius: 22px;
        font-size: 14px;
    }
}






/* ================================
   APPROACH SECTION
================================ */

.fl-approach {
    position: relative;
    width: 100%;
    background: #050A12;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.fl-approach::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 68% 36%,
            rgba(15, 42, 95, 0.34) 0%,
            rgba(15, 42, 95, 0.08) 24%,
            rgba(5, 10, 18, 0.00) 50%
        );
}

.fl-approach-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    margin: 0;

    padding:
        clamp(78px, 7vw, 118px)
        clamp(32px, 4.7vw, 76px)
        clamp(82px, 7vw, 122px);

    display: grid;
    grid-template-columns: minmax(270px, 360px) 1fr;
    gap: clamp(52px, 6vw, 112px);
    align-items: start;
}

/* ================================
   APPROACH LEFT
================================ */

.fl-approach-info {
    max-width: 360px;
}

.fl-section-label-dark {
    color: #6F98FF;
}

.fl-approach-title {
    margin: 0;

    color: #F7F8FA;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(36px, 3.25vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.fl-approach-text {
    margin: 28px 0 0;

    color: rgba(255, 255, 255, 0.58);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 16px);
    line-height: 1.7;
    letter-spacing: -0.012em;
    font-weight: 400;
}

.fl-approach-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 46px;

    color: #7FA2FF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: clamp(13px, 0.78vw, 15px);
    line-height: 1;
    font-weight: 650;
    letter-spacing: -0.01em;

    transition:
        gap 180ms ease,
        opacity 180ms ease;
}

.fl-approach-link:hover {
    gap: 18px;
    opacity: 0.78;
}

/* ================================
   APPROACH STEPS
================================ */

.fl-approach-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(16px, 1.6vw, 28px);

    padding-top: clamp(20px, 2vw, 34px);
}

.fl-approach-step {
    min-width: 0;
    cursor: default;
}

.fl-step-head {
    position: relative;

    display: flex;
    align-items: center;

    margin-bottom: 42px;
}

.fl-step-number {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.02);

    color: rgba(255, 255, 255, 0.78);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: -0.02em;
}

/* Старую линию из HTML скрываем */
.fl-step-line {
    display: none;
}

/* Линия слева от кружка */
.fl-step-number::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% + 22px);

    width: clamp(62px, 7vw, 160px);
    height: 1px;

    transform: translateY(-50%);

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.00) 0%,
            rgba(255, 255, 255, 0.12) 100%
        );

    opacity: 0;
    pointer-events: none;
}

/* Линия справа от кружка */
.fl-step-number::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 22px);

    width: clamp(62px, 7vw, 160px);
    height: 1px;

    transform: translateY(-50%);

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.00) 100%
        );

    opacity: 0;
    pointer-events: none;
}

/* У первого шага нет линии слева */
.fl-approach-step:first-child .fl-step-number::before {
    display: none;
}

/* У последнего шага нет линии справа */
.fl-approach-step:last-child .fl-step-number::after {
    display: none;
}

.fl-approach-step h3 {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(18px, 1.2vw, 21px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.fl-approach-step p {
    margin: 18px 0 0;

    max-width: 220px;

    color: rgba(255, 255, 255, 0.52);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.92vw, 15px);
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* ================================
   ACTIVE / INTERACTIVE STATE
================================ */

.fl-approach-step .fl-step-number,
.fl-approach-step .fl-step-number::before,
.fl-approach-step .fl-step-number::after,
.fl-approach-step h3,
.fl-approach-step p {
    transition:
        color 260ms ease,
        background 260ms ease,
        border-color 260ms ease,
        box-shadow 260ms ease,
        opacity 260ms ease;
}

.fl-approach-step.is-active .fl-step-number {
    color: #FFFFFF;
    border-color: rgba(89, 128, 255, 0.76);
    background: rgba(15, 42, 95, 0.58);
    box-shadow:
        0 0 0 6px rgba(15, 42, 95, 0.18),
        0 0 34px rgba(89, 128, 255, 0.34);
}

/* Активная линия слева: ярче возле кружка, бледнее дальше */
.fl-approach-step.is-active .fl-step-number::before {
    opacity: 1;

    background:
        linear-gradient(
            90deg,
            rgba(127, 162, 255, 0.00) 0%,
            rgba(127, 162, 255, 0.18) 48%,
            rgba(127, 162, 255, 0.76) 100%
        );
}

/* Активная линия справа: ярче возле кружка, бледнее дальше */
.fl-approach-step.is-active .fl-step-number::after {
    opacity: 1;

    background:
        linear-gradient(
            90deg,
            rgba(127, 162, 255, 0.76) 0%,
            rgba(127, 162, 255, 0.18) 52%,
            rgba(127, 162, 255, 0.00) 100%
        );
}

.fl-approach-step.is-active h3 {
    color: #FFFFFF;
}

.fl-approach-step.is-active p {
    color: rgba(255, 255, 255, 0.66);
}

@media (hover: hover) {
    .fl-approach-step:hover .fl-step-number {
        border-color: rgba(127, 162, 255, 0.48);
    }

    .fl-approach-step:hover h3 {
        color: #FFFFFF;
    }
}

/* ================================
   APPROACH RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-approach-steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .fl-approach-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fl-approach-info {
        max-width: 680px;
    }

    .fl-approach-title {
        max-width: 520px;
    }

    .fl-approach-text {
        max-width: 600px;
    }

    .fl-approach-link {
        margin-top: 34px;
    }
}

@media (max-width: 1100px) {
    .fl-approach-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 28px;
    }

    .fl-step-number::before,
    .fl-step-number::after {
        display: none;
    }

    .fl-approach-step p {
        max-width: 280px;
    }
}

@media (max-width: 900px) {
    .fl-approach-inner {
        padding:
            64px
            24px
            76px;
    }

    .fl-approach-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 28px;
    }

    .fl-step-head {
        margin-bottom: 28px;
    }

    .fl-step-number::before,
    .fl-step-number::after {
        display: none;
    }

    .fl-approach-step p {
        max-width: 280px;
    }
}

@media (max-width: 620px) {
    .fl-approach-inner {
        padding:
            56px
            18px
            68px;
    }

    .fl-approach-title {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.02;
    }

    .fl-approach-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-approach-steps {
        grid-template-columns: 1fr;
        gap: 28px;

        padding-top: 8px;
    }

    .fl-approach-step {
        padding: 24px 22px;

        border-radius: 24px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid rgba(255, 255, 255, 0.08);

        transition:
            background 220ms ease,
            border-color 220ms ease;
    }

    .fl-approach-step.is-active {
        background: rgba(15, 42, 95, 0.20);
        border-color: rgba(127, 162, 255, 0.22);
    }

    .fl-step-head {
        display: flex;
        align-items: center;
        gap: 18px;

        margin-bottom: 22px;
    }

    .fl-step-number {
        width: 48px;
        height: 48px;
        font-size: 15px;
        flex: 0 0 auto;
    }

    .fl-step-number::before,
    .fl-step-number::after {
        display: none;
    }

    .fl-approach-step p {
        max-width: none;
        margin-top: 14px;
    }
}







/* ================================
   CASES SECTION
================================ */

.fl-cases {
    position: relative;
    width: 100%;
    background: #F7F8FA;
    border-top: 1px solid rgba(10, 14, 23, 0.08);
    overflow: hidden;
}

.fl-cases-inner {
    width: 100%;
    margin: 0;

    padding:
        clamp(78px, 7vw, 118px)
        0
        clamp(82px, 7vw, 122px)
        clamp(32px, 4.7vw, 76px);

    display: grid;
    grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
    gap: clamp(44px, 5.2vw, 88px);
    align-items: start;
}

/* ================================
   CASES LEFT
================================ */

.fl-cases-info {
    max-width: 360px;
    padding-right: 12px;
}

.fl-cases-title {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.fl-cases-text {
    margin: 26px 0 0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.62;
    letter-spacing: -0.012em;
    font-weight: 400;
}

.fl-cases-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 42px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: clamp(13px, 0.78vw, 15px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;

    transition:
        gap 180ms ease,
        opacity 180ms ease;
}

.fl-cases-link:hover {
    gap: 18px;
    opacity: 0.78;
}

/* ================================
   CASES GALLERY
================================ */

.fl-cases-gallery-wrap {
    position: relative;
    min-width: 0;
}

.fl-cases-controls {
    position: absolute;
    top: -58px;
    right: clamp(32px, 4.7vw, 76px);
    z-index: 4;

    display: flex;
    gap: 10px;
}

.fl-cases-control {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1.5px solid rgba(15, 42, 95, 0.22);
    background: rgba(255, 255, 255, 0.72);

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 650;

    cursor: pointer;

    transition:
        transform 180ms ease,
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-cases-control:hover {
    transform: translateY(-1px);
    color: #FFFFFF;
    background: var(--fl-blue);
    border-color: var(--fl-blue);
}

.fl-cases-gallery {
    width: 100%;
    min-width: 0;

    overflow-x: auto;
    overflow-y: hidden;

    padding-top: 8px;
    padding-right: clamp(32px, 4.7vw, 76px);
    padding-bottom: 12px;

    margin-top: -8px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fl-cases-gallery::-webkit-scrollbar {
    display: none;
}

.fl-cases-track {
    display: flex;
    align-items: stretch;
    gap: clamp(18px, 1.7vw, 28px);

    width: max-content;

    padding-left: clamp(8px, 1vw, 16px);
    padding-right: clamp(120px, 16vw, 280px);
}

/* ================================
   CASE CARD
================================ */

.fl-case-card {
    width: clamp(292px, 22vw, 350px);
    flex: 0 0 auto;

    display: flex;
    flex-direction: column;

    min-height: 430px;
    padding: 24px 24px 22px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(10, 14, 23, 0.10);
    border-radius: 24px;

    scroll-snap-align: center;

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.fl-case-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 42, 95, 0.22);
}

.fl-case-card-accent {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(238, 243, 250, 0.90) 100%
        );

    border-color: rgba(15, 42, 95, 0.16);
}

.fl-case-card-soft {
    background:
        linear-gradient(
            135deg,
            rgba(127, 162, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.88) 48%,
            rgba(255, 255, 255, 0.78) 100%
        );

    border-color: rgba(15, 42, 95, 0.14);
}

.fl-case-card-dark {
    background:
        linear-gradient(
            135deg,
            #0F2A5F 0%,
            #0A1734 62%,
            #07101E 100%
        );

    border-color: rgba(127, 162, 255, 0.28);
}

.fl-case-card-dark:hover {
    background:
        linear-gradient(
            135deg,
            #12306B 0%,
            #0B1A3A 62%,
            #07101E 100%
        );

    border-color: rgba(127, 162, 255, 0.48);
}

/* ================================
   CASE TOP
================================ */

.fl-case-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;

    margin-bottom: 30px;
}

.fl-case-number {
    color: rgba(15, 42, 95, 0.42);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: -0.02em;
}

.fl-case-tag {
    min-height: 28px;
    padding: 0 11px;

    display: inline-flex;
    align-items: center;

    border-radius: 999px;
    background: rgba(15, 42, 95, 0.06);
    border: 1px solid rgba(15, 42, 95, 0.08);

    color: #687083;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 760;
    letter-spacing: -0.01em;

    white-space: nowrap;
}

.fl-case-card-dark .fl-case-number {
    color: rgba(158, 184, 255, 0.72);
}

.fl-case-card-dark .fl-case-tag {
    background: rgba(127, 162, 255, 0.12);
    border-color: rgba(127, 162, 255, 0.18);
    color: #BFD0FF;
}

/* ================================
   CASE BODY
================================ */

.fl-case-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fl-case-body h3 {
    margin: 0;

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(19px, 1.2vw, 22px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 740;
}

.fl-case-pain {
    margin: 17px 0 0;

    color: #687083;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.58;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.fl-case-solution {
    margin-top: 22px;
    padding-top: 20px;

    border-top: 1px solid rgba(15, 42, 95, 0.10);
}

.fl-case-solution span {
    display: block;

    margin-bottom: 9px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fl-case-solution p {
    margin: 0;

    color: #4F5868;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: -0.01em;
    font-weight: 430;
}

.fl-case-result {
    margin-top: auto;
    padding-top: 24px;

    color: #263044;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    font-weight: 720;
}

/* ================================
   DARK CARD TEXT
================================ */

.fl-case-card-dark .fl-case-body h3 {
    color: #FFFFFF;
}

.fl-case-card-dark .fl-case-pain,
.fl-case-card-dark .fl-case-solution p {
    color: rgba(255, 255, 255, 0.66);
}

.fl-case-card-dark .fl-case-solution {
    border-top-color: rgba(255, 255, 255, 0.13);
}

.fl-case-card-dark .fl-case-solution span {
    color: #9EB8FF;
}

.fl-case-card-dark .fl-case-result {
    color: rgba(255, 255, 255, 0.86);
}

/* ================================
   FUTURE CASE LINK
   Сейчас ссылки закомментированы в HTML.
   Когда страницы будут готовы — раскомментируй <a>.
================================ */

.fl-case-open {
    margin-top: 24px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: max-content;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.01em;

    transition:
        gap 180ms ease,
        opacity 180ms ease;
}

.fl-case-open:hover {
    gap: 16px;
    opacity: 0.78;
}

.fl-case-card-dark .fl-case-open {
    color: #9EB8FF;
}

/* ================================
   CASES RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-cases-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .fl-cases-info {
        max-width: 680px;
        padding-right: clamp(32px, 4.7vw, 76px);
    }

    .fl-cases-text {
        max-width: 620px;
    }

    .fl-cases-link {
        margin-top: 34px;
    }

    .fl-cases-controls {
        top: -56px;
    }
}

@media (max-width: 900px) {
    .fl-cases-inner {
        padding:
            64px
            0
            76px
            24px;
    }

    .fl-cases-info {
        padding-right: 24px;
    }

    .fl-cases-gallery {
        padding-right: 24px;
        padding-top: 8px;
        padding-bottom: 12px;
        margin-top: -8px;
    }
    

    .fl-cases-controls {
        position: static;
        margin: -12px 24px 24px auto;
        justify-content: flex-end;
    }

    .fl-case-card {
        width: min(78vw, 350px);
        min-height: 420px;
    }
}

@media (max-width: 620px) {
    .fl-cases-inner {
        padding:
            56px
            0
            68px
            18px;
    }

    .fl-cases-info {
        padding-right: 18px;
    }

    .fl-cases-title {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.06;
    }

    .fl-cases-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-cases-link {
        margin-top: 30px;
    }

    .fl-cases-gallery {
        padding-right: 18px;
        padding-top: 8px;
        padding-bottom: 12px;
        margin-top: -8px;
    }

    .fl-cases-controls {
        margin-right: 18px;
    }

    .fl-cases-track {
        gap: 16px;
        padding-left: 0;
        padding-right: 70px;
    }

    .fl-case-card {
        width: min(84vw, 330px);
        min-height: auto;

        padding: 22px 20px 20px;
        border-radius: 22px;
    }

    .fl-case-top {
        margin-bottom: 26px;
    }

    .fl-case-body h3 {
        font-size: 21px;
    }

    .fl-case-pain {
        font-size: 13.5px;
        line-height: 1.56;
    }

    .fl-case-solution p,
    .fl-case-result {
        font-size: 12.8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-cases-control,
    .fl-cases-link,
    .fl-case-card,
    .fl-case-open {
        transition: none;
    }
}











/* ================================
   TEAM SECTION
================================ */

.fl-team {
    position: relative;
    width: 100%;
    background: #F7F8FA;
    border-top: 1px solid rgba(10, 14, 23, 0.08);
    overflow: hidden;
}

.fl-team-inner {
    width: 100%;
    margin: 0;

    padding:
        clamp(78px, 7vw, 118px)
        clamp(32px, 4.7vw, 76px)
        clamp(82px, 7vw, 122px);
}

/* ================================
   TEAM HEAD
================================ */

.fl-team-head {
    max-width: 980px;
    margin-bottom: clamp(44px, 5vw, 78px);
}

.fl-team-title-wrap {
    max-width: 980px;
}

.fl-team-title {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(36px, 3.45vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.fl-team-text {
    max-width: 660px;
    margin: 26px 0 0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.65;
    letter-spacing: -0.012em;
    font-weight: 400;
}

/* ================================
   TEAM GRID
================================ */

.fl-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 2vw, 34px);
}

.fl-team-card {
    position: relative;

    min-height: 390px;
    padding: clamp(26px, 2.4vw, 36px);

    display: flex;
    flex-direction: column;

    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(10, 14, 23, 0.10);

    overflow: hidden;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(255, 255, 255, 0.00) 42%
        );
}

.fl-team-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 42, 95, 0.22);
}

.fl-team-card-featured {
    background: rgba(255, 255, 255, 0.82);
}

/* ================================
   TEAM CARD TOP
================================ */

.fl-team-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 54px;
}

/* ================================
   CARD AVATAR FLIP
================================ */

.fl-team-avatar-flip {
    width: 72px;
    height: 72px;
    perspective: 900px;
    flex: 0 0 auto;
}

.fl-team-avatar-inner {
    position: relative;
    width: 100%;
    height: 100%;

    transform-style: preserve-3d;
    transition: transform 560ms cubic-bezier(.2, .8, .2, 1);
}

.fl-team-card:hover .fl-team-avatar-inner {
    transform: rotateY(180deg);
}

.fl-team-avatar-front,
.fl-team-avatar-back {
    position: absolute;
    inset: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;
    overflow: hidden;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.fl-team-avatar-front {
    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.00) 36%
        ),
        var(--fl-blue);

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -0.04em;
}

.fl-team-avatar-dark {
    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.00) 36%
        ),
        #111722;
}

.fl-team-avatar-back {
    transform: rotateY(180deg);

    background-color: #DDE3EC;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Фото на обратной стороне карточек */
.fl-team-avatar-vladimir .fl-team-avatar-back {
    background-image: url("/static/img/team/vladimir.jpg");
}

.fl-team-avatar-aigul .fl-team-avatar-back {
    background-image: url("/static/img/team/aigul.jpg");
}

.fl-team-avatar-igor .fl-team-avatar-back {
    background-image: url("/static/img/team/igor.jpg");
}

/* ================================
   TEAM ROLE
================================ */

.fl-team-role {
    min-height: 32px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;

    border-radius: 999px;
    background: rgba(15, 42, 95, 0.07);
    border: 1px solid rgba(15, 42, 95, 0.10);

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -0.01em;
}

/* ================================
   TEAM CARD BODY
================================ */

.fl-team-card-body {
    position: relative;
    z-index: 2;
}

.fl-team-card h3 {
    margin: 0;

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(28px, 2.1vw, 38px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 700;
}

.fl-team-card p {
    max-width: 520px;
    margin: 22px 0 0;

    color: #687083;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.95vw, 16px);
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* ================================
   TEAM TAGS
================================ */

.fl-team-tags {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 34px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fl-team-tags span {
    min-height: 31px;
    padding: 0 12px;

    display: inline-flex;
    align-items: center;

    border-radius: 999px;
    background: #EEF1F5;

    color: #667083;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* ================================
   TEAM MORE BUTTON
================================ */

.fl-team-more {
    position: relative;
    z-index: 2;

    margin-top: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: max-content;
    min-height: 42px;
    padding: 0 18px;

    border-radius: 999px;
    border: 1.5px solid rgba(15, 42, 95, 0.34);
    background: rgba(255, 255, 255, 0.56);

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;

    cursor: pointer;

    transition:
        transform 180ms ease,
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-team-more:hover {
    transform: translateY(-1px);
    color: #FFFFFF;
    background: var(--fl-blue);
    border-color: var(--fl-blue);
}

/* ================================
   TEAM MODAL
================================ */

.fl-team-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.fl-team-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fl-team-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(5, 10, 18, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fl-team-modal-panel {
    position: relative;
    z-index: 2;

    width: min(1080px, 100%);
    max-height: min(760px, calc(100vh - 48px));

    overflow-y: auto;

    padding: clamp(26px, 3vw, 42px);

    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(247, 248, 250, 0.96) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.72);

    box-shadow:
        0 28px 90px rgba(5, 10, 18, 0.34);

    transform: translateY(16px) scale(0.98);

    transition:
        transform 220ms ease;
}

.fl-team-modal.is-open .fl-team-modal-panel {
    transform: translateY(0) scale(1);
}

.fl-team-modal-close {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 999px;
    border: 1px solid rgba(10, 14, 23, 0.10);
    background: rgba(255, 255, 255, 0.72);

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 0;
    line-height: 1;

    cursor: pointer;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.fl-team-modal-close span {
    display: block;

    font-size: 28px;
    line-height: 1;
    font-weight: 400;

    transform: translateY(-1px);
}

.fl-team-modal-close:hover {
    transform: rotate(4deg);
    background: var(--fl-blue);
    color: #FFFFFF;
}

/* ================================
   TEAM MODAL HEAD
================================ */

.fl-team-modal-head {
    display: flex;
    align-items: center;
    gap: 20px;

    padding-right: 54px;
    margin-bottom: clamp(28px, 3vw, 44px);
}

/* Фото в модалках */
.fl-team-modal-photo {
    width: 78px;
    height: 78px;

    flex: 0 0 auto;

    border-radius: 26px;
    overflow: hidden;

    background-color: #DDE3EC;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid rgba(10, 14, 23, 0.10);
}

.fl-team-modal-photo-vladimir {
    background-image: url("/static/img/team/vladimir.jpg");
}

.fl-team-modal-photo-aigul {
    background-image: url("/static/img/team/aigul.jpg");
}

.fl-team-modal-photo-igor {
    background-image: url("/static/img/team/igor.jpg");
}

/* Старый вариант с буквами оставлен как резерв */
.fl-team-modal-avatar {
    width: 78px;
    height: 78px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 26px;
    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(255, 255, 255, 0.28) 0%,
            rgba(255, 255, 255, 0.00) 36%
        ),
        var(--fl-blue);

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: -0.04em;
}

.fl-team-modal-avatar-dark {
    background:
        radial-gradient(
            circle at 28% 22%,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.00) 36%
        ),
        #111722;
}

.fl-team-modal-kicker {
    margin-bottom: 8px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fl-team-modal-head h3 {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 750;
}

/* ================================
   TEAM MODAL CONTENT
================================ */

.fl-team-modal-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(28px, 4vw, 56px);
}

.fl-team-modal-main,
.fl-team-modal-side {
    min-width: 0;
}

.fl-team-modal-main h4,
.fl-team-modal-side h4 {
    margin: 0 0 14px;

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.fl-team-modal-main h4:not(:first-child) {
    margin-top: 34px;
}

.fl-team-modal-main p,
.fl-team-modal-main li {
    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.fl-team-modal-main p {
    margin: 0;
}

.fl-team-modal-main ul {
    margin: 0;
    padding-left: 18px;
}

.fl-team-modal-main li + li {
    margin-top: 8px;
}

/* ================================
   STACK BADGES
================================ */

.fl-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 18px;
}

.fl-stack-badge {
    position: relative;

    min-height: 42px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1px solid rgba(15, 42, 95, 0.14);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(238, 241, 245, 0.86) 100%
        );

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.015em;

    cursor: default;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.fl-stack-badge:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
    background: var(--fl-blue);
    border-color: var(--fl-blue);
}

/* tooltip */

.fl-stack-badge::after {
    content: attr(data-stack-title);

    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);

    width: max-content;
    max-width: 220px;

    padding: 8px 10px;

    border-radius: 10px;
    background: #0A0E17;

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) translateY(4px);

    transition:
        opacity 160ms ease,
        visibility 160ms ease,
        transform 160ms ease;

    z-index: 5;
}

.fl-stack-badge::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);

    width: 8px;
    height: 8px;

    background: #0A0E17;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) rotate(45deg);

    transition:
        opacity 160ms ease,
        visibility 160ms ease;

    z-index: 4;
}

.fl-stack-badge:hover::after,
.fl-stack-badge:hover::before {
    opacity: 1;
    visibility: visible;
}

.fl-stack-badge:hover::after {
    transform: translateX(-50%) translateY(0);
}

/* ================================
   MODAL NOTE
================================ */

.fl-team-modal-note {
    margin-top: 30px;
    padding: 20px 22px;

    border-radius: 22px;
    background: rgba(15, 42, 95, 0.06);
    border: 1px solid rgba(15, 42, 95, 0.10);

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.fl-team-modal-note span {
    display: block;

    margin-bottom: 8px;

    color: var(--fl-blue);

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

/* ================================
   TEAM RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-team-title-wrap {
        max-width: 760px;
    }

    .fl-team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fl-team-card {
        min-height: 370px;
    }
}

@media (max-width: 1100px) {
    .fl-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .fl-team-inner {
        padding:
            64px
            24px
            76px;
    }

    .fl-team-grid {
        grid-template-columns: 1fr;
    }

    .fl-team-card {
        min-height: 340px;
        border-radius: 24px;
    }

    .fl-team-modal {
        padding: 16px;
    }

    .fl-team-modal-panel {
        max-height: calc(100vh - 32px);
        border-radius: 26px;
    }

    .fl-team-modal-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    .fl-team-inner {
        padding:
            56px
            18px
            68px;
    }

    .fl-team-head {
        margin-bottom: 34px;
    }

    .fl-team-title {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.05;
    }

    .fl-team-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-team-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 22px;
    }

    .fl-team-card-top {
        margin-bottom: 42px;
        align-items: flex-start;
        flex-direction: column;
    }

    .fl-team-avatar-flip {
        width: 64px;
        height: 64px;
    }

    .fl-team-avatar-front,
    .fl-team-avatar-back {
        border-radius: 22px;
    }

    .fl-team-avatar-front {
        font-size: 25px;
    }

    .fl-team-card h3 {
        font-size: 30px;
    }

    .fl-team-card p {
        margin-top: 18px;
    }

    .fl-team-tags {
        padding-top: 28px;
    }

    .fl-team-more {
        width: 100%;
        margin-top: 20px;
    }

    .fl-team-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .fl-team-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 24px 20px 26px;

        border-radius: 26px 26px 0 0;
    }

    .fl-team-modal-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .fl-team-modal-close span {
        font-size: 25px;
    }

    .fl-team-modal-head {
        align-items: flex-start;
        gap: 16px;
        padding-right: 44px;
        margin-bottom: 30px;
    }

    .fl-team-modal-avatar,
    .fl-team-modal-photo {
        width: 62px;
        height: 62px;
        border-radius: 22px;
        font-size: 25px;
    }

    .fl-team-modal-head h3 {
        font-size: 34px;
    }

    .fl-stack-grid {
        gap: 8px;
    }

    .fl-stack-badge {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-team-avatar-inner,
    .fl-team-card,
    .fl-team-more,
    .fl-team-modal,
    .fl-team-modal-panel,
    .fl-stack-badge {
        transition: none;
    }

    .fl-team-card:hover .fl-team-avatar-inner {
        transform: none;
    }
}











/* ================================
   ADVANTAGES SECTION
================================ */

.fl-advantages {
    position: relative;
    width: 100%;
    background: #F7F8FA;
    border-top: 1px solid rgba(10, 14, 23, 0.08);
    overflow: hidden;
}

/* Тёмная зона слева — строго под левую колонку */
.fl-advantages::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: calc(clamp(32px, 4.7vw, 76px) + 360px);

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(127, 162, 255, 0.24) 0%,
            rgba(127, 162, 255, 0.07) 28%,
            rgba(127, 162, 255, 0.00) 58%
        ),
        linear-gradient(
            135deg,
            #07101E 0%,
            #0A1734 56%,
            #050A12 100%
        );

    pointer-events: none;
}

/* Тонкая граница между тёмной и светлой зонами */
.fl-advantages::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(clamp(32px, 4.7vw, 76px) + 360px);

    width: 1px;

    background:
        linear-gradient(
            180deg,
            rgba(127, 162, 255, 0.00) 0%,
            rgba(127, 162, 255, 0.30) 45%,
            rgba(127, 162, 255, 0.00) 100%
        );

    pointer-events: none;
}

.fl-advantages-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    margin: 0;

    padding:
        clamp(78px, 7vw, 118px)
        clamp(32px, 4.7vw, 76px)
        clamp(82px, 7vw, 122px);

    display: grid;
    grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
    gap: clamp(58px, 6vw, 112px);
    align-items: stretch;
}

/* ================================
   LEFT SIDE
================================ */

.fl-advantages-info {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 100%;
    max-width: 360px;

    padding-right: clamp(30px, 3.4vw, 54px);
}

.fl-section-label-advantages {
    color: #7FA2FF;
}

.fl-advantages-title {
    margin: 0;

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(32px, 2.7vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.052em;
    font-weight: 720;
}

.fl-advantages-text {
    max-width: 330px;
    margin: 28px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.98vw, 16px);
    line-height: 1.7;
    letter-spacing: -0.012em;
    font-weight: 400;
}

.fl-advantages-side-note {
    margin-top: 46px;

    display: grid;
    grid-template-columns: 1px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.fl-advantages-side-note span {
    display: block;
    width: 1px;
    height: 68px;

    background:
        linear-gradient(
            180deg,
            rgba(127, 162, 255, 0.92) 0%,
            rgba(127, 162, 255, 0.16) 100%
        );
}

.fl-advantages-side-note p {
    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.7;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ================================
   RIGHT SIDE
================================ */

.fl-advantages-content {
    min-width: 0;

    opacity: 0;
    transform: translateY(16px);

    transition:
        opacity 620ms ease,
        transform 620ms ease;
}

.fl-advantages-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fl-advantages-lead {
    padding-bottom: clamp(24px, 2.4vw, 34px);
    border-bottom: 1px solid rgba(15, 42, 95, 0.10);
}

.fl-advantages-lead span {
    display: block;
    margin-bottom: 14px;

    color: #6F98FF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.fl-advantages-lead p {
    max-width: 820px;
    margin: 0;

    color: #111722;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(23px, 1.55vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.048em;
    font-weight: 720;
}

/* ================================
   LIST
================================ */

.fl-advantages-list {
    margin-top: clamp(26px, 2.8vw, 42px);

    display: flex;
    flex-direction: column;
}

.fl-advantage-row {
    position: relative;

    display: grid;
    grid-template-columns: minmax(118px, 148px) minmax(0, 1fr);
    gap: clamp(20px, 2.2vw, 36px);

    padding:
        clamp(25px, 2.2vw, 33px)
        clamp(18px, 2vw, 30px);

    border-top: 1px solid rgba(15, 42, 95, 0.10);
    border-radius: 22px;

    background: transparent;

    opacity: 0;
    transform: translateY(14px);

    transition:
        opacity 520ms ease,
        transform 520ms ease,
        background 220ms ease,
        border-color 220ms ease;
}

.fl-advantage-row:first-child {
    border-top-color: transparent;
}

.fl-advantages-content.is-visible .fl-advantage-row {
    opacity: 1;
    transform: translateY(0);
}

.fl-advantages-content.is-visible .fl-advantage-row:nth-child(1) {
    transition-delay: 80ms;
}

.fl-advantages-content.is-visible .fl-advantage-row:nth-child(2) {
    transition-delay: 150ms;
}

.fl-advantages-content.is-visible .fl-advantage-row:nth-child(3) {
    transition-delay: 220ms;
}

.fl-advantages-content.is-visible .fl-advantage-row:nth-child(4) {
    transition-delay: 290ms;
}

.fl-advantages-content.is-visible .fl-advantage-row:nth-child(5) {
    transition-delay: 360ms;
}

.fl-advantage-row:hover {
    border-top-color: transparent;

    background:
        linear-gradient(
            90deg,
            rgba(127, 162, 255, 0.10) 0%,
            rgba(127, 162, 255, 0.045) 48%,
            rgba(127, 162, 255, 0.00) 100%
        );
}

.fl-advantage-kicker {
    padding-top: 4px;

    color: #6F98FF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition:
        color 220ms ease;
}

.fl-advantage-row:hover .fl-advantage-kicker {
    color: #4F7DFF;
}

.fl-advantage-body h3 {
    margin: 0;

    color: #111722;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(21px, 1.36vw, 26px);
    line-height: 1.12;
    letter-spacing: -0.046em;
    font-weight: 720;

    transition:
        color 220ms ease;
}

.fl-advantage-row:hover .fl-advantage-body h3 {
    color: #07101E;
}

.fl-advantage-body p {
    max-width: 760px;
    margin: 13px 0 0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.92vw, 15px);
    line-height: 1.66;
    letter-spacing: -0.01em;
    font-weight: 400;

    transition:
        color 220ms ease;
}

.fl-advantage-row:hover .fl-advantage-body p {
    color: #465163;
}

/* Акцентная строка — без левой линии и без карточки */
.fl-advantage-row-accent .fl-advantage-kicker {
    color: var(--fl-blue);
}

.fl-advantage-row-accent {
    background:
        linear-gradient(
            90deg,
            rgba(127, 162, 255, 0.075) 0%,
            rgba(127, 162, 255, 0.030) 48%,
            rgba(127, 162, 255, 0.00) 100%
        );
}

/* ================================
   RESULT
================================ */

.fl-advantages-result {
    margin-top: clamp(28px, 3vw, 42px);
    padding-top: clamp(22px, 2.2vw, 32px);

    border-top: 1px solid rgba(15, 42, 95, 0.12);

    opacity: 0;
    transform: translateY(14px);

    transition:
        opacity 520ms ease 420ms,
        transform 520ms ease 420ms;
}

.fl-advantages-content.is-visible .fl-advantages-result {
    opacity: 1;
    transform: translateY(0);
}

.fl-advantages-result span {
    display: block;
    margin-bottom: 12px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fl-advantages-result p {
    max-width: 880px;
    margin: 0;

    color: #263044;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(15px, 0.98vw, 16px);
    line-height: 1.66;
    letter-spacing: -0.012em;
    font-weight: 500;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-advantages::before {
        width: 100%;
        height: 430px;
        bottom: auto;
    }

    .fl-advantages::after {
        display: none;
    }

    .fl-advantages-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .fl-advantages-info {
        max-width: 760px;
        min-height: 300px;
        padding-right: 22px;
    }

    .fl-advantages-text {
        max-width: 680px;
    }

    .fl-advantages-side-note {
        margin-top: 34px;
        max-width: 480px;
    }

    .fl-advantages-content {
        max-width: none;
    }

    .fl-advantages-lead p {
        max-width: 860px;
    }
}

@media (max-width: 900px) {
    .fl-advantages-inner {
        padding:
            64px
            24px
            76px;
    }

    .fl-advantage-row {
        grid-template-columns: 1fr;
        gap: 12px;

        padding:
            24px
            18px;
    }

    .fl-advantage-kicker {
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .fl-advantages::before {
        height: 460px;
    }

    .fl-advantages-inner {
        padding:
            56px
            18px
            68px;
        gap: 38px;
    }

    .fl-advantages-info {
        min-height: 340px;
        padding-right: 22px;
    }

    .fl-advantages-title {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.05;
    }

    .fl-advantages-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-advantages-side-note {
        margin-top: 34px;
    }

    .fl-advantages-lead p {
        font-size: clamp(22px, 6.4vw, 30px);
        line-height: 1.15;
    }

    .fl-advantage-row {
        padding:
            23px
            16px;

        border-radius: 20px;
    }

    .fl-advantage-body h3 {
        font-size: 22px;
    }

    .fl-advantage-body p {
        font-size: 14px;
        line-height: 1.65;
    }

    .fl-advantages-result p {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-advantages-content,
    .fl-advantage-row,
    .fl-advantages-result,
    .fl-advantage-kicker,
    .fl-advantage-body h3,
    .fl-advantage-body p {
        opacity: 1;
        transform: none;
        transition: none;
    }
}








/* ================================
   OFFERS SECTION
================================ */

.fl-offers {
    position: relative;
    width: 100%;
    background: #F7F8FA;
    overflow: hidden;
}

.fl-offers-inner {
    width: 100%;
    margin: 0;

    padding:
        clamp(48px, 5vw, 76px)
        clamp(32px, 4.7vw, 76px)
        clamp(82px, 7vw, 122px);
}

.fl-offers-panel {
    position: relative;
    overflow: hidden;

    padding:
        clamp(42px, 5vw, 76px)
        clamp(32px, 4.5vw, 72px);

    border-radius: clamp(28px, 3vw, 44px);

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(127, 162, 255, 0.24) 0%,
            rgba(127, 162, 255, 0.08) 28%,
            rgba(127, 162, 255, 0.00) 58%
        ),
        linear-gradient(
            135deg,
            #07101E 0%,
            #0A0E17 52%,
            #050A12 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.fl-offers-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.00) 30%,
            rgba(255, 255, 255, 0.00) 100%
        );
}

.fl-offers-glow {
    position: absolute;
    right: clamp(32px, 5vw, 90px);
    top: clamp(34px, 4vw, 64px);

    width: min(460px, 42vw);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(127, 162, 255, 0.00) 0%,
            rgba(127, 162, 255, 0.30) 36%,
            rgba(127, 162, 255, 0.90) 62%,
            rgba(255, 255, 255, 0.28) 100%
        );

    box-shadow:
        0 0 18px rgba(127, 162, 255, 0.42);

    opacity: 0.86;
}

/* head */

.fl-offers-head {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(230px, 330px) minmax(0, 1fr);
    gap: clamp(40px, 5vw, 88px);
    align-items: start;

    margin-bottom: clamp(42px, 5vw, 74px);
}

.fl-section-label-blue {
    color: #7FA2FF;
    text-shadow: 0 0 22px rgba(127, 162, 255, 0.42);
}

.fl-offers-title-wrap {
    max-width: 900px;
}

.fl-offers-title {
    margin: 0;

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.fl-offers-text {
    max-width: 720px;
    margin: 26px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.65;
    letter-spacing: -0.012em;
    font-weight: 400;
}

/* grid */

.fl-offers-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;

    overflow: hidden;

    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.10);
}

.fl-offer-card {
    position: relative;

    min-height: 258px;
    padding: clamp(24px, 2.4vw, 34px);

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.085) 0%,
            rgba(255, 255, 255, 0.035) 100%
        );

    overflow: hidden;

    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.fl-offer-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background: #7FA2FF;
    box-shadow:
        0 0 18px rgba(127, 162, 255, 0.80);

    transition: height 220ms ease;
}

.fl-offer-card::after {
    content: "";
    position: absolute;
    right: -35%;
    top: -40%;

    width: 70%;
    height: 90%;

    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(127, 162, 255, 0.14) 0%,
            rgba(127, 162, 255, 0.00) 62%
        );

    opacity: 0;
    transition: opacity 220ms ease;
}

.fl-offer-card:hover {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.055) 100%
        );
}

.fl-offer-card:hover::before {
    height: 100%;
}

.fl-offer-card:hover::after {
    opacity: 1;
}

.fl-offer-number {
    margin-bottom: 34px;

    color: rgba(127, 162, 255, 0.92);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.fl-offer-card h3 {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(20px, 1.4vw, 26px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.fl-offer-card p {
    max-width: 390px;
    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.56);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.95vw, 15px);
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.fl-offer-more {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding: 28px 0 0;

    width: max-content;

    border: 0;
    background: transparent;

    color: #7FA2FF;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;

    cursor: pointer;

    transition:
        gap 180ms ease,
        opacity 180ms ease;
}

.fl-offer-more:hover {
    gap: 16px;
    opacity: 0.82;
}

/* footer CTA */

.fl-offers-footer {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    margin-top: clamp(32px, 4vw, 54px);
    padding-top: clamp(24px, 3vw, 34px);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.fl-offers-footer p {
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.60);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.fl-offers-footer-btn {
    min-height: 52px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    flex: 0 0 auto;

    border-radius: 999px;
    border: 1.5px solid rgba(127, 162, 255, 0.68);
    background: rgba(127, 162, 255, 0.10);

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-offers-footer-btn:hover {
    transform: translateY(-1px);
    background: rgba(127, 162, 255, 0.18);
    border-color: rgba(127, 162, 255, 0.90);
}

/* ================================
   OFFER MODAL
================================ */

.fl-offer-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 220ms ease,
        visibility 220ms ease;
}

.fl-offer-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fl-offer-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(5, 10, 18, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fl-offer-modal-panel {
    position: relative;
    z-index: 2;

    width: min(1080px, 100%);
    max-height: min(760px, calc(100vh - 48px));

    overflow-y: auto;

    padding: clamp(26px, 3vw, 42px);

    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(247, 248, 250, 0.96) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.72);

    box-shadow:
        0 28px 90px rgba(5, 10, 18, 0.34);

    transform: translateY(16px) scale(0.98);

    transition:
        transform 220ms ease;
}

.fl-offer-modal.is-open .fl-offer-modal-panel {
    transform: translateY(0) scale(1);
}

.fl-offer-modal-close {
    position: absolute;
    top: 22px;
    right: 22px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 999px;
    border: 1px solid rgba(10, 14, 23, 0.10);
    background: rgba(255, 255, 255, 0.72);

    color: #20242C;

    font-size: 0;
    line-height: 1;

    cursor: pointer;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.fl-offer-modal-close span {
    display: block;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;

    transform: translateY(-1px);
}

.fl-offer-modal-close:hover {
    transform: rotate(4deg);
    background: var(--fl-blue);
    color: #FFFFFF;
}

.fl-offer-modal-head {
    display: flex;
    align-items: center;
    gap: 20px;

    padding-right: 54px;
    margin-bottom: clamp(28px, 3vw, 44px);
}

.fl-offer-modal-number {
    width: 72px;
    height: 72px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 24px;
    background: rgba(15, 42, 95, 0.08);
    border: 1px solid rgba(15, 42, 95, 0.14);

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.fl-offer-modal-kicker {
    margin-bottom: 8px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fl-offer-modal-head h3 {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 750;
}

.fl-offer-modal-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(28px, 4vw, 56px);
}

.fl-offer-modal-main,
.fl-offer-modal-side {
    min-width: 0;
}

.fl-offer-modal-main h4,
.fl-offer-modal-side h4 {
    margin: 0 0 14px;

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.fl-offer-modal-main p,
.fl-offer-modal-side p,
.fl-offer-modal-main li {
    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.fl-offer-modal-main p,
.fl-offer-modal-side p {
    margin: 0;
}

.fl-offer-modal-main ul {
    margin: 24px 0 0;
    padding-left: 18px;
}

.fl-offer-modal-main li + li {
    margin-top: 8px;
}

/* price */

.fl-offer-price {
    margin-top: 24px;
    padding: 20px 22px;

    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 42, 95, 0.08) 0%,
            rgba(127, 162, 255, 0.08) 100%
        );
    border: 1px solid rgba(15, 42, 95, 0.12);
}

.fl-offer-price span {
    display: block;

    margin-bottom: 10px;

    color: var(--fl-blue);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fl-offer-price strong {
    display: block;

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 750;
}

.fl-offer-price p {
    margin: 14px 0 0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* modal CTA */

.fl-offer-cta {
    margin-top: 18px;

    min-height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;

    border-radius: 999px;
    border: 1.5px solid var(--fl-blue);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.10) 0%,
            rgba(255, 255, 255, 0.00) 42%
        ),
        var(--fl-blue);

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-offer-cta:hover {
    transform: translateY(-1px);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.00) 42%
        ),
        var(--fl-blue-hover);
    border-color: var(--fl-blue-hover);
}

.fl-offer-modal-note {
    margin-top: 24px;
    padding: 20px 22px;

    border-radius: 22px;
    background: rgba(15, 42, 95, 0.06);
    border: 1px solid rgba(15, 42, 95, 0.10);

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.fl-offer-modal-note span {
    display: block;

    margin-bottom: 8px;

    color: var(--fl-blue);

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

/* responsive */

@media (max-width: 1280px) {
    .fl-offers-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fl-offers-title-wrap {
        max-width: 760px;
    }

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

    .fl-offer-card {
        min-height: 240px;
    }
}

@media (max-width: 900px) {
    .fl-offers-inner {
        padding:
            48px
            24px
            76px;
    }

    .fl-offers-panel {
        padding:
            42px
            28px;

        border-radius: 32px;
    }

    .fl-offers-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .fl-offer-modal {
        padding: 16px;
    }

    .fl-offer-modal-panel {
        max-height: calc(100vh - 32px);
        border-radius: 26px;
    }

    .fl-offer-modal-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    .fl-offers-inner {
        padding:
            40px
            18px
            68px;
    }

    .fl-offers-panel {
        padding:
            34px
            20px;

        border-radius: 28px;
    }

    .fl-offers-title {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.06;
    }

    .fl-offers-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-offers-grid {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .fl-offer-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .fl-offer-number {
        margin-bottom: 26px;
    }

    .fl-offers-footer-btn {
        width: 100%;
    }

    .fl-offer-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .fl-offer-modal-panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 24px 20px 26px;

        border-radius: 26px 26px 0 0;
    }

    .fl-offer-modal-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .fl-offer-modal-close span {
        font-size: 25px;
    }

    .fl-offer-modal-head {
        align-items: flex-start;
        gap: 16px;
        padding-right: 44px;
        margin-bottom: 30px;
    }

    .fl-offer-modal-number {
        width: 60px;
        height: 60px;
        border-radius: 20px;
        font-size: 19px;
    }

    .fl-offer-modal-head h3 {
        font-size: 34px;
    }
}








/* ================================
   FAQ SECTION
================================ */

.fl-faq {
    position: relative;
    width: 100%;
    background: #F7F8FA;
    border-top: 1px solid rgba(10, 14, 23, 0.08);
    overflow: hidden;
}

.fl-faq-inner {
    width: 100%;
    margin: 0;

    padding:
        clamp(78px, 7vw, 118px)
        clamp(32px, 4.7vw, 76px)
        clamp(82px, 7vw, 122px);

    display: grid;
    grid-template-columns: minmax(270px, 420px) minmax(0, 1fr);
    gap: clamp(44px, 5.2vw, 88px);
    align-items: start;
}

/* left */

.fl-faq-info {
    max-width: 420px;
    position: sticky;
    top: 96px;
}

.fl-faq-title {
    margin: 0;

    color: var(--fl-text);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.fl-faq-text {
    margin: 26px 0 0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.65;
    letter-spacing: -0.012em;
    font-weight: 400;
}

/* list */

.fl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fl-faq-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(10, 14, 23, 0.10);

    overflow: hidden;

    transition:
        background-color 180ms ease,
        border-color 180ms ease;
}

.fl-faq-item:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(15, 42, 95, 0.18);
}

.fl-faq-item.is-open {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(15, 42, 95, 0.22);
}

.fl-faq-question {
    width: 100%;
    min-height: 78px;

    padding:
        0
        clamp(22px, 2.3vw, 34px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border: 0;
    background: transparent;

    color: #20242C;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-align: left;
    cursor: pointer;
}

.fl-faq-question span {
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.25;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.fl-faq-question i {
    position: relative;

    width: 34px;
    height: 34px;

    flex: 0 0 auto;

    border-radius: 999px;
    border: 1.5px solid rgba(15, 42, 95, 0.20);
    background: rgba(15, 42, 95, 0.04);

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.fl-faq-question i::before,
.fl-faq-question i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;

    width: 13px;
    height: 2px;

    border-radius: 999px;
    background: var(--fl-blue);

    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.fl-faq-question i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.fl-faq-item.is-open .fl-faq-question i {
    background: var(--fl-blue);
    border-color: var(--fl-blue);
    transform: rotate(180deg);
}

.fl-faq-item.is-open .fl-faq-question i::before,
.fl-faq-item.is-open .fl-faq-question i::after {
    background: #FFFFFF;
}

.fl-faq-item.is-open .fl-faq-question i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* answer animation */

.fl-faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition:
        grid-template-rows 220ms ease;
}

.fl-faq-item.is-open .fl-faq-answer {
    grid-template-rows: 1fr;
}

.fl-faq-answer > p {
    min-height: 0;
    overflow: hidden;

    margin: 0;
    padding:
        0
        clamp(22px, 2.3vw, 34px)
        0;

    color: #596070;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 0.98vw, 16px);
    line-height: 1.7;
    letter-spacing: -0.01em;
    font-weight: 400;

    transition:
        padding-bottom 220ms ease;
}

.fl-faq-item.is-open .fl-faq-answer > p {
    padding-bottom: clamp(24px, 2.4vw, 34px);
}

/* ================================
   FAQ RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-faq-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .fl-faq-info {
        position: static;
        max-width: 760px;
    }

    .fl-faq-text {
        max-width: 660px;
    }
}

@media (max-width: 900px) {
    .fl-faq-inner {
        padding:
            64px
            24px
            76px;
    }

    .fl-faq-question {
        min-height: 72px;
    }
}

@media (max-width: 620px) {
    .fl-faq-inner {
        padding:
            56px
            18px
            68px;
    }

    .fl-faq-title {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.06;
    }

    .fl-faq-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-faq-list {
        gap: 10px;
    }

    .fl-faq-item {
        border-radius: 20px;
    }

    .fl-faq-question {
        min-height: 68px;
        padding: 0 18px;
        gap: 16px;
    }

    .fl-faq-question span {
        font-size: 17px;
        line-height: 1.25;
    }

    .fl-faq-question i {
        width: 32px;
        height: 32px;
    }

    .fl-faq-answer > p {
        padding-left: 18px;
        padding-right: 18px;
        font-size: 14px;
    }

    .fl-faq-item.is-open .fl-faq-answer > p {
        padding-bottom: 24px;
    }
}









/* ================================
   CONTACT / FEEDBACK FORM
================================ */

.fl-contact {
    position: relative;
    width: 100%;
    background:
        radial-gradient(
            circle at 76% 8%,
            rgba(127, 162, 255, 0.34) 0%,
            rgba(127, 162, 255, 0.13) 24%,
            rgba(5, 10, 18, 0.00) 56%
        ),
        radial-gradient(
            circle at 16% 84%,
            rgba(63, 105, 230, 0.28) 0%,
            rgba(63, 105, 230, 0.09) 34%,
            rgba(5, 10, 18, 0.00) 64%
        ),
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 255, 255, 0.075) 0%,
            rgba(255, 255, 255, 0.025) 30%,
            rgba(5, 10, 18, 0.00) 62%
        ),
        linear-gradient(
            180deg,
            #0A1424 0%,
            #07101E 52%,
            #05070D 100%
        );

    border-top: 1px solid rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.fl-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 0.025) 24%,
            rgba(255, 255, 255, 0.00) 48%
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 0,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 84px
        );

    opacity: 0.46;
}

.fl-contact::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 180px;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(5, 10, 18, 0.00) 0%,
            rgba(5, 7, 13, 0.92) 100%
        );
}

.fl-contact-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    margin: 0;

    padding:
        clamp(82px, 7vw, 122px)
        var(--fl-page-x)
        clamp(82px, 7vw, 122px);
}

/* ================================
   CONTACT HEAD
================================ */

.fl-contact-head {
    display: grid;
    grid-template-columns: minmax(270px, var(--fl-left-col)) minmax(0, 1fr);
    gap: var(--fl-section-gap);
    align-items: start;

    margin-bottom: clamp(44px, 5vw, 78px);
}

.fl-contact-title-wrap {
    max-width: 940px;
}

.fl-contact-title {
    margin: 0;

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(36px, 3.45vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 700;

    text-shadow:
        0 0 36px rgba(127, 162, 255, 0.16);
}

.fl-contact-text {
    max-width: 760px;
    margin: 26px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(14px, 1.02vw, 17px);
    line-height: 1.65;
    letter-spacing: -0.012em;
    font-weight: 400;
}

/* ================================
   CONTACT LAYOUT
================================ */

.fl-contact-layout {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(270px, 0.72fr);
    gap: clamp(34px, 5vw, 84px);
    align-items: start;
}

.fl-contact-info,
.fl-contact-form-card {
    position: relative;
    z-index: 2;
}

/* ================================
   FORM CARD
================================ */

.fl-contact-form-card {
    position: relative;
    overflow: hidden;

    padding:
        clamp(28px, 3.2vw, 46px)
        clamp(24px, 3.2vw, 46px);

    border-radius: clamp(26px, 2.7vw, 38px);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.105) 46%,
            rgba(255, 255, 255, 0.065) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(127, 162, 255, 0.06),
        0 0 80px rgba(127, 162, 255, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.fl-contact-form-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            rgba(127, 162, 255, 0.00) 0%,
            rgba(127, 162, 255, 1) 34%,
            rgba(127, 162, 255, 0.24) 100%
        );

    box-shadow:
        0 0 24px rgba(127, 162, 255, 0.58);
}

.fl-contact-form-card::after {
    content: "";
    position: absolute;
    right: -16%;
    top: -30%;

    width: 46%;
    height: 58%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(127, 162, 255, 0.24) 0%,
            rgba(127, 162, 255, 0.06) 42%,
            rgba(127, 162, 255, 0.00) 70%
        );

    pointer-events: none;
}

.fl-contact-form-head {
    position: relative;
    z-index: 2;

    max-width: 680px;
    margin-bottom: clamp(26px, 3vw, 38px);
}

.fl-contact-form-head span {
    display: block;
    margin-bottom: 14px;

    color: #9EB8FF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.065em;
    text-transform: uppercase;

    text-shadow:
        0 0 22px rgba(127, 162, 255, 0.42);
}

.fl-contact-form-head h3 {
    margin: 0;

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(30px, 2.7vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 720;
}

.fl-contact-form-head p {
    max-width: 560px;
    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.62);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.62;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* ================================
   FORM
================================ */

.fl-feedback-form {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fl-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fl-form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fl-form-field span {
    color: rgba(255, 255, 255, 0.84);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.01em;
}

.fl-form-field input,
.fl-form-field textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.24) 0%,
            rgba(255, 255, 255, 0.165) 100%
        );

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    font-weight: 430;

    outline: none;

    box-shadow:
        0 0 0 1px rgba(127, 162, 255, 0.035),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transition:
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.fl-form-field input {
    min-height: 56px;
    padding: 0 18px;
}

.fl-form-field textarea {
    min-height: 158px;
    padding: 17px 18px;
    resize: vertical;
}

.fl-form-field input::placeholder,
.fl-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.54);
}

.fl-form-field input:focus,
.fl-form-field textarea:focus {
    border-color: rgba(158, 184, 255, 0.84);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.30) 0%,
            rgba(255, 255, 255, 0.20) 100%
        );

    box-shadow:
        0 0 0 4px rgba(127, 162, 255, 0.15),
        0 0 28px rgba(127, 162, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.fl-form-field small {
    align-self: flex-end;

    color: rgba(255, 255, 255, 0.52);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
}

/* ================================
   FORM BUTTON / STATUS
================================ */

.fl-form-bottom {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 8px;
}

.fl-form-submit {
    min-height: 54px;
    padding: 0 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border-radius: 999px;
    border: 1px solid rgba(158, 184, 255, 0.86);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.00) 42%
        ),
        rgba(127, 162, 255, 0.20);

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.01em;

    cursor: pointer;

    box-shadow:
        0 0 28px rgba(127, 162, 255, 0.12);

    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease;
}

.fl-form-submit:hover {
    transform: translateY(-1px);
    background: rgba(127, 162, 255, 0.28);
    border-color: rgba(190, 207, 255, 0.96);
    box-shadow:
        0 0 36px rgba(127, 162, 255, 0.20);
}

.fl-form-submit:disabled {
    cursor: default;
    opacity: 0.62;
    transform: none;
}

.fl-form-status {
    min-height: 20px;
    margin: 0;

    color: rgba(255, 255, 255, 0.64);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.fl-form-status[data-state="success"] {
    color: #8BE0AD;
}

.fl-form-status[data-state="error"] {
    color: #FF9B9B;
}


/* ================================
FORM CONSENTS
================================ */

.fl-form-consents {
    display: grid;
    gap: 12px;

    margin-top: 18px;
}

.fl-form-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: flex-start;

    color: rgba(255, 255, 255, 0.64);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: -0.01em;

    cursor: pointer;
}

.fl-form-consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;

    accent-color: #7FA2FF;
    cursor: pointer;
}

.fl-form-consent span {
    display: block;
}

.fl-form-consent a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.fl-form-consent a:hover {
    color: #FFFFFF;
}

.fl-form-consent.is-error {
    color: rgba(255, 120, 120, 0.98);
}

.fl-form-consent.is-error a {
    color: rgba(255, 165, 165, 1);
}

.fl-form-consent.is-error input {
    outline: 2px solid rgba(255, 82, 82, 0.9);
    outline-offset: 2px;
}

.fl-form-status[data-state="error"] {
    color: rgba(255, 120, 120, 0.98);
}

.fl-form-status[data-state="success"] {
    color: rgba(165, 255, 190, 0.95);
}

@media (max-width: 620px) {
    .fl-form-consent {
        font-size: 11.5px;
        line-height: 1.45;
    }
}



/* ================================
   CONTACT ROUTE
================================ */

.fl-contact-route {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.fl-contact-route-item {
    position: relative;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    align-items: start;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.fl-contact-route-item:first-child {
    padding-top: 0;
}

.fl-contact-route-item span {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(127, 162, 255, 0.46);
    background: rgba(127, 162, 255, 0.13);

    color: #BFCFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;

    box-shadow:
        0 0 22px rgba(127, 162, 255, 0.12);
}

.fl-contact-route-item p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.70);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.01em;
}

/* ================================
   CONTACT SOCIALS
================================ */

.fl-contact-direct {
    margin-top: clamp(32px, 4vw, 56px);
    padding-top: 28px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fl-contact-direct > span {
    display: block;
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.58);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 780;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.fl-contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fl-contact-social {
    min-height: 44px;
    padding: 0 14px 0 10px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.13);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.095) 0%,
            rgba(255, 255, 255, 0.045) 100%
        );

    color: rgba(255, 255, 255, 0.80);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-decoration: none;

    transition:
        transform 180ms ease,
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.fl-contact-social-icon {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 24px;

    overflow: hidden;
}

.fl-contact-social-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    pointer-events: none;
}

.fl-contact-social strong {
    font-size: 13px;
    line-height: 1;
    font-weight: 720;
    letter-spacing: -0.01em;
}

.fl-contact-social:hover {
    transform: translateY(-1px);
    color: #FFFFFF;
    background: rgba(127, 162, 255, 0.14);
    border-color: rgba(127, 162, 255, 0.48);
    box-shadow:
        0 0 24px rgba(127, 162, 255, 0.11);
}

/* ================================
   CONTACT RESPONSIVE
================================ */

@media (max-width: 1280px) {
    .fl-contact-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fl-contact-title-wrap {
        max-width: 760px;
    }

    .fl-contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 0.62fr);
        gap: 42px;
    }
}

@media (max-width: 1100px) {
    .fl-contact-layout {
        grid-template-columns: 1fr;
    }

    .fl-contact-form-card {
        max-width: none;
    }

    .fl-contact-info {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .fl-contact-inner {
        padding:
            64px
            var(--fl-page-x)
            76px;
    }

    .fl-contact-layout {
        gap: 34px;
    }

    .fl-form-row {
        grid-template-columns: 1fr;
    }

    .fl-contact-form-card {
        order: 1;
    }

    .fl-contact-info {
        order: 2;
    }
}

@media (max-width: 620px) {
    .fl-contact-inner {
        padding:
            56px
            var(--fl-page-x)
            68px;
    }

    .fl-contact-head {
        margin-bottom: 34px;
    }

    .fl-contact-title {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.05;
    }

    .fl-contact-text {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.65;
    }

    .fl-contact-form-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .fl-contact-form-head h3 {
        font-size: clamp(26px, 8vw, 34px);
    }

    .fl-contact-form-head p {
        font-size: 14px;
    }

    .fl-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .fl-form-submit {
        width: 100%;
    }

    .fl-contact-route-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 16px;
    }

    .fl-contact-route-item span {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }

    .fl-contact-socials {
        flex-direction: column;
    }

    .fl-contact-social {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-form-field input,
    .fl-form-field textarea,
    .fl-form-submit,
    .fl-contact-social {
        transition: none;
    }
}


















/* ================================
   FOOTER
================================ */

.fl-footer {
    position: relative;
    width: 100%;

    background:
        radial-gradient(
            circle at 82% 0%,
            rgba(127, 162, 255, 0.12) 0%,
            rgba(127, 162, 255, 0.035) 24%,
            rgba(5, 7, 13, 0.00) 52%
        ),
        linear-gradient(
            180deg,
            #05070D 0%,
            #04060B 100%
        );

    color: #FFFFFF;

    font-family: "Inter", "Segoe UI", Arial, sans-serif;

    overflow: hidden;
}

.fl-footer::before {
    content: "";
    position: absolute;
    left: var(--fl-page-x);
    right: var(--fl-page-x);
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.00) 0%,
            rgba(255, 255, 255, 0.16) 16%,
            rgba(127, 162, 255, 0.38) 52%,
            rgba(255, 255, 255, 0.12) 86%,
            rgba(255, 255, 255, 0.00) 100%
        );
}

.fl-footer-inner {
    position: relative;
    z-index: 2;

    width: 100%;

    padding:
        clamp(46px, 5vw, 76px)
        var(--fl-page-x)
        clamp(28px, 3vw, 42px);
}

.fl-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(42px, 6vw, 96px);
    align-items: start;
}

/* ================================
   FOOTER BRAND
================================ */

.fl-footer-brand {
    max-width: 420px;
}

.fl-footer-logo-link {
    display: inline-flex;
    align-items: center;

    width: max-content;

    text-decoration: none;
}

.fl-footer-logo {
    width: clamp(118px, 8.5vw, 152px);
    max-height: 38px;
    height: auto;

    display: block;

    object-fit: contain;
}

.fl-footer-text {
    max-width: 390px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    font-weight: 400;
}

/* ================================
   FOOTER NAV
================================ */

.fl-footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}

.fl-footer-col {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.fl-footer-col span {
    display: block;

    margin-bottom: 6px;

    color: #7FA2FF;

    font-size: 11px;
    line-height: 1;
    font-weight: 820;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.fl-footer-col a {
    width: max-content;
    max-width: 100%;

    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;

    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    font-weight: 450;

    transition:
        color 180ms ease,
        transform 180ms ease;
}

.fl-footer-col a:hover {
    color: #FFFFFF;
    transform: translateX(2px);
}

/* ================================
   FOOTER BOTTOM
================================ */

.fl-footer-bottom {
    margin-top: clamp(42px, 5vw, 72px);
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fl-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.42);

    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.fl-footer-bottom p:last-child {
    text-align: right;
}

/* ================================
   FOOTER RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .fl-footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .fl-footer-brand {
        max-width: 620px;
    }

    .fl-footer-text {
        max-width: 560px;
    }
}

@media (max-width: 760px) {
    .fl-footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fl-footer-col {
        gap: 12px;
    }

    .fl-footer-col a {
        width: 100%;
    }

    .fl-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .fl-footer-bottom p:last-child {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .fl-footer-inner {
        padding:
            42px
            var(--fl-page-x)
            30px;
    }

    .fl-footer-logo {
        width: 126px;
        max-height: 34px;
    }

    .fl-footer-text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.65;
    }

    .fl-footer-main {
        gap: 36px;
    }

    .fl-footer-bottom {
        margin-top: 38px;
        padding-top: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fl-footer-col a {
        transition: none;
    }

    .fl-footer-col a:hover {
        transform: none;
    }
}














/* ================================
   GLOBAL LAYOUT NORMALIZATION
   Единая сетка сайта
================================ */

:root {
    --fl-page-x: clamp(32px, 4.7vw, 76px);

    --fl-section-top: clamp(78px, 7vw, 118px);
    --fl-section-bottom: clamp(82px, 7vw, 122px);

    --fl-left-col: 360px;
    --fl-section-gap: clamp(52px, 6vw, 112px);

    --fl-card-gap: clamp(18px, 1.8vw, 30px);
}

/* ================================
   COMMON TWO-COLUMN SECTIONS
================================ */

.fl-services-inner,
.fl-approach-inner,
.fl-advantages-inner,
.fl-faq-inner {
    padding:
        var(--fl-section-top)
        var(--fl-page-x)
        var(--fl-section-bottom);

    grid-template-columns: minmax(270px, var(--fl-left-col)) minmax(0, 1fr);
    gap: var(--fl-section-gap);
}

/* Левая колонка везде одной ширины */
.fl-services-info,
.fl-approach-info,
.fl-advantages-info,
.fl-faq-info {
    max-width: var(--fl-left-col);
}

/* ================================
   FULL-WIDTH SECTIONS
================================ */

.fl-team-inner,
.fl-offers-inner,
.fl-contact-inner {
    padding:
        var(--fl-section-top)
        var(--fl-page-x)
        var(--fl-section-bottom);
}

/* Сетки карточек */
.fl-services-grid,
.fl-team-grid {
    gap: var(--fl-card-gap);
}

/* ================================
   CASES SECTION
   Сохраняем выезд галереи вправо,
   но начало блока выравниваем по общей сетке
================================ */

.fl-cases-inner {
    padding:
        var(--fl-section-top)
        0
        var(--fl-section-bottom)
        var(--fl-page-x);

    grid-template-columns: minmax(270px, var(--fl-left-col)) minmax(0, 1fr);
    gap: var(--fl-section-gap);
}

.fl-cases-info {
    max-width: var(--fl-left-col);
    padding-right: 0;
}

.fl-cases-gallery {
    padding-right: var(--fl-page-x);
}

.fl-cases-controls {
    right: var(--fl-page-x);
}

.fl-cases-track {
    padding-left: 0;
}

/* ================================
   ADVANTAGES DARK STRIPE
   Тёмная полоса строго по левой колонке
================================ */

.fl-advantages::before {
    width: calc(var(--fl-page-x) + var(--fl-left-col));
}

.fl-advantages::after {
    left: calc(var(--fl-page-x) + var(--fl-left-col));
}

/* ================================
   OFFERS / CONTACT HEAD GRIDS
================================ */

.fl-offers-head,
.fl-contact-head {
    grid-template-columns: minmax(270px, var(--fl-left-col)) minmax(0, 1fr);
    gap: var(--fl-section-gap);
}

/* ================================
   TABLET
================================ */

@media (max-width: 1280px) {
    :root {
        --fl-section-gap: 42px;
    }

    .fl-services-inner,
    .fl-approach-inner,
    .fl-advantages-inner,
    .fl-faq-inner {
        grid-template-columns: 1fr;
        gap: var(--fl-section-gap);
    }

    .fl-services-info,
    .fl-approach-info,
    .fl-advantages-info,
    .fl-faq-info {
        max-width: 760px;
    }

    .fl-cases-inner {
        grid-template-columns: 1fr;
        gap: var(--fl-section-gap);
    }

    .fl-cases-info {
        max-width: 760px;
        padding-right: var(--fl-page-x);
    }

    .fl-advantages::before {
        width: 100%;
        height: 430px;
        bottom: auto;
    }

    .fl-advantages::after {
        display: none;
    }

    .fl-offers-head,
    .fl-contact-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ================================
   MOBILE / TABLET NARROW
================================ */

@media (max-width: 900px) {
    :root {
        --fl-page-x: 24px;
        --fl-section-top: 64px;
        --fl-section-bottom: 76px;
        --fl-section-gap: 42px;
    }

    .fl-services-inner,
    .fl-approach-inner,
    .fl-advantages-inner,
    .fl-faq-inner,
    .fl-team-inner,
    .fl-offers-inner,
    .fl-contact-inner {
        padding:
            var(--fl-section-top)
            var(--fl-page-x)
            var(--fl-section-bottom);
    }

    .fl-cases-inner {
        padding:
            var(--fl-section-top)
            0
            var(--fl-section-bottom)
            var(--fl-page-x);
    }

    .fl-cases-info {
        padding-right: var(--fl-page-x);
    }

    .fl-cases-gallery {
        padding-right: var(--fl-page-x);
    }

    .fl-cases-controls {
        margin-right: var(--fl-page-x);
    }
}

/* ================================
   MOBILE
================================ */

@media (max-width: 620px) {
    :root {
        --fl-page-x: 18px;
        --fl-section-top: 56px;
        --fl-section-bottom: 68px;
        --fl-section-gap: 38px;
    }

    .fl-services-inner,
    .fl-approach-inner,
    .fl-advantages-inner,
    .fl-faq-inner,
    .fl-team-inner,
    .fl-offers-inner,
    .fl-contact-inner {
        padding:
            var(--fl-section-top)
            var(--fl-page-x)
            var(--fl-section-bottom);
    }

    .fl-cases-inner {
        padding:
            var(--fl-section-top)
            0
            var(--fl-section-bottom)
            var(--fl-page-x);
    }

    .fl-cases-info {
        padding-right: var(--fl-page-x);
    }

    .fl-cases-gallery {
        padding-right: var(--fl-page-x);
    }

    .fl-cases-controls {
        margin-right: var(--fl-page-x);
    }

    .fl-advantages::before {
        height: 460px;
    }
}