.about-who {
  padding: var(--space-xl) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

/* subtle background pattern */
.about-who::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle at top right, rgba(0,194,168,0.07), transparent 65%);
  pointer-events: none;
}

.about-who__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left — image composition */
.about-who__visual {
  position: relative;
}

.about-who__img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
  position: relative;
  box-shadow: 0 24px 64px rgba(11,31,58,0.14);
}
.about-who__img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-who__img-main:hover img { transform: scale(1.04); }

/* Accent image — small, overlapping */
.about-who__img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 52%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(11,31,58,0.18);
  border: 4px solid var(--white);
}
.about-who__img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Experience badge on main image */
.about-who__exp-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(11,31,58,0.22);
  z-index: 2;
}
.about-who__exp-badge strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.about-who__exp-badge span {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  display: block;
  margin-top: 4px;
}

/* Teal vertical bar on image */
.about-who__img-bar {
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: -6px;
  width: 4px;
  background: linear-gradient(to bottom, var(--secondary), rgba(0,194,168,0.1));
  border-radius: 4px;
}

/* Right — content */
.about-who__content {}

.about-who__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}
.about-who__eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.about-who__title {
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.about-who__title span {
  color: var(--secondary);
}

.about-who__lead {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.about-who__body {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/* Feature pills */
.about-who__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.about-who__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,194,168,0.1);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.about-who__feature:hover {
  border-color: rgba(0,194,168,0.35);
  box-shadow: 0 4px 20px rgba(0,194,168,0.08);
  transform: translateY(-2px);
}
.about-who__feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, rgba(0,194,168,0.12), rgba(0,194,168,0.06));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-who__feature-icon svg { color: var(--secondary); }
.about-who__feature-text strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-who__feature-text span {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Badges row (Microsoft, etc.) */
.about-who__partners {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.about-who__partners-label {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.about-who__partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(11,31,58,0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-who__partner-badge:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(0,194,168,0.12);
}
.about-who__partner-badge svg { color: var(--secondary); }

/* ── ANIMATION ENTRIES ── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.anim-fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-who__inner  { gap: 48px; }
}

@media (max-width: 900px) {
  .about-who__inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .about-who__visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-who__features { grid-template-columns: 1fr; }
  .about-who__img-accent { right: -12px; width: 46%; }
  .about-who__exp-badge { left: -12px; padding: 14px 16px; }
  .about-who__title { font-size: 1.7rem; }
}