body {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.about-hero {
  padding: 110px 0 80px;
  background: radial-gradient(circle at top, #1f1f1f, #0b0b0b);
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.about-hero h1 span {
  color: #e6b65c;
}

.about-hero p {
  max-width: 720px;
  margin: 12px auto 0;
  opacity: 0.8;
}

/* SECTION */
.about-section {
  padding: 90px 0;
}

.about-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 22px;
  padding: 45px;
  height: 100%;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.about-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-card h3 span {
  color: #e6b65c;
}

.about-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* STATS */
.about-stats {
  background: #0b0b0b;
  padding: 70px 0;
}

.stat-box h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #e6b65c;
}

.stat-box p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* WHY US */
.why-us {
  padding: 90px 0;
}

.why-us h2 {
  font-size: 2.6rem;
  font-weight: 700;
}

.why-us h2 span {
  color: #e6b65c;
}

.subtitle {
  opacity: 0.75;
}

.why-item {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
}

.why-item:hover {
  transform: translateY(-8px);
}

.why-item span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.why-item h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.4rem;
  }
}
