/* ==========================================================================
   MG Electronic — Homepage Sections B, C, D, E
   All sections share the black background used in Section A (hero).
   ========================================================================== */

.mg-section {
  position: relative;
  background: #000000;
  padding: 90px 6% 70px;
}

/* ---------- Section B ---------- */

.mg-section-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mg-section-b__heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 61.9px;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  flex: 1 1 420px;
}

.mg-section-b__heading span {
  display: block;
}

.mg-section-b__machines {
  position: relative;
  flex: 1 1 380px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mg-section-b__machines img {
  position: absolute;
  height: 280px;
  width: auto;
  opacity: 0.35;
  border-radius: 10px;
}

.mg-section-b__machines img:nth-child(1) {
  left: 8%;
  top: 10%;
  transform: rotate(-6deg);
  z-index: 1;
}

.mg-section-b__machines img:nth-child(2) {
  left: 32%;
  top: 0;
  transform: rotate(3deg);
  z-index: 2;
  height: 320px;
}

.mg-section-b__machines img:nth-child(3) {
  left: 56%;
  top: 14%;
  transform: rotate(-4deg);
  z-index: 1;
}

.mg-section-b__stats {
  flex-basis: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mg-section-b__stat {
  font-family: 'Roboto', sans-serif;
  text-align: left;
}

.mg-section-b__stat-figure {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.mg-section-b__stat-label {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.mg-section-b__stat--red .mg-section-b__stat-figure { color: #ef4444; }
.mg-section-b__stat--green .mg-section-b__stat-figure { color: #22c55e; }
.mg-section-b__stat--yellow .mg-section-b__stat-figure { color: #eab308; }
.mg-section-b__stat--blue .mg-section-b__stat-figure { color: #3b82f6; }

/* ---------- Sections C, D, E (placeholders) ---------- */

.mg-section-placeholder {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mg-section-placeholder p {
  font-family: 'Roboto', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  margin: 0;
}

@media (max-width: 860px) {
  .mg-section {
    padding: 60px 6% 50px;
  }

  .mg-section-b__heading {
    font-size: clamp(34px, 9vw, 61.9px);
    text-align: center;
  }

  .mg-section-b {
    justify-content: center;
    text-align: center;
  }

  .mg-section-b__machines {
    order: 3;
    min-height: 220px;
  }

  .mg-section-b__machines img {
    height: 170px;
  }

  .mg-section-b__machines img:nth-child(2) {
    height: 200px;
  }

  .mg-section-b__stats {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
}
