.how-it-works-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.step-item {
  text-align: center;
  position: relative;
  padding-top: 25px;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: var(--step-circle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: -1.5px;
  position: relative;
  z-index: 2;
}

.step-box {
  background: var(--step-box);
  border-radius: 15px;
  padding: 55px 40px 35px;
  margin-top: -25px;
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.05);
}

.step-box h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 5px;
}

.step-box p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .steps-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
  }
}
