.hero-blocks {
  margin-top: 2.5rem;
  opacity: 0.85;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 1.5rem;
}
.step-item__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #009e82);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: #041420;
  margin: 0 auto 1rem;
}
.step-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-item p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.step-item__arrow {
  font-size: 1.5rem; color: var(--teal);
  padding-top: 2rem; flex-shrink: 0;
  opacity: 0.5;
}
@media (max-width: 600px) {
  .step-item__arrow { display: none; }
  .steps-row { flex-direction: column; align-items: center; }
}
