/* ========================================
   移动端温和修复 - 保持功能完整性
   ======================================== */

@media (max-width: 768px) {
  /* 基础重置 */
  html, body {
    margin: 0;
    padding: 0;
  }
  
  /* 只修复body的顶部间距 */
  body {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  
  /* 轻微修复Hero区域 */
  .hero-section,
  .about-hero {
    margin-top: 0;
  }
}