/* 
 * 解决方案页面首屏重新设计
 * 更协调的布局和视觉效果
 */

/* 解决方案首屏 */
.solutions-hero-new {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    overflow: hidden;
}

.solutions-hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23009EF7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* 标题区域 */
.solutions-hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-hero-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.solutions-hero-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00A6FB, #0082C8);
    border-radius: 2px;
}

.solutions-hero-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 方案概览区域 - 新设计 */
.solutions-overview {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 概览 - 核心能力 */
.overview-capabilities {
    border-right: 1px solid #e9ecef;
    padding-right: 30px;
}

.overview-capabilities h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-capabilities h3 i {
    color: #00A6FB;
    font-size: 24px;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.capability-item:last-child {
    border-bottom: none;
}

.capability-item:hover {
    color: #00A6FB;
    padding-left: 10px;
}

.capability-item i {
    color: #00A6FB;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* 概览 - 核心价值 */
.overview-value {
    padding: 0 30px;
    text-align: center;
}

.overview-value h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00A6FB 0%, #0082C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-value p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.05), rgba(0, 130, 200, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(0, 166, 251, 0.1);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00A6FB;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00A6FB 0%, #0082C8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 166, 251, 0.2);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 251, 0.3);
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(3px);
}

/* 概览 - 服务流程 */
.overview-process {
    border-left: 1px solid #e9ecef;
    padding-left: 30px;
}

.overview-process h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-process h3 i {
    color: #00A6FB;
    font-size: 24px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step {
    position: relative;
    padding: 15px 0;
    padding-left: 35px;
    font-size: 14px;
    color: #666;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00A6FB, #0082C8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 39px;
    width: 2px;
    height: calc(100% - 24px);
    background: linear-gradient(to bottom, #00A6FB, transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-step strong {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

/* 解决方案卡片 */
.solution-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.solution-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 166, 251, 0.15);
}

/* 卡片头部 */
.solution-card-header {
    padding: 30px;
    background: linear-gradient(135deg, #00A6FB 0%, #0082C8 100%);
    text-align: center;
    position: relative;
}

.solution-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00A6FB;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-card-header h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.solution-card-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

/* 卡片内容 */
.solution-card-body {
    padding: 30px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #00A6FB, #0082C8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-features li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 16px;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* 卡片底部 */
.solution-card-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.solution-learn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #00A6FB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-learn-more:hover {
    color: #0082C8;
}

.solution-learn-more i {
    transition: transform 0.3s ease;
}

.solution-learn-more:hover i {
    transform: translateX(5px);
}

/* 底部优势展示 */
.solutions-advantages {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1), rgba(0, 130, 200, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #00A6FB;
}

.advantage-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 动画效果 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card-new {
    animation: fadeInUp 0.6s ease both;
}

.solution-card-new:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-card-new:nth-child(2) {
    animation-delay: 0.2s;
}

.solution-card-new:nth-child(3) {
    animation-delay: 0.3s;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .overview-capabilities,
    .overview-process {
        border: none;
        padding: 20px;
        background: linear-gradient(135deg, rgba(0, 166, 251, 0.03), rgba(0, 130, 200, 0.01));
        border-radius: 12px;
    }
    
    .overview-value {
        padding: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-hero-header h1 {
        font-size: 36px;
    }
    
    .solutions-hero-header p {
        font-size: 16px;
    }
    
    .value-stats {
        grid-template-columns: 1fr;
    }
    
    .overview-value h2 {
        font-size: 24px;
    }
}