/**
 * MyCar — About page styles.
 */

.about-hero {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-about-hero, url('../../../assets/images/about-hero.jpg'));
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.5), rgba(5,5,5,0.95));
}
.about-hero > * { position: relative; z-index: 1; }
.about-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw + 0.5rem, 3.25rem);
  font-weight: var(--fw-black);
  margin-bottom: 1rem;
}
.about-hero p {
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-section {
  padding: 4rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  aspect-ratio: 4 / 3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.4rem);
  font-weight: var(--fw-black);
  margin-bottom: 1rem;
}
.about-content h2 span { color: var(--primary); }
.about-content p {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}
.about-stat:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.about-stat__number {
  color: var(--primary);
  font-size: 2rem;
  font-weight: var(--fw-black);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.about-stat__label {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-value {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.about-value:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.about-value__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.about-value__title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.4rem;
}
.about-value__desc {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.94rem;
}
