/* ─── Base ─────────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

/* ─── Process section connector line (index.html) ───────────────────────────── */
.step-connector::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: #bfdbfe;
}

@media (max-width: 767px) {
  .step-connector::after {
    display: none;
  }
}
