.process-head {
  align-items: center;
  margin-bottom: 30px;
}

.process-head h2 {
  font-size: clamp(40px, 5vw, 68px);
}

.process-head .section-text {
  max-width: 520px;
  font-size: 20px;
  font-weight: 750;
}

.process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process .step {
  min-height: 170px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 38px rgba(77,47,22,.09);
}

.process .step::before {
  width: 48px;
  height: 48px;
  margin-bottom: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.process .step h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.process .step p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.32;
}

@media (max-width: 760px) {
  .process-head h2 { font-size: clamp(36px, 11vw, 48px); }
  .process .step { min-height: auto; }
  .process .step::before { margin-bottom: 28px; }
}
