/* === SNABGAS STEPS LIGHT === */

.sg-steps-light {
  padding: 60px 0;
}

.sg-steps-head {
  text-align: center;
  margin-bottom: 40px;
}

.sg-steps-head h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.sg-steps-head p {
  color: #666;
  font-size: 16px;
}

/* GRID */
.sg-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.sg-step-item {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}

.sg-step-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover */
.sg-step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ICON */
.sg-step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88e5, #00bcd4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  transition: 0.3s;
}

.sg-step-item:hover .sg-step-icon {
  transform: scale(1.1) rotate(5deg);
}

/* NUMBER */
.sg-step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #ccc;
}

/* TEXT */
.sg-step-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.sg-step-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .sg-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sg-steps-grid {
    grid-template-columns: 1fr;
  }
}
