.fbs-landing {
    --fbs-dark: #212121;
    --fbs-dark-soft: #292929;
    --fbs-bg: #f4f4f4;
    --fbs-card: #ffffff;
    --fbs-text: #212121;
    --fbs-text-soft: #5a5a5a;
    --fbs-line: #dedede;
    --fbs-blue: #019fff;
    --fbs-blue-dark: #007fca;
    --fbs-blue-soft: #e9f7ff;
    color: var(--fbs-text);
    background: var(--fbs-bg);
    font-family: inherit;
    line-height: 1.55;
}

.fbs-landing * {
    box-sizing: border-box;
}

.fbs-landing section {
    position: relative;
}

.fbs-landing h1,
.fbs-landing h2,
.fbs-landing h3,
.fbs-landing h4,
.fbs-landing p {
    margin-top: 0;
}

.fbs-landing h1,
.fbs-landing h2,
.fbs-landing h3,
.fbs-landing h4 {
    letter-spacing: 0;
}

.fbs-wrap {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}

.fbs-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.fbs-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fbs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(33, 33, 33, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.fbs-header__inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fbs-header__brand,
.fbs-logo {
    display: flex;
    align-items: center;
}

.fbs-header__brand,
.fbs-logo {
    gap: 8px;
}

.fbs-logo__mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--fbs-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.fbs-logo__image,
.fbs-logo__image svg {
    display: block;
    width: 104px;
    height: auto;
}

.fbs-header__tagline,
.fbs-nav {
    display: none;
}

.fbs-header .new-design-btn {
    min-width: 0;
    padding: 9px 14px;
    font-size: 12px;
    white-space: nowrap;
}

.fbs-hero {
    padding: 64px 0 48px;
    overflow: hidden;
    color: #fff;
    background: var(--fbs-dark);
}

.fbs-eyebrow,
.fbs-kicker,
.fbs-section-head > span {
    display: inline-block;
    color: var(--fbs-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fbs-eyebrow {
    margin-bottom: 22px;
    padding: 6px 10px;
    border: 1px solid rgba(1, 159, 255, .45);
    border-radius: 999px;
    background: rgba(1, 159, 255, .1);
}

.fbs-hero h1 {
    max-width: 900px;
    margin-bottom: 0;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
}

.fbs-lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
}

.fbs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.fbs-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease;
}

.fbs-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.fbs-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.fbs-stat b,
.fbs-stat span {
    display: block;
}

.fbs-stat b {
    color: var(--fbs-blue);
    font-size: 21px;
}

.fbs-stat span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.fbs-pains,
.fbs-strategy {
    padding: 72px 0;
    background: #fff;
}

.fbs-process,
.fbs-scope,
.fbs-fit {
    padding: 72px 0;
}

.fbs-section-head {
    max-width: 700px;
    margin-bottom: 38px;
}

.fbs-section-head > span,
.fbs-kicker {
    margin-bottom: 12px;
}

.fbs-section-head h2,
.fbs-strategy h2,
.fbs-case h2 {
    margin-bottom: 0;
    color: var(--fbs-text);
    font-size: 28px;
    line-height: 1.2;
}

.fbs-section-head p {
    margin: 14px 0 0;
    color: var(--fbs-text-soft);
    font-size: 16px;
}

.fbs-pain-grid,
.fbs-steps,
.fbs-advantages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.fbs-pain-card,
.fbs-adv-card {
    padding: 24px;
    border: 1px solid var(--fbs-line);
    border-radius: 8px;
    background: var(--fbs-card);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fbs-pain-card {
    background: var(--fbs-bg);
}

.fbs-pain-card:hover,
.fbs-adv-card:hover {
    transform: translateY(-4px);
    border-color: var(--fbs-blue);
    box-shadow: 0 14px 30px rgba(33, 33, 33, .08);
}

.fbs-num,
.fbs-adv-card > span {
    color: var(--fbs-blue);
    font-size: 13px;
    font-weight: 700;
}

.fbs-pain-card h3,
.fbs-adv-card h3 {
    margin: 10px 0 8px;
    color: var(--fbs-text);
    font-size: 18px;
    line-height: 1.35;
}

.fbs-pain-card p,
.fbs-adv-card p {
    margin-bottom: 0;
    color: var(--fbs-text-soft);
    font-size: 14px;
}

.fbs-process {
    color: #fff;
    background: var(--fbs-dark-soft);
}

.fbs-process .fbs-section-head h2 {
    color: #fff;
}

.fbs-process .fbs-section-head p {
    color: rgba(255, 255, 255, .65);
}

.fbs-step {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
}

.fbs-step__num {
    margin-bottom: 12px;
    color: var(--fbs-blue);
    font-size: 13px;
    font-weight: 700;
}

.fbs-step h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}

.fbs-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.fbs-scope {
    background: var(--fbs-bg);
}

.fbs-scope-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.fbs-timeline {
    margin: 0;
    padding: 0 0 0 20px;
    border-left: 2px solid var(--fbs-line);
    list-style: none;
}

.fbs-timeline li {
    position: relative;
    padding: 0 0 26px 10px;
}

.fbs-timeline li:last-child {
    padding-bottom: 0;
}

.fbs-timeline li::before {
    content: '';
    position: absolute;
    top: 3px;
    left: -27px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--fbs-blue);
    border-radius: 50%;
    background: #fff;
}

