/* =============================================
   STATS / ACHIEVEMENTS
   ============================================= */
.da-smm-stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.da-smm-stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 8%, transparent) 0%, transparent 70%);
}

.da-smm-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.da-smm-stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.da-smm-stat-item:last-child {
  border-right: none;
}

.da-smm-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.da-smm-stat-label {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .da-smm-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .da-smm-stat-item:nth-child(3) {
    border-right: none;
  }
  
  .da-smm-stat-item:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 576px) {
  .da-smm-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .da-smm-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .da-smm-stat-item:last-child {
    border-bottom: none;
  }
}
