    /* 1. BASE SETUP */
    .fb-conn-scope {
        background: #0a0a0a;
        color: #fff;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-conn-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
        margin-top: 50px;
    }

    /* 2. TITLES (Left Aligned) */
    .fb-conn-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        text-align: left;
    }

    .fb-conn-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 5px;
        background: #ffcc00;
    }

    .fb-conn-title span {
        color: #ffcc00;
    }

    .fb-conn-header-left {
        margin-bottom: 40px;
    }

    /* 3. HERO SECTION (Responsive & Left Aligned) */
    .fb-conn-hero {
        padding: clamp(60px, 12vh, 160px) 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.5) 100%), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc48?q=80&w=1600') center/cover;
        text-align: left;
    }

    .fb-conn-badge {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .fb-conn-h1 {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .fb-conn-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-conn-btn-wrap {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* 4. BUTTONS */
    .fb-conn-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 15px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-conn-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 13px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
    }

    .fb-conn-btn-y:hover {
        background: #fff;
        transform: translateY(-3px);
    }

    /* 5. GRID & SPLIT */
    .fb-conn-section {
        padding: clamp(40px, 8vh, 100px) 0;
    }

    .fb-conn-bg-dark {
        background: #050505;
    }

    .fb-conn-split {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: clamp(30px, 5vw, 60px);
        align-items: center;
    }

    .fb-conn-resp-img {
        width: 100%;
        border-radius: 12px;
        border: 1px solid #333;
    }

    .fb-conn-feature-row {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .fb-conn-f-item {
        background: #111;
        padding: 8px 15px;
        border-radius: 4px;
        border: 1px solid #222;
        color: #ffcc00;
        font-weight: 700;
        font-size: 0.85rem;
    }

    /* 6. CARDS (Precision Terminal Design) */
    .fb-conn-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .fb-conn-card {
        background: #111;
        border-left: 4px solid #333;
        transition: 0.4s ease;
        cursor: default;
    }

    .fb-conn-card-inner {
        padding: 30px;
    }

    .fb-conn-active {
        border-left-color: #ffcc00;
        background: #1a1a1a;
    }

    .fb-conn-type {
        color: #ffcc00;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .fb-conn-card h3 {
        margin-bottom: 12px;
        font-size: 1.3rem;
    }

    .fb-conn-card p {
        color: #888;
        font-size: 0.95rem;
    }

    .fb-conn-card:hover {
        transform: translateX(10px);
    }

    /* 7. DUAL LISTS */
    .fb-conn-dual {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .fb-conn-info-card {
        padding: clamp(25px, 5vw, 40px);
        background: #111;
        border: 1px solid #222;
        border-radius: 8px;
    }

    .fb-conn-yellow {
        background: #ffcc00;
        color: #000;
        border: none;
    }

    .fb-conn-ul {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

    .fb-conn-ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 30px;
        font-weight: 700;
    }

    .fb-conn-yellow .fb-conn-ul li {
        border-bottom-color: rgba(0, 0, 0, 0.05);
    }

    .fb-conn-ul li::before {
        content: '●';
        position: absolute;
        left: 0;
        color: #ffcc00;
    }

    .fb-conn-yellow .fb-conn-ul li::before {
        color: #000;
    }

    /* 8. MEDIA QUERIES */
    @media (max-width: 992px) {
        .fb-conn-split {
            grid-template-columns: 1fr;
        }

        .fb-conn-img-box {
            order: -1;
            margin-bottom: 20px;
        }

        .fb-conn-hero {
            text-align: left;
        }
    }

    @media (max-width: 600px) {
        .fb-conn-hero {
            text-align: center;
        }

        .fb-conn-badge {
            justify-content: center;
        }

        .fb-conn-h1 {
            font-size: 2.2rem;
        }

        .fb-conn-p {
            margin: 0 auto 30px;
        }

        .fb-conn-btn-wrap {
            flex-direction: column;
            align-items: center;
        }

        .fb-conn-btn-y,
        .fb-conn-btn-w {
            width: 100%;
            text-align: center;
        }

        .fb-conn-title {
            text-align: center;
        }

        .fb-conn-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .fb-conn-feature-row {
            justify-content: center;
        }
    }