/* 移动端产品系列页Hero区标题优化 */

@media (max-width: 768px) {
    /* Hero区标题缩小 */
    .page-header h1 {
        font-size: 28px !important;  /* 48px → 28px */
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    
    /* 红色strong文字同样缩小 */
    .page-header h1 strong {
        font-size: 28px !important;  /* 保持一致 */
        display: inline !important;  /* 强制横向显示 */
    }
    
    /* eyebrow标签缩小 */
    .page-header .eyebrow {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
    }
    
    /* subtitle文字缩小 */
    .page-header .subtitle {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    
    /* Hero区数据统计缩小 */
    .header-stats {
        gap: 30px !important;
        flex-wrap: wrap !important;
    }
    
    .header-stat .num {
        font-size: 24px !important;
    }
    
    .header-stat .label {
        font-size: 12px !important;
    }
    
    /* Hero区padding调整 */
    .page-header {
        padding: 100px 20px 40px !important;
    }
}

/* 超小屏幕进一步缩小 */
@media (max-width: 400px) {
    .page-header h1 {
        font-size: 24px !important;
    }
    
    .page-header h1 strong {
        font-size: 24px !important;
    }
    
    .header-stats {
        gap: 20px !important;
    }
}
