.apm-home-stats-section,
.apm-home-stats-section * {
  box-sizing: border-box;
  font-family: "Barlow", "Segoe UI", Arial, sans-serif;
}

.apm-home-stats-section {
  width: 100%;
  padding: 0 24px 36px;
  background: #f6f9fc;
}

.apm-home-stats-wrap {
  width: 100%;
  max-width: 1180px;
  min-height: 94px;
  margin: 0 auto;
  padding: 18px 48px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #005768 0%, #003e58 42%, #00284b 100%);
  box-shadow:
    0 16px 36px rgba(0, 24, 52, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.apm-home-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.apm-home-stat-icon {
  width: 44px;
  height: 44px;
  color: #f0a944;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apm-home-stat-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apm-home-stat-copy {
  color: #ffffff;
  text-align: left;
}

.apm-home-stat-number {
  color: #ffffff;
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.apm-home-stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  line-height: 1.28;
  font-weight: 500;
}

.apm-home-stat-divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.13);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .apm-home-stats-wrap {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 32px;
    gap: 28px 18px;
  }

  .apm-home-stat-divider {
    display: none;
  }

  .apm-home-stat-item {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .apm-home-stats-section {
    padding: 0 16px 30px;
  }

  .apm-home-stats-wrap {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .apm-home-stat-item {
    justify-content: flex-start;
  }

  .apm-home-stat-number {
    font-size: 28px;
  }

  .apm-home-stat-label {
    font-size: 14px;
  }
}