/* ===== HOW IT WORKS SECTION ===== */

.how-it-works {
  padding: 120px 20px;
  background: #243b5a;
  color: white;
  text-align: center;
}

.how-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.how-header p {
  max-width: 600px;
  margin: 0 auto 80px;
  color: #cbd5e1;
  font-size: 16px;
}

/* Steps Layout */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Card */
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 25px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border: 1px solid #3b82f6;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Icon Circle */
.step-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}

/* Step Number */
.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #3b82f6;
  color: white;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 50%;
}

/* Title */
.step-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* Description */
.step-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container::before {
    display: none;
  }
}

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