/* ===== 小三分离页面样式（简化版，继承公共样式） ===== */

.service-intro {
    padding: 80px 0;
    background: white;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-detail {
    padding: 100px 0;
    background: var(--light);
}

.services-list {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-points {
    list-style: none;
}

.service-points li {
    padding: 8px 0;
    color: var(--text-dark);
}

.service-points i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 服务流程 */
.service-process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
}

.step-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

/* 成功案例 */
.success-cases {
    padding: 100px 0;
    background: var(--light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.case-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.case-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
}

.case-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.case-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-stats {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .service-detail-card {
        flex-direction: column;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

