:root{--page-title-display:none;}/* Start custom CSS *//* =========================================
   FITNBLESS ABOUT PAGE
   ========================================= */

.fnb-about {
    --fnb-green: #b0d57b;
    --fnb-green-dark: #49652f;
    --fnb-green-deep: #30461f;
    --fnb-green-soft: #eff7e5;
    --fnb-red: #c43b3b;
    --fnb-red-dark: #982828;
    --fnb-cream: #faf8f2;
    --fnb-white: #ffffff;
    --fnb-black: #171717;
    --fnb-grey: #646464;
    --fnb-border: rgba(48, 70, 31, 0.12);

    width: 100%;
    overflow: hidden;
    color: var(--fnb-black);
    background: var(--fnb-white);
    font-family: inherit;
}

.fnb-about *,
.fnb-about *::before,
.fnb-about *::after {
    box-sizing: border-box;
}

.fnb-about img {
    display: block;
    width: 100%;
    max-width: 100%;
}

.fnb-about a {
    text-decoration: none;
}

.fnb-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.fnb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--fnb-green-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.fnb-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--fnb-red);
}

.fnb-section-title {
    max-width: 720px;
    margin: 0;
    color: var(--fnb-black);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.fnb-section-title span {
    color: var(--fnb-green-dark);
}

.fnb-section-text {
    margin: 22px 0 0;
    color: var(--fnb-grey);
    font-size: 17px;
    line-height: 1.8;
}

.fnb-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.fnb-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.fnb-button:hover {
    transform: translateY(-2px);
}

.fnb-button-primary {
    color: var(--fnb-white);
    background: var(--fnb-red);
    box-shadow: 0 14px 35px rgba(196, 59, 59, 0.2);
}

.fnb-button-primary:hover {
    color: var(--fnb-white);
    background: var(--fnb-red-dark);
}

.fnb-button-secondary {
    color: var(--fnb-green-deep);
    border-color: rgba(48, 70, 31, 0.22);
    background: var(--fnb-white);
}

.fnb-button-secondary:hover {
    color: var(--fnb-green-deep);
    border-color: var(--fnb-green);
    background: var(--fnb-green-soft);
}

/* HERO */

.fnb-about-hero {
    position: relative;
    padding: 92px 0 100px;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(176, 213, 123, 0.32),
            transparent 32%
        ),
        linear-gradient(135deg, #faf8f2 0%, #ffffff 62%);
}

.fnb-about-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border: 80px solid rgba(176, 213, 123, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.fnb-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 74px;
}

.fnb-hero-copy {
    max-width: 550px;
}

.fnb-hero-title {
    margin: 0;
    color: var(--fnb-black);
    font-size: clamp(44px, 5.7vw, 78px);
    font-weight: 750;
    line-height: 0.98;
    letter-spacing: -3px;
}

.fnb-hero-title span {
    color: var(--fnb-green-dark);
}

.fnb-hero-description {
    max-width: 530px;
    margin: 26px 0 0;
    color: var(--fnb-grey);
    font-size: 18px;
    line-height: 1.8;
}

.fnb-hero-image-wrap {
    position: relative;
}

.fnb-hero-image {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    border-radius: 36px 36px 120px 36px;
    box-shadow: 0 30px 75px rgba(36, 53, 22, 0.16);
}

.fnb-hero-image img {
    height: 570px;
    object-fit: cover;
    object-position: center;
}

.fnb-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(30, 43, 20, 0.16) 100%
    );
    pointer-events: none;
}

.fnb-floating-card {
    position: absolute;
    left: -42px;
    bottom: 40px;
    z-index: 3;
    width: 230px;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(32, 46, 21, 0.16);
    backdrop-filter: blur(12px);
}

.fnb-floating-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--fnb-green-deep);
    font-size: 18px;
    line-height: 1.25;
}

.fnb-floating-card span {
    color: var(--fnb-grey);
    font-size: 14px;
    line-height: 1.6;
}

/* STORY */

.fnb-story {
    padding: 110px 0;
    background: var(--fnb-white);
}

.fnb-story-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 100px;
    align-items: start;
}

.fnb-story-heading {
    position: sticky;
    top: 40px;
}

.fnb-story-content {
    padding-top: 4px;
}

.fnb-story-content p {
    margin: 0 0 23px;
    color: var(--fnb-grey);
    font-size: 17px;
    line-height: 1.85;
}

.fnb-story-content p:last-child {
    margin-bottom: 0;
}

.fnb-highlight {
    padding: 32px;
    margin-top: 36px;
    border-left: 4px solid var(--fnb-red);
    border-radius: 0 22px 22px 0;
    color: var(--fnb-green-deep);
    background: var(--fnb-green-soft);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.55;
}

/* VALUES */

.fnb-values {
    position: relative;
    padding: 110px 0;
    background: var(--fnb-cream);
}

.fnb-values-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 52px;
}

.fnb-values-intro .fnb-section-text {
    max-width: 440px;
    margin-top: 0;
}

.fnb-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fnb-value-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--fnb-border);
    border-radius: 26px;
    background: var(--fnb-white);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fnb-value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(40, 58, 26, 0.1);
}

.fnb-value-number {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 46px;
    border-radius: 50%;
    color: var(--fnb-green-deep);
    background: var(--fnb-green);
    font-size: 15px;
    font-weight: 800;
}

.fnb-value-card h3 {
    margin: 0 0 14px;
    color: var(--fnb-black);
    font-size: 24px;
    line-height: 1.2;
}

.fnb-value-card p {
    margin: 0;
    color: var(--fnb-grey);
    font-size: 15px;
    line-height: 1.75;
}

.fnb-value-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: rgba(176, 213, 123, 0.17);
}

/* PROMISE */

.fnb-promise {
    padding: 110px 0;
    color: var(--fnb-white);
    background:
        linear-gradient(
            120deg,
            rgba(28, 42, 18, 0.97),
            rgba(60, 87, 37, 0.96)
        );
}

.fnb-promise-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 90px;
    align-items: center;
}

.fnb-promise .fnb-eyebrow {
    color: var(--fnb-green);
}

.fnb-promise .fnb-section-title {
    color: var(--fnb-white);
}

.fnb-promise .fnb-section-title span {
    color: var(--fnb-green);
}

.fnb-promise-text {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.8;
}

.fnb-promise-list {
    display: grid;
    gap: 16px;
}

.fnb-promise-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 17px;
    align-items: start;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.fnb-promise-icon {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--fnb-green-deep);
    background: var(--fnb-green);
    font-size: 18px;
    font-weight: 800;
}

.fnb-promise-item h3 {
    margin: 0 0 6px;
    color: var(--fnb-white);
    font-size: 18px;
}

.fnb-promise-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 14px;
    line-height: 1.65;
}

/* CTA */

.fnb-about-cta {
    padding: 105px 0;
    background: var(--fnb-white);
}

.fnb-cta-box {
    position: relative;
    padding: 78px 70px;
    overflow: hidden;
    border-radius: 34px;
    text-align: center;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(196, 59, 59, 0.13),
            transparent 30%
        ),
        var(--fnb-green-soft);
}

.fnb-cta-box::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border: 54px solid rgba(176, 213, 123, 0.42);
    border-radius: 50%;
}

.fnb-cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.fnb-cta-box h2 {
    margin: 0;
    color: var(--fnb-black);
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.fnb-cta-box h2 span {
    color: var(--fnb-green-dark);
}

.fnb-cta-box p {
    max-width: 610px;
    margin: 22px auto 0;
    color: var(--fnb-grey);
    font-size: 17px;
    line-height: 1.75;
}

.fnb-cta-box .fnb-button-row {
    justify-content: center;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .fnb-about-hero {
        padding: 72px 0 85px;
    }

    .fnb-hero-grid,
    .fnb-story-grid,
    .fnb-promise-grid {
        gap: 55px;
    }

    .fnb-hero-image,
    .fnb-hero-image img {
        min-height: 500px;
        height: 500px;
    }

    .fnb-floating-card {
        left: -20px;
    }

    .fnb-values-grid {
        gap: 16px;
    }

    .fnb-value-card {
        padding: 27px;
    }
}

@media (max-width: 767px) {
    .fnb-container {
        width: min(100% - 32px, 1180px);
    }

    .fnb-about-hero {
        padding: 58px 0 70px;
    }

    .fnb-hero-grid,
    .fnb-story-grid,
    .fnb-promise-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .fnb-hero-title {
        font-size: clamp(42px, 13vw, 58px);
        letter-spacing: -2px;
    }

    .fnb-hero-description {
        font-size: 16px;
    }

    .fnb-hero-image {
        min-height: 420px;
        border-radius: 25px 25px 75px 25px;
    }

    .fnb-hero-image img {
        height: 420px;
        min-height: 420px;
    }

    .fnb-floating-card {
        left: 16px;
        right: 16px;
        bottom: 18px;
        width: auto;
    }

    .fnb-story,
    .fnb-values,
    .fnb-promise,
    .fnb-about-cta {
        padding: 75px 0;
    }

    .fnb-story-heading {
        position: static;
    }

    .fnb-section-title {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1.2px;
    }

    .fnb-values-intro {
        display: block;
        margin-bottom: 38px;
    }

    .fnb-values-intro .fnb-section-text {
        margin-top: 20px;
    }

    .fnb-values-grid {
        grid-template-columns: 1fr;
    }

    .fnb-value-card {
        min-height: auto;
    }

    .fnb-value-number {
        margin-bottom: 32px;
    }

    .fnb-highlight {
        padding: 25px;
        font-size: 18px;
    }

    .fnb-cta-box {
        padding: 58px 24px;
        border-radius: 25px;
    }

    .fnb-button-row {
        width: 100%;
    }

    .fnb-button {
        width: 100%;
    }
}/* End custom CSS */