/* About page — alternating reference structure */

body.about-page {
  background: var(--abw-white);
}

/* ===== Alternating bands ===== */
.about-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-band-dark {
  background:
    radial-gradient(circle at 85% 20%, rgba(209, 32, 39, 0.18), transparent 42%),
    linear-gradient(160deg, #001845 0%, var(--abw-blue) 55%, #001a4d 100%);
  color: var(--abw-white);
}

.about-band-light {
  background: #f4f6f9;
  color: var(--abw-blue);
}

.about-band-media {
  position: relative;
}

.about-band-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  display: block;
  transition: transform 0.5s ease;
}

.about-band-dark .about-band-media img {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.about-band-media:hover img {
  transform: scale(1.02);
}

.about-band-copy h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-band-dark .about-band-copy h2 {
  color: var(--abw-white);
}

.about-band-light .about-band-copy h2 {
  color: var(--abw-blue);
}

.about-band-copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  background: var(--abw-red);
}

.about-band-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.about-band-dark .about-band-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.about-band-light .about-band-copy p {
  color: var(--abw-gray);
}

.about-dash-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.about-dash-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-dash-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 700;
  color: var(--abw-red);
}

.about-band-dark .about-dash-list li {
  color: rgba(255, 255, 255, 0.92);
}

.about-band-light .about-dash-list li {
  color: var(--abw-blue);
}

/* ===== Stats ===== */
.about-stats-section {
  padding: 70px 0;
  background: var(--abw-white);
}

.about-stats-grid .stat-card {
  text-align: center;
  padding: 28px 12px;
  background: var(--abw-white);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 14px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.about-stats-grid .stat-card:hover {
  border-color: var(--abw-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(209, 32, 39, 0.12);
}

.about-stats-grid .stat-num {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--abw-blue);
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-stats-grid .stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--abw-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== CTA ===== */
.about-cta-band {
  padding: 80px 0;
  background:
    linear-gradient(rgba(0, 24, 69, 0.88), rgba(0, 32, 96, 0.9)),
    url("../assets/images/web-images/experts-cta-bg.webp") center / cover no-repeat;
  text-align: center;
}

.about-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--abw-white);
  margin: 0 0 14px;
}

.about-cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .about-band {
    padding: 56px 0;
  }

  .about-band-media img {
    aspect-ratio: 4 / 3;
    max-height: 360px;
  }

  .about-stats-section {
    padding: 50px 0;
  }

  .about-cta-band {
    padding: 60px 0;
  }
}
