
    /* --- 1. GLOBAL B2B MODE: HIDE ALL PRICES --- */
    .prod_price, 
    .price_data, 
    .ueeshop_price, 
    .prod_list .prod_price, 
    .prod_box .prod_price,
    .product_price,
    .pro_price,
    .detail_price,
    .current_price,
    .price_box,
    .product-info .price,
    .market_price,
    .market-price,
    .old_price,
    .mobile_price,
    .wap_price {
        display: none !important;
    }

    /* --- 2. HERO BANNER STYLES --- */
    .fuji-custom-hero-wrapper {
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        color: #333;
        line-height: 1.6;
        padding: 50px 0;
        background-color: #fff;
        width: 96%; 
        max-width: 1440px; 
        margin: 0 auto;
        box-sizing: border-box;
    }

    .fuji-hero-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center; 
        justify-content: flex-start;
        gap: 50px; 
    }

    /* Left Column: Image */
    .fuji-hero-image {
        flex: 0 0 42%; 
        max-width: 650px; 
        position: relative;
    }

    .fuji-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: block;
    }

    /* Right Column: Text Content */
    .fuji-hero-content {
        flex: 1; 
        min-width: 350px; 
    }

    .fuji-hero-content h2 {
        font-size: 32px; 
        font-weight: 800;
        color: #000;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 1.25;
    }

    .fuji-hero-intro {
        font-size: 18px;
        color: #444;
        margin-bottom: 20px;
        text-align: justify;
        line-height: 1.6;
    }
    
    .fuji-hero-intro strong {
        color: #222;
        font-weight: 700;
    }

    /* Feature List */
    .fuji-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .fuji-feature-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 12px;
        font-weight: 600;
        color: #222;
        font-size: 16px;
    }

    .fuji-feature-list li::before {
        content: '✔'; 
        position: absolute;
        left: 0;
        top: 1px;
        color: #ba372a; 
        font-weight: 900;
        font-size: 18px;
    }

    /* Footer Text Box (Restored Original Content) */
    .fuji-footer-text {
        font-size: 16px;
        color: #555;
        margin-bottom: 30px;
        background: #f9f9f9;
        padding: 15px;
        border-left: 4px solid #ba372a;
        border-radius: 0 4px 4px 0;
    }

    /* CTA Button Styles */
    .fuji-btn-quote {
        display: inline-block;
        background-color: #f4c01e; /* Industrial Yellow */
        color: #000;
        font-weight: 800;
        font-size: 16px;
        padding: 14px 45px;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .fuji-btn-quote:hover {
        background-color: #dcb311;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        color: #000;
    }

    /* NEW: Jump Link Style */
    .fuji-scroll-link {
        display: inline-block;
        margin-left: 25px;
        font-size: 15px;
        font-weight: 600;
        color: #555;
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.2s ease;
    }
    
    .fuji-scroll-link:hover {
        color: #ba372a;
    }

    /* Mobile Responsiveness */
    @media (max-width: 900px) { 
        .fuji-hero-container {
            flex-direction: column;
            gap: 25px;
        }
        
        .fuji-hero-image {
            flex: 1 1 100%;
            max-width: 100%;
        }

        .fuji-hero-content {
            padding-right: 0;
            min-width: 100%;
        }

        .fuji-hero-content h2 {
            font-size: 26px;
        }
        
        .fuji-hero-intro {
            font-size: 16px;
        }
        
        .fuji-btn-quote {
            display: block;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 15px;
        }

        .fuji-scroll-link {
            display: block;
            margin-left: 0;
            text-align: center;
        }
    }
