@charset "UTF-8";
/* ============================================
   ToolBoxPro 响应式样式 V2.0
   ============================================ */

/* 平板设备 */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* 手机设备 */
@media (max-width: 768px) {
    /* Header */
    .top-nav {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Hero */
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
    
    /* 波浪 */
    .waves-container {
        height: 120px;
    }
    
    /* 统计 */
    .stats-section {
        padding: 40px 0 20px;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-item {
        flex: 1 1 40%;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* 功能 */
    .features-section {
        padding: 48px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* 下载 */
    .download-section {
        padding: 48px 0;
    }
    
    .download-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .download-card {
        min-width: 100%;
        max-width: 100%;
        padding: 32px 24px;
    }
    
    .download-badges {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    /* FAQ */
    .faq-section {
        padding: 48px 0;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 小屏手机 */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-download {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .download-header h2 {
        font-size: 24px;
    }
    
    .platform-icon {
        font-size: 32px;
    }
}

/* 打印样式 */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu,
    .menu-overlay {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0;
    }
    
    .hero {
        background: none;
        color: black;
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-title,
    .hero-description {
        color: black;
    }
    
    .waves-container {
        display: none;
    }
}