:root {
    --bg: #061113;
    --bg-deep: #040c0d;
    --bg-soft: #09191c;
    --surface: #0d1f22;
    --surface-soft: rgba(13, 31, 34, 0.72);

    --text: #f6f8f8;
    --text-soft: #9fb0b2;
    --text-muted: #65797c;

    --accent: #f4d524;
    --accent-hover: #ffe44b;
    --accent-soft: rgba(244, 213, 36, 0.11);

    --green-tech: #31a99b;
    --green-soft: rgba(49, 169, 155, 0.12);

    --border: rgba(255,255,255,0.09);
    --border-strong: rgba(255,255,255,0.14);

    --container: 1180px;
    --radius: 18px;
}


/* ==========================================================
   RESET
========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(22, 91, 85, 0.13),
            transparent 34%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

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

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

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


/* ==========================================================
   ACCESSIBILITY
========================================================== */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}


/* ==========================================================
   CONTAINER
========================================================== */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(6, 17, 19, 0.88);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(18px);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;

    font-size: 1.4rem;
    font-weight: 800;

    letter-spacing: -0.04em;
}

.brand-main {
    color: var(--text);
}

.brand-accent {
    color: var(--accent);
}

.primary-navigation {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}

.primary-navigation a {
    color: var(--text-soft);

    font-size: 0.9rem;
    font-weight: 600;

    transition:
        color 180ms ease;
}

.primary-navigation a:hover {
    color: var(--text);
}

.header-actions {
    display: flex;
    gap: 10px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.button {
    min-height: 46px;

    padding: 0 20px;

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

    border-radius: 8px;

    font-size: 0.82rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.02em;

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

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--accent);
    color: #071113;

    box-shadow:
        0 8px 28px
        rgba(244, 213, 36, 0.08);
}

.button-primary:hover {
    background: var(--accent-hover);

    box-shadow:
        0 12px 34px
        rgba(244, 213, 36, 0.15);
}

.button-ghost {
    border:
        1px solid var(--border-strong);

    background:
        rgba(255,255,255,0.02);
}

.button-ghost:hover {
    border-color:
        rgba(255,255,255,0.28);
}

.button-large {
    min-height: 54px;
    padding-inline: 27px;
}


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

.hero {
    position: relative;

    overflow: hidden;

    min-height:
        calc(100vh - 82px);

    display: flex;
    align-items: center;

    border-bottom:
        1px solid var(--border);
}

.hero-glow {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;

    filter: blur(1px);
}

.hero-glow-one {
    width: 680px;
    height: 680px;

    top: -320px;
    right: -160px;

    background:
        radial-gradient(
            circle,
            rgba(49,169,155,0.21),
            transparent 67%
        );
}

.hero-glow-two {
    width: 420px;
    height: 420px;

    left: 34%;
    bottom: -300px;

    background:
        radial-gradient(
            circle,
            rgba(244,213,36,0.07),
            transparent 68%
        );
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(430px, 0.96fr);

    gap: 74px;

    align-items: center;

    padding-block: 88px;
}

.hero-content {
    max-width: 690px;
}

.hero-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;

    color: var(--accent);

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.hero-label-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 18px
        rgba(244, 213, 36, 0.65);
}

.hero h1 {
    margin: 0;

    font-size:
        clamp(3.5rem, 6vw, 6.2rem);

    line-height: 0.95;

    letter-spacing:
        -0.065em;

    max-width: 800px;
}

.hero h1 span {
    display: block;

    color: var(--accent);
}

.hero-description {
    max-width: 650px;

    margin:
        30px 0 0;

    color: var(--text-soft);

    font-size:
        clamp(1rem, 1.5vw, 1.18rem);

    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.hero-pill-row {
    margin-top: 38px;

    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.hero-pill-row span {
    padding:
        7px 11px;

    border:
        1px solid var(--border);

    border-radius:
        999px;

    color:
        var(--text-muted);

    background:
        rgba(255,255,255,0.015);

    font-size:
        0.73rem;

    font-weight:
        600;
}


/* ==========================================================
   EVOLUTION PANEL
========================================================== */

.evolution-panel {
    position: relative;

    border:
        1px solid var(--border-strong);

    border-radius:
        22px;

    background:
        linear-gradient(
            145deg,
            rgba(16, 43, 46, 0.92),
            rgba(7, 20, 22, 0.96)
        );

    box-shadow:
        0 40px 110px
        rgba(0,0,0,0.34);

    overflow: hidden;
}

.evolution-panel::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.035),
            transparent 32%
        );
}

.evolution-panel-header {
    position: relative;

    padding:
        28px 28px 25px;

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

    gap: 20px;

    border-bottom:
        1px solid var(--border);
}

.panel-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--text-muted);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.13em;
}

.evolution-panel-header h2 {
    margin: 0;

    font-size:
        clamp(1.45rem, 2vw, 1.9rem);

    line-height: 1.08;

    letter-spacing:
        -0.035em;
}

.evolution-panel-header h2 span {
    display: block;

    color: var(--accent);
}

.panel-status {
    height: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        6px 9px;

    border:
        1px solid rgba(49,169,155,0.24);

    border-radius:
        999px;

    background:
        var(--green-soft);

    color:
        #78d7cc;

    font-size:
        0.63rem;

    font-weight:
        800;

    letter-spacing:
        0.06em;
}

.panel-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #48c7b8;

    box-shadow:
        0 0 12px
        rgba(72,199,184,0.8);
}


/* ==========================================================
   EVOLUTION STEPS
========================================================== */

.evolution-track {
    position: relative;

    padding:
        8px 28px;
}

.evolution-track::before {
    content: "";

    position: absolute;

    left: 45px;
    top: 38px;
    bottom: 38px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--accent),
            rgba(255,255,255,0.08)
        );
}

.evolution-step {
    position: relative;

    display: grid;

    grid-template-columns:
        36px 1fr;

    gap: 17px;

    padding:
        16px 0;

    border-bottom:
        1px solid var(--border);
}

.evolution-step:last-child {
    border-bottom: 0;
}

.step-marker {
    position: relative;

    z-index: 2;

    width: 36px;
    height: 36px;

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

    border:
        1px solid var(--border-strong);

    border-radius: 50%;

    background:
        #0b1b1e;

    color:
        var(--text-muted);

    font-size:
        0.65rem;

    font-weight:
        900;
}

.evolution-step-active .step-marker {
    border-color:
        rgba(244,213,36,0.6);

    color:
        #071113;

    background:
        var(--accent);

    box-shadow:
        0 0 28px
        rgba(244,213,36,0.15);
}

.step-heading {
    min-height: 28px;

    display: flex;
    align-items: center;

    justify-content:
        space-between;

    gap: 12px;
}

.step-heading h3 {
    margin: 0;

    font-size:
        0.98rem;

    letter-spacing:
        -0.015em;
}

.evolution-step-active h3 {
    color:
        var(--accent);
}

.step-content p {
    margin:
        4px 0 0;

    max-width: 390px;

    color:
        var(--text-muted);

    font-size:
        0.8rem;

    line-height:
        1.55;
}

.step-badge {
    padding:
        4px 7px;

    border:
        1px solid
        rgba(244,213,36,0.24);

    border-radius:
        999px;

    background:
        var(--accent-soft);

    color:
        var(--accent);

    font-size:
        0.58rem;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.06em;
}

.step-badge-elite {
    color:
        #d7e6e6;

    border-color:
        var(--border-strong);

    background:
        rgba(255,255,255,0.035);
}


/* ==========================================================
   EVOLUTION FOOTER
========================================================== */

.evolution-footer {
    position: relative;

    padding:
        20px 28px;

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

    gap: 20px;

    border-top:
        1px solid var(--border);

    background:
        rgba(0,0,0,0.12);
}

.evolution-footer div:first-child {
    display: flex;
    flex-direction: column;
}

.evolution-footer span {
    color:
        var(--text-muted);

    font-size:
        0.62rem;

    font-weight:
        800;

    letter-spacing:
        0.1em;
}

.evolution-footer strong {
    margin-top: 3px;

    font-size:
        0.78rem;
}

.ai-indicator {
    display: flex;
    align-items: center;

    gap: 9px;

    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        800;
}

.ai-pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--accent);

    box-shadow:
        0 0 15px
        rgba(244,213,36,0.75);
}


/* ==========================================================
   VALUE SECTION
========================================================== */

.value-section {
    padding:
        125px 0;

    border-bottom:
        1px solid var(--border);

    background:
        linear-gradient(
            180deg,
            var(--bg),
            var(--bg-soft)
        );
}

.section-intro {
    max-width:
        780px;

    margin-bottom:
        58px;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom:
        16px;

    color:
        var(--accent);

    font-size:
        0.72rem;

    font-weight:
        800;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}

.section-intro h2,
.home-cta h2 {
    margin:
        0;

    font-size:
        clamp(2.4rem, 4.8vw, 4.6rem);

    line-height:
        1;

    letter-spacing:
        -0.055em;
}

.section-intro h2 span,
.home-cta h2 span {
    display: block;

    color:
        var(--accent);
}

.section-intro p {
    max-width:
        690px;

    margin:
        24px 0 0;

    color:
        var(--text-soft);

    font-size:
        1.06rem;

    line-height:
        1.75;
}


/* ==========================================================
   VALUE CARDS
========================================================== */

.value-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.value-card {
    min-height:
        300px;

    padding:
        28px;

    display: flex;
    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        rgba(255,255,255,0.015);

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

.value-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(244,213,36,0.22);

    background:
        rgba(255,255,255,0.025);
}

.value-number {
    color:
        var(--accent);

    font-size:
        0.68rem;

    font-weight:
        900;

    letter-spacing:
        0.1em;
}

.value-card h3 {
    margin:
        auto 0 12px;

    font-size:
        1.28rem;

    letter-spacing:
        -0.025em;
}

.value-card p {
    margin:
        0;

    color:
        var(--text-soft);

    font-size:
        0.88rem;
}


/* ==========================================================
   HOME CTA
========================================================== */

.home-cta {
    padding:
        95px 0;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(49,169,155,0.1),
            transparent 35%
        ),
        var(--bg);
}

.home-cta-inner {
    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: end;

    gap: 50px;
}

.home-cta h2 {
    max-width:
        780px;

    font-size:
        clamp(2.3rem, 4vw, 4rem);
}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    padding:
        70px 0 28px;

    border-top:
        1px solid var(--border);

    background:
        var(--bg-deep);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 70px;
}

.footer-brand {
    margin-bottom:
        18px;
}

.footer-description {
    max-width:
        380px;

    color:
        var(--text-soft);
}

.footer-grid h3 {
    font-size:
        0.8rem;

    text-transform:
        uppercase;

    letter-spacing:
        0.08em;
}

.footer-grid > div > a:not(.brand) {
    display:
        block;

    margin:
        9px 0;

    color:
        var(--text-soft);
}

.footer-grid > div > a:not(.brand):hover {
    color:
        var(--text);
}

.footer-bottom {
    margin-top:
        55px;

    padding-top:
        24px;

    border-top:
        1px solid var(--border);

    display:
        flex;

    justify-content:
        space-between;

    gap:
        30px;

    color:
        #718487;

    font-size:
        0.72rem;
}

.risk-note {
    max-width:
        540px;

    text-align:
        right;
}


/* ==========================================================
   MOBILE NAVIGATION
========================================================== */

.nav-toggle {
    display:
        none;

    margin-left:
        auto;

    width:
        42px;

    height:
        42px;

    border:
        1px solid var(--border);

    border-radius:
        8px;

    background:
        transparent;
}

.nav-toggle span {
    display:
        block;

    width:
        20px;

    height:
        2px;

    margin:
        4px auto;

    background:
        white;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .primary-navigation,
    .header-actions {
        display:
            none;
    }

    .nav-toggle {
        display:
            block;
    }

    .primary-navigation.is-open {
        position:
            absolute;

        top:
            82px;

        left:
            20px;

        right:
            20px;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        padding:
            24px;

        background:
            #071416;

        border:
            1px solid var(--border);

        border-radius:
            14px;
    }

    .hero-grid {
        grid-template-columns:
            1fr;

        gap:
            65px;
    }

    .hero-content {
        max-width:
            790px;
    }

    .evolution-panel {
        max-width:
            720px;
    }

    .value-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


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

@media (max-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 30px),
                var(--container)
            );
    }

    .header-inner {
        min-height:
            72px;
    }

    .primary-navigation.is-open {
        top:
            72px;
    }

    .hero {
        min-height:
            auto;
    }

    .hero-grid {
        padding-block:
            66px;

        gap:
            50px;
    }

    .hero h1 {
        font-size:
            clamp(3rem, 15vw, 4.4rem);
    }

    .hero-description {
        font-size:
            1rem;
    }

    .hero-actions {
        flex-direction:
            column;
    }

    .hero-actions .button {
        width:
            100%;
    }

    .evolution-panel-header {
        padding:
            24px 20px;
    }

    .panel-status {
        display:
            none;
    }

    .evolution-track {
        padding:
            8px 20px;
    }

    .evolution-track::before {
        left:
            37px;
    }

    .evolution-footer {
        padding:
            18px 20px;
    }

    .value-section {
        padding:
            90px 0;
    }

    .value-grid {
        grid-template-columns:
            1fr;
    }

    .value-card {
        min-height:
            240px;
    }

    .home-cta {
        padding:
            80px 0;
    }

    .home-cta-inner {
        grid-template-columns:
            1fr;

        align-items:
            start;
    }

    .home-cta .button {
        width:
            100%;
    }

    .footer-grid {
        grid-template-columns:
            1fr;
    }

    .footer-bottom {
        flex-direction:
            column;
    }

    .risk-note {
        text-align:
            left;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;
    }

}

/* ==========================================================
   BLACKFOREX V2 - DIFFERENCE SECTION
========================================================== */

.bf-difference {
    padding: 120px 0;
    background:
        linear-gradient(
            180deg,
            #061113 0%,
            #081719 100%
        );
    border-bottom: 1px solid var(--border);
}

.bf-section-heading {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 55px;
}

.bf-section-heading h2,
.bf-how-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-section-heading h2 span,
.bf-how-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-section-heading > p {
    margin: 0 0 5px;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.bf-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bf-pillar-card {
    position: relative;
    min-height: 360px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.008)
        );
    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.bf-pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244,213,36,0.28);
}

.bf-pillar-card-ai {
    background:
        radial-gradient(
            circle at top right,
            rgba(49,169,155,0.13),
            transparent 45%
        ),
        rgba(255,255,255,0.018);
}

.bf-pillar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.bf-pillar-number {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-pillar-tag {
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.bf-pillar-icon {
    width: 48px;
    height: 48px;
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244,213,36,0.22);
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 900;
}

.bf-pillar-card h3 {
    margin: 22px 0 10px;
    font-size: 1.28rem;
    letter-spacing: -0.025em;
}

.bf-pillar-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.65;
}

.bf-pillar-result {
    margin-top: auto;
    padding-top: 22px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    border-top: 1px solid var(--border);
}


/* ==========================================================
   HOW BLACKFOREX WORKS
========================================================== */

.bf-how {
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(49,169,155,0.1),
            transparent 30%
        ),
        #050e10;
    border-bottom: 1px solid var(--border);
}

.bf-how-heading {
    max-width: 830px;
    margin-bottom: 70px;
}

.bf-how-heading p {
    max-width: 690px;
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.bf-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.bf-journey::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 4%;
    right: 4%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--accent),
            rgba(244,213,36,0.3),
            rgba(49,169,155,0.3)
        );
}

.bf-journey-step {
    position: relative;
    padding-right: 20px;
}

