/* ── ABOUT HERO ── */
.about-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid #1f1f1f;
}

.about-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-tag {
  display: inline-block;
  background: #0d1f1a;
  color: #1D9E75;
  border: 1px solid #1D9E75;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.about-hero p {
  font-size: 1.05rem;
  color: #888888;
  line-height: 1.7;
}

/* ── SECTIONS ── */
.about-section {
  padding: 5rem 2rem;
}

.about-section.dark {
  background: #0d0d0d;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: #0d1f1a;
  color: #1D9E75;
  border: 1px solid #1D9E75;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-tag.center {
  display: block;
  width: fit-content;
  margin: 0 auto 1rem;
}

h2.center {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── MISSION GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.about-text p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ── STATS ── */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1D9E75;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.4;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: #1D9E75;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: #888888;
  line-height: 1.6;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.85rem;
  color: #888888;
  line-height: 1.6;
}

/* ── CTA ── */
.about-cta {
  padding: 5rem 2rem;
  text-align: center;
  background: #0d1f1a;
  border-top: 1px solid #1D9E75;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1rem;
  color: #888888;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: #1D9E75;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.cta-primary:hover {
  background: #0F6E56;
}

.cta-secondary {
  background: transparent;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #2a2a2a;
  transition: all 0.2s;
}

.cta-secondary:hover {
  border-color: #ffffff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 1.7rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}