/**
 * Seaplast Theme Key Statistics Counter Bar Stylesheet
 * 100% Identical to reference target design: Dark oceanic navy banner, cyan top glow line, 4 metrics with glowing cyan icons & vertical dividers.
 */

.sp-stats-section {
  position: relative;
  background: linear-gradient(180deg, #030E1D 0%, #020914 100%);
  padding: 32px 0;
  overflow: hidden;
  color: #FFFFFF;
}

/* Glowing cyan top accent border line */
.sp-stats-cyan-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00D2FF 50%, transparent 100%);
  box-shadow: 0 0 12px #00D2FF;
}

.sp-stats-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Metric Item */
.sp-stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
  padding: 8px 16px;
}

.sp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.4));
  transition: transform 0.3s ease;
}

.sp-stat-item:hover .sp-stat-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 14px rgba(0, 210, 255, 0.7));
}

.sp-stat-text {
  display: flex;
  flex-direction: column;
}

.sp-stat-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #00D2FF;
  letter-spacing: -0.5px;
}

.sp-stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #CBD5E1;
  margin-top: 3px;
  white-space: nowrap;
}

/* Subtle Vertical Divider Line */
.sp-stat-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(0, 210, 255, 0) 0%, rgba(0, 210, 255, 0.3) 50%, rgba(0, 210, 255, 0) 100%);
  flex-shrink: 0;
}

/* -------------------------------------------------------------
 * RESPONSIVE MEDIA QUERIES
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sp-stat-divider {
    display: none;
  }

  .sp-stat-item {
    justify-content: flex-start;
  }

  .sp-stat-number {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .sp-stats-section {
    padding: 24px 0;
  }

  .sp-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sp-stat-item {
    justify-content: center;
  }

  .sp-stat-number {
    font-size: 28px;
  }

  .sp-stat-label {
    font-size: 12px;
  }
}
