.process-container { 
    position: relative; 
    padding: 60px 0; 
}

.process-line { 
    position: absolute; 
    top: 100px; 
    left: 10%; 
    width: 80%; 
    height: 2px; 
    background: linear-gradient(90deg, transparent, var(--xp-dark-blue), transparent); 
    opacity: 0.2;
    z-index: 0; 
}

.process-steps { 
    display: flex; 
    justify-content: space-between; 
    position: relative; 
    z-index: 1; 
    gap: 20px;
}

.step { 
    text-align: center; 
    flex: 1;
    background: var(--xp-white); 
    padding: 30px 20px;
    border-radius: 24px;
    transition: var(--transition-slow);
    border: 1px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    background: var(--xp-bg-light);
    border-color: var(--xp-border);
}

.process-icon {
    color: var(--xp-orange);
    margin-bottom: 15px;
    width: 32px;
    height: 32px;
}

.step-num { 
    width: 56px; 
    height: 56px; 
    background: var(--xp-dark-blue); 
    color: white; 
    border-radius: 18px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    font-size: 20px;
    margin: 0 auto 24px; 
    box-shadow: 0 10px 20px rgba(0, 28, 91, 0.2);
}

.step h4 {
    color: var(--xp-dark-blue);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    font-size: 15px;
    color: var(--xp-text-gray);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .process-line { display: none; }
    .process-steps { flex-direction: column; gap: 20px; }
    .step { padding: 20px; }
}