/* ===== PROCESS SECTION STYLES ===== */
.process-section {
    padding: 120px 0;
    background: white;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.process-section.process-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 168, 232, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 800;
    position: relative;
}

.process-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateY(-50%);
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    background: white;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(0, 102, 204, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    line-height: 1;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(0, 102, 204, 0.15);
    transform: translateX(-50%) scale(1.1);
}

.process-step h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.process-step p {
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-step {
        padding: 2.5rem 1.5rem;
    }
    
    .process-section h2 {
        font-size: 2.2rem;
    }
    
    .process-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .step-number {
        font-size: 4rem;
    }
    
    .process-step h3 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-step {
        padding: 2rem 1rem;
    }
    
    .process-section h2 {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 3.5rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
    
    .process-step p {
        font-size: 1rem;
    }
}