/* Theme-adapted styles */
.bg-light {
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(var(--primary-rgb, 108, 99, 255), 0.1) 100%) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px 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: 0 0 0 4px var(--bg-dark);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  word-break: keep-all;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stats-number {
    font-size: 2.5rem;
    white-space: normal;
  }
}

@media (max-width: 430px) {
  .stats-number {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .stats-number {
    font-size: 1.75rem;
  }
}

.value-card {
  background: rgba(var(--primary-rgb, 108, 99, 255), 0.05);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero CTA */
.about-hero-cta {
  padding: 1.5rem 0 0.5rem;
  text-align: left;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(to bottom, #fb5085, #e83e72, #dc3166, #d1265b);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  box-shadow: 0 4px 24px rgba(220, 49, 102, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to bottom, #ff6a96, #f04d80, #e83e72, #dc3166);
  box-shadow: 0 8px 32px rgba(220, 49, 102, 0.65), inset 0 1px 0 rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

.about-cta-arrow {
  font-size: 1.2em;
  transition: transform 0.2s ease;
  display: inline-block;
}

.about-cta-btn:hover .about-cta-arrow {
  transform: translateX(5px);
}

.about-cta-trust {
  font-size: 0.88rem;
  color: rgba(232, 235, 240, 0.55);
  letter-spacing: 0.03em;
}



