/* Global Scope Wrapper */
.fbx-master-scope {
    background-color: #080808;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.fbx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Yellow Underline System */
.fbx-heading-underlined {
    position: relative;
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.fbx-heading-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #ffcc00;
    border-radius: 2px;
}

.fbx-center-head {
    text-align: center;
    width: 100%;
}

.fbx-center-head .fbx-heading-underlined::after {
    left: 50%;
    transform: translateX(-50%);
}

.fbx-heading-underlined span {
    color: #ffcc00;
}

/* Hero Section (Responsive Fix) */
.fbx-hero {
    position: relative;
    min-height: 85vh;
    background: url('') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Space for Nav on Mobile */
}

.fbx-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.fbx-hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
}

.fbx-main-h {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0;
}

.fbx-main-h span {
    color: #ffcc00;
}

.fbx-hero-p {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    color: #ccc;
    margin-bottom: 30px;
}

/* Buttons */
.fbx-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fbx-btn-gold {
    background: #ffcc00;
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    text-align: center;
}

.fbx-btn-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    text-align: center;
}

.fbx-btn-gold:hover {
    background: #fff;
    transform: translateY(-3px);
}

.fbx-btn-white:hover {
    background: #fff;
    color: #000;
}

/* Split Section (Desktop/Tablet/Mobile) */
.fbx-section {
    padding: clamp(50px, 10vh, 90px) 0;
}

.fbx-bg-darker {
    background-color: #030303;
}

.fbx-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.fbx-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
}

.fbx-image-wrapper img {
    width: 100%;
    display: block;
}

/* Features List */
.fbx-feat-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.fbx-feat-list li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.fbx-feat-list li i {
    color: #ffcc00;
}

/* Grid & Cards */
.fbx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.fbx-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.4s;
}

.fbx-card:hover {
    transform: translateY(-8px);
    border-color: #ffcc00;
}

.fbx-card-img {
    height: 200px;
    overflow: hidden;
}

.fbx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fbx-card-body {
    padding: 20px;
}

.fbx-card-body h3 {
    color: #ffcc00;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.fbx-card-body p {
    font-size: 0.9rem;
    color: #bbb;
}

/* App Grid */
.fbx-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.fbx-app-item {
    background: #111;
    padding: 30px 15px;
    border-radius: 8px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.3s;
}

.fbx-app-item i {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.fbx-app-item p {
    font-size: 0.9rem;
    font-weight: 600;
}

.fbx-app-item:hover {
    background: #ffcc00;
}

.fbx-app-item:hover i,
.fbx-app-item:hover p {
    color: #000;
}

/* Yellow Stats Bar */
.fbx-yellow-bar {
    background: #ffcc00;
    color: #000;
    padding: 40px 0;
}

.fbx-bar-flex {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 25px;
}

.fbx-bar-box h4 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
}

.fbx-bar-box p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

/* MEDIA QUERIES FOR MOBILE */
@media (max-width: 992px) {
    .fbx-split {
        grid-template-columns: 1fr;
    }

    .fbx-hero {
        text-align: center;
        padding-top: 100px;
    }

    .fbx-hero-btns {
        justify-content: center;
    }

    .fbx-img-side {
        order: -1;
    }

    /* Image comes above text on tablet/mobile */
}

@media (max-width: 768px) {
    .fbx-hero {
        min-height: 70vh;
    }

    .fbx-heading-underlined {
        margin-bottom: 30px;
        text-align: center;
        display: block;
    }

    .fbx-heading-underlined::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fbx-hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .fbx-btn-gold,
    .fbx-btn-white {
        width: 100%;
    }
}