/* ==========================================================================
   10 - فرآیند همکاری (۳ قدم)
   ========================================================================== */

.process-row{display:flex; align-items:flex-start; gap:0;}
.process-step{flex:1; text-align:center; position:relative; padding:0 12px;}
.process-step .num{
  width:48px; height:48px; border-radius:50%; background:var(--bg-1); border:2px solid var(--green);
  color:var(--green); font-weight:800; display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; position:relative; z-index:2;
}
.process-step::after{
  content:""; position:absolute; top:24px; right:-50%; width:100%; height:2px; background:var(--hairline); z-index:1;
}
.process-step:last-child::after{display:none;}
.process-step h3{font-size:17px; margin-bottom:8px;}
.process-step p{font-size:14px; color:var(--text-muted);}

@media(max-width:768px){
  .process-row{flex-direction:column; gap:32px;}
  .process-step::after{display:none;}
}
