.howitworks {
  padding: 40px 0;
}

.howitworks-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.howitworks-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-black);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.howitworks-description {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 60px;
  color: #333;
}

.howitworks-steps {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 80px;
}

.howitworks-step {
  flex: 1;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 60px 30px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.howitworks-step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: #000;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-accent);
  font-weight: var(--fw-black);
  font-size: 28px;
  color: var(--color-white);
}

.howitworks-step-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #000;
}

.howitworks-step-text {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

@media (max-width: 1024px) {
  .howitworks-title {
    font-size: 45px;
    margin-bottom: 40px;
  }

  .howitworks-steps {
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
  }

  .howitworks-step {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .howitworks-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .howitworks-steps {
    margin-top: 40px;
  }

  .howitworks-step {
    padding: 50px 25px 35px;
  }

  .howitworks-step-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .howitworks-step-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .howitworks-title {
    font-size: 26px;
  }

  .howitworks-step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    top: -25px;
  }

  .howitworks-step {
    padding: 45px 20px 30px;
  }

  .howitworks-step-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .howitworks-step-text {
    font-size: 12px;
  }
}
