/**
 * SMS-style navbar for About Us (dark hero).
 */
.about-us-page {
  --sms-max: 1440px;
  --sms-inset: max(calc((100vw - var(--sms-max)) / 2), 0px);
  --cta-from: #fe8d03;
  --cta-to: #f93a3a;
}

.about-us-page .header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 130px;
  z-index: 100;
  padding: 0;
}

.about-us-page .logo {
  position: absolute;
  left: calc(var(--sms-inset) + 129px);
  top: 48px;
  width: 164.55px;
  height: 42px;
}

.about-us-page .logo img {
  width: 164.55px;
  height: 52px;
  object-fit: contain;
}

.about-us-page .nav-toggle {
  display: none;
}

.about-us-page .nav {
  position: absolute;
  left: calc(var(--sms-inset) + 432px);
  top: 55px;
  display: flex;
  align-items: center;
  height: 31px;
  z-index: 30;
}

.about-us-page .sms-nav-menu > .menu-item > a,
.about-us-page .sms-nav-menu > .menu-item > a:hover,
.about-us-page .sms-nav-menu > .menu-item.is-open > a,
.about-us-page .sms-nav-menu > .menu-item > a[aria-expanded="true"],
.about-us-page .sms-nav-menu > .menu-item.company-parent > a {
  color: #fff;
}

.about-us-page .sms-nav-menu > .menu-item.company-parent > a {
  font-weight: 700;
}

.about-us-page .sms-nav-menu .gt-menu-arrow,
.about-us-page .sms-nav-menu .nav__chevron {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.about-us-page .btn-cta {
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, var(--cta-from) 0%, var(--cta-to) 100%);
  white-space: nowrap;
  text-decoration: none;
}

.about-us-page .btn-cta--header {
  position: absolute;
  right: calc(var(--sms-inset) + 130px);
  top: 49.38px;
  width: 180px;
  height: 38px;
  border-radius: 18.5px;
  padding: 0 10px 0 16px;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 400;
}

.about-us-page .btn-cta__orb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
  width: 29.06px;
  height: 25.14px;
  border-radius: 12.22px;
}

.about-us-page .btn-cta__orb img {
  width: 21px;
  height: 21px;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .about-us-page .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    height: 72px;
  }

  .about-us-page .logo,
  .about-us-page .btn-cta--header {
    position: static;
  }

  .about-us-page .logo,
  .about-us-page .logo img {
    width: 132px;
    height: 34px;
  }

  .about-us-page .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    z-index: 30;
    background: none;
    border: none;
    cursor: pointer;
  }

  .about-us-page .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
  }

  .about-us-page .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 72px;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 24px 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18, 19, 72, 0.08);
    z-index: 25;
  }

  .about-us-page .nav.is-open {
    display: flex;
  }

  .about-us-page .nav.is-open .sms-nav-menu > .menu-item > a {
    color: #121348;
  }

  .about-us-page .nav.is-open .sms-nav-menu .gt-menu-arrow,
  .about-us-page .nav.is-open .sms-nav-menu .nav__chevron {
    filter: brightness(0) saturate(100%);
    opacity: 0.85;
  }

  .about-us-page .btn-cta--header {
    display: none;
  }
}
