.about-hero {
  min-height: 72vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 5rem;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(82,151,255,0.15) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(24,95,165,0.2) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-left .chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(82, 151, 255, 0.15);
  border: 1px solid rgba(82, 151, 255, 0.3);
  color: #7ab3ff;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.6s ease 0.1s both;
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-left h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #7ab3ff 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  line-height: 1.75;
  animation: fadeUp 0.7s ease 0.35s both;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideRight 0.7s ease 0.4s both;
}
.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-bright);
  letter-spacing: -1px;
  line-height: 1;
  min-width: 80px;
}
.hero-stat-info h4 {
  font-weight: 700;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.hero-stat-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── LAYOUT UTILS ─── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 4rem;
}
.s-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.s-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.s-title em {
  font-style: italic;
  color: var(--blue);
}
.s-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}
.s-head {
  margin-bottom: 4rem;
}
.s-head.center {
  text-align: center;
}
.s-head.center .s-sub {
  margin: 0 auto;
}

/* ─── STORY ─── */
.story-bg {
  background: var(--off-white);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
}
.story-text p:last-child {
  margin-bottom: 0;
}
.story-highlight {
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}
.story-highlight p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
.story-highlight p strong {
  color: white;
  font-style: normal;
}
.story-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  transition: all 0.3s;
}
.story-card:hover {
  border-color: rgba(24, 95, 165, 0.25);
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.08);
  transform: translateY(-3px);
}
.story-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.story-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.story-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── MISSION / VISION ─── */
.mv-bg {
  background: var(--navy);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s;
}
.mv-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(82, 151, 255, 0.3);
  transform: translateY(-4px);
}
.mv-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
}
.mv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.mv-card h3 em {
  font-style: italic;
  color: #7ab3ff;
}
.mv-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ─── VALUES ─── */
.values-bg {
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.val-card {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.val-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.val-card:hover {
  border-color: rgba(24, 95, 165, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.val-card:hover::before {
  opacity: 1;
}
.val-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.val-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.val-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.val-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── TEAM ─── */
.team-bg {
  background: var(--off-white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.team-card:hover {
  border-color: rgba(24, 95, 165, 0.25);
  box-shadow: 0 16px 48px rgba(13, 31, 60, 0.1);
  transform: translateY(-6px);
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  position: relative;
}
.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}
.team-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.team-card .role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
}
.team-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.team-social {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
  text-decoration: none;
}
.team-social:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.team-social svg {
  width: 14px;
  height: 14px;
}
.add-team-card {
  background: transparent;
  border: 2px dashed var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 1rem;
}
.add-team-card .add-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.add-team-card p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ─── CULTURE ─── */
.culture-bg {
  background: var(--navy);
}
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.culture-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2.25rem;
  transition: all 0.3s;
}
.culture-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(82, 151, 255, 0.25);
  transform: translateY(-3px);
}
.culture-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(82, 151, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.culture-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.6rem;
}
.culture-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ─── STATS ─── */
.stats-bg {
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s;
}
.stat-card:hover {
  border-color: rgba(24, 95, 165, 0.3);
  box-shadow: 0 8px 28px rgba(13, 31, 60, 0.08);
  transform: translateY(-4px);
}
.stat-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card-num span {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.stat-card p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── CTA ─── */
.cta-wrap {
  margin: 0 4rem;
  padding: 40px 0;
}
.cta-box {
  background: var(--navy);
  border-radius: 28px;
  padding: 6rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(82, 151, 255, 0.12) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-box h2 em {
  font-style: italic;
  color: #7ab3ff;
}
.cta-box p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hp {
  background: white;
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Figtree', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-hp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.2);
}
.btn-hg {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Figtree', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-hg:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-l.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-r.visible {
  opacity: 1;
  transform: translateX(0);
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── RESPONSIVE ─── */
@media(max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
  .about-hero { padding: 6rem 1.5rem 4rem; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .wrap { padding: 2.5rem 1.25rem; }
  .story-layout { grid-template-columns: 1fr; gap: 2rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-wrap { margin: 0 1.25rem 2.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-box h2 { font-size: 1.5rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .team-card { padding: 1.75rem 1.25rem; }
}

@media(max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
