/* 定制开发页面 (services.html) 专用样式 */

/* 现代服务流程 - 可视化路径 */
.modern-process {
    position: relative;
    padding: 30px 0;
}

.process-path {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-path::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #eef2f7;
    border-radius: 2px;
    z-index: 0;
}

.process-node {
    position: relative;
    z-index: 1;
    width: 18%;
    text-align: center;
}

.node-circle {
    width: 70px;
    height: 70px;
    background: white;
    border: 5px solid #f8faff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #cbd5e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.node-circle::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), #00c6ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.5s ease;
}

.process-node:hover .node-circle {
    transform: scale(1.15);
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 20px 40px rgba(0, 134, 255, 0.2);
}

.process-node:hover .node-circle::after {
    opacity: 1;
}

.node-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark-color);
}

.node-content p {
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .process-path {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
    }
    .process-path::before {
        top: 0;
        bottom: 0;
        left: 40px;
        width: 4px;
        height: 100%;
    }
    .process-node {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .node-circle {
        margin: 0 20px 0 0;
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        font-size: 1.3rem;
        border-width: 4px;
    }
}
