/* =========================
   HOW IT WORKS (FULL CSS)
   ========================= */

.how, .how * {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.how {
  background: #ffffff;          /* uniform background */
  padding: 90px 0;
}

.how-wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

.how-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 10px;
}

.how-subtitle {
  text-align: center;
  font-size: 15px;
  color: rgba(15, 23, 42, 0.65);
  margin: 0 0 48px;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.how-card {
  position: relative;
  background: #e9f4ff;
  border: 1px solid #9ed6ff;
  border-radius: 14px;
  padding: 26px 26px 24px;
  min-height: 150px;
}

/* STEP CIRCLE */
.how-step {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b7cff, #7c3aed);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON BOX (clean, like screenshot) */
.how-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  color: #2563eb; /* nice clean blue */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.06);
}

.how-icon svg {
  display: block;
}

/* TEXT */
.how-card h3 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #0f172a;
}

.how-card p {
  font-size: 13px;
  margin: 0;
  color: rgba(15, 23, 42, 0.65);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .how {
    padding: 70px 0;
  }

  .how-title {
    font-size: 26px;
  }

  .how-subtitle {
    margin-bottom: 32px;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-card {
    padding: 22px 22px 20px;
  }
}
