.about-hero {
  padding: 6rem 0;
  text-align: center;
}

.about-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;

  background: #fff7ed;
  color: #ea580c;

  font-weight: 600;
  margin-bottom: 1rem;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;

  color: var(--primary);
}

.about-hero p {
  max-width: 700px;
  margin: 0 auto;

  font-size: 1.2rem;
  line-height: 1.8;

  color: #64748b;
}

/* =========================
   STORY
========================= */

.about-story {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;

  line-height: 1.8;
  color: #64748b;
}

.about-image img {
  width: 100%;
  height: 500px;

  object-fit: cover;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
   VALUES
========================= */

.about-values {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;

  font-size: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: white;

  padding: 2rem;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

  transition: 0.25s;
}

.value-card:hover {
  transform: translateY(-6px);
}

.value-card h3 {
  margin-bottom: 1rem;

  color: var(--primary);
}

.value-card p {
  color: #64748b;
  line-height: 1.7;
}

/* =========================
   STATS
========================= */

.about-stats {
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background: white;

  text-align: center;

  padding: 2.5rem;

  border-radius: 20px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-card span {
  display: block;

  font-size: 3rem;
  font-weight: 700;

  color: var(--accent);

  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #64748b;
}

/* =========================
   CTA
========================= */

.about-cta {
  padding: 6rem 0;
}

.cta-box {
  background: var(--primary);

  color: white;

  text-align: center;

  padding: 4rem 2rem;

  border-radius: 24px;
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 2rem;

  color: rgba(255, 255, 255, 0.8);
}

.cta-box .btn {
  display: inline-block;

  background: var(--accent);
  color: white;

  text-decoration: none;

  padding: 1rem 2rem;

  border-radius: 12px;

  font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 350px;
  }

  .section-title,
  .about-content h2,
  .cta-box h2 {
    font-size: 2rem;
  }
}
