.who-page {
  overflow: hidden;
}

/* =========================================================
   PAGE HERO
========================================================= */

.who-hero {
  position: relative;

  min-height: 430px;

  display: flex;
  align-items: center;

  background: linear-gradient(110deg, #0b2742 0%, #123d63 55%, #1a77fa 140%);

  overflow: hidden;
}

.who-hero-content {
  position: relative;

  z-index: 2;

  max-width: 760px;

  padding: 80px 0;
}

.who-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  color: #a9c8e5;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

.who-eyebrow::before {
  content: "";

  width: 30px;
  height: 2px;

  background: #4d9be5;
}

.who-hero h1 {
  margin-bottom: 24px;

  color: white;

  font-size: clamp(45px, 6vw, 70px);

  letter-spacing: -0.055em;
}

.who-hero h1 span {
  display: block;

  color: #72b5f0;
}

.who-hero p {
  max-width: 650px;

  color: #d0deeb;

  font-size: 16px;

  line-height: 1.8;
}

.who-hero-pattern {
  position: absolute;

  right: -150px;
  top: -150px;

  width: 550px;
  height: 550px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 50%;
}

.who-hero-pattern::before,
.who-hero-pattern::after {
  content: "";

  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 50%;
}

.who-hero-pattern::before {
  inset: 70px;
}

.who-hero-pattern::after {
  inset: 140px;
}

.who-intro {
  background: white;
}

.who-intro-grid {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 90px;

  align-items: center;
}

.who-image {
  position: relative;

  height: 540px;

  overflow: hidden;

  border-radius: 10px;
}

.who-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.who-image:hover img {
  transform: scale(1.03);
}

.who-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 55%, rgba(7, 25, 43, 0.72));
}

.who-image-caption {
  position: absolute;

  z-index: 2;

  left: 28px;
  bottom: 27px;

  color: white;
}

.who-image-caption span {
  display: block;

  margin-bottom: 4px;

  color: #a9c8e5;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.14em;
}

.who-image-caption strong {
  font-family: "Manrope", sans-serif;

  font-size: 15px;
}

.who-intro-content h2 {
  max-width: 620px;

  margin-bottom: 28px;
}

.who-intro-content p {
  max-width: 650px;

  margin-bottom: 18px;

  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.9;
}

.linkedin-profile {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 14px;

  padding: 11px 14px;

  color: #0a66c2;

  background: #eef6fd;

  border: 1px solid #d5e8f7;

  border-radius: 5px;

  font-size: 11px;

  font-weight: 700;

  transition: 0.3s ease;
}

.linkedin-profile i:last-child {
  font-size: 9px;

  transition: 0.3s ease;
}

.linkedin-profile:hover {
  color: white;

  background: #0a66c2;

  border-color: #0a66c2;
}

.linkedin-profile:hover i:last-child {
  transform: translate(3px, -3px);
}

/* =========================================================
   LEADERSHIP
========================================================= */

.leadership-section {
  background: var(--gray-50);

  border-top: 1px solid var(--border);

  border-bottom: 1px solid var(--border);
}

.leadership-heading {
  display: grid;

  grid-template-columns: 1fr 0.65fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 50px;
}

.leadership-heading h2 {
  max-width: 650px;
}

.leadership-heading p {
  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.85;
}

.leadership-card {
  display: grid;

  grid-template-columns: 330px 1fr;

  min-height: 330px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 10px;

  overflow: hidden;
}

.leadership-card-image {
  background: var(--gray-200);

  overflow: hidden;
}

.leadership-card-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.leadership-card-content {
  padding: 55px;
}

.person-role {
  display: block;

  margin-bottom: 10px;

  color: var(--blue);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.13em;
}

.leadership-card-content h3 {
  margin-bottom: 18px;

  font-size: 30px;

  letter-spacing: -0.03em;
}

.leadership-card-content p {
  max-width: 620px;

  margin-bottom: 25px;

  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.85;
}

.person-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: var(--blue);

  font-size: 11px;

  font-weight: 800;
}

.person-link i:last-child {
  transition: 0.3s ease;
}

.person-link:hover i:last-child {
  transform: translateX(4px);
}

.expertise-section {
  background: white;
}

.expertise-heading {
  max-width: 720px;

  margin-bottom: 50px;
}

.expertise-heading h2 {
  margin-bottom: 18px;
}

.expertise-heading p {
  max-width: 600px;

  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.8;
}