.bf-journey-marker {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(244,213,36,0.4);
    border-radius: 50%;
    background: #071416;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    box-shadow: 0 0 0 7px #050e10;
}

.bf-journey-step:first-child .bf-journey-marker {
    background: var(--accent);
    color: #061113;
}

.bf-journey-content > span {
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-journey-content h3 {
    min-height: 50px;
    margin: 8px 0 10px;
    font-size: 1rem;
    line-height: 1.25;
}

.bf-journey-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.6;
}

.bf-how-cta {
    margin-top: 75px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(244,213,36,0.17);
    border-radius: 18px;
    background:
        linear-gradient(
            110deg,
            rgba(244,213,36,0.07),
            rgba(49,169,155,0.05)
        );
}

.bf-how-cta-label {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-how-cta h3 {
    margin: 7px 0 5px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.bf-how-cta p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
}


/* ==========================================================
   NEW SECTIONS RESPONSIVE
========================================================== */

@media (max-width: 1050px) {

    .bf-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bf-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bf-journey {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 20px;
    }

    .bf-journey::before {
        display: none;
    }

}

@media (max-width: 700px) {

    .bf-difference,
    .bf-how {
        padding: 85px 0;
    }

    .bf-pillar-grid {
        grid-template-columns: 1fr;
    }

    .bf-pillar-card {
        min-height: 310px;
    }

    .bf-pillar-icon {
        margin-top: 35px;
    }

    .bf-journey {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bf-journey-step {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding: 0 0 35px;
    }

    .bf-journey-content h3 {
        min-height: auto;
    }

    .bf-how-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .bf-how-cta .button {
        width: 100%;
    }

}



/* ==========================================================
   BLACKFOREX ECOSYSTEM
========================================================== */

.bf-ecosystem {
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(49,169,155,0.10),
            transparent 28%
        ),
        #071416;
    border-bottom: 1px solid var(--border);
}

.bf-ecosystem-heading {
    max-width: 850px;
    margin-bottom: 65px;
}

.bf-ecosystem-heading h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-ecosystem-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-ecosystem-heading p {
    max-width: 700px;
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.75;
}

.bf-ecosystem-layout {
    display: grid;
    grid-template-columns: 1fr 0.85fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.bf-ecosystem-card {
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(255,255,255,0.008)
        );
}

.bf-ecosystem-index {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-ecosystem-category {
    margin-top: 45px;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.bf-ecosystem-card h3 {
    margin: 8px 0 12px;
    font-size: 1.4rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.bf-ecosystem-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.65;
}

.bf-ecosystem-card ul {
    margin: auto 0 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid var(--border);
}

.bf-ecosystem-card li {
    position: relative;
    margin: 8px 0;
    padding-left: 17px;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.bf-ecosystem-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.bf-ecosystem-core {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(244,213,36,0.16);
    border-radius: 20px;
    background:
        radial-gradient(
            circle,
            rgba(244,213,36,0.08),
            transparent 45%
        ),
        rgba(5,14,16,0.9);
}

.bf-core-orbit {
    position: absolute;
    border: 1px solid rgba(244,213,36,0.12);
    border-radius: 50%;
}

.bf-core-orbit-one {
    width: 250px;
    height: 250px;
}

.bf-core-orbit-two {
    width: 175px;
    height: 175px;
    border-color: rgba(49,169,155,0.18);
}

.bf-core-content {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(244,213,36,0.32);
    border-radius: 50%;
    background: #081719;
    box-shadow:
        0 0 70px rgba(244,213,36,0.06);
}

.bf-core-label {
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.bf-core-content strong {
    margin-top: 6px;
    font-size: 1.05rem;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.bf-core-content strong span {
    display: block;
    color: var(--accent);
}

.bf-core-content small {
    max-width: 100px;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.52rem;
    line-height: 1.35;
}

.bf-ecosystem-card-wide {
    grid-column: 1 / -1;
    min-height: auto;
    margin-top: 2px;
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 25px;
    align-items: center;
    background:
        linear-gradient(
            110deg,
            rgba(49,169,155,0.07),
            rgba(244,213,36,0.035)
        );
}

.bf-ecosystem-card-wide .bf-ecosystem-category {
    margin-top: 2px;
}

.bf-ecosystem-card-wide .bf-ecosystem-index {
    grid-row: 1 / span 3;
    font-size: 1rem;
}

.bf-ecosystem-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.bf-ecosystem-features span {
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.7rem;
}


/* ==========================================================
   BLACKFOREX LEVELS
========================================================== */

.bf-levels {
    padding: 125px 0;
    background:
        linear-gradient(
            180deg,
            #050e10,
            #061113
        );
    border-bottom: 1px solid var(--border);
}

.bf-levels-heading {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 75px;
}

.bf-levels-heading h2 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-levels-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-levels-heading > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}

.bf-level-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.bf-level-track::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 42px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--accent),
            rgba(244,213,36,0.3),
            rgba(49,169,155,0.35)
        );
}

.bf-level {
    position: relative;
    padding-right: 25px;
}

.bf-level-number {
    display: block;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-level-dot {
    position: relative;
    z-index: 2;
    width: 18px;
    height: 18px;
    margin-bottom: 28px;
    border: 4px solid #061113;
    border-radius: 50%;
    background: #526467;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.13);
}

.bf-level-start .bf-level-dot {
    background: var(--accent);
    box-shadow:
        0 0 0 1px rgba(244,213,36,0.45),
        0 0 20px rgba(244,213,36,0.22);
}

.bf-level-elite .bf-level-dot {
    background: #48c7b8;
    box-shadow:
        0 0 0 1px rgba(72,199,184,0.45),
        0 0 20px rgba(72,199,184,0.18);
}

.bf-level-type {
    color: var(--text-muted);
    font-size: 0.57rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-level h3 {
    margin: 7px 0 10px;
    font-size: 1.18rem;
    letter-spacing: -0.025em;
}

.bf-level-start h3 {
    color: var(--accent);
}

.bf-level-elite h3 {
    color: #74d4c9;
}

.bf-level p {
    max-width: 180px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.76rem;
    line-height: 1.6;
}

.bf-level-message {
    margin-top: 70px;
    padding: 28px 30px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 35px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,0.015);
}

.bf-level-message span {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-level-message strong {
    max-width: 790px;
    font-size: 1.08rem;
    line-height: 1.45;
}


/* ==========================================================
   BLOCK 3 RESPONSIVE
========================================================== */

@media (max-width: 1050px) {

    .bf-ecosystem-layout {
        grid-template-columns: 1fr 1fr;
    }

    .bf-ecosystem-core {
        order: -1;
        grid-column: 1 / -1;
        min-height: 300px;
    }

    .bf-ecosystem-card-wide {
        grid-template-columns: 70px 1fr;
    }

    .bf-ecosystem-features {
        grid-column: 2;
    }

    .bf-levels-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bf-level-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 20px;
    }

    .bf-level-track::before {
        display: none;
    }

}

@media (max-width: 700px) {

    .bf-ecosystem,
    .bf-levels {
        padding: 85px 0;
    }

    .bf-ecosystem-layout {
        grid-template-columns: 1fr;
    }

    .bf-ecosystem-core {
        grid-column: auto;
        min-height: 280px;
    }

    .bf-ecosystem-card {
        min-height: 320px;
    }

    .bf-ecosystem-card-wide {
        grid-column: auto;
        display: flex;
        align-items: stretch;
    }

    .bf-ecosystem-card-wide .bf-ecosystem-index {
        grid-row: auto;
    }

    .bf-level-track {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bf-level {
        padding: 0 0 38px;
    }

    .bf-level p {
        max-width: 100%;
    }

    .bf-level-message {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}



/* ==========================================================
   BLACKFOREX iTRADINGBOOK
========================================================== */

.bf-book {
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(49,169,155,0.11),
            transparent 28%
        ),
        #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-book-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: center;
}

.bf-book-copy h2 {
    max-width: 580px;
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-book-copy h2 span {
    display: block;
    color: var(--accent);
}

.bf-book-lead {
    max-width: 590px;
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.bf-book-flow {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bf-book-flow-item {
    min-width: 125px;
}

.bf-book-flow-item span {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-book-flow-item strong {
    display: block;
    font-size: 0.82rem;
}

.bf-book-flow-item small {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.66rem;
}

.bf-book-flow-arrow {
    color: var(--text-muted);
}

.bf-book-message {
    margin-top: 42px;
    padding: 22px;
    border: 1px solid rgba(244,213,36,0.15);
    border-radius: 14px;
    background: rgba(244,213,36,0.035);
}

.bf-book-message span {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-book-message strong {
    display: block;
    max-width: 480px;
    font-size: 1.03rem;
    line-height: 1.45;
}


/* ==========================================================
   DASHBOARD
========================================================== */

.bf-book-dashboard {
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(14,38,41,0.96),
            rgba(6,18,20,0.98)
        );
    box-shadow:
        0 40px 100px rgba(0,0,0,0.28);
}

.bf-book-dashboard-header {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.bf-book-dashboard-label {
    display: block;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-book-dashboard-header strong {
    display: block;
    margin-top: 3px;
    font-size: 1.12rem;
}

.bf-book-demo {
    padding: 5px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* ==========================================================
   METRICS
========================================================== */

.bf-book-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
}

.bf-book-metric {
    padding: 20px;
    border-right: 1px solid var(--border);
}

.bf-book-metric:last-child {
    border-right: 0;
}

.bf-book-metric span {
    color: var(--text-muted);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-book-metric strong {
    display: block;
    margin-top: 6px;
    font-size: 1.24rem;
}

.bf-book-metric small {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 0.58rem;
}

.bf-positive {
    color: #70d1c6;
}

.bf-risk {
    color: #d8a676;
}


/* ==========================================================
   CHART
========================================================== */

.bf-book-chart {
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}

.bf-book-chart-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.bf-book-chart-head span {
    display: block;
    color: var(--text-muted);
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-book-chart-head strong {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
}

.bf-book-periods {
    display: flex;
    gap: 5px;
}

.bf-book-periods span {
    padding: 5px 7px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.55rem;
}

.bf-book-periods span.active {
    border-color: rgba(244,213,36,0.35);
    background: var(--accent-soft);
    color: var(--accent);
}

.bf-chart-area {
    position: relative;
    height: 215px;
    margin-top: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.035);
    border-radius: 10px;
    background:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );
    background-size: 100% 25%, 16.666% 100%;
}

.bf-chart-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bf-chart-line-equity,
.bf-chart-line-balance {
    fill: none;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.bf-chart-line-equity {
    stroke: #4fc6b8;
}

.bf-chart-line-balance {
    stroke: #f4d524;
    opacity: 0.78;
}

.bf-book-chart-legend {
    margin-top: 12px;
    display: flex;
    gap: 18px;
}

.bf-book-chart-legend span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-size: 0.6rem;
}

.bf-book-chart-legend i {
    width: 12px;
    height: 2px;
}

.bf-legend-equity {
    background: #4fc6b8;
}

.bf-legend-balance {
    background: var(--accent);
}


/* ==========================================================
   STATS + AI
========================================================== */

.bf-book-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--border);
}

.bf-book-stats div {
    padding: 17px 20px;
    border-right: 1px solid var(--border);
}

.bf-book-stats div:last-child {
    border-right: 0;
}

.bf-book-stats span {
    display: block;
    color: var(--text-muted);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-book-stats strong {
    display: block;
    margin-top: 4px;
    font-size: 0.84rem;
}

.bf-book-ai {
    padding: 20px 24px;
    background:
        linear-gradient(
            90deg,
            rgba(244,213,36,0.035),
            rgba(49,169,155,0.035)
        );
}

.bf-book-ai-head {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bf-book-ai-head strong {
    color: var(--accent);
    font-size: 0.78rem;
}

.bf-book-ai p {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 0.72rem;
    line-height: 1.55;
}


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

@media (max-width: 1050px) {

    .bf-book-grid {
        grid-template-columns: 1fr;
    }

    .bf-book-copy {
        max-width: 760px;
    }

}

@media (max-width: 700px) {

    .bf-book {
        padding: 85px 0;
    }

    .bf-book-flow {
        flex-direction: column;
        align-items: flex-start;
    }

    .bf-book-flow-arrow {
        transform: rotate(90deg);
    }

    .bf-book-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .bf-book-metric:nth-child(2) {
        border-right: 0;
    }

    .bf-book-metric:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .bf-book-chart-head {
        flex-direction: column;
    }

    .bf-book-periods {
        flex-wrap: wrap;
    }

    .bf-book-stats {
        grid-template-columns: 1fr;
    }

    .bf-book-stats div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .bf-book-stats div:last-child {
        border-bottom: 0;
    }

}



/* ==========================================================
   INNER PAGE HERO
========================================================== */

.bf-inner-hero {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(49,169,155,0.12),
            transparent 30%
        ),
        #061113;
    border-bottom: 1px solid var(--border);
}

.bf-inner-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.bf-inner-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.bf-inner-hero h1 span {
    display: block;
    color: var(--accent);
}

.bf-inner-hero p {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.bf-inner-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bf-inner-summary {
    padding: 30px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(14,38,41,0.95),
            rgba(7,19,21,0.95)
        );
}

.bf-inner-summary-label {
    display: block;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-inner-summary-list div {
    padding: 13px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 700;
}

.bf-inner-summary-list div:last-child {
    border-bottom: 0;
}

.bf-inner-summary-list span {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 900;
}


/* ==========================================================
   PROCESS INTRO
========================================================== */

.bf-process-intro {
    padding: 95px 0;
    background: #081719;
    border-bottom: 1px solid var(--border);
}

.bf-process-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: end;
}

.bf-process-intro h2 {
    margin: 0;
    font-size: clamp(2.6rem, 4.5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.bf-process-intro h2 span {
    display: block;
    color: var(--accent);
}

.bf-process-intro p {
    margin: 0 0 14px;
    color: var(--text-soft);
    line-height: 1.75;
}


/* ==========================================================
   PROCESS STEPS
========================================================== */

.bf-process {
    background: #050f11;
}

.bf-process-step {
    min-height: 520px;
    padding: 90px 0;
    display: grid;
    grid-template-columns: 70px 1fr 0.9fr;
    gap: 45px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.bf-process-number {
    align-self: start;
    padding-top: 9px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-process-label {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.bf-process-content h2 {
    max-width: 650px;
    margin: 8px 0 18px;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.bf-process-content p {
    max-width: 610px;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.75;
}

.bf-process-details {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bf-process-details span {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.68rem;
}

.bf-process-visual {
    display: flex;
    justify-content: center;
}


/* ==========================================================
   PROCESS VISUALS
========================================================== */

.bf-process-card,
.bf-performance-card,
.bf-ai-card {
    width: min(100%, 390px);
    padding: 28px;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: #0a1c1f;
}

.bf-process-card-label,
.bf-performance-label {
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.bf-process-card strong {
    display: block;
    margin-top: 12px;
    font-size: 1.5rem;
}

.bf-process-card small,
.bf-performance-card small {
    color: var(--text-muted);
    font-size: 0.68rem;
}

.bf-process-meter {
    margin: 25px 0;
    display: flex;
    gap: 8px;
}

.bf-process-meter span {
    flex: 1;
    height: 7px;
    border-radius: 999px;
    background: #1a2c2f;
}

.bf-process-meter span.active {
    background: var(--accent);
}

.bf-route-mini {
    width: min(100%, 390px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bf-route-mini span {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--text-muted);
    background: #081719;
    font-size: 0.82rem;
    font-weight: 700;
}

.bf-route-mini span.active {
    border-color: rgba(244,213,36,0.3);
    color: var(--accent);
}

.bf-connect-card {
    width: min(100%, 390px);
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
}

.bf-connect-source,
.bf-connect-target {
    padding: 25px 12px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #0a1c1f;
    font-size: 0.85rem;
    font-weight: 800;
}

.bf-connect-target {
    color: var(--accent);
    border-color: rgba(244,213,36,0.25);
}

.bf-connect-line {
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--text-muted),
            var(--accent)
        );
}

.bf-mini-book {
    width: min(100%, 390px);
    padding: 24px;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    background: #0a1c1f;
}

.bf-mini-book-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bf-mini-book-head span {
    font-weight: 800;
}

.bf-mini-book-head small {
    color: var(--accent);
}

.bf-mini-book-stats {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bf-mini-book-stats div {
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.bf-mini-book-stats span {
    display: block;
    color: var(--text-muted);
    font-size: 0.58rem;
}

.bf-mini-book-stats strong {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
}

.bf-mini-book-line {
    height: 70px;
    margin-top: 20px;
    border-bottom: 2px solid var(--accent);
    border-radius: 50%;
    transform: skewY(-5deg);
    opacity: 0.7;
}

.bf-demo-note {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.55rem;
}

.bf-performance-bars {
    margin: 25px 0;
}

.bf-performance-bars div {
    height: 7px;
    margin: 12px 0;
    overflow: hidden;
    border-radius: 999px;
    background: #17282b;
}

.bf-performance-bars span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--accent),
            #4fc6b8
        );
}

.bf-ai-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bf-ai-card-head strong {
    color: var(--accent);
}

.bf-ai-card p {
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.6;
}

.bf-ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bf-ai-tags span {
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.62rem;
}


/* ==========================================================
   PROCESS LEVELS
========================================================== */

.bf-process-levels {
    padding: 110px 0;
    background: #071416;
    border-bottom: 1px solid var(--border);
}

.bf-process-levels-heading {
    max-width: 800px;
}

.bf-process-levels-heading h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-process-levels-heading h2 span {
    color: var(--accent);
}

.bf-process-levels-heading p {
    max-width: 660px;
    color: var(--text-soft);
    line-height: 1.75;
}

.bf-process-level-list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.bf-process-level-list span {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 11px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.76rem;
    font-weight: 800;
}

.bf-process-level-list span.active {
    color: var(--accent);
    border-color: rgba(244,213,36,0.28);
}

.bf-process-level-list span.elite {
    color: #67cfc3;
}


/* ==========================================================
   INNER CTA
========================================================== */

.bf-inner-cta {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(49,169,155,0.09),
            transparent 28%
        ),
        #050e10;
}

.bf-inner-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
}

.bf-inner-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.bf-inner-cta h2 span {
    display: block;
    color: var(--accent);
}

.bf-inner-cta p {
    color: var(--text-soft);
}


/* ==========================================================
   INNER PAGE RESPONSIVE
========================================================== */

@media (max-width: 1050px) {

    .bf-inner-hero-grid,
    .bf-process-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bf-process-step {
        grid-template-columns: 50px 1fr;
    }

    .bf-process-visual {
        grid-column: 2;
        justify-content: flex-start;
    }

}

@media (max-width: 700px) {

    .bf-inner-hero {
        padding: 80px 0;
    }

    .bf-inner-actions {
        flex-direction: column;
    }

    .bf-inner-actions .button {
        width: 100%;
    }

    .bf-process-intro {
        padding: 75px 0;
    }

    .bf-process-step {
        min-height: auto;
        padding: 70px 0;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bf-process-number,
    .bf-process-visual {
        grid-column: auto;
    }

    .bf-process-level-list {
        grid-template-columns: 1fr;
    }

    .bf-inner-cta-grid {
        grid-template-columns: 1fr;
    }

    .bf-inner-cta .button {
        width: 100%;
    }

}



/* ==========================================================
   SOLUTIONS PAGE
========================================================== */

.bf-solutions-hero {
    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(49,169,155,0.13),
            transparent 29%
        ),
        #061113;
}


/* ==========================================================
   SOLUTION SYSTEM
========================================================== */

.bf-solution-system {
    padding: 30px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(14,38,41,0.96),
            rgba(6,18,20,0.97)
        );
}

.bf-solution-system-label {
    display: block;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-solution-system-core {
    width: 105px;
    height: 105px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244,213,36,0.32);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 900;
    background:
        radial-gradient(
            circle,
            rgba(244,213,36,0.08),
            transparent 65%
        );
}

.bf-solution-system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bf-solution-system-grid div {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.bf-solution-system-grid span {
    display: block;
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 900;
}

.bf-solution-system-grid strong {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
}


/* ==========================================================
   SOLUTION LAYERS
========================================================== */

.bf-solution-layers {
    padding: 120px 0;
    background: #081719;
    border-bottom: 1px solid var(--border);
}

.bf-solution-layer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bf-solution-layer {
    min-height: 320px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.015);
}

.bf-solution-layer-number {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 900;
}

.bf-solution-layer-name {
    margin-top: 45px;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-solution-layer h3 {
    margin: 9px 0 12px;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.bf-solution-layer p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.65;
}

.bf-solution-layer > div {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid var(--border);
}

.bf-solution-layer > div span {
    padding: 6px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.58rem;
}


/* ==========================================================
   PRODUCT SOLUTIONS
========================================================== */

.bf-solutions {
    padding: 125px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-solutions-heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.bf-solutions-heading h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-solutions-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-solutions-heading p {
    max-width: 660px;
    margin: 24px 0 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.bf-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bf-product-card {
    min-height: 390px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.022),
            rgba(255,255,255,0.006)
        );
}

.bf-product-featured {
    border-color: rgba(244,213,36,0.22);
    background:
        radial-gradient(
            circle at top right,
            rgba(244,213,36,0.06),
            transparent 38%
        ),
        rgba(255,255,255,0.015);
}

.bf-product-ai {
    background:
        radial-gradient(
            circle at top right,
            rgba(49,169,155,0.12),
            transparent 38%
        ),
        rgba(255,255,255,0.015);
}

.bf-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bf-product-number {
    color: var(--accent);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-product-status {
    padding: 5px 8px;
    border: 1px solid rgba(244,213,36,0.2);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.53rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.bf-product-status-level {
    color: #69cfc3;
    border-color: rgba(49,169,155,0.25);
}

.bf-product-status-future {
    color: var(--text-muted);
    border-color: var(--border);
}

.bf-product-category {
    margin-top: 45px;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.bf-product-card h3 {
    margin: 8px 0 12px;
    font-size: 1.65rem;
    letter-spacing: -0.035em;
}

.bf-product-card p {
    max-width: 520px;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.7;
}

.bf-product-card ul {
    margin: auto 0 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid var(--border);
}

.bf-product-card li {
    position: relative;
    margin: 7px 0;
    padding-left: 17px;
    color: var(--text-muted);
    font-size: 0.72rem;
}

.bf-product-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}



/* ==========================================================
   CONNECTED ECOSYSTEM
========================================================== */

.bf-solutions-connected {
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(49,169,155,0.08),
            transparent 28%
        ),
        #071416;
    border-bottom: 1px solid var(--border);
}

.bf-solutions-connected-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
    align-items: center;
}

.bf-solutions-connected h2 {
    margin: 0;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.bf-solutions-connected h2 span {
    display: block;
    color: var(--accent);
}

.bf-solutions-connected p {
    max-width: 600px;
    color: var(--text-soft);
    line-height: 1.75;
}

.bf-connected-flow {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;
    align-items: center;
    gap: 8px;
}

.bf-connected-flow div {
    min-height: 145px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.012);
}

.bf-connected-flow span {
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 900;
}

.bf-connected-flow strong {
    margin-top: 7px;
    font-size: 0.86rem;
}

.bf-connected-flow small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.58rem;
}

.bf-connected-flow i {
    color: var(--text-muted);
    font-style: normal;
}


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

@media (max-width: 1050px) {

    .bf-solution-layer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bf-solutions-connected-grid {
        grid-template-columns: 1fr;
    }

    .bf-connected-flow {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .bf-connected-flow i {
        display: none;
    }

}

@media (max-width: 700px) {

    .bf-solution-layers,
    .bf-solutions,
    .bf-solutions-connected {
        padding: 85px 0;
    }

    .bf-solution-system-grid {
        grid-template-columns: 1fr;
    }

    .bf-solution-layer-grid,
    .bf-product-grid,
    .bf-connected-flow {
        grid-template-columns: 1fr;
    }

    .bf-product-card {
        min-height: 350px;
    }

}



/* ==========================================================
   SOLUTIONS - LEGIBILIDAD DE LISTAS
   Ajuste 2026-08-25
========================================================== */

.bf-product-card li {
    margin: 9px 0;
    padding-left: 19px;

    color: var(--text-soft);

    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.5;
}

.bf-product-card li::before {
    width: 6px;
    height: 6px;
    top: 0.58em;
}

@media (max-width: 700px) {

    .bf-product-card li {
        font-size: 0.88rem;
    }

}



/* ==========================================================
   ACADEMIA BLACKFOREX
========================================================== */

.bf-academy-hero {
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(49,169,155,0.12),
            transparent 30%
        ),
        #061113;
}


/* ==========================================================
   ACADEMY SUMMARY
========================================================== */

.bf-academy-summary {
    padding: 30px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(14,38,41,0.96),
            rgba(6,18,20,0.97)
        );
}

.bf-academy-summary-label {
    display: block;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-academy-summary-flow {
    display: grid;
    gap: 8px;
}

.bf-academy-summary-flow div {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.bf-academy-summary-flow span {
    display: inline-block;
    width: 28px;
    color: var(--accent);
    font-size: 0.58rem;
    font-weight: 900;
}

.bf-academy-summary-flow strong {
    font-size: 0.86rem;
}

.bf-academy-summary-flow small {
    display: block;
    margin: 4px 0 0 32px;
    color: var(--text-muted);
    font-size: 0.62rem;
}


/* ==========================================================
   ACADEMY PRINCIPLE
========================================================== */

.bf-academy-principle {
    padding: 100px 0;
    background: #081719;
    border-bottom: 1px solid var(--border);
}

.bf-academy-principle-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: end;
}

.bf-academy-principle h2 {
    margin: 0;
    font-size: clamp(2.7rem, 4.8vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-academy-principle h2 span {
    display: block;
    color: var(--accent);
}

.bf-academy-principle p {
    color: var(--text-soft);
    line-height: 1.75;
}


/* ==========================================================
   ACADEMIC PATH
========================================================== */

.bf-academy-path {
    padding: 125px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-academy-path-heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.bf-academy-path-heading h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-academy-path-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-academy-path-heading p {
    max-width: 680px;
    color: var(--text-soft);
    line-height: 1.75;
}

.bf-academy-path-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bf-academy-module {
    min-height: 350px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.022),
            rgba(255,255,255,0.006)
        );
}

.bf-academy-module-advanced {
    grid-column: 1 / -1;
    min-height: 280px;
    background:
        radial-gradient(
            circle at top right,
            rgba(49,169,155,0.11),
            transparent 38%
        ),
        rgba(255,255,255,0.015);
}

.bf-academy-module-number {
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 900;
}

.bf-academy-module-type {
    margin-top: 45px;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-academy-module h3 {
    margin: 8px 0 12px;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.bf-academy-module p {
    max-width: 590px;
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

.bf-academy-module > div {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    border-top: 1px solid var(--border);
}

.bf-academy-module > div span {
    padding: 7px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.68rem;
}



/* ==========================================================
   ACADEMY LEVELS
========================================================== */

.bf-academy-levels {
    padding: 115px 0;
    background: #071416;
    border-bottom: 1px solid var(--border);
}

.bf-academy-levels-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 60px;
}

.bf-academy-levels-heading h2 {
    margin: 0;
    font-size: clamp(2.6rem, 4.7vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-academy-levels-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-academy-levels-heading p {
    color: var(--text-soft);
    line-height: 1.75;
}

.bf-academy-level-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.bf-academy-level-track article {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255,255,255,0.012);
}

.bf-academy-level-track span {
    display: block;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 900;
}

.bf-academy-level-track strong {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
}

.bf-academy-level-track small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.62rem;
}

.bf-academy-level-track .active {
    border-color: rgba(244,213,36,0.3);
}

.bf-academy-level-track .active strong {
    color: var(--accent);
}

.bf-academy-level-track .elite strong {
    color: #68cfc3;
}


/* ==========================================================
   EDUCATION + INTELLIGENCE
========================================================== */

.bf-academy-intelligence {
    padding: 115px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-academy-intelligence-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 75px;
    align-items: center;
}

.bf-academy-intelligence h2,
.bf-academy-coach h2 {
    margin: 0;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.bf-academy-intelligence h2 span,
.bf-academy-coach h2 span {
    display: block;
    color: var(--accent);
}

.bf-academy-intelligence p,
.bf-academy-coach p {
    color: var(--text-soft);
    line-height: 1.75;
}

.bf-academy-intelligence-flow {
    display: grid;
    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;
    gap: 8px;
    align-items: center;
}

.bf-academy-intelligence-flow div {
    min-height: 145px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.bf-academy-intelligence-flow span {
    color: var(--accent);
    font-size: 0.56rem;
    font-weight: 900;
}

.bf-academy-intelligence-flow strong {
    margin-top: 7px;
    font-size: 0.82rem;
}

.bf-academy-intelligence-flow small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.58rem;
}

.bf-academy-intelligence-flow i {
    color: var(--text-muted);
    font-style: normal;
}

.bf-academy-intelligence-ai {
    border-color: rgba(244,213,36,0.25) !important;
}


/* ==========================================================
   ACADEMY COACH
========================================================== */

.bf-academy-coach {
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 25% 50%,
            rgba(49,169,155,0.09),
            transparent 28%
        ),
        #071416;
    border-bottom: 1px solid var(--border);
}

.bf-academy-coach-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.bf-academy-coach-card {
    padding: 30px;
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    background: #0a1c1f;
}

.bf-academy-coach-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.bf-academy-coach-card > strong {
    display: block;
    margin-top: 25px;
    font-size: 1.45rem;
}

.bf-academy-coach-card p {
    font-size: 0.88rem;
}

.bf-academy-coach-tags {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bf-academy-coach-tags span {
    padding: 7px 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.68rem;
}


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

@media (max-width: 1050px) {

    .bf-academy-principle-grid,
    .bf-academy-levels-heading,
    .bf-academy-intelligence-grid,
    .bf-academy-coach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bf-academy-level-track {
        grid-template-columns: repeat(3, 1fr);
    }

    .bf-academy-intelligence-flow {
        grid-template-columns: 1fr 1fr;
    }

    .bf-academy-intelligence-flow i {
        display: none;
    }

}

@media (max-width: 700px) {

    .bf-academy-principle,
    .bf-academy-path,
    .bf-academy-levels,
    .bf-academy-intelligence,
    .bf-academy-coach {
        padding: 85px 0;
    }

    .bf-academy-path-grid,
    .bf-academy-level-track,
    .bf-academy-intelligence-flow {
        grid-template-columns: 1fr;
    }

    .bf-academy-module-advanced {
        grid-column: auto;
    }

}



/* ==========================================================
   ACADEMIA - AJUSTE TIPOGRÁFICO MODELO DE APRENDIZAJE
   2026-08-25
========================================================== */

.bf-academy-summary-label {
    font-size: 15px;
    line-height: 1.4;
}

.bf-academy-summary-flow div {
    padding: 20px 22px;
}

.bf-academy-summary-flow span {
    width: 34px;
    font-size: 15px;
    line-height: 1.4;
}

.bf-academy-summary-flow strong {
    font-size: 25px;
    line-height: 1.2;
}

.bf-academy-summary-flow small {
    margin-top: 7px;
    margin-left: 38px;

    font-size: 17px;
    line-height: 1.45;
}

@media (max-width: 700px) {

    .bf-academy-summary-flow strong {
        font-size: 22px;
    }

    .bf-academy-summary-flow small {
        font-size: 16px;
    }

}



/* ==========================================================
   ACADEMIA - AJUSTE GENERAL DE LEGIBILIDAD
   2026-08-25
========================================================== */

.bf-academy-module-type {
    font-size: 14px;
    line-height: 1.4;
}

.bf-academy-module h3 {
    font-size: 26px;
    line-height: 1.2;
}

.bf-academy-module p {
    font-size: 18px;
    line-height: 1.65;
}

.bf-academy-module > div span {
    font-size: 15px;
    line-height: 1.35;
    padding: 8px 11px;
}

.bf-academy-path-heading p {
    font-size: 18px;
    line-height: 1.7;
}

.bf-academy-principle p {
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 700px) {

    .bf-academy-module h3 {
        font-size: 23px;
    }

    .bf-academy-module p,
    .bf-academy-path-heading p,
    .bf-academy-principle p {
        font-size: 16px;
    }

    .bf-academy-module > div span {
        font-size: 14px;
    }

}



/* ==========================================================
   ACADEMIA - LEGIBILIDAD
   APRENDIZAJE CON CONTEXTO + APRENDIZAJE POR NIVEL
   2026-08-25
========================================================== */


/* ----------------------------------------------------------
   APRENDIZAJE CON CONTEXTO
---------------------------------------------------------- */

.bf-academy-intelligence-flow > div > span {
    font-size: 16px;
    line-height: 1.3;
}

.bf-academy-intelligence-flow > div > strong {
    font-size: 21px;
    line-height: 1.25;
}

.bf-academy-intelligence-flow > div > small {
    font-size: 17px;
    line-height: 1.45;
}


/* Flechas entre tarjetas */

.bf-academy-intelligence-flow > i {
    font-size: 22px;
}


/* ----------------------------------------------------------
   APRENDIZAJE POR NIVEL
---------------------------------------------------------- */

.bf-academy-level-track article > span {
    font-size: 16px;
    line-height: 1.3;
}

.bf-academy-level-track article > strong {
    font-size: 21px;
    line-height: 1.25;
}

.bf-academy-level-track article > small {
    font-size: 17px;
    line-height: 1.45;
}


/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */

@media (max-width: 700px) {

    .bf-academy-intelligence-flow > div > span,
    .bf-academy-level-track article > span {
        font-size: 14px;
    }

    .bf-academy-intelligence-flow > div > strong,
    .bf-academy-level-track article > strong {
        font-size: 19px;
    }

    .bf-academy-intelligence-flow > div > small,
    .bf-academy-level-track article > small {
        font-size: 16px;
    }

}



/* ==========================================================
   ACADEMIA - CORRECCIÓN LAYOUT APRENDIZAJE CON CONTEXTO
   2026-08-25
========================================================== */

/*
 * El título y explicación ocupan ahora todo el ancho.
 * El flujo de aprendizaje aparece debajo en 4 columnas iguales.
 */

.bf-academy-intelligence-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 55px;
}


/* Texto introductorio */

.bf-academy-intelligence-grid > div:first-child {
    max-width: 850px;
}

.bf-academy-intelligence-grid > div:first-child p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
}


/* ==========================================================
   FLUJO DE 4 ETAPAS
========================================================== */

.bf-academy-intelligence-flow {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 16px;

    align-items: stretch;
}


/* Quitamos las flechas que ocupaban columnas */

.bf-academy-intelligence-flow > i {
    display: none;
}


/* Tarjetas */

.bf-academy-intelligence-flow > div {
    min-width: 0;
    min-height: 190px;

    padding: 26px 24px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    border: 1px solid var(--border);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.020),
            rgba(255,255,255,0.006)
        );
}


/* Número */

.bf-academy-intelligence-flow > div > span {
    display: block;

    margin-bottom: 24px;

    color: var(--accent);

    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}


/* Nombre de etapa */

.bf-academy-intelligence-flow > div > strong {
    display: block;

    margin: 0;

    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;

    white-space: normal;
}


/* Descripción */

.bf-academy-intelligence-flow > div > small {
    display: block;

    margin-top: 10px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.45;
}


/* Coach IA como etapa final */

.bf-academy-intelligence-flow
.bf-academy-intelligence-ai {
    border-color: rgba(244,213,36,0.35);

    background:
        linear-gradient(
            145deg,
            rgba(244,213,36,0.045),
            rgba(255,255,255,0.006)
        );
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .bf-academy-intelligence-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


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

@media (max-width: 700px) {

    .bf-academy-intelligence-grid {
        gap: 38px;
    }

    .bf-academy-intelligence-flow {
        grid-template-columns: 1fr;
    }

    .bf-academy-intelligence-flow > div {
        min-height: auto;
        padding: 22px;
    }

    .bf-academy-intelligence-flow > div > span {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .bf-academy-intelligence-flow > div > strong {
        font-size: 20px;
    }

    .bf-academy-intelligence-flow > div > small {
        font-size: 16px;
    }

}



/* ==========================================================
   NOSOTROS / ABOUT BLACKFOREX
========================================================== */

.bf-about-hero {
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(49,169,155,0.13),
            transparent 30%
        ),
        #061113;
}


/* ==========================================================
   DEFINITION
========================================================== */

.bf-about-definition {
    padding: 36px;
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(14,38,41,0.96),
            rgba(6,18,20,0.97)
        );
}

.bf-about-definition-label {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-about-definition > strong {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.bf-about-definition > strong span {
    margin: 7px 0;
    color: var(--accent);
    font-size: 18px;
}

.bf-about-definition p {
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}


/* ==========================================================
   ABOUT INTRO
========================================================== */

.bf-about-intro {
    padding: 110px 0;
    background: #081719;
    border-bottom: 1px solid var(--border);
}

.bf-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 85px;
    align-items: start;
}

.bf-about-intro h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-about-intro h2 span {
    display: block;
    color: var(--accent);
}

.bf-about-intro-copy p {
    margin: 0 0 20px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}


/* ==========================================================
   WHY BLACKFOREX
========================================================== */

.bf-about-why {
    padding: 125px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-about-why-heading {
    max-width: 840px;
    margin-bottom: 60px;
}

.bf-about-why-heading h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.bf-about-why-heading h2 span {
    display: block;
    color: var(--accent);
}

.bf-about-why-heading p {
    max-width: 690px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.bf-about-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bf-about-problem-grid article {
    min-height: 310px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.012);
}

.bf-about-problem-grid article > span {
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
}

.bf-about-problem-grid h3 {
    margin: auto 0 15px;
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.bf-about-problem-grid p {
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.65;
}


/* ==========================================================
   ABOUT PILLARS
========================================================== */

.bf-about-pillars {
    padding: 125px 0;
    background: #071416;
    border-bottom: 1px solid var(--border);
}

.bf-about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bf-about-pillar-grid article {
    min-height: 380px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,0.014);
}

.bf-about-pillar-ai {
    background:
        radial-gradient(
            circle at top right,
            rgba(49,169,155,0.12),
            transparent 40%
        ) !important;
}

.bf-about-pillar-number {
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
}

.bf-about-pillar-type {
    margin-top: 45px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-about-pillar-grid h3 {
    margin: 8px 0 12px;
    font-size: 25px;
}

.bf-about-pillar-grid p {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.bf-about-pillar-grid article > strong {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--accent);
    font-size: 15px;
}



/* ==========================================================
   PRINCIPLES
========================================================== */

.bf-about-principles {
    padding: 125px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-about-principles-heading {
    max-width: 800px;
    margin-bottom: 55px;
}

.bf-about-principles-heading h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-about-principles-heading h2 span {
    color: var(--accent);
}

.bf-about-principle-list {
    border-top: 1px solid var(--border);
}

.bf-about-principle-list article {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    border-bottom: 1px solid var(--border);
}

.bf-about-principle-list article > span {
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
}

.bf-about-principle-list h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
}

.bf-about-principle-list p {
    max-width: 720px;
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}


/* ==========================================================
   BIP
========================================================== */

.bf-about-bip {
    padding: 125px 0;
    background:
        radial-gradient(
            circle at 76% 50%,
            rgba(49,169,155,0.11),
            transparent 30%
        ),
        #071416;
    border-bottom: 1px solid var(--border);
}

.bf-about-bip-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 85px;
    align-items: center;
}

.bf-about-bip h2,
.bf-about-vision h2,
.bf-about-responsibility h2 {
    margin: 0;
    font-size: clamp(2.7rem, 4.8vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-about-bip h2 span,
.bf-about-vision h2 span,
.bf-about-responsibility h2 span {
    display: block;
    color: var(--accent);
}

.bf-about-bip p,
.bf-about-vision p,
.bf-about-responsibility p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.bf-about-bip-system {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-about-bip-system::before,
.bf-about-bip-system::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(244,213,36,0.15);
}

.bf-about-bip-system::before {
    width: 390px;
    height: 390px;
}

.bf-about-bip-system::after {
    width: 290px;
    height: 290px;
    border-color: rgba(49,169,155,0.2);
}

.bf-about-bip-core {
    position: relative;
    z-index: 2;
    width: 185px;
    height: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244,213,36,0.3);
    border-radius: 50%;
    background: #081719;
}

.bf-about-bip-core span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-about-bip-core strong {
    margin-top: 6px;
    font-size: 35px;
}

.bf-about-bip-core small {
    color: var(--text-muted);
    font-size: 13px;
}

.bf-about-bip-orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.bf-about-bip-orbit span {
    position: absolute;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #081719;
    color: var(--text-soft);
    font-size: 14px;
}

.bf-about-bip-orbit span:nth-child(1) {
    top: 8%;
    left: 41%;
}

.bf-about-bip-orbit span:nth-child(2) {
    top: 38%;
    right: 2%;
}

.bf-about-bip-orbit span:nth-child(3) {
    bottom: 8%;
    right: 24%;
}

.bf-about-bip-orbit span:nth-child(4) {
    bottom: 14%;
    left: 8%;
}

.bf-about-bip-orbit span:nth-child(5) {
    top: 31%;
    left: 0;
}


/* ==========================================================
   VISION
========================================================== */

.bf-about-vision {
    padding: 115px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-about-vision-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 85px;
    align-items: center;
}


/* ==========================================================
   RESPONSIBILITY
========================================================== */

.bf-about-responsibility {
    padding: 100px 0;
    background: #071416;
    border-bottom: 1px solid var(--border);
}

.bf-about-responsibility-box {
    padding: 45px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 75px;
    border: 1px solid rgba(244,213,36,0.18);
    border-radius: 20px;
    background:
        linear-gradient(
            120deg,
            rgba(244,213,36,0.035),
            rgba(49,169,155,0.025)
        );
}


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

@media (max-width: 1050px) {

    .bf-about-intro-grid,
    .bf-about-bip-grid,
    .bf-about-vision-grid,
    .bf-about-responsibility-box {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .bf-about-problem-grid,
    .bf-about-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .bf-about-intro,
    .bf-about-why,
    .bf-about-pillars,
    .bf-about-principles,
    .bf-about-bip,
    .bf-about-vision,
    .bf-about-responsibility {
        padding: 85px 0;
    }

    .bf-about-problem-grid,
    .bf-about-pillar-grid {
        grid-template-columns: 1fr;
    }

    .bf-about-principle-list article {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bf-about-bip-system {
        min-height: 420px;
        transform: scale(0.88);
    }

    .bf-about-responsibility-box {
        padding: 28px;
    }

}



/* ==========================================================
   CONTACTO BLACKFOREX
========================================================== */


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

.bf-contact-hero {
    padding: 120px 0;
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(49,169,155,0.14),
            transparent 31%
        ),
        #061113;
    border-bottom: 1px solid var(--border);
}

.bf-contact-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 85px;
    align-items: center;
}

.bf-contact-hero-content h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3.4rem, 6vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.bf-contact-hero-content h1 span {
    display: block;
    color: var(--accent);
}

.bf-contact-hero-content > p {
    max-width: 690px;
    margin: 30px 0 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.bf-contact-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ==========================================================
   CONTACT PANEL
========================================================== */

.bf-contact-panel {
    padding: 38px;
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(14,38,41,0.97),
            rgba(6,18,20,0.98)
        );
}

.bf-contact-panel-label {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-contact-panel h2 {
    margin: 25px 0 0;
    font-size: 37px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.bf-contact-panel h2 span {
    color: var(--accent);
}

.bf-contact-panel-line {
    height: 1px;
    margin: 30px 0;
    background: var(--border);
}

.bf-contact-panel-item + .bf-contact-panel-item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.bf-contact-panel-item > span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-contact-panel-item > strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 21px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bf-contact-panel-item > small {
    display: block;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.55;
}


/* ==========================================================
   CHANNELS
========================================================== */

.bf-contact-channels {
    padding: 125px 0;
    background: #071416;
    border-bottom: 1px solid var(--border);
}

.bf-contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bf-contact-channel-card {
    min-height: 470px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.018),
            rgba(255,255,255,0.006)
        );
}

.bf-contact-channel-primary {
    border-color: rgba(244,213,36,0.28);
    background:
        radial-gradient(
            circle at top right,
            rgba(244,213,36,0.055),
            transparent 38%
        ),
        rgba(255,255,255,0.012);
}

.bf-contact-channel-number {
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
}

.bf-contact-channel-type {
    margin-top: 48px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.bf-contact-channel-card h3 {
    margin: 8px 0 14px;
    font-size: 27px;
    letter-spacing: -0.03em;
}

.bf-contact-channel-card > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.bf-contact-channel-card ul {
    margin: 28px 0;
    padding: 24px 0 0;
    list-style: none;
    border-top: 1px solid var(--border);
}

.bf-contact-channel-card li {
    position: relative;
    padding-left: 19px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.bf-contact-channel-card li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.bf-contact-link {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--border);
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.bf-contact-link span {
    color: var(--accent);
    font-size: 23px;
}


/* ==========================================================
   GUIDANCE
========================================================== */

.bf-contact-guidance {
    padding: 120px 0;
    background: #050f11;
    border-bottom: 1px solid var(--border);
}

.bf-contact-guidance-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 90px;
    align-items: center;
}

.bf-contact-guidance h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.bf-contact-guidance h2 span {
    display: block;
    color: var(--accent);
}

.bf-contact-guidance p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.bf-contact-guidance .button {
    margin-top: 18px;
}


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

.bf-contact-note {
    padding: 80px 0;
    background: #071416;
}

.bf-contact-note-box {
    padding: 32px 38px;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 35px;
    align-items: start;
    border: 1px solid rgba(244,213,36,0.18);
    border-radius: 18px;
}

.bf-contact-note-box > span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bf-contact-note-box p {
    max-width: 850px;
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}


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

@media (max-width: 1050px) {

    .bf-contact-hero-grid,
    .bf-contact-guidance-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bf-contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .bf-contact-channel-card {
        min-height: auto;
    }

}


@media (max-width: 700px) {

    .bf-contact-hero,
    .bf-contact-channels,
    .bf-contact-guidance {
        padding: 85px 0;
    }

    .bf-contact-panel {
        padding: 28px;
    }

    .bf-contact-actions {
        flex-direction: column;
    }

    .bf-contact-actions .button {
        width: 100%;
    }

    .bf-contact-note-box {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 27px;
    }

}

