#process {
  padding: 120px 60px;
  background: var(--graphite);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 72px;
}

.process-step {
  background: var(--graphite);
  padding: 52px 36px;
  position: relative;
  transition: background 0.3s;
}

.process-step:hover {
  background: var(--graphite-mid);
}

.step-num {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 28px;
}

.step-line {
  width: 32px;
  height: 1px;
  background: var(--blue);
  margin-bottom: 24px;
}

.step-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.85;
  font-weight: 300;
}