.expertise-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.expertise-card {
  position: relative;

  min-height: 310px;

  padding: 30px;

  background: var(--gray-50);

  border: 1px solid var(--border);

  border-radius: 9px;

  transition: 0.3s ease;
}

.expertise-card:hover {
  background: white;

  border-color: #b8d1e8;

  transform: translateY(-5px);

  box-shadow: 0 18px 35px rgba(16, 43, 70, 0.08);
}

.expertise-icon {
  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  margin-bottom: 45px;

  color: var(--blue);

  background: #eaf3fb;

  border-radius: 7px;
}

.expertise-card > span {
  position: absolute;

  right: 25px;
  top: 30px;

  color: var(--gray-400);

  font-size: 10px;

  font-weight: 700;
}

.expertise-card h3 {
  margin-bottom: 14px;

  font-size: 21px;
}

.expertise-card p {
  color: var(--gray-600);

  font-size: 13px;

  line-height: 1.8;
}

.who-work-preview {
  background: var(--gray-50);

  border-top: 1px solid var(--border);
}

.who-work-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.who-work-content h2 {
  margin-bottom: 25px;
}

.who-work-content p {
  max-width: 600px;

  margin-bottom: 17px;

  color: var(--gray-600);

  font-size: 14px;

  line-height: 1.85;
}

.who-work-button {
  display: inline-flex;

  align-items: center;

  gap: 11px;

  margin-top: 15px;

  padding: 13px 17px;

  color: white;

  background: var(--navy);

  border-radius: 5px;

  font-size: 11px;

  font-weight: 700;

  transition: 0.3s ease;
}

.who-work-button:hover {
  background: var(--blue);

  transform: translateY(-2px);
}

.who-work-button i {
  transition: 0.3s ease;
}

.who-work-button:hover i {
  transform: translateX(4px);
}

.who-work-visual {
  position: relative;

  padding-left: 35px;
}

.visual-line {
  position: absolute;

  left: 8px;
  top: 12px;
  bottom: 12px;

  width: 1px;

  background: #cbd8e4;
}

.visual-item {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 19px 0;
}

.visual-number {
  position: relative;

  z-index: 2;

  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  color: var(--blue);

  background: white;

  border: 1px solid #cbd8e4;

  border-radius: 50%;

  font-size: 9px;

  font-weight: 800;
}

.visual-item strong {
  display: block;

  margin-bottom: 3px;

  color: var(--navy);

  font-family: "Manrope", sans-serif;

  font-size: 13px;
}

.visual-item span {
  color: var(--gray-500);

  font-size: 11px;
}

.who-cta {
  padding: 85px 0;

  color: white;

  background: linear-gradient(110deg, #0b2742, #123d63);
}

.who-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.who-cta-label {
  display: block;

  margin-bottom: 14px;

  color: #78b8ed;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;
}

.who-cta h2 {
  max-width: 650px;

  color: white;

  font-size: clamp(34px, 4vw, 50px);
}

.who-cta h2 span {
  color: #6db0e9;
}

.who-cta p {
  max-width: 580px;

  margin-top: 15px;

  color: #b9cad9;

  font-size: 13px;

  line-height: 1.8;
}

.who-cta-button {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 16px 22px;

  color: white;

  background: var(--blue);

  border: 1px solid var(--blue);

  border-radius: 5px;

  font-size: 12px;

  font-weight: 800;

  transition: 0.3s ease;
}

.who-cta-button:hover {
  background: #328bd8;

  border-color: #328bd8;

  transform: translateY(-3px);
}

.who-cta-button i {
  transition: 0.3s ease;
}

.who-cta-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .who-intro-grid,
  .who-work-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .leadership-heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .leadership-card {
    grid-template-columns: 280px 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .who-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .who-hero {
    min-height: 430px;
  }

  .who-hero-content {
    padding: 70px 0;
  }

  .who-hero h1 {
    font-size: 43px;
  }

  .who-hero p {
    font-size: 14px;
  }

  .who-image {
    height: 380px;
  }

  .leadership-card {
    grid-template-columns: 1fr;
  }

  .leadership-card-image {
    height: 330px;
  }

  .leadership-card-content {
    padding: 30px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    min-height: 270px;
  }

  .who-work-visual {
    padding-left: 25px;
  }

  .who-cta {
    padding: 70px 0;
  }

  .who-cta-button {
    width: 100%;

    justify-content: center;
  }
}
