/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --gold:       #ee8522;
  --gold-light: #fbc878;
  --white:      #FFFFFF;
  --off-white:  #EEF2F7;
  --text:       #2D3748;
  --text-muted: #5A6882;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(11,31,58,.10);
}

.about-hero,
.stats-ribbon,
.about-who,
.about-advantages {
  box-sizing: border-box;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SHARED TYPOGRAPHY ─── */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 16px;
}
.section-title--light { color: var(--white); }

.section-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 0 28px;
}
.section-rule--centered {
  margin: 0 auto 48px;
}

/* ─── HERO ─── */
.about-hero {
  position: relative;
  background: var(--navy);
  padding: 90px 24px 120px;
  text-align: center;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% -10%, rgba(201,168,76,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 110%, rgba(201,168,76,.10) 0%, transparent 55%);
  pointer-events: none;
}
.about-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.about-hero__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.28);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.about-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -.01em;
}
.about-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  margin: 0;
}
.about-hero__clip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ─── STATS RIBBON ─── */
.stats-ribbon {
  background: var(--off-white);
  padding: 0 24px 56px;
}
.stats-ribbon__inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 36px 24px;
  border-top: 3px solid var(--gold);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  min-width: 160px;
  text-align: center;
}
.stat-item__number {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-item__plus {
  color: var(--gold);
  font-size: .8em;
}
.stat-item__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: #DDE3EE;
  flex-shrink: 0;
}

/* ─── WHO WE ARE ─── */
.about-who {
  background: var(--off-white);
  padding: 72px 24px 96px;
}
.about-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-who__image-wrap {
  position: relative;
}
.about-who__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 16px 48px rgba(11,31,58,.14);
}
.about-who__image-badge {
  position: absolute;
  bottom: -18px;
  left: 28px;
  background: var(--navy);
  padding: 14px 22px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(11,31,58,.22);
}
.badge-line1 {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.badge-line2 {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}
.about-who__content p {
  font-size: .97rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 16px;
}

/* ─── ADVANTAGES ─── */
.about-advantages {
  background: var(--navy);
  padding: 80px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,.09) 0%, transparent 65%);
  pointer-events: none;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.advantage-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.advantage-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}
.advantage-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.advantage-card__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.advantage-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
}
.advantage-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,.60);
  line-height: 1.75;
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-who__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .stat-divider { display: none; }
  .stats-ribbon__inner {
    flex-direction: column;
    padding: 28px 16px;
  }
  .stat-item {
    min-width: auto;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #DDE3EE;
  }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .about-hero { padding: 64px 20px 96px; }
  .about-who,
  .about-advantages { padding: 56px 20px; }
}

.page-hero-inner{
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}