/* 成功案例页面专用样式 */

.cases-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cases-hero .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cases-hero .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 即将推出 */
.coming-soon {
    padding: 100px 0;
    background: white;
}

.coming-soon-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.coming-soon-content p:last-of-type {
    margin-bottom: 50px;
}

/* 预览统计 */
.preview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 50px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.coming-soon-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cases-hero .section-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-icon {
        font-size: 4rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .preview-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
}