/* Stats credibility strip — after Laboratory Services */

.stats-strip {
  padding: 3rem 0;
  background: #016644;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
  .stats-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-strip__item:nth-child(2n) {
  border-right: none;
}

.stats-strip__item:nth-last-child(-n+2) {
  border-bottom: none;
}

@media (min-width: 768px) {
  .stats-strip__item {
    padding: 2.25rem 1.5rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-strip__item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-strip__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stats-strip__item:last-child {
    border-right: none;
  }
}

.stats-strip__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.125rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1;
  color: #f7af28;
  letter-spacing: -0.02em;
}

.stats-strip__value--iso {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.stats-strip__suffix {
  font-size: 0.75em;
  font-weight: 600;
  color: #ffdf94;
}

.stats-strip__label {
  margin: 0.5rem 0 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
