/* ============================
   WHY SECTION — PREMIUM GRID
   ============================ */

.why-pro {
  margin-top: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  transition: .3s ease;
  box-shadow: 0 0 25px rgba(0,150,255,0.08);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0,150,255,0.25);
}

.why-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}


.steps-pro {
  margin-top: 50px;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
  gap: 22px;
  padding: 10px 0;
}

.step-box {
  min-width: 180px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: .3s;
}

.step-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0,150,255,0.25);
}

.step-num {
  font-size: 22px;
  font-weight: 800;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 10px;
  margin-bottom: 6px;
  display: inline-block;
}

/* Neon connecting line */
.line {
  height: 2px;
  background: linear-gradient(90deg, #0088ff, transparent);
  flex: 1;
  opacity: 0.4;
  box-shadow: 0 0 10px #0088ff;
}


/* === MOBILE (small phones) — vertical stack === */
@media (max-width: 480px) {
  .steps-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
    overflow: visible !important;
  }

  .step-box {
    width: 100%;
    min-height: 100%;
  }
  
  .line {
    display: none !important;
  }
}

/* === TABLET + LARGE MOBILE — 2×2 GRID === */
@media (min-width: 481px) and (max-width: 1024px) {
  .steps-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 26px !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  .step-box {
    width: 100%;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .line {
    display: none !important; /* remove lines for grid */
  }
}

/* === DESKTOP — optional improvement (unchanged layout but no overflow) === */
@media (min-width: 1025px) {
  .steps-row {
    overflow: visible !important;
  }
}
