/* Stats-01 Styles - Clean horizontal row on all devices */
.stats-panel-section {
  padding: 30px 16px;
  background: var(--background);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .stats-panel-section {
    padding: 60px 24px;
  }
}

.stats-panel-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-panel-container {
    gap: 40px;
  }
}

.stat-box {
  position: relative;
}

@media (min-width: 768px) {
  .stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 15%;
    width: 1px;
    height: 70%;
    background: var(--border);
    display: block;
  }
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px 0;
  line-height: 1.1;
}

.stat-label {
  color: var(--secondary); opacity: 0.85;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(0.62rem, 1.8vw, 0.85rem);
  letter-spacing: 0.5px;
}