/* 7步流程区域 优化版 - 图标左排、间距收紧 */
.process-section {
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.process-header {
    text-align: center;
    margin-bottom: 40px;
}

.process-title {
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.process-title span {
    color: #00d4a0;
}

.process-subtitle {
    font-size: 15px;
    color: #999;
    margin-bottom: 16px;
}

.process-tagline {
    display: flex;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(90deg, #4dc3ff 0%, #00d4a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 15px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-card {
    background: #f0faff;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.process-card.step-1,
.process-card.step-7 {
    background: #e6f9f4;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* 关键优化：图标+文字一行左右布局 */
.process-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.process-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px 0;
}

.process-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.step-number {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 32px;
    font-weight: 700;
    color: rgba(0,0,0,0.06);
    line-height: 1;
}

/* 响应式 */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 45px 0;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-tagline {
        flex-wrap: wrap;
        gap: 8px 12px;
    }
    .process-card {
        padding: 18px;
    }
    .process-icon {
        width: 38px;
        height: 38px;
    }
}