/* ── Webdesign page ──────────────────────────────────────── */
.process-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }

.process-step {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem; height: 2rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 2rem;
  text-align: center;
}
.process-step h3 { font-size: 1.1rem; font-weight: 600; margin: .75rem 0 .5rem; }
.process-step p  { font-size: .95rem; color: var(--text-muted); }

.tech-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.tech-badge {
  padding: .4rem 1rem;
  background: rgba(0,150,213,.08);
  color: var(--primary-dark);
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid rgba(0,150,213,.2);
}
