/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* --- SECTION: Hero --- */
.about-hero {
  padding: 132px 24px 64px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #18395F 0%,
    #1B4068 15%,
    #1E4A73 30%,
    #215580 50%,
    #2A6A8A 70%,
    #F8F9FC 100%
  );
}
.about-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-hero__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(59, 191, 178, 0.15);
  border: 1px solid rgba(59, 191, 178, 0.3);
  margin-bottom: 16px;
}
.about-hero__headline {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
}
.about-hero__subhead {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-body);
  max-width: 600px;
  margin: 0 auto;
}

/* --- SECTION: Mission Pull Quote --- */
.about-mission {
  padding: 80px 0;
  background: #F8F9FC;
}
.about-mission__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-mission__quote {
  margin: 0;
  padding: 24px 32px;
  border-left: 4px solid var(--color-teal);
  background: white;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: 0 4px 20px rgba(24, 57, 95, 0.06);
}
.about-mission__quote p {
  font-size: 22px;
  font-weight: var(--fw-medium);
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.5;
  margin: 0;
}

/* --- SECTION: Our Story (60/40) --- */
.about-story {
  padding: 80px 0;
  background: white;
}
.about-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
}
.about-story__heading {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 20px;
}
.about-story__para {
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: var(--lh-body);
  margin-bottom: 16px;
}
.about-story__para:last-child {
  margin-bottom: 0;
}
.about-story__image img {
  width: 100%;
  height: auto;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

/* --- SECTION: Stats Row (dark navy) --- */
.about-stats {
  padding: 64px 0;
  background: linear-gradient(
    180deg,
    #0F2238 0%,
    #142D4A 15%,
    #18395F 35%,
    #1B4068 55%,
    #1E4A73 75%,
    #18395F 100%
  );
}
.about-stats__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.about-stats__item {
  text-align: center;
}
.about-stats__number {
  display: block;
  font-size: 40px;
  font-weight: var(--fw-bold);
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stats__label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}

/* --- SECTION: Security Philosophy --- */
.about-infrastructure {
  padding: 80px 0;
  background: #F8F9FC;
  text-align: center;
}
.about-infrastructure__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-infrastructure__heading {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 16px;
}
.about-infrastructure__body {
  font-size: var(--fs-body);
  color: var(--color-gray);
  line-height: var(--lh-body);
  margin-bottom: 32px;
}
.about-infrastructure__cta {
  display: inline-block;
  padding: 16px 36px;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: white;
  background: var(--color-teal);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(59, 191, 178, 0.3);
}
.about-infrastructure__cta:hover {
  background: #2fa898;
  transform: translateY(-2px);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .about-hero__headline {
    font-size: 32px;
  }
  .about-mission__quote p {
    font-size: 18px;
  }
  .about-story__inner {
    grid-template-columns: 1fr;
  }
  .about-stats__inner {
    flex-wrap: wrap;
    gap: 32px;
  }
  .about-stats__item {
    flex: 0 0 45%;
  }
}
