/* =========================================================
   GLOBAL LAYOUT HELPERS
   ========================================================= */

.section {
  padding: 10px 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================================================
   SECTION HEAD
   ========================================================= */

.sectionHead {
  margin-bottom: 32px;
}

.sectionTitle {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.sectionDesc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);}
/* =========================================================
   HOW TO USE – IMAGE STEPS (DESKTOP FIRST)
   ========================================================= */

#how-to-use .stepsImagesGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

#how-to-use .stepImageCard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#how-to-use .stepImageCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

#how-to-use .stepImageCard img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin-bottom: 14px;
}

#how-to-use .stepImageCard h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

#how-to-use .stepImageCard p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
}

/* STEP NUMBER */

#how-to-use .stepNumber {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,255,180,0.18);
  color: #00ffb3;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,255,180,0.35);
  backdrop-filter: blur(6px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  #how-to-use .stepsImagesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .section {
    padding: 60px 0;
  }

  .sectionTitle {
    font-size: 26px;
  }

  #how-to-use .stepsImagesGrid {
    grid-template-columns: 1fr;
  }
}
