.steps-section {
  padding: 7rem 4rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
}
.step {
  padding: 0 2rem;
  text-align: center;
}
.step-num {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