.fbs-timeline li > div {
    color: var(--fbs-text);
    font-size: 16px;
    font-weight: 600;
}

.fbs-timeline li > div span {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 5px;
    background: var(--fbs-blue-soft);
    color: var(--fbs-blue-dark);
    font-size: 12px;
}

.fbs-timeline p {
    margin: 5px 0 0;
    color: var(--fbs-text-soft);
    font-size: 14px;
}

.fbs-price-card {
    padding: 28px;
    border-radius: 8px;
    background: var(--fbs-dark);
    color: #fff;
}

.fbs-price-card > h3 {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    text-transform: uppercase;
}

.fbs-tariff {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.fbs-tariff h4 {
    margin-bottom: 6px;
    color: #fff;
    font-size: 16px;
}

.fbs-tariff > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px;
}

.fbs-tariff span,
.fbs-price-card > p,
.fbs-tariff small {
    color: rgba(255, 255, 255, .55);
}

.fbs-tariff b {
    color: var(--fbs-blue);
}

.fbs-tariff small {
    display: block;
    margin-top: 4px;
    text-align: right;
}

.fbs-price-card .new-design-btn {
    margin-top: 24px;
    text-align: center;
}

.fbs-price-card > p {
    margin: 14px 0 0;
    font-size: 12px;
}

.fbs-strategy__inner {
    padding: 0;
}

.fbs-intro {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--fbs-text-soft);
    font-size: 17px;
}

.fbs-strategy-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
}

.fbs-strategy-cols > div {
    padding: 24px;
    border: 1px solid var(--fbs-line);
    border-radius: 8px;
    background: var(--fbs-blue-soft);
}

.fbs-strategy-cols h3 {
    margin-bottom: 12px;
    color: var(--fbs-blue-dark);
    font-size: 14px;
    text-transform: uppercase;
}

.fbs-strategy-cols ul {
    margin: 0;
    padding-left: 18px;
}

.fbs-strategy-cols li + li {
    margin-top: 8px;
}

.fbs-strategy__result {
    margin: 28px 0 0;
    color: var(--fbs-text);
    font-size: 19px;
    font-weight: 600;
}

.fbs-fit {
    background: var(--fbs-bg);
}

.fbs-closing-note {
    margin-top: 30px;
    padding: 24px;
    border: 1px solid #c8ebff;
    border-radius: 8px;
    background: var(--fbs-blue-soft);
    color: var(--fbs-text);
    font-size: 15px;
}

.fbs-case {
    padding: 0 0 72px;
    background: #fff;
}

.fbs-case__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px;
    border-radius: 8px;
    background: var(--fbs-dark);
    color: #fff;
}

.fbs-case__inner > div > span {
    color: var(--fbs-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.fbs-case h2 {
    max-width: 680px;
    margin-top: 8px;
    color: #fff;
    font-size: 24px;
}

.fbs-case p {
    max-width: 680px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .65);
}

.fbs-case__inner > strong {
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--fbs-blue);
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.fbs-form {
    scroll-margin-top: 64px;
}

@media (min-width: 768px) {
    .fbs-wrap {
        padding-right: 32px;
        padding-left: 32px;
    }

    .fbs-header__tagline {
        display: inline-block;
        padding-left: 14px;
        border-left: 1px solid rgba(255, 255, 255, .18);
        color: var(--fbs-blue);
        font-size: 12px;
        white-space: nowrap;
    }

    .fbs-header .new-design-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .fbs-hero h1 {
        font-size: 46px;
    }

    .fbs-section-head h2,
    .fbs-strategy h2 {
        font-size: 34px;
    }

    .fbs-pain-grid,
    .fbs-steps,
    .fbs-advantages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fbs-strategy-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fbs-case__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 40px;
    }
}

@media (min-width: 992px) {
    .fbs-wrap {
        max-width: 1244px;
    }

    .fbs-header__inner {
        min-height: 74px;
    }

    .fbs-nav {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .fbs-nav a {
        color: rgba(255, 255, 255, .72);
        font-size: 14px;
        font-weight: 500;
        transition: color .2s ease;
    }

    .fbs-nav a:hover {
        color: var(--fbs-blue);
    }

    .fbs-hero {
        padding: 96px 0 64px;
    }

    .fbs-hero h1 {
        font-size: 58px;
    }

    .fbs-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 70px;
    }

    .fbs-pains,
    .fbs-strategy,
    .fbs-process,
    .fbs-scope,
    .fbs-fit {
        padding: 92px 0;
    }

    .fbs-pain-grid,
    .fbs-steps,
    .fbs-advantages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .fbs-pain-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .fbs-scope-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
        gap: 48px;
        align-items: start;
    }

    .fbs-price-card {
        position: sticky;
        top: 96px;
    }

    .fbs-case {
        padding-bottom: 92px;
    }
}

@media (min-width: 1200px) {
    .fbs-nav {
        gap: 28px;
    }
}
