/* Steps */
.steps-sec{background:var(--light)}
.steps-row{
  display:flex;justify-content:center;gap:clamp(24px,4vw,64px);
  margin-top:clamp(48px,6vw,72px);position:relative;
}
.steps-row::before{
  content:'';position:absolute;top:44px;left:22%;right:22%;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--gold));opacity:.12;
}
.step{flex:1;max-width:220px;text-align:center;position:relative;z-index:1}
.step-n{
  width:88px;height:88px;margin:0 auto 24px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--blue),#021e50);color:#fff;
  font-family:'Sora';font-size:1.8rem;font-weight:700;border-radius:50%;
  box-shadow:0 8px 32px rgba(3,66,142,.3);position:relative;
}
.step-n::after{content:'';position:absolute;inset:-6px;border-radius:50%;border:2px solid rgba(3,66,142,.08)}
.step h4{font-family:'Sora';font-size:.9rem;font-weight:600;margin-bottom:6px}
.step p{color:var(--gray);font-size:.78rem;line-height:1.55}

@media(max-width:768px){
  .steps-row{flex-direction:column;align-items:center}
  .steps-row::before{display:none}
}
