/* ===================================================================
   Section 12 — About Us
   =================================================================== */

.s12-inner {
  position: relative;
  /* padding handled by .section */
  /* overflow: hidden removed — glow should not be clipped */
}

/* Decorative cyan glow at the top */
.s12-glow {
  position: absolute;
  width: 400px;
  height: 200px;
  background: var(--color-cyan);
  opacity: 0.15;
  filter: blur(80px);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.s12-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 56px;
}

/* Stats row — 4 columns */
.s12-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  text-align: center;
  margin-bottom: 48px;
}

.s12-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Override stat-label max-width for full text readability */
.s12-stat-item .stat-label {
  max-width: 160px;
}

/* Team cards — 2 columns */
.s12-team {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  margin-bottom: 40px;
}

/* Contacts row */
.s12-contacts {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .s12-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .s12-team {
    grid-template-columns: 1fr;
  }
  .s12-contacts {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .s12-stats {
    grid-template-columns: 1fr 1fr;
  }
}
