
    /* --- URGENT FIX: HIDE ALL PRICES (B2B MODE) --- */
    /* This section forces the removal of $0.00 prices from the collection page */
    .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;
    }

    /* --- Main Container 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; 
    }

    /* --- Typography & SEO Tags --- */
    .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: 25px;
        text-align: justify;
        line-height: 1.7;
    }
    
    .fuji-hero-intro strong {
        color: #222;
        font-weight: 700;
    }

    /* --- Trust Badge Box (ISO/JIS) --- */
    .fuji-trust-box {
        background-color: #f8f9fa;
        border-left: 5px solid #ba372a; /* Brand Red */
        padding: 15px 20px;
        margin-bottom: 25px;
        font-size: 15px;
        color: #555;
        border-radius: 0 4px 4px 0;
    }

    /* --- Feature List --- */
    .fuji-feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 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 Context Text --- */
    .fuji-footer-text {
        font-size: 15px;
        color: #666;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* --- 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: Technical Guide Scroll Link --- */
    .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; /* Brand Red on hover */
    }

    /* --- Mobile & Tablet Responsiveness --- */
    @media (max-width: 900px) { 
        .fuji-hero-container {
            flex-direction: column;
            gap: 30px;
        }
        
        .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: 28px; 
        }
        
        .fuji-hero-intro {
            font-size: 16px;
            text-align: left; 
        }
        
        /* Mobile: Button full width, Link centered below */
        .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;
            padding: 10px 0;
        }
    }
