/* About page — extends about.css */

.about-page .hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 15%, rgba(255, 255, 255, 0.97) 100%),
    url('/images/about-hero.jpg') center 40% / cover no-repeat;
}

.about-page .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 25, 0.1), rgba(7, 10, 25, 0.04));
  pointer-events: none;
  z-index: 1;
}

.about-page .hero .container {
  position: relative;
  z-index: 2;
}

.about-page .hero h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.about-page .section {
  padding: 56px 18px;
}

.about-page .section-intro {
  max-width: 42rem;
  margin-bottom: 0.5rem;
}

.about-page .section-lead {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 40rem;
  margin-bottom: 0;
}

.about-page .card {
  background: var(--card);
  border-radius: var(--radius, 14px);
  padding: 24px;
  border: 1px solid rgba(12, 15, 22, 0.06);
  box-shadow: 0 2px 8px rgba(12, 15, 22, 0.04);
}

.about-page .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(12, 15, 22, 0.09);
  border-color: rgba(12, 15, 22, 0.08);
}

.about-page .card h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  color: var(--text);
}

.about-page .card p:last-child {
  margin-bottom: 0;
}

.about-page .feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.about-page .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(19, 151, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-page .platform-cards {
  margin-top: 2rem;
}

.about-page .mission-box {
  margin: 0;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(19, 151, 0, 0.08), rgba(19, 151, 0, 0.02));
  border-color: rgba(19, 151, 0, 0.12);
}

.about-page .mission-box h2 {
  color: var(--text);
}

.about-page .mission-box p:last-child {
  margin-bottom: 0;
}

.about-page .values-grid {
  gap: 20px;
  margin-top: 2rem;
}

.about-page .value-item {
  background: var(--card);
  border-radius: var(--radius, 14px);
  padding: 22px;
  border: 1px solid rgba(12, 15, 22, 0.06);
  box-shadow: 0 2px 8px rgba(12, 15, 22, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-page .value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(12, 15, 22, 0.08);
}

.about-page .value-item h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
}

.about-page .value-icon {
  font-size: 1.25rem;
  background: rgba(19, 151, 0, 0.12);
  color: var(--text);
}

.about-page .value-item p:last-child {
  margin-bottom: 0;
}

.about-page .audience-cards {
  margin-top: 2rem;
}

.about-page .closing-copy {
  max-width: 42rem;
}

.about-page .about-cta .cta-panel {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.about-page .about-cta .cta-panel h2 {
  color: #fff;
  margin-bottom: 12px;
}

.about-page .about-cta .cta-panel > p {
  color: rgba(248, 250, 252, 0.82);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.about-page .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.about-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page .btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(19, 151, 0, 0.35);
}

.about-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(19, 151, 0, 0.4);
}

.about-page .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.about-page .btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.about-page .cta-note {
  margin: 16px 0 0;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.6);
}

.about-page .cta-note a {
  color: rgba(248, 250, 252, 0.85);
  text-decoration: underline;
}

@media (min-width: 900px) {
  .about-page .section {
    padding: 72px 18px;
  }

  .about-page .about-cta .cta-panel {
    padding: 48px 40px;
  }
}

@media (max-width: 480px) {
  .about-page .hero h1 {
    max-width: none;
  }

  .about-page .value-item {
    flex-direction: row;
    gap: 14px;
  }

  .about-page .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-page .btn {
    width: 100%;
  }
}
