.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-card .card-body {
  flex-grow: 1;
}

.icon-placeholder {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
}

section.container h1:first-of-type {
  margin-top: 6rem !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  section.container h1:first-of-type {
    margin-top: 5rem !important;
  }
}