/* ============================================================
   About Page Styles
   ============================================================ */

/* ── Page hero banner ── */
.page-hero {
  background: linear-gradient(105deg, #0d1b2e 0%, #1a3558 100%);
  padding: 64px 0 56px;
}
.page-hero .hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
}
.page-hero .hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--primary);
}
.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
}
.page-hero-logo {
  display: block;
  height: 64px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── Shared section label ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--primary);
}
.section-label--light { color: rgba(255,255,255,0.55); }
.section-label--light::before { background: rgba(255,255,255,0.4); }

.section-label-wrap { margin-bottom: 48px; }
.section-label-wrap h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-label-wrap p {
  font-size: 14px;
  color: var(--text);
  max-width: 560px;
}
.section-label-wrap--light h2 { color: #fff; }
.section-label-wrap--light p  { color: rgba(255,255,255,0.62); }

/* ── Company overview ── */
.about-intro {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

.about-intro-text .section-label { margin-bottom: 14px; }

.about-intro-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-intro-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.about-intro-text p:last-child { margin-bottom: 0; }

.about-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: #f4f8fe;
  border: 1px solid #ddeeff;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Expertise grid ── */
.about-what {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expertise-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.expertise-card:hover {
  box-shadow: 0 6px 24px rgba(46,163,242,0.1);
  border-color: var(--primary);
}

.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #eef7fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.expertise-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.expertise-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.expertise-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.expertise-link:hover { opacity: 0.8; }

/* ── Why MCA ── */
.about-why {
  background: linear-gradient(105deg, #0d1b2e 0%, #1a3558 100%);
  padding: 72px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pillar {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 32px 28px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(46,163,242,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.pillar h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}

/* ── Location ── */
.about-location {
  padding: 72px 0;
}

.about-location-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.location-text .section-label { margin-bottom: 14px; }

.location-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
  line-height: 1.3;
}

.location-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
}

address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.address-line svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--primary);
}
.address-line a { color: var(--primary); }

.location-cta-box {
  background: #f4f8fe;
  border: 1px solid #ddeeff;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
}

.location-cta-box h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.location-cta-box p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-cta {
  display: block;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.88; color: #fff; }

.btn-cta-ghost {
  display: block;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid var(--primary);
  transition: background 0.2s, color 0.2s;
}
.btn-cta-ghost:hover {
  background: var(--primary);
  color: #fff;
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-intro-grid,
  .about-location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 { font-size: 28px; }
}
