    /* 1. CORE SETUP */
    .fb-mmt-scope {
        background: #0a0a0a;
        color: #fff;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    .fb-mmt-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
        margin-top: 50px;
    }

    /* 2. TITLES */
    .fb-mmt-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    .fb-mmt-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 5px;
        background: #ffcc00;
    }

    .fb-mmt-header-center {
        text-align: center;
        margin-bottom: 50px;
    }

    .fb-mmt-header-center .fb-mmt-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fb-mmt-title span {
        color: #ffcc00;
    }

    /* 3. HERO SECTION */
    .fb-mmt-hero {
        padding: clamp(80px, 15vh, 180px) 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.96) 30%, rgba(20, 20, 20, 0.4) 100%),
            url('') center/cover;
        background-attachment: fixed;
    }

    .fb-mmt-badge {
        color: #ffcc00;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .fb-mmt-h1 {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .fb-mmt-p {
        max-width: 600px;
        color: #ccc;
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .fb-mmt-btn-wrap {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* 4. BUTTONS */
    .fb-mmt-btn-y {
        background: #ffcc00;
        color: #000;
        padding: 16px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-mmt-btn-w {
        border: 2px solid #fff;
        color: #fff;
        padding: 14px 35px;
        text-decoration: none;
        font-weight: 800;
        border-radius: 4px;
        transition: 0.3s;
        display: inline-block;
    }

    .fb-mmt-btn-y:hover {
        background: #fff;
        transform: translateY(-3px);
    }

    /* 5. MULTIMETER LCD VISUAL */
    .fb-mmt-section {
        padding: clamp(50px, 10vh, 100px) 0;
    }

    .fb-mmt-bg-dark {
        background: #050505;
    }

    .fb-mmt-split {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .fb-mmt-resp-img {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #333;
    }

    .fb-mmt-meter-box {
        background: #111;
        padding: 25px;
        border-radius: 12px;
        margin-top: 30px;
        border: 1px solid #222;
        max-width: 400px;
    }

    .fb-mmt-lcd {
        background: #cfd8dc;
        color: #1a1a1a;
        padding: 15px;
        border-radius: 4px;
        border: 3px solid #333;
        font-family: 'Courier New', monospace;
        margin-bottom: 15px;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .fb-mmt-lcd-top {
        font-size: 10px;
        font-weight: 900;
        display: flex;
        justify-content: space-between;
    }

    .fb-mmt-lcd-main {
        font-size: 2.2rem;
        font-weight: 900;
        text-align: center;
        margin: 10px 0;
    }

    .fb-mmt-lcd-main span {
        font-size: 1rem;
        color: #555;
    }

    .fb-mmt-lcd-graph {
        display: flex;
        gap: 4px;
        height: 5px;
    }

    .fb-mmt-segment {
        flex: 1;
        background: rgba(0, 0, 0, 0.1);
    }

    .fb-mmt-segment.fill {
        background: #1a1a1a;
    }

    .fb-mmt-dial-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .fb-mmt-dial-indicator {
        font-size: 11px;
        font-weight: 800;
        color: #ffcc00;
    }

    .fb-mmt-status {
        font-size: 9px;
        background: #000;
        padding: 3px 8px;
        border-radius: 2px;
        color: #888;
        border: 1px solid #333;
    }

    /* 6. CARDS (Industrial Frame) */
    .fb-mmt-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .fb-mmt-card {
        background: #111;
        border: 1px solid #222;
        position: relative;
        transition: 0.4s;
    }

    .fb-mmt-card-head {
        background: #1a1a1a;
        padding: 10px 20px;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
        color: #555;
        border-bottom: 1px solid #222;
    }

    .fb-mmt-active {
        border-color: #ffcc00;
    }

    .fb-mmt-active .fb-mmt-card-head {
        background: #ffcc00;
        color: #000;
        border-color: #ffcc00;
    }

    .fb-mmt-card-body {
        padding: 30px;
    }

    .fb-mmt-card h3 {
        margin-bottom: 12px;
        font-size: 1.3rem;
    }

    .fb-mmt-card p {
        color: #888;
        font-size: 0.9rem;
    }

    .fb-mmt-card:hover {
        transform: translateY(-8px);
        border-color: #ffcc00;
    }

    /* 7. DUAL INFO BOXES */
    .fb-mmt-dual {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .fb-mmt-info-card {
        padding: clamp(30px, 5vw, 50px);
        background: #111;
        border-left: 5px solid #333;
    }

    .fb-mmt-yellow {
        background: #ffcc00;
        color: #000;
        border-left-color: #000;
    }

    .fb-mmt-ul {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

    .fb-mmt-ul li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 30px;
        font-weight: 700;
        font-size: 0.95rem;
    }

    .fb-mmt-yellow .fb-mmt-ul li {
        border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .fb-mmt-ul li::before {
        content: '\f1e6';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #ffcc00;
    }

    .fb-mmt-yellow .fb-mmt-ul li::before {
        color: #000;
    }

    /* 8. RESPONSIVE DESIGN */
    @media (max-width: 992px) {
        .fb-mmt-split {
            grid-template-columns: 1fr;
        }

        .fb-mmt-img-box {
            order: -1;
        }
    }

    @media (max-width: 600px) {
        .fb-mmt-hero {
            text-align: center;
        }

        .fb-mmt-badge {
            justify-content: center;
        }

        .fb-mmt-btn-wrap {
            flex-direction: column;
            align-items: center;
        }

        .fb-mmt-btn-y,
        .fb-mmt-btn-w {
            width: 100%;
            text-align: center;
            max-width: 320px;
        }

        .fb-mmt-h1 {
            font-size: 2.2rem;
        }

        .fb-mmt-title {
            text-align: center;
        }

        .fb-mmt-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
    }