/* ==================== Hero Section ==================== */
.hero-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(66, 153, 225, 0.05));
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(102, 126, 234, 0.15), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--info-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-title i {
  font-size: 42px;
  color: #ffd700;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
  animation: trophy-pulse 2s ease-in-out infinite;
}

@keyframes trophy-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 30px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  min-width: 160px;
  transition: var(--transition);
}

.badge-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.badge-item i {
  font-size: 32px;
  color: var(--primary-color);
}

.badge-item span {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-item small {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==================== Section Subtitle ==================== */
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: -16px;
  margin-bottom: 32px;
}

/* ==================== Featured Cards ==================== */
.stat-card.featured {
  position: relative;
  border: 2px solid var(--card-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-card.featured::before {
  height: 100%;
  background: linear-gradient(135deg, var(--card-color), transparent);
  opacity: 0.1;
}

.stat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--card-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-badge.gold {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
}

.stat-badge.pulse-badge {
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ==================== Performance Section ==================== */
.performance-section {
  margin-bottom: 48px;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.performance-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.performance-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.perf-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}

.perf-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.2;
  z-index: -1;
}

.perf-icon.success {
  background: linear-gradient(135deg, var(--success-color), #38a169);
  color: white;
}

.perf-icon.primary {
  background: linear-gradient(135deg, var(--primary-color), #5a67d8);
  color: white;
}

.perf-icon.warning {
  background: linear-gradient(135deg, var(--warning-color), #dd6b20);
  color: white;
}

.perf-icon.info {
  background: linear-gradient(135deg, var(--info-color), #3182ce);
  color: white;
}

.perf-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.perf-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.perf-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==================== Responsive for Hero ==================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
    flex-direction: column;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badges {
    gap: 16px;
  }

  .badge-item {
    min-width: 120px;
    padding: 16px 20px;
  }

  .badge-item span {
    font-size: 24px;
  }

  .performance-grid {
    grid-template-columns: 1fr;
  }
}
