/* ===== PROCESS SECTION ===== */
.process {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

.process .section-header h2 span {
    color: var(--primary-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-light);
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}