.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-pink), var(--primary));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: white;
    backdrop-filter: blur(20px);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

.step-number span {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), var(--glow-primary);
}

.process-step:hover .step-number span {
    -webkit-text-fill-color: white;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    section {
        padding: 2vh 0;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
}
