/* ══════════════════════════════════════════════════════════
   HOW WE WORK / PROCESS SECTION
   assets/css/process.css
══════════════════════════════════════════════════════════ */

.how-we-work {
  background: var(--iv-deep);
  position: relative;
  overflow: hidden;
}
.how-we-work .section-title { color: white; }
.how-we-work .section-sub   { color: rgba(255,255,255,.48); }

/* ── Background elements ──────────────────────────────── */
.hww-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 34px 34px;
}
.hww-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(123,47,255,.17) 0%, transparent 70%);
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.hww-orb-2 {
  right: -80px;
  left: auto;
  background: radial-gradient(circle, rgba(90,31,204,.11) 0%, transparent 70%);
}

/* ── Steps container ──────────────────────────────────── */
.steps-container {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Steps track ──────────────────────────────────────── */
.steps-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--iv-purple), transparent);
  opacity: .38;
}

/* ── Step item ────────────────────────────────────────── */
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: all .5s ease;
}
.step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Step node (number circle) ────────────────────────── */
.step-node {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(123,47,255,.45);
  background: rgba(123,47,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all .3s;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--iv-purple);
}
.step-item:hover .step-node {
  border-color: var(--iv-purple);
  background: rgba(123,47,255,.18);
  box-shadow: 0 0 28px rgba(123,47,255,.38);
}

/* ── Step card ────────────────────────────────────────── */
.step-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 18px;
  flex: 1;
  width: 100%;
  transition: all .3s;
}
.step-item:hover .step-card {
  border-color: rgba(123,47,255,.28);
  background: rgba(123,47,255,.04);
}
.step-icon  { font-size: 22px; margin-bottom: 8px; }
.step-name  { font-family: 'Outfit', sans-serif; font-size: 17.5px; font-weight: 700; color: white; margin-bottom: 6px; }
.step-desc  { font-size: 15.5px; color: rgba(255,255,255,.42); line-height: 1.65; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1080px) {
  .steps-track { grid-template-columns: repeat(3, 1fr); }
  .steps-track::before { display: none; }
}
@media (max-width: 768px) {
  .steps-track { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps-track { grid-template-columns: 1fr; }
}
