/* ===========================================================
   Inner-page hero banner — full-width, shorter than the
   homepage hero. Used on About, Careers, and future inner
   pages. Does NOT affect the homepage's existing .banner.
=========================================================== */

.inner-banner {
  background-color: #122237;
  background-image: radial-gradient(circle at 15% 20%, rgba(177, 210, 105, 0.12), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(177, 210, 105, 0.08), transparent 40%);
  padding: 170px 20px 64px;
  text-align: center;
  overflow: hidden;
}

.inner-banner-inner {
  max-width: 760px;
  margin: 0 auto;
}

.inner-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 210, 105, 0.14);
  border: 1px solid rgba(177, 210, 105, 0.35);
  color: #d4f0a0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.inner-banner-badge i { font-size: 11px; }

.inner-banner h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.inner-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.inner-banner-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-banner-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-banner-stat .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(177, 210, 105, 0.16);
  border: 1px solid rgba(177, 210, 105, 0.4);
  color: #d4f0a0;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inner-banner-stat .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  line-height: 1.3;
}
.inner-banner-stat .lbl strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 767px) {
  .inner-banner { padding: 140px 16px 48px; }
  .inner-banner h1 { font-size: 30px; }
  .inner-banner p { font-size: 15px; }
  .inner-banner-stats { gap: 20px 26px; }
}
