/* ============================================
   about.css – درباره ما (Dark Neon Theme)
   ============================================ */
:root {
  --neon-gold: #fbbf24;
  --neon-glow: rgba(251, 191, 36, 0.4);
}

.about-page__title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 12px;
}

.about-page__subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: var(--neon-gold);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-gold), transparent);
  box-shadow: 0 0 8px var(--neon-glow);
}

.about-section p {
  color: #cbd5e1;
  line-height: 1.9;
  max-width: 800px;
}

/* ارزش‌ها */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.value-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(251,191,36,0.1);
  transform: translateY(-6px);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.value-card h3 {
  color: white;
  margin-bottom: 8px;
}

.value-card p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .about-page__title { font-size: 2rem; }
}