/* ── How we work ──────────────────────────────────────────────────── */
/* The fear-killer section. An ERP-sized budget gets approved on belief
   in delivery, not on belief in the code. */

#process {
  padding: var(--section-padding);
  background: var(--black);
}

.process-header {
  margin-bottom: 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  background: var(--grey-1);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--grey-2);
  transition: border-color var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover {
    border-top-color: var(--white);
  }
}

.process-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-3);
  letter-spacing: 0.2em;
}

.process-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

.process-desc {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-4);
  line-height: 1.75;
  margin-top: 12px;
}
