/* ============================================================
   NEURONEX AI SYSTEMS — About Page Styles
   ============================================================ */

/* ── PAGE HERO (about-specific bg) ──────────────────────────  */

.page-hero {
  background-image: url('../assets/images/about-bg.svg');
}

/* ── ABOUT MAIN ──────────────────────────────────────────────  */

.about-main {
  background: #0a0f18;
  padding: 0 0 80px;
}

.about-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 64px;
}

.about-section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-top: 4px;
  white-space: nowrap;
}

.about-section__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-section__body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
}

.about-section__body strong {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.about-section__tagline {
  font-size: 15px !important;
  font-style: italic;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 4px;
}

/* Divider */
.about-divider {
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-left: 64px;
  margin-right: 64px;
}

/* Goals list */
.about-goals {
  list-style: none;
  counter-reset: goal-counter;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-goals li {
  counter-increment: goal-counter;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-goals li::before {
  content: counter(goal-counter, decimal-leading-zero);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(74,158,218,0.7);
  min-width: 24px;
  padding-top: 2px;
}

/* Values grid */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  flex-direction: unset;
}

.value-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.25s, background 0.25s;
}

.value-card:hover {
  border-color: rgba(74,158,218,0.25);
  background: rgba(74,158,218,0.04);
}

.value-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(74,158,218,0.6);
  margin-bottom: 10px;
}

.value-card__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.55) !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────────  */

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 24px;
  }

  .about-section__label {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
  }

  .about-divider {
    margin-left: 24px;
    margin-right: 24px;
  }

  .page-hero__content {
    padding: 0 24px 32px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}
