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

/* This page's .hero never got a bottom pad from index.css (other pages
   end the hero right after the buttons) — the facts-strip needs one so
   the transition into the mission section isn't abrupt. */
.hero {
  padding-bottom: 40px;
}

/* ── Facts strip (floats over hero bottom edge) ── */
.facts-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.fact-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(11, 30, 46, 0.08);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fact-card .icon {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 18px;
  flex-shrink: 0;
}

.fact-card strong {
  display: block;
  font-size: 19px;
  color: #0b1e2e;
}

.fact-card span {
  font-size: 13px;
  color: #5b6b7e;
}

/* ── Mission image with floating stat badge ── */
.module-image.has-badge {
  position: relative;
}

.about-stat-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(11, 30, 46, 0.18);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.about-stat-badge .about-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eaf3fb;
  color: #1f4d72;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.about-stat-badge strong {
  display: block;
  font-size: 14.5px;
  color: #0b1e2e;
  line-height: 1.3;
}

.about-stat-badge span {
  font-size: 12px;
  color: #5b6b7e;
}

/* ── Value checklist inside mission text ── */
.value-list {
  list-style: none;
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #29405a;
  font-weight: 500;
  font-size: 15.5px;
}

.value-list i {
  color: #1f9d63;
  font-size: 17px;
  flex-shrink: 0;
}

/* ── "What We Do" solutions grid ── */
.solutions-section {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 20px;
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.solutions-grid .card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.solutions-grid .card:hover {
  border-color: #1f4d72;
  transform: translateY(-4px);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .facts-strip {
    margin-top: 40px;
  }

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

@media (max-width: 768px) {
  .facts-strip {
    margin-top: 30px;
    gap: 14px;
  }

  .fact-card {
    flex: 1 1 100%;
  }

  .module-image.has-badge {
    flex-direction: column;
    gap: 16px;
  }

  .about-stat-badge {
    position: static;
  }

  .solutions-section {
    margin-top: 60px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }
}
