/* ───────────────────────────────────────────────
   ABOUT PAGE STYLES
─────────────────────────────────────────────── */

/* About hero */
.about-hero {
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(66, 238, 253, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(27, 117, 178, 0.08), transparent 70%),
    var(--bg);
  padding: clamp(80px, 12vw, 140px) 0 clamp(70px, 9vw, 110px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-hero .container { max-width: 1000px; }
.about-headline {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 20px;
}
.about-headline em {
  color: var(--brand-blue);
  font-style: normal;
}
.about-headline .navy-block {
  display: inline-block;
  background: var(--brand-navy);
  color: #fff;
  padding: 0 16px;
  border-radius: 8px;
}
.about-sub {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.breadcrumb a { color: var(--brand-blue); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand-navy); }
.breadcrumb .sep { color: var(--ink-faint); }

.about-hero-meta {
  margin-top: 40px;
  display: inline-flex;
  gap: 30px;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.about-hero-meta .item {
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-hero-meta .item::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
}
.about-hero-meta .item .num { color: var(--brand-blue); font-weight: 800; }

/* Story — two column */
.story-section { background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-text h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.story-text h2 em { color: var(--brand-blue); font-style: normal; }
.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}
.story-text p strong { color: var(--brand-navy); font-weight: 700; }
.story-card {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.story-card-content { position: relative; }
.story-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 0.5;
  color: var(--brand-cyan-bright);
  opacity: 0.5;
  height: 30px;
}
.story-card .quote {
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
.story-card .quote em { color: var(--brand-cyan-bright); font-style: normal; font-weight: 600; }
.story-card .attribution {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mission panel — big editorial */
.mission-section { background: var(--bg-soft); }
.mission-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  border: 1px solid var(--border-soft);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.mission-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 80px; height: 4px;
  background: var(--brand-blue);
  transform: translateX(-50%);
}
.mission-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 28px;
}
.mission-text {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-navy);
  letter-spacing: -0.015em;
  max-width: 900px;
  margin: 0 auto;
}
.mission-text em {
  color: var(--brand-blue);
  font-style: normal;
}

/* Credos grid (8 values) */
.credos { background: #fff; }
.credos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .credos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .credos-grid { grid-template-columns: 1fr; } }
.credo {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .35s var(--ease);
  position: relative;
}
.credo:hover {
  transform: translateY(-3px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}
.credo-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand-blue);
}
.credo h4 {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
}
.credo p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Leadership grid */
.leadership { background: var(--bg-soft); }
.leadership-group { margin-bottom: 48px; }
.leadership-group:last-child { margin-bottom: 0; }
.leadership-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brand-blue);
  display: inline-block;
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .leadership-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .leadership-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .leadership-grid { grid-template-columns: 1fr; } }
.leader {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .35s var(--ease);
}
.leader:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}
.leader-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.leader-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.25;
}
.leader-title {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Global presence */
.presence { background: #fff; }
.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .presence-grid { grid-template-columns: 1fr; gap: 40px; } }
.hq-block {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.hq-block::after {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(66, 238, 253, 0.25), transparent 70%);
  pointer-events: none;
}
.hq-flag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-cyan-bright);
  position: relative;
  z-index: 1;
}
.hq-name {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.hq-address {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.hq-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.hq-contact a { color: var(--brand-cyan-bright); }

.countries-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
}
.countries-block .countries-lede {
  color: var(--ink-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.countries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.country {
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all .25s var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.country:hover {
  background: #fff;
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.country .city {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
}
.country:hover .city { color: var(--brand-blue); opacity: 0.7; }

/* Alliances */
.alliances { background: var(--bg-soft); }
.alliances-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .alliances-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .alliances-grid { grid-template-columns: 1fr; } }
.alliance {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .35s var(--ease);
}
.alliance:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}
.alliance-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
}
.alliance-tier {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
}
.alliance-desc {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* Active nav link */
.nav-links a.active { color: var(--brand-blue); }
.nav-links a.active::after { transform: scaleX(1) !important; }
