/* ============================================================
   KunaBox 2.0 — Process section (#kbProcess)
   ============================================================ */

.kb-process {
  position: relative;
  z-index: var(--z-content);
  padding: var(--space-3xl) var(--space-xl);
}

.kb-process__header {
  text-align: center;
  margin-bottom: 60px;
}

.kb-process__title {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
}

.kb-process__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── 4-column grid ─────────────────────────────────────────── */
.kb-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* ── Single step ───────────────────────────────────────────── */
.kb-process__step {
  text-align: center;
  padding: 0 12px;
}

/* ── Step number badge ─────────────────────────────────────── */
.kb-process__badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-grotesk);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-purple-soft);
}

.kb-process__step-title {
  font-family: var(--font-grotesk);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.kb-process__step-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
