/* 服务流程页面样式 — 复用 business.css 的 header/hero/footer 基础样式 */

/* 时间线 */
.process-timeline {
    list-style: none;
    margin: 35px 0 0;
    padding: 0;
    position: relative;
}
.process-step {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 45px;
}
/* 卡片加载动画：进入视口时逐个淡入上滑 */
.process-timeline.anim-ready .process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .55s ease, transform .55s ease;
}
.process-timeline.anim-ready .process-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.process-timeline.anim-ready .process-step:nth-child(1) { transition-delay: .05s; }
.process-timeline.anim-ready .process-step:nth-child(2) { transition-delay: .15s; }
.process-timeline.anim-ready .process-step:nth-child(3) { transition-delay: .25s; }
.process-timeline.anim-ready .process-step:nth-child(4) { transition-delay: .35s; }
.process-timeline.anim-ready .process-step:nth-child(5) { transition-delay: .45s; }
.process-timeline.anim-ready .process-step:nth-child(6) { transition-delay: .55s; }
@media (prefers-reduced-motion: reduce) {
    .process-timeline.anim-ready .process-step {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* 连接竖线 */
.process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2f8a64, #d1e7dc);
}
.process-step-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f8a64;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(47, 138, 100, 0.35);
    z-index: 1;
}
.process-step-card {
    flex: 1;
    margin-top: -12px;
    background: #fff;
    border: 1px solid #eef1f0;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.process-step-card:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.09);
}
.process-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.process-step-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #e9f5ef;
    color: #2f8a64;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-icon svg {
    width: 20px;
    height: 20px;
}
.process-step-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.process-step-summary {
    font-size: 14px;
    color: #2f8a64;
    font-weight: 600;
    margin: 0 0 10px;
}
.process-step-content {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}
.process-step-content p {
    margin: 0 0 10px;
}
.process-step-content p:last-child {
    margin-bottom: 0;
}
.process-step-content ul {
    margin: 0 0 10px;
    padding-left: 20px;
}
.process-step-content li {
    margin-bottom: 4px;
}

/* 空状态 */
.process-empty {
    text-align: center;
    color: #9ca3af;
    padding: 60px 0;
    font-size: 15px;
}

/* 底部 CTA */
.process-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
    padding: 22px 26px;
    background: linear-gradient(135deg, #0f3d2e, #1f6b4f);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 61, 46, 0.18);
}
.process-cta-badge {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: 16px;
    line-height: 1;
    color: #7fe3b8;
}
.process-cta-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .3px;
}
.process-cta-line {
    display: inline;
}
.process-cta-line + .process-cta-line {
    position: relative;
    padding-left: 22px;
}
.process-cta-line + .process-cta-line::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
}
.process-cta-btn {
    flex: none;
    padding: 12px 32px;
    background: linear-gradient(135deg, #ffd66b, #f7b733);
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease;
}
.process-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(247, 183, 51, 0.4);
}

/* 响应式 */
@media (max-width: 600px) {
    .process-step {
        gap: 14px;
    }
    .process-step-card {
        padding: 16px 16px;
    }
    .process-step-title {
        font-size: 17px;
    }
    .process-cta {
        gap: 14px;
    }
    .process-cta-text {
        flex-direction: column;
        gap: 4px;
        padding-left: 8px;
    }
    .process-cta-line {
        display: block;
    }
    .process-cta-line + .process-cta-line {
        padding-left: 0;
    }
    .process-cta-line + .process-cta-line::before {
        content: none;
    }
    .process-cta-btn {
        transition: none;
    }
    .process-cta-btn:hover {
        transform: none;
        box-shadow: none;
    }
}
