.section-how {
  background: var(--cream);
  padding: var(--section-py) var(--section-px);
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
  align-items: flex-end;
}

.how-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-dark);
}

.how-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  align-self: flex-end;
}

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

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: var(--night);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .how-header { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .how-h2     { font-size: 40px; }
}

@media (max-width: 768px) {
  .how-h2     { font-size: 34px; }
  .steps-grid { grid-template-columns: 1fr; }
}
