:root {
  --color-brand-navy: #010a55;
  --color-brand-navy-alt: #111c7b;
  --color-brand-navy-deep: #011f4b;
  --color-brand-navy-mid: #062e62;
  --color-brand-orange: #fd7309;
  --color-brand-orange-dark: #e3640a;
  --color-brand-blue: #014dde;
  --color-brand-blue-soft: #3379d3;
  --color-white: #ffffff;
  --color-text-body: #6c7485;
  --color-text-dark: #231f20;
  --color-border-light: #ebf1fe;
  --color-border-stat: #cfdef3;
  --color-surface-alt: #f7f9fc;
  --color-surface-panel: #f4f8fe;
  --color-section-white: #ffffff;
  --color-section-muted: #f4f8fe;
  --color-section-trusted: #f9f9f9;
  --color-section-story: #011f4b;
  --color-section-accelerate: #010a55;
  --color-section-footer: #011f4b;
  --color-header-overlay: rgba(1, 38, 93, 0.2);
  --color-hero-overlay: linear-gradient(
    114.98deg,
    rgb(1, 38, 94) 0%,
    rgba(2, 79, 196, 0) 109.57%
  );
  --color-hero-overlay-split: linear-gradient(
    90deg,
    rgb(1, 38, 94) 0%,
    rgba(2, 79, 196, 0) 53.37%
  );
  --color-careers-overlay: linear-gradient(
    90deg,
    rgba(1, 31, 75, 0.28) 0%,
    rgba(1, 31, 75, 0.62) 42%,
    rgba(1, 31, 75, 0.88) 100%
  );
  --color-footer-bg: var(--color-section-footer);
  --color-heading: var(--color-brand-navy);
  --color-body-text: var(--color-text-body);
  --color-surface: var(--color-white);
  --color-border: var(--color-border-light);
  --shadow-sm: 0 2px 8px rgba(1, 10, 85, 0.06);
  --shadow-md: 0 4px 16px rgba(1, 10, 85, 0.08);
  --shadow-lg: 0 12px 28px rgba(1, 10, 85, 0.1);
  --shadow-card: 0 4px 20px rgba(1, 10, 85, 0.08);
  --shadow-card-hover: 0 12px 28px rgba(1, 10, 85, 0.12);
  --shadow-tech-strip: 0 2px 4px rgba(1, 10, 85, 0.04), 0 8px 24px rgba(1, 10, 85, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Respect user's reduced-transparency preference for translucent surfaces */
@media (prefers-reduced-transparency: reduce) {
  .header {
    background-color: var(--color-brand-navy);
  }
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-body-text);
  background-color: var(--color-surface);
  font-synthesis: none;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--color-heading);
  line-height: normal;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 1.2;
}

h2 {
  font-size: clamp(24px, 5vw, 32px);
  letter-spacing: 0.64px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

p {
  line-height: 1.55;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-brand-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-brand-orange);
  color: var(--color-white);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

img {
  image-rendering: auto;
  max-width: 100%;
}

img[loading=lazy] {
  opacity: 1;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 1.5rem;
  background-color: var(--color-section-white);
}
@media (min-width: 768px) {
  .section {
    padding-block: 2rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding-block: 2rem 2.625rem;
  }
}
.section--alt {
  background-color: var(--color-section-muted);
}

.header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: 79px;
  background-color: var(--color-header-overlay);
  box-shadow: none;
}
.header.is-scrolled {
  position: fixed;
  background-color: var(--color-brand-navy);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
  padding-block: 0;
}
.navbar__logo {
  display: flex;
  align-items: center;
  height: auto;
}
.navbar__links {
  display: none;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .navbar__links {
    gap: 22px;
  }
}
@media (min-width: 1440px) {
  .navbar__links {
    gap: 28px;
  }
}
.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-white);
  white-space: nowrap;
  padding-bottom: 6px;
  transition: color 0.15s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.navbar__link:hover {
  color: var(--color-brand-orange);
}
.navbar__link--active {
  color: var(--color-white);
  font-weight: 400;
}
.navbar__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--color-brand-orange);
  border-radius: 0;
  pointer-events: none;
}
.navbar__link--active:hover {
  color: var(--color-white);
}
.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

body.nav-open {
  overflow: hidden;
}

.navbar__mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--color-brand-navy);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.navbar__mobile.is-open {
  transform: translateX(0);
}
.navbar__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 79px;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.navbar__mobile-logo {
  display: flex;
  align-items: center;
}
.navbar__mobile-logo .brand-logo__image {
  width: auto;
  height: 40px;
}
.navbar__mobile-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--color-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.navbar__mobile-close:hover, .navbar__mobile-close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}
.navbar__mobile-close img {
  display: block;
  width: 20px;
  height: 20px;
}
.navbar__mobile-close-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.navbar__mobile-nav {
  flex: 1;
  padding: 2rem 1.5rem 1rem;
}
.navbar__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.navbar__mobile .navbar__link {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  width: 100%;
  justify-content: space-between;
}
.navbar__mobile .navbar__link:hover, .navbar__mobile .navbar__link:focus-visible {
  color: var(--color-brand-orange);
  outline: none;
}
.navbar__mobile .navbar__link--active {
  color: var(--color-brand-orange);
}
.navbar__mobile .navbar__link--active::after {
  display: none;
}

.footer {
  background-color: var(--color-footer-bg);
  color: rgba(255, 255, 255, 0.75);
  padding-block: 48px 16px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .footer__top {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 48px;
    align-items: flex-start;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
  width: 100%;
  max-width: 240px;
}
.footer__brand-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.28px;
  color: rgba(255, 255, 255, 0.75);
  margin: 16px 0 20px;
  max-width: 240px;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 32px 40px;
  justify-content: start;
  flex: 1 1 auto;
}
@media (min-width: 480px) {
  .footer__nav {
    grid-template-columns: repeat(4, max-content);
    gap: 32px 48px;
  }
}
@media (min-width: 1024px) {
  .footer__nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 48px;
    width: auto;
    min-width: 0;
    max-width: 720px;
  }
}
.footer__nav-col {
  min-width: 0;
  flex: 0 0 auto;
}
.footer__nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 16px;
  line-height: normal;
  white-space: nowrap;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav-link {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.footer__nav-link:hover {
  color: var(--color-brand-orange);
}
.footer__offices-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
}
@media (min-width: 1024px) {
  .footer__offices-block {
    align-self: stretch;
    margin-left: 16px;
    padding-left: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.footer__offices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__locations-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.footer__locations-link:hover {
  color: var(--color-brand-orange);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__bottom p {
  margin: 0;
  white-space: nowrap;
}
.footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: normal;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  height: 42px;
  box-sizing: border-box;
  box-shadow: none;
}
@media (max-width: 479px) {
  .btn {
    white-space: normal;
    text-align: center;
    height: auto;
    min-height: 42px;
  }
}
.btn__icon {
  width: 13px;
  height: 10px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  filter: none;
}
.btn--primary {
  background-color: var(--color-brand-orange);
  color: var(--color-white);
}
.btn--primary:hover {
  background-color: var(--color-brand-orange-dark);
}
.btn--outline {
  background-color: var(--color-white);
  color: var(--color-brand-blue);
  border-color: var(--color-brand-blue);
}
.btn--outline:hover {
  background-color: #f3f7ff;
}
.btn--text {
  padding: 0;
  height: auto;
  gap: 6px;
  color: var(--color-brand-orange);
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
}
.btn--text .btn__icon {
  width: 12px;
  height: 9px;
}
.btn--text:hover {
  text-decoration: underline;
}
.btn--sm {
  padding: 0.5rem 0.75rem;
  font-size: 12px;
  height: auto;
}
.btn--text-blue {
  color: var(--color-brand-blue);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  padding: 12px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.card__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
  filter: none;
}
.card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
  line-height: normal;
}
.card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-body-text);
  flex-grow: 1;
  margin: 0;
}
.card__action {
  margin-top: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .card-grid--six {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid--six {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .card-grid.card-grid--six {
    grid-template-columns: repeat(6, 1fr);
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .section-header {
    align-items: flex-start;
    text-align: left;
  }
}
.section-header--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 689px;
}
@media (min-width: 768px) {
  .section-header--center {
    align-items: center;
    text-align: center;
  }
}
.section-header__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0;
  line-height: normal;
}
.section-header__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.64px;
  margin: 0;
  max-width: 44ch;
  line-height: normal;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding-inline: 0;
}
.stat:nth-child(2), .stat:nth-child(3) {
  border-left: 1px solid var(--color-border-stat);
  border-right: 1px solid var(--color-border-stat);
}
@media (min-width: 768px) {
  .stat:nth-child(2) {
    border-left: 1px solid var(--color-border-stat);
    border-right: 1px solid var(--color-border-stat);
  }
  .stat:nth-child(3) {
    border-left: 0;
    border-right: 1px solid var(--color-border-stat);
  }
  .stat:nth-child(4) {
    border: 0;
  }
}
.stat__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: none;
  flex-shrink: 0;
}
.stat__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand-orange);
  margin: 0;
  line-height: normal;
}
.stat__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
  line-height: normal;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 828px;
}
@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.timeline-item__icon-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.timeline-item__year {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-orange);
  margin: 0;
  line-height: normal;
}
.timeline-item__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  max-width: 140px;
  line-height: normal;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1302px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .tech-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .tech-strip {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
  }
}
.tech-strip__cta {
  margin-top: 2rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 64px;
  padding: 12px 16px;
  min-width: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-tech-strip);
}
@media (min-width: 1024px) {
  .tech-badge {
    height: 72px;
    padding: 16px 12px;
  }
}
.tech-badge__logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 1;
}
.tech-badge__logo--wide {
  height: 28px;
  max-width: 88px;
}
.tech-badge__logo--secondary {
  height: 12px;
  max-width: 48px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  box-shadow: none;
  transition: background-color 0.15s ease;
}
.social-links__item img,
.social-links__item svg {
  width: 14px;
  height: 14px;
  display: block;
}
.social-links__item:hover {
  background-color: var(--color-brand-orange);
}

.office-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.office-item__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-white);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo__image {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.has-motion .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.has-motion .reveal.is-in {
  opacity: 1;
  transform: none;
}
.has-motion .reveal--fade {
  transform: none;
}
.has-motion .motion-hero-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hero-delay, 0ms);
  will-change: opacity, transform;
}
.has-motion .is-hero-in .motion-hero-item {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .has-motion .reveal,
  .has-motion .motion-hero-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}
.u-flex {
  display: flex;
}

.u-flex-col {
  display: flex;
  flex-direction: column;
}

.u-justify-center {
  justify-content: center;
}

.u-gap-5 {
  gap: 1.5rem;
}

.hero {
  position: relative;
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .hero {
    height: 510px;
    min-height: 510px;
    padding-block: 0;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 513px;
  padding-top: 56px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__content {
    gap: 28px;
    padding-top: 74px;
  }
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__title {
  font-size: 42px;
  font-weight: 500;
  line-height: 51px;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
.hero__title .hero__title-accent {
  color: var(--color-brand-orange);
  font-weight: 500;
  letter-spacing: 0.32px;
}
.hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  max-width: 421px;
  margin: 0;
  color: var(--color-white);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
  width: 100%;
}
.hero__actions > .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    gap: 24px;
  }
  .hero__actions > .btn {
    width: auto;
  }
}

.logo-strip-section {
  background-color: var(--color-section-trusted);
  padding-block: 16px;
  overflow: hidden;
}

.logo-strip__eyebrow {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.28px;
  margin: 0 0 9px;
  line-height: normal;
}
.logo-strip__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 60px;
  padding-block: 4px;
  animation: logo-strip-marquee 32s linear infinite;
}
.logo-strip__track:hover {
  animation-play-state: paused;
}
.logo-strip__group {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-inline-end: 64px;
  flex-shrink: 0;
}
.logo-strip__logo {
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
}

@keyframes logo-strip-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-strip__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
  .logo-strip__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline-end: 0;
    gap: 2rem;
    width: 100%;
  }
  .logo-strip__group--clone {
    display: none;
  }
  .logo-strip__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.about-section {
  background-color: var(--color-section-white);
  border-bottom: 1px solid var(--color-border-stat);
  padding-block: 2rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .about {
    grid-template-columns: 502px 1fr;
    gap: 2rem;
    justify-items: stretch;
    text-align: left;
  }
}
.about__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0;
  line-height: normal;
}
.about__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0.5rem 0;
  line-height: normal;
}
.about__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
  margin: 0 auto 0.5rem;
  max-width: 411px;
}
@media (min-width: 1024px) {
  .about__text {
    margin-left: 0;
    margin-right: 0;
  }
}
.about__cta {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about__cta {
    justify-content: flex-start;
  }
}
.about__media img {
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 620/326;
  object-fit: cover;
  border-radius: 24px;
  background-color: var(--color-border-light);
  display: block;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.about .stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  max-width: 502px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .about .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .about .stat-grid {
    padding: 0.75rem 0.75rem 0.75rem 0;
    margin-inline: 0;
  }
}

.services__cta {
  margin-top: 2rem;
}

.tech-industries {
  background-color: #f9f9f9;
  padding-block: 2rem;
}
@media (min-width: 1024px) {
  .tech-industries {
    padding-block: 2rem;
  }
}
.tech-industries__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .tech-industries__container {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.tech-industries__col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  flex: 1 1 0;
}
@media (min-width: 1024px) {
  .tech-industries__col {
    padding-inline: 1rem;
  }
}
@media (min-width: 1024px) {
  .tech-industries__col--tech {
    padding-inline: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tech-industries__col--industries {
    padding-inline: 1.5rem 0;
  }
}
.tech-industries__divider {
  display: none;
}
@media (min-width: 1024px) {
  .tech-industries__divider {
    display: block;
    width: 1px;
    align-self: stretch;
    background-color: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
  }
}
.tech-industries__header {
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .tech-industries__header {
    text-align: left;
  }
}
.tech-industries__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.28px;
  line-height: normal;
}
.tech-industries__title {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: var(--color-brand-navy);
  line-height: 1.25;
  letter-spacing: 0;
}
.tech-industries__title--sector {
  text-transform: uppercase;
  font-size: clamp(16px, 2.4vw, 18px);
  letter-spacing: 0.02em;
}
.tech-industries .tech-strip--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
  margin-inline: 0;
}
@media (min-width: 480px) {
  .tech-industries .tech-strip--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .tech-industries .tech-strip--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
.tech-industries .tech-strip--home .tech-badge {
  height: 48px;
  padding: 10px 12px;
}
@media (min-width: 1024px) {
  .tech-industries .tech-strip--home .tech-badge {
    height: 48px;
    padding: 12px;
  }
}
.tech-industries .tech-strip--home .tech-badge__logo {
  height: 24px;
}
.tech-industries .tech-strip--home .tech-badge__logo--wide {
  height: 24px;
  max-width: 100px;
}
.tech-industries .tech-strip--home .tech-badge__logo--secondary {
  height: 10px;
}
.tech-industries__industry-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 480px) {
  .tech-industries__industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tech-industries__industry-grid .tech-industries__industry:nth-child(4) {
    grid-column: 1;
  }
  .tech-industries__industry-grid .tech-industries__industry:nth-child(5) {
    grid-column: 2;
  }
}
.tech-industries__industry {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  min-height: 103px;
  padding: 16px 12px;
}
.tech-industries__cta {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.5rem;
}

.story-section {
  background-color: var(--color-section-story);
  padding-block: 2rem;
  color: var(--color-white);
}

.story {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .story {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.625rem;
    text-align: left;
  }
}
.story__copy {
  max-width: 301px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story__copy {
    align-items: flex-start;
  }
}
.story__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.28px;
  margin: 0;
  line-height: normal;
}
.story__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.44px;
  margin: 0;
  max-width: 292px;
  line-height: normal;
}
.story__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.28px;
  margin: 0 0 0.5rem;
  line-height: normal;
}

.careers-cta {
  position: relative;
  min-height: 321px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.careers-cta__media, .careers-cta__overlay {
  position: absolute;
  inset: 0;
}
.careers-cta__media {
  background-size: cover;
  background-position: center;
}
.careers-cta__overlay {
  background: var(--color-careers-overlay);
}
.careers-cta__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .careers-cta__container {
    justify-content: flex-end;
  }
}
.careers-cta__content {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .careers-cta__content {
    align-items: flex-start;
    text-align: left;
  }
}
.careers-cta__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0;
  line-height: normal;
}
.careers-cta__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.64px;
  margin: 0;
  line-height: normal;
}
.careers-cta__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.28px;
  margin: 0 0 0.5rem;
  line-height: normal;
}

.accelerate-cta {
  background: var(--color-section-accelerate);
  color: var(--color-white);
  overflow: hidden;
  width: 100%;
}
.accelerate-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: stretch;
  min-height: 0;
}
@media (min-width: 1024px) {
  .accelerate-cta__inner {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    min-height: 374px;
  }
}
.accelerate-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .accelerate-cta__copy {
    align-items: flex-start;
    text-align: left;
    padding: 48px 24px 48px max(2rem, (100vw - 1366px) / 2 + 80px);
  }
}
.accelerate-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0;
  max-width: 18ch;
}
@media (min-width: 1024px) {
  .accelerate-cta__title {
    font-size: 40px;
    line-height: 54px;
  }
}
.accelerate-cta__text {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-white);
  margin: 0;
  max-width: 417px;
}
@media (min-width: 1024px) {
  .accelerate-cta__text {
    font-size: 20px;
    line-height: 31px;
  }
}
.accelerate-cta__visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  min-width: 0;
  order: -1;
  background: transparent;
}
@media (min-width: 1024px) {
  .accelerate-cta__visual {
    order: 0;
    min-height: 374px;
    height: 100%;
    overflow: hidden;
    margin-left: 0;
    width: 100%;
    justify-self: stretch;
  }
  .accelerate-cta__visual::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background: #fd7309;
    clip-path: polygon(17.5% 0%, 33% 0%, 4.5% 100%, 0% 100%);
    pointer-events: none;
  }
}
.accelerate-cta__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: 72% center;
}
@media (min-width: 1024px) {
  .accelerate-cta__photo {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 0;
    height: 100%;
    object-fit: fill;
    object-position: center;
  }
}

.about-hero {
  position: relative;
  height: auto;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 1.5rem;
}
@media (min-width: 768px) {
  .about-hero {
    height: 333px;
    min-height: 333px;
    padding-block: 0;
  }
}
.about-hero__media, .about-hero__overlay {
  position: absolute;
  inset: 0;
}
.about-hero__media {
  background-size: cover;
  background-position: center;
}
.about-hero__overlay {
  display: none;
}
.about-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.about-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 411px;
  padding-top: 40px;
}
.about-hero__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0;
  line-height: normal;
}
.about-hero__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 51px;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
.about-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  max-width: 411px;
  margin: 0;
  color: var(--color-white);
}

.about-story-section {
  background-color: var(--color-section-white);
  padding-block: 2rem;
  border-bottom: 1px solid var(--color-border-stat);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-story {
    grid-template-columns: 502px 1fr;
    gap: 2rem;
  }
}
.about-story__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0 0 0.5rem;
  line-height: normal;
}
.about-story__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0 0 0.75rem;
  line-height: normal;
}
.about-story__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-story__text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
  margin: 0;
  max-width: 502px;
}
.about-story__media img {
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 620/333;
  object-fit: cover;
  border-radius: 24px;
  background-color: var(--color-border-light);
  display: block;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.about-verticals-section {
  background-color: var(--color-section-white);
  padding-block: 2rem;
}

.about-verticals__header {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.about-verticals__header .section-header__title {
  max-width: none;
  margin-inline: auto;
}
.about-verticals__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .about-verticals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-verticals__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.about-vertical-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  height: 100%;
}
.about-vertical-card__media {
  aspect-ratio: 290/180;
  overflow: hidden;
  background: var(--color-border-light);
}
.about-vertical-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-vertical-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.about-vertical-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.28px;
}
.about-vertical-card__text {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-body);
  line-height: 18px;
  margin: 0;
}

.about-journey-section {
  background-color: var(--color-section-story);
  padding-block: 2rem;
  color: var(--color-white);
}

.about-journey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.about-journey__eyebrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0;
  line-height: normal;
  text-align: center;
}
.about-journey__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 1100px;
}
@media (min-width: 480px) {
  .about-journey__timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-journey__timeline {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
  }
}

.about-journey-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.about-journey-item__icon-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-journey-item__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.about-journey-item__year {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-orange);
  margin: 0;
  line-height: normal;
}
.about-journey-item__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
  max-width: 150px;
  line-height: 17px;
}

.about-power-section {
  background-color: var(--color-section-white);
  padding-block: 2rem;
}

.about-power {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-power {
    grid-template-columns: 620px 1fr;
    gap: 2rem;
  }
}
.about-power__media img {
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 620/420;
  object-fit: cover;
  border-radius: 24px;
  background-color: var(--color-border-light);
  display: block;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}
.about-power__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0 0 0.75rem;
  line-height: normal;
  text-transform: uppercase;
  max-width: 524px;
}
.about-power__text {
  max-width: 502px;
}
.about-power__list {
  margin: 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-power__list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.services-hero {
  position: relative;
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .services-hero {
    height: 510px;
    min-height: 510px;
    padding-block: 0;
  }
}
.services-hero__media, .services-hero__overlay {
  position: absolute;
  inset: 0;
}
.services-hero__media {
  background-size: cover;
  background-position: center right;
}
.services-hero__overlay {
  background: var(--color-hero-overlay);
  pointer-events: none;
}
.services-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.services-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 540px;
  padding-top: 74px;
  align-items: flex-start;
}
.services-hero__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 51px;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
.services-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  max-width: 500px;
  margin: 0;
  color: var(--color-white);
}

.services-intro-section {
  background-color: var(--color-section-white);
  padding-block: 3.5rem;
}

.services-intro {
  max-width: 760px;
  margin-inline: auto;
}
.services-intro .section-header__title {
  max-width: 52ch;
}
.services-intro__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
  margin: 0.75rem auto 0;
  max-width: 640px;
}

.services-block-section {
  background-color: var(--color-section-white);
  padding-block: 3.5rem;
}
.services-block-section--alt {
  background-color: #f4f8fe;
}

.services-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .services-block {
    grid-template-columns: 620px 1fr;
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .services-block--reversed {
    grid-template-columns: 1fr 620px;
  }
  .services-block--reversed .services-block__media {
    order: 2;
  }
  .services-block--reversed .services-block__copy {
    order: 1;
  }
}
.services-block__media img {
  width: 100%;
  max-width: 620px;
  height: auto;
  aspect-ratio: 620/333;
  object-fit: cover;
  border-radius: 24px;
  background-color: var(--color-border-light);
  display: block;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}
.services-block__number {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-orange);
  margin: 0 0 0.5rem;
  line-height: normal;
  letter-spacing: 0.32px;
}
.services-block__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0 0 0.5rem;
  line-height: normal;
}
.services-block__subtitle {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-brand-blue-soft);
  letter-spacing: 0.44px;
  margin: 0 0 0.75rem;
  line-height: normal;
}
.services-block__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
  margin: 0 0 0.75rem;
  max-width: 502px;
}
.services-block__list-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  margin: 0 0 0.75rem;
  line-height: normal;
}

.services-industries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
  margin-block: 1rem 0.75rem;
  max-width: 420px;
}
@media (min-width: 480px) {
  .services-industries {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
  }
}

.services-industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.services-industry__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-industry__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
.services-industry__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-brand-navy-alt);
  line-height: 1.3;
  max-width: 88px;
}

.services-qa-grid {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 1rem;
  max-width: 502px;
}
@media (min-width: 480px) {
  .services-qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .services-qa-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services-qa-grid li {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
  padding-left: 14px;
  position: relative;
}
.services-qa-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1.5px;
  background-color: var(--color-brand-orange);
  border-radius: 1px;
}

.services-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .services-featured {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.services-featured-card {
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 180px;
}
.services-featured-card--light {
  background-color: #f4f8fe;
  border: 1px solid var(--color-border-light);
}
.services-featured-card--dark {
  background-color: var(--color-section-story);
  color: var(--color-white);
  text-align: center;
}
.services-featured-card__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  line-height: normal;
  letter-spacing: 0.44px;
}
.services-featured-card__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin: 0;
  text-align: left;
}
.services-featured-card--light .services-featured-card__title {
  color: var(--color-brand-navy-alt);
  text-align: left;
}
.services-featured-card--light .services-featured-card__text {
  color: var(--color-text-body);
}
.services-featured-card--dark .services-featured-card__title {
  color: var(--color-white);
  text-align: center;
}
.services-featured-card__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
}
@media (min-width: 480px) {
  .services-featured-card__columns {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.services-featured-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-featured-card__list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-white);
  padding-left: 14px;
  position: relative;
}
.services-featured-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1.5px;
  background-color: var(--color-brand-orange);
  border-radius: 1px;
}

.services-staffing-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 1rem;
  max-width: 502px;
}
@media (min-width: 480px) {
  .services-staffing-list {
    grid-template-columns: 1fr 1fr;
  }
}
.services-staffing-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--color-text-body);
  padding-left: 14px;
  position: relative;
}
.services-staffing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1.5px;
  background-color: var(--color-brand-orange);
  border-radius: 1px;
}

.services-cta {
  background-color: var(--color-section-accelerate);
  color: var(--color-white);
  padding-block: 3.5rem;
}
.services-cta__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-cta__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.services-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 620px;
}
.services-cta__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.64px;
  margin: 0;
  line-height: normal;
}
.services-cta__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 520px;
}
.services-cta__btn {
  flex-shrink: 0;
}

.careers-hero {
  position: relative;
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .careers-hero {
    height: 510px;
    min-height: 510px;
    padding-block: 0;
  }
}
.careers-hero__media, .careers-hero__overlay {
  position: absolute;
  inset: 0;
}
.careers-hero__media {
  background-size: cover;
  background-position: center right;
}
@media (max-width: 767px) {
  .careers-hero__media {
    background-position: 70% center;
  }
}
.careers-hero__overlay {
  background: var(--color-hero-overlay);
  pointer-events: none;
}
.careers-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.careers-hero__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 513px;
  padding-top: 56px;
  width: 100%;
}
@media (min-width: 768px) {
  .careers-hero__content {
    gap: 18px;
    padding-top: 74px;
  }
}
.careers-hero__title {
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
@media (min-width: 768px) {
  .careers-hero__title {
    line-height: 51px;
  }
}
.careers-hero__title-accent {
  color: var(--color-brand-orange);
}
.careers-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  max-width: 421px;
  margin: 0;
  color: var(--color-white);
}
.careers-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
}
.careers-hero__actions > .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .careers-hero__actions {
    flex-direction: row;
    gap: 1rem;
  }
  .careers-hero__actions > .btn {
    width: auto;
  }
}
.careers-hero__btn-outline {
  background: var(--color-white);
  color: var(--color-brand-blue);
  border-color: var(--color-white);
}
.careers-hero__btn-outline:hover {
  background: rgba(255, 255, 255, 0.92);
}

.careers-why {
  background: var(--color-section-white);
  border-bottom: 1px solid var(--color-border-stat);
}
.careers-why__container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .careers-why__container {
    grid-template-columns: 645fr 630fr;
    gap: 2rem;
  }
}
.careers-why__media img {
  width: 100%;
  height: auto;
  max-height: 260px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .careers-why__media img {
    max-height: none;
  }
}
@media (min-width: 1024px) {
  .careers-why__media img {
    height: 340px;
  }
}
.careers-why__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  align-items: stretch;
}
.careers-why__title {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0;
  text-align: left;
  width: 100%;
}
.careers-why__text {
  font-size: 14px;
  color: var(--color-text-body);
  margin: 0;
  line-height: 17px;
  text-align: left;
}
.careers-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 0.5rem;
}
@media (min-width: 480px) {
  .careers-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.careers-why-card {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 12px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.15);
  text-align: left;
}
.careers-why-card__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  display: block;
}
@media (min-width: 480px) {
  .careers-why-card__icon {
    width: 42px;
    height: 42px;
  }
}
.careers-why-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.careers-why-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
  line-height: normal;
}
.careers-why-card__text {
  font-size: 12px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.4;
}

.careers-hiring {
  background: var(--color-section-accelerate);
  color: var(--color-white);
}
.careers-hiring__header {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .careers-hiring__header {
    margin-bottom: 2rem;
  }
}
.careers-hiring__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .careers-hiring__eyebrow {
    font-size: 16px;
  }
}
.careers-hiring__title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
  letter-spacing: 0.64px;
  line-height: 1.25;
  padding-inline: 0.5rem;
}
.careers-hiring__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .careers-hiring__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .careers-hiring__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.careers-hiring-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .careers-hiring-step {
    gap: 12px;
  }
}
.careers-hiring-step__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: transparent;
}
@media (min-width: 768px) {
  .careers-hiring-step__icon {
    width: 80px;
    height: 80px;
  }
}
.careers-hiring-step__number {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-brand-orange);
  margin: 0;
}
.careers-hiring-step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin: 0;
}
.careers-hiring-step__text {
  font-size: 14px;
  color: var(--color-white);
  margin: 0;
  max-width: 220px;
  line-height: 17px;
}

.careers-benefits {
  background: var(--color-section-white);
}
.careers-benefits__header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.careers-benefits__eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.32px;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .careers-benefits__eyebrow {
    font-size: 16px;
  }
}
.careers-benefits__title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
  letter-spacing: 0.64px;
}
.careers-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .careers-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .careers-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 1rem;
  }
}

.careers-benefit {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  min-height: 0;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .careers-benefit {
    gap: 6px;
    min-height: 104px;
  }
}
.careers-benefit__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
@media (min-width: 768px) {
  .careers-benefit__icon {
    width: 80px;
    height: 80px;
  }
}
.careers-benefit__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0 0 6px;
}
.careers-benefit__text {
  font-size: 12px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.4;
}

.careers-cta-band {
  background: var(--color-section-accelerate);
  color: var(--color-white);
  overflow: hidden;
  width: 100%;
}
.careers-cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: stretch;
  min-height: 0;
}
@media (min-width: 1024px) {
  .careers-cta-band__inner {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    min-height: 374px;
  }
}
.careers-cta-band__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  width: 100%;
  max-width: none;
  min-width: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .careers-cta-band__copy {
    align-items: flex-start;
    text-align: left;
    padding: 48px 24px 48px max(2rem, (100vw - 1366px) / 2 + 80px);
  }
}
.careers-cta-band__copy .btn {
  width: 100%;
  max-width: 220px;
  justify-content: center;
}
.careers-cta-band__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  letter-spacing: normal;
  line-height: 1.25;
  max-width: 18ch;
}
@media (min-width: 1024px) {
  .careers-cta-band__title {
    font-size: 40px;
    line-height: 54px;
  }
}
.careers-cta-band__text {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  line-height: 1.45;
  max-width: 417px;
}
@media (min-width: 1024px) {
  .careers-cta-band__text {
    font-size: 20px;
    line-height: 31px;
  }
}
.careers-cta-band__visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  min-width: 0;
  order: -1;
  background: transparent;
}
@media (min-width: 1024px) {
  .careers-cta-band__visual {
    order: 0;
    min-height: 374px;
    height: 100%;
    overflow: hidden;
    margin-left: 0;
    width: 100%;
    justify-self: stretch;
  }
  .careers-cta-band__visual::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background: #fd7309;
    clip-path: polygon(17.5% 0%, 33% 0%, 4.5% 100%, 0% 100%);
    pointer-events: none;
  }
}
.careers-cta-band__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: 72% center;
}
@media (min-width: 1024px) {
  .careers-cta-band__photo {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 0;
    height: 100%;
    object-fit: fill;
    object-position: center;
  }
}

.certifications-hero {
  position: relative;
  height: auto;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 1.5rem;
}
@media (min-width: 768px) {
  .certifications-hero {
    height: 449px;
    min-height: 449px;
    padding-block: 0;
  }
}
.certifications-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.certifications-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.certifications-hero__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 513px;
  padding-top: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .certifications-hero__content {
    gap: 14px;
    padding-top: 40px;
  }
}
.certifications-hero__title {
  margin: 0;
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.84px;
  color: var(--color-white);
}
@media (min-width: 768px) {
  .certifications-hero__title {
    line-height: 51px;
  }
}
.certifications-hero__subtitle {
  margin: 0;
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.3px;
  color: var(--color-white);
}
.certifications-hero__text {
  margin: 0;
  max-width: 460px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.28px;
  color: rgba(255, 255, 255, 0.96);
}
@media (min-width: 768px) {
  .certifications-hero__text {
    font-size: 15px;
    line-height: 22px;
  }
}

.certifications-list {
  background: #f7f9fc;
  padding-block: 48px 56px;
}
@media (min-width: 768px) {
  .certifications-list {
    padding-block: 56px 64px;
  }
}
.certifications-list__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.certifications-list__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.64px;
  color: var(--color-brand-navy-alt);
}
.certifications-list__lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.28px;
  color: var(--color-text-body);
}
.certifications-list__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .certifications-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}
@media (min-width: 1024px) {
  .certifications-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
  padding: 28px 22px 24px;
  background: var(--color-white);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(17, 28, 123, 0.1);
}
.cert-card__seal {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 0 16px;
  flex-shrink: 0;
}
.cert-card__title {
  margin: 0 0 6px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.28px;
  color: var(--color-brand-navy);
}
.cert-card__category {
  margin: 0 0 12px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-brand-orange);
}
.cert-card__text {
  margin: 0 0 18px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
  color: var(--color-text-body);
}
.cert-card__points {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cert-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-body);
}
.cert-card__points li img {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.certifications-commitment {
  background: #f4f8fe;
  padding-block: 40px;
}
@media (min-width: 768px) {
  .certifications-commitment {
    padding-block: 48px;
  }
}
.certifications-commitment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 1024px) {
  .certifications-commitment__grid {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 48px;
  }
}
.certifications-commitment__copy {
  max-width: 420px;
}
.certifications-commitment__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.64px;
  color: var(--color-brand-navy-alt);
}
.certifications-commitment__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.28px;
  color: var(--color-text-body);
}
.certifications-commitment__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
@media (min-width: 480px) {
  .certifications-commitment__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }
}
@media (min-width: 1024px) {
  .certifications-commitment__cards {
    gap: 20px;
  }
}

.cert-commit-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  min-height: 0;
  padding: 18px 16px;
  background: var(--color-white);
  border: 1px solid #cfdef3;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(17, 28, 123, 0.06);
}
.cert-commit-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.cert-commit-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}
.cert-commit-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.28px;
  color: var(--color-brand-navy);
}
.cert-commit-card__text {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
  color: var(--color-text-body);
}

.contact-hero {
  position: relative;
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .contact-hero {
    height: 510px;
    min-height: 510px;
    padding-block: 0;
  }
}
.contact-hero__media, .contact-hero__overlay {
  position: absolute;
  inset: 0;
}
.contact-hero__media {
  background-size: cover;
  background-position: center right;
}
@media (max-width: 767px) {
  .contact-hero__media {
    background-position: 65% center;
  }
}
.contact-hero__overlay {
  background: var(--color-hero-overlay);
  pointer-events: none;
}
.contact-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.contact-hero__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 513px;
  padding-top: 56px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-hero__content {
    gap: 18px;
    padding-top: 74px;
  }
}
.contact-hero__title {
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
@media (min-width: 768px) {
  .contact-hero__title {
    line-height: 51px;
  }
}
.contact-hero__title-accent {
  color: var(--color-brand-orange);
}
.contact-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  max-width: 421px;
  margin: 0;
  color: var(--color-white);
}
.contact-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
}
.contact-hero__actions > .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .contact-hero__actions {
    flex-direction: row;
    gap: 1rem;
  }
  .contact-hero__actions > .btn {
    width: auto;
  }
}
.contact-hero__btn-outline {
  background: var(--color-white);
  color: var(--color-brand-blue);
  border-color: var(--color-white);
}
.contact-hero__btn-outline:hover {
  background: rgba(255, 255, 255, 0.92);
}

.contact-touch {
  background: var(--color-section-muted);
  border-bottom: 1px solid var(--color-border-stat);
}
.contact-touch__container {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-touch__container {
    grid-template-columns: 629fr 641fr;
    gap: 2rem;
  }
}
.contact-touch__title {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .contact-touch__title {
    margin: 0 0 1.5rem;
  }
}
.contact-touch__locations-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 600;
  color: var(--color-brand-orange);
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .contact-touch__locations-label {
    margin: 0 0 1.5rem;
  }
}
.contact-touch__pin {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
}
.contact-touch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .contact-touch__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.contact-office {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  min-width: 0;
}
.contact-office__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .contact-office__icon-wrap {
    width: 54px;
    height: 54px;
  }
}
.contact-office__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
@media (min-width: 480px) {
  .contact-office__icon {
    width: 42px;
    height: 42px;
  }
}
.contact-office__lead-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}
.contact-office__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0 0 12px;
}
.contact-office__text {
  font-size: 12px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
@media (max-width: 479px) {
  .contact-office--contact {
    flex-direction: column;
    gap: 8px;
  }
}
.contact-office--contact .contact-office__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  width: 100%;
}
.contact-office--contact .contact-office__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-dark);
}
.contact-office--contact .contact-office__row a {
  color: inherit;
  overflow-wrap: anywhere;
}
.contact-office--contact .contact-office__row-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 80px;
  flex-shrink: 0;
}
.contact-office--contact .contact-office__row-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .contact-form-card {
    padding: 2rem;
  }
}
.contact-form-card__title {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form__submit {
  width: 100%;
  justify-content: center;
}
.contact-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
.contact-form__submit.is-submitting:disabled {
  cursor: wait;
  opacity: 0.7;
}
.contact-form__status {
  margin: 0;
  min-height: 1.25em;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
.contact-form__status:empty {
  display: none;
}
.contact-form__status.is-success {
  color: #0f7a3f;
}
.contact-form__status.is-error {
  color: #c62828;
}
.contact-form__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  font-size: 14px;
  color: #1a3b57;
  text-align: center;
  line-height: 1.4;
}
.contact-form__secure img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  min-width: 0;
}
.contact-field__label {
  font-size: 14px;
  font-weight: 500;
  color: #323639;
}
.contact-field__label abbr {
  color: #fe6b6b;
  text-decoration: none;
}
.contact-field__input {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #e8ebec;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: var(--color-text-dark);
  background: var(--color-white);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .contact-field__input {
    font-size: 14px;
  }
}
.contact-field__input::placeholder {
  color: #a0a8ac;
}
.contact-field__input:focus {
  outline: 2px solid var(--color-brand-blue-soft);
  outline-offset: 1px;
}
.contact-field__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a8ac' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.contact-field__textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

.contact-values {
  background: var(--color-section-white);
  padding-block: 1.5rem;
}
@media (min-width: 768px) {
  .contact-values {
    padding-block: 2rem;
  }
}
.contact-values__title {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0 0 1.5rem;
  text-align: center;
}
.contact-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px) {
  .contact-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contact-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-value {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 12px;
  min-height: 0;
  box-sizing: border-box;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .contact-value {
    min-height: 74px;
  }
}
.contact-value__icon {
  width: 36px;
  height: 36px;
  margin-top: 2px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
@media (min-width: 480px) {
  .contact-value__icon {
    width: 42px;
    height: 42px;
    margin-top: 4px;
  }
}
.contact-value__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.contact-value__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
  line-height: normal;
}
.contact-value__text {
  font-size: 12px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.35;
}

.clients-hero {
  position: relative;
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .clients-hero {
    height: 510px;
    min-height: 510px;
    padding-block: 0;
  }
}
.clients-hero__media, .clients-hero__overlay {
  position: absolute;
  inset: 0;
}
.clients-hero__media {
  background-size: cover;
  background-position: 22% 38%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .clients-hero__media {
    background-size: 111.42% 109.8%;
    background-position: left -7.65%;
  }
}
.clients-hero__overlay {
  background: var(--color-hero-overlay-split);
  pointer-events: none;
}
.clients-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.clients-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 513px;
  padding-top: 56px;
  width: 100%;
}
@media (min-width: 768px) {
  .clients-hero__content {
    padding-top: 65px;
  }
}
.clients-hero__title {
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
@media (min-width: 768px) {
  .clients-hero__title {
    line-height: 51px;
  }
}
.clients-hero__title-accent {
  color: var(--color-brand-orange);
}
.clients-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  max-width: 421px;
  margin: 0;
  color: var(--color-white);
}
.clients-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
}
.clients-hero__actions > .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}
@media (min-width: 480px) {
  .clients-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: auto;
  }
  .clients-hero__actions > .btn {
    width: auto;
  }
}
.clients-hero__btn-outline {
  background: var(--color-white);
  color: var(--color-brand-blue);
  border-color: var(--color-white);
}
.clients-hero__btn-outline:hover, .clients-hero__btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-brand-blue);
  border-color: var(--color-white);
}

.logo-strip-section--light {
  background-color: var(--color-section-white);
  padding-block: 16px 20px;
  border-bottom: 1px solid var(--color-border-light);
}
.logo-strip-section--light .logo-strip__eyebrow {
  color: var(--color-brand-navy);
  text-transform: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.28px;
  margin-bottom: 9px;
}
.logo-strip-section--light .logo-strip__logo {
  filter: none;
  opacity: 1;
}
.logo-strip-section--light .logo-strip__viewport {
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

body[data-page=clients] .logo-strip-section {
  background-color: var(--color-section-trusted);
}
body[data-page=clients] .logo-strip-section .logo-strip__eyebrow {
  color: var(--color-brand-navy);
  text-transform: uppercase;
}
body[data-page=clients] .logo-strip-section .logo-strip__logo {
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.clients-industries {
  background-color: var(--color-section-white);
  padding-block: 2rem 2.625rem;
}
.clients-industries__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-brand-navy);
  line-height: 1.2;
  text-transform: uppercase;
  padding-inline: 0.5rem;
}
.clients-industries__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
}
@media (min-width: 480px) {
  .clients-industries__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .clients-industries__grid .clients-industry {
    grid-column: span 2;
  }
  .clients-industries__grid .clients-industry:nth-child(4) {
    grid-column: 2/span 2;
  }
  .clients-industries__grid .clients-industry:nth-child(5) {
    grid-column: 4/span 2;
  }
}
@media (min-width: 1024px) {
  .clients-industries__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .clients-industries__grid .clients-industry,
  .clients-industries__grid .clients-industry:nth-child(4),
  .clients-industries__grid .clients-industry:nth-child(5) {
    grid-column: auto;
  }
}

.clients-industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1rem 0.5rem;
  min-height: 103px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: none;
}
.clients-industry__icon-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  overflow: hidden;
}
.clients-industry__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  filter: none;
}
.clients-industry__label {
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-brand-navy);
  letter-spacing: 0.28px;
}

.clients-stories {
  background-color: var(--color-section-muted);
  padding-block: 3.5rem;
}
.clients-stories__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--color-brand-navy);
  line-height: 1.2;
  text-transform: uppercase;
  padding-inline: 0.5rem;
}
.clients-stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .clients-stories__grid {
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .clients-stories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.success-story {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border: 1px solid var(--color-border-stat);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .success-story {
    flex-direction: row;
    align-items: stretch;
    min-height: 220px;
  }
}
@media (min-width: 1024px) {
  .success-story {
    min-height: 250px;
  }
}
.success-story__media {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--color-border-light);
}
@media (min-width: 768px) {
  .success-story__media {
    width: 38%;
    max-width: 220px;
    min-width: 160px;
    aspect-ratio: auto;
    height: auto;
    align-self: stretch;
  }
}
@media (min-width: 1024px) {
  .success-story__media {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
  }
}
.success-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.success-story__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .success-story__body {
    padding: 1rem 1rem 1rem 0.75rem;
  }
}
@media (min-width: 1024px) {
  .success-story__body {
    padding: 1.5rem 1.5rem 1.5rem 1rem;
  }
}
.success-story__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.28px;
  color: var(--color-brand-navy);
}
.success-story__text {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-body);
}
.success-story__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 480px) {
  .success-story__features--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 8px;
  }
}
.success-story__feature {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}
.success-story__feature img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0;
}
.success-story__feature span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-dark);
  padding-top: 3px;
}

.clients-journey-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: #011f4b;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(1, 31, 75, 0.35);
  color: var(--color-white);
  width: 100%;
}
@media (min-width: 768px) {
  .clients-journey-card {
    min-height: 250px;
  }
}
.clients-journey-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  background-color: #011f4b;
  background-image: url("../assets/images/clients/journey-card.jpg?v=3");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 599px) {
  .clients-journey-card__bg {
    width: 100%;
  }
}
.clients-journey-card__dots {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1.5px);
  background-size: 11px 11px;
  mix-blend-mode: soft-light;
}
@media (max-width: 599px) {
  .clients-journey-card__dots {
    width: 100%;
    opacity: 0.3;
  }
}
.clients-journey-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(90deg, #011f4b 0%, #011f4b 38%, rgba(1, 31, 75, 0.7) 50%, rgba(1, 31, 75, 0.35) 65%, rgba(1, 31, 75, 0.15) 100%);
}
@media (max-width: 599px) {
  .clients-journey-card__overlay {
    background: linear-gradient(90deg, #011f4b 0%, #011f4b 28%, rgba(1, 31, 75, 0.78) 48%, rgba(1, 31, 75, 0.4) 72%, rgba(1, 31, 75, 0.2) 100%);
  }
}
.clients-journey-card__list {
  position: relative;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .clients-journey-card__list {
    padding: 20px 24px;
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .clients-journey-card__list {
    max-width: 380px;
  }
}
.clients-journey-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
@media (min-width: 480px) {
  .clients-journey-card__item {
    align-items: center;
    gap: 12px;
  }
}
.clients-journey-card__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (min-width: 480px) {
  .clients-journey-card__icon {
    width: 28px;
    height: 28px;
    margin-top: 0;
  }
}
.clients-journey-card__year {
  flex-shrink: 0;
  min-width: 42px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-orange);
  line-height: 1.3;
}
@media (min-width: 480px) {
  .clients-journey-card__year {
    min-width: 48px;
    font-size: 14px;
    line-height: normal;
  }
}
.clients-journey-card__label {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.clients-section-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--color-brand-navy);
  text-transform: uppercase;
  padding-inline: 0.5rem;
}
@media (min-width: 768px) {
  .clients-section-title {
    margin-bottom: 32px;
  }
}

.clients-process {
  background-color: var(--color-section-white);
  padding-block: 48px 64px;
  border-top: 0;
}
@media (min-width: 768px) {
  .clients-process {
    padding-block: 72px 96px;
  }
}
.clients-process__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.clients-process__steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1100px;
}
@media (min-width: 480px) {
  .clients-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}
@media (min-width: 768px) {
  .clients-process__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 28px;
  }
}
@media (min-width: 1024px) {
  .clients-process__steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 42px;
  }
}

.clients-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-width: 0;
}
.clients-process-step__icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e8f1fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .clients-process-step__icon-wrap {
    width: 96px;
    height: 96px;
    margin-bottom: 14px;
  }
}
.clients-process-step__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .clients-process-step__icon {
    width: 52px;
    height: 52px;
  }
}
.clients-process-step__number {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
  color: var(--color-brand-orange);
  line-height: 1.2;
}
.clients-process-step__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15px;
  color: var(--color-brand-navy);
  line-height: 1.3;
  padding-inline: 4px;
}
.clients-process-step__text {
  margin: 0;
  max-width: 220px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12px;
  color: #6c7485;
}
@media (min-width: 1024px) {
  .clients-process-step__text {
    max-width: 168px;
  }
}

.technologies-hero {
  position: relative;
  height: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-brand-navy);
  overflow: hidden;
  padding-block: 3.5rem 2rem;
}
@media (min-width: 768px) {
  .technologies-hero {
    height: 510px;
    min-height: 510px;
    padding-block: 0;
  }
}
.technologies-hero__media, .technologies-hero__overlay {
  position: absolute;
  inset: 0;
}
.technologies-hero__media {
  background-size: cover;
  background-position: 22% 38%;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .technologies-hero__media {
    background-size: 111.42% 109.8%;
    background-position: left -7.65%;
  }
}
.technologies-hero__overlay {
  background: var(--color-hero-overlay-split);
  pointer-events: none;
}
.technologies-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.technologies-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 513px;
  padding-top: 56px;
  width: 100%;
}
@media (min-width: 768px) {
  .technologies-hero__content {
    padding-top: 65px;
  }
}
.technologies-hero__title {
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.84px;
  color: var(--color-white);
  margin: 0;
}
@media (min-width: 768px) {
  .technologies-hero__title {
    line-height: 51px;
  }
}
.technologies-hero__title-accent {
  color: var(--color-brand-orange);
}
.technologies-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  max-width: 421px;
  margin: 0;
  color: var(--color-white);
}
.technologies-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
}
.technologies-hero__actions > .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
}
@media (min-width: 480px) {
  .technologies-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: auto;
  }
  .technologies-hero__actions > .btn {
    width: auto;
  }
}
.technologies-hero__btn-outline {
  background: var(--color-white);
  color: var(--color-brand-blue);
  border-color: var(--color-white);
}
.technologies-hero__btn-outline:hover, .technologies-hero__btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-brand-blue);
  border-color: var(--color-white);
}

.technologies-specialize {
  background: var(--color-section-white);
  padding-block: 2rem 2.625rem;
}
@media (min-width: 768px) {
  .technologies-specialize {
    padding-block: 2.625rem 3.5rem;
  }
}
.technologies-specialize__header.section-header {
  width: 100%;
  max-width: none;
  margin-bottom: 1.5rem;
  gap: 8px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ebf1fe;
}
@media (min-width: 768px) {
  .technologies-specialize__header.section-header {
    margin-bottom: 2rem;
    padding-bottom: 32px;
  }
}
.technologies-specialize__header.section-header.section-header--center {
  max-width: none;
}
.technologies-specialize__header.section-header .section-header__title {
  max-width: none;
  width: 100%;
  color: var(--color-brand-navy-alt);
  font-size: 32px;
  letter-spacing: 0.64px;
  line-height: normal;
}
.technologies-specialize__lead {
  margin: 4px 0 0;
  max-width: none;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: var(--color-text-dark);
}

.tech-expertise {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .tech-expertise {
    grid-template-columns: 300px minmax(0, 1fr) 300px;
    gap: 0;
    min-height: 596px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise--split {
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 0;
  }
}
.tech-expertise--split .tech-expertise__side, .tech-expertise__side[hidden] {
  display: none !important;
}
.tech-expertise__tabs {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 6px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--color-border-stat);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 28px), transparent 100%);
}
.tech-expertise__tabs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .tech-expertise__tabs {
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    min-height: 596px;
    padding: 32px 32px 32px 0;
    overflow: visible;
    scroll-snap-type: none;
    border: 0;
    border-radius: 0;
    background: #f7f9fd;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.tech-expertise__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  text-align: left;
  padding: 10px 14px;
  border: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 10px;
  background: transparent;
  color: #010a55;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
  position: relative;
}
@media (min-width: 1024px) {
  .tech-expertise__tab {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    white-space: normal;
    border-radius: 0 8px 8px 0;
    border-left: 2px solid transparent;
    scroll-snap-align: none;
  }
}
.tech-expertise__tab:hover, .tech-expertise__tab:focus-visible {
  color: var(--color-brand-orange);
  background: rgba(253, 115, 9, 0.06);
  outline: none;
}
.tech-expertise__tab.is-active {
  color: var(--color-brand-orange);
  font-weight: 600;
  background: rgba(253, 115, 9, 0.12);
  box-shadow: inset 0 0 0 1px rgba(253, 115, 9, 0.28);
}
@media (min-width: 1024px) {
  .tech-expertise__tab.is-active {
    background: rgba(253, 115, 9, 0.08);
    box-shadow: none;
    border-left-color: var(--color-brand-orange);
  }
}
.tech-expertise__tab-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
.tech-expertise__tab-label {
  min-width: 0;
}
.tech-expertise__main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 8px 4px 16px;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .tech-expertise__main {
    padding: 16px 8px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise__main {
    justify-content: flex-start;
    padding: 32px;
  }
}
.tech-expertise--split .tech-expertise__main {
  gap: 24px;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .tech-expertise--split .tech-expertise__main {
    padding: 24px 32px 40px;
    justify-content: flex-start;
  }
}
.tech-expertise__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
}
@media (min-width: 768px) {
  .tech-expertise__intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
    gap: 28px 40px;
    align-items: center;
  }
}
.tech-expertise__intro-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.tech-expertise__intro-media {
  min-width: 0;
}
.tech-expertise__intro-media[hidden] {
  display: none !important;
}
.tech-expertise__intro-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-inline: 0;
  object-fit: contain;
}
.tech-expertise__dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  align-items: start;
}
@media (min-width: 768px) {
  .tech-expertise__dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
}
.tech-expertise__dual-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
@media (min-width: 768px) {
  .tech-expertise__dual-col {
    padding-inline: 24px;
  }
  .tech-expertise__dual-col:first-child {
    padding-left: 0;
    padding-right: 40px;
    border-right: 1px solid #d9d9d9;
  }
  .tech-expertise__dual-col:last-child {
    padding-left: 40px;
    padding-right: 0;
  }
}
.tech-expertise__dual-title {
  margin: 0;
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  color: #111c7b;
  letter-spacing: 0.44px;
  line-height: 1.25;
}
.tech-expertise__dual-body {
  margin: 0;
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 22px;
  letter-spacing: 0.32px;
  color: #231f20;
}
.tech-expertise__dual-col .tech-expertise__features {
  margin-top: 8px;
  gap: 12px;
}
@media (min-width: 480px) {
  .tech-expertise__dual-col .tech-expertise__features {
    gap: 12px;
  }
}
@media (min-width: 480px) {
  .tech-expertise__features--column-flow {
    grid-auto-flow: column;
    grid-template-rows: repeat(var(--feature-rows, 5), auto);
    gap: 12px;
  }
}
.tech-expertise__panel-title {
  margin: 0;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 600;
  color: #111c7b;
  letter-spacing: 0.64px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .tech-expertise__panel-title {
    font-size: 32px;
  }
}
.tech-expertise__panel-subtitle {
  margin: 0;
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  color: #111c7b;
  letter-spacing: 0.44px;
  line-height: 1.25;
}
.tech-expertise__panel-text {
  margin: 0;
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 22px;
  letter-spacing: 0.32px;
  color: #231f20;
  overflow-wrap: anywhere;
}
.tech-expertise__panel-text--emphasis {
  font-weight: 600;
  color: #010a55;
}
.tech-expertise__features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 16px;
  width: 100%;
}
@media (min-width: 480px) {
  .tech-expertise__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
.tech-expertise__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 14px;
  line-height: 17px;
  color: #6c7485;
}
.tech-expertise__inline-link {
  color: var(--color-brand-orange);
  font-weight: 600;
  text-decoration: none;
}
.tech-expertise__inline-link:hover, .tech-expertise__inline-link:focus-visible {
  text-decoration: underline;
  outline: none;
}
.tech-expertise__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  background: #f9f9f9;
  border: 1px solid var(--color-border-stat);
  border-radius: 12px;
  box-shadow: none;
  padding: 20px 16px;
  min-width: 0;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
@media (min-width: 768px) {
  .tech-expertise__side {
    padding: 24px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise__side {
    padding: 32px;
    background: #f7f9fd;
    border: 1px solid var(--color-border-stat);
    min-height: 596px;
  }
}
.tech-expertise--detailed .tech-expertise__side, .tech-expertise__side--detailed {
  gap: 16px;
  background: #f1f4fc;
  border: 1px solid #cfdef3;
  padding: 24px 16px;
  overflow: visible;
}
@media (min-width: 768px) {
  .tech-expertise--detailed .tech-expertise__side, .tech-expertise__side--detailed {
    padding: 28px 24px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise--detailed .tech-expertise__side, .tech-expertise__side--detailed {
    padding: 33px;
    background: #f1f4fc;
    border: 1px solid #cfdef3;
    min-height: 596px;
    height: auto;
  }
}
.tech-expertise__side-media {
  width: 100%;
  flex-shrink: 0;
}
.tech-expertise__side-image {
  display: block;
  width: 100%;
  max-width: 234px;
  height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 0;
}
.tech-expertise__side-title {
  margin: 0;
  width: 100%;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  color: #111c7b;
  letter-spacing: 0.44px;
  line-height: normal;
}
.tech-expertise__side-body {
  margin: 0;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #231f20;
}
.tech-expertise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (min-width: 1024px) {
  .tech-expertise__list {
    gap: 32px;
  }
}
.tech-expertise--detailed .tech-expertise__list, .tech-expertise__side--detailed .tech-expertise__list {
  gap: 12px;
}
@media (min-width: 1024px) {
  .tech-expertise--detailed .tech-expertise__list, .tech-expertise__side--detailed .tech-expertise__list {
    gap: 12px;
  }
}
.tech-expertise__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  line-height: 17px;
  color: #6c7485;
  min-width: 0;
  width: 100%;
}
.tech-expertise--detailed .tech-expertise__item, .tech-expertise__side--detailed .tech-expertise__item {
  align-items: flex-start;
}
.tech-expertise__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: center;
}
.tech-expertise__after-secondary {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.tech-expertise__after-secondary[hidden] {
  display: none !important;
}

.tech-opensource {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 1.5rem;
  padding: 24px 16px;
  background: #ececf1;
  border: 1px solid #cfdef3;
  border-radius: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .tech-opensource {
    margin-top: 40px;
    padding: 32px;
  }
}
@media (min-width: 1024px) {
  .tech-opensource {
    grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
    gap: 16px;
    padding: 33px;
    border-radius: 12px;
  }
}
.tech-opensource.is-hidden, .tech-opensource[hidden] {
  display: none !important;
}
@media (min-width: 1024px) {
  .tech-opensource--no-media {
    grid-template-columns: 1fr;
  }
}
.tech-opensource__media {
  min-width: 0;
}
.tech-opensource__media[hidden] {
  display: none !important;
}
.tech-opensource__image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}
.tech-opensource__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .tech-opensource:not(.tech-opensource--no-media) .tech-opensource__content {
    border-left: 1px solid #d9d9d9;
    padding-left: 32px;
  }
}
.tech-opensource__title {
  margin: 0;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: #111c7b;
  letter-spacing: 0.64px;
  line-height: 1.2;
}
.tech-opensource__body {
  margin: 0;
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 22px;
  letter-spacing: 0.32px;
  color: #231f20;
}
.tech-opensource__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 480px) {
  .tech-opensource__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
}
@media (min-width: 1024px) {
  .tech-opensource__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
}
.tech-opensource__item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  font-size: 14px;
  line-height: 17px;
  color: #6c7485;
}
.tech-opensource__check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: center;
}

.technologies-specialize .container {
  overflow: visible;
}

@keyframes tech-tab-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tech-expertise__main.is-tab-out,
.tech-expertise__side.is-tab-out,
.tech-opensource.is-tab-out {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.tech-expertise__main.is-tab-in,
.tech-expertise__side.is-tab-in,
.tech-opensource.is-tab-in {
  opacity: 1;
  transform: none;
}

.tech-opensource {
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-expertise__main.is-tab-in > *,
.tech-expertise__side.is-tab-in > *,
.tech-opensource.is-tab-in > * {
  animation: tech-tab-rise 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tech-expertise__main.is-tab-in > *:nth-child(1),
.tech-expertise__side.is-tab-in > *:nth-child(1),
.tech-opensource.is-tab-in > *:nth-child(1) {
  animation-delay: 0s;
}

.tech-expertise__main.is-tab-in > *:nth-child(2),
.tech-expertise__side.is-tab-in > *:nth-child(2),
.tech-opensource.is-tab-in > *:nth-child(2) {
  animation-delay: 0.05s;
}

.tech-expertise__main.is-tab-in > *:nth-child(3),
.tech-expertise__side.is-tab-in > *:nth-child(3),
.tech-opensource.is-tab-in > *:nth-child(3) {
  animation-delay: 0.1s;
}

.tech-expertise__main.is-tab-in > *:nth-child(4),
.tech-expertise__side.is-tab-in > *:nth-child(4),
.tech-opensource.is-tab-in > *:nth-child(4) {
  animation-delay: 0.15s;
}

.tech-expertise__main.is-tab-in > *:nth-child(5),
.tech-expertise__side.is-tab-in > *:nth-child(5),
.tech-opensource.is-tab-in > *:nth-child(5) {
  animation-delay: 0.2s;
}

.tech-expertise__main.is-tab-in > *:nth-child(6),
.tech-expertise__side.is-tab-in > *:nth-child(6),
.tech-opensource.is-tab-in > *:nth-child(6) {
  animation-delay: 0.25s;
}

.tech-expertise__main.is-tab-in > *:nth-child(7),
.tech-expertise__side.is-tab-in > *:nth-child(7),
.tech-opensource.is-tab-in > *:nth-child(7) {
  animation-delay: 0.3s;
}

.tech-expertise__main.is-tab-in > *:nth-child(8),
.tech-expertise__side.is-tab-in > *:nth-child(8),
.tech-opensource.is-tab-in > *:nth-child(8) {
  animation-delay: 0.35s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item,
.tech-expertise__main.is-tab-in .tech-expertise__feature,
.tech-opensource.is-tab-in .tech-opensource__item {
  animation: tech-tab-rise 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(1),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(1),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(1) {
  animation-delay: 0.08s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(2),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(2),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(2) {
  animation-delay: 0.115s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(3),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(3),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(3) {
  animation-delay: 0.15s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(4),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(4),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(4) {
  animation-delay: 0.185s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(5),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(5),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(5) {
  animation-delay: 0.22s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(6),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(6),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(6) {
  animation-delay: 0.255s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(7),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(7),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(7) {
  animation-delay: 0.29s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(8),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(8),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(8) {
  animation-delay: 0.325s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(9),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(9),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(9) {
  animation-delay: 0.36s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(10),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(10),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(10) {
  animation-delay: 0.395s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(11),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(11),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(11) {
  animation-delay: 0.43s;
}

.tech-expertise__side.is-tab-in .tech-expertise__item:nth-child(12),
.tech-expertise__main.is-tab-in .tech-expertise__feature:nth-child(12),
.tech-opensource.is-tab-in .tech-opensource__item:nth-child(12) {
  animation-delay: 0.465s;
}

@media (prefers-reduced-motion: reduce) {
  .tech-expertise__main,
  .tech-expertise__side,
  .tech-opensource,
  .tech-expertise__tab,
  .tech-expertise__tab-icon {
    transition: none !important;
  }
  .tech-expertise__main.is-tab-out,
  .tech-expertise__side.is-tab-out,
  .tech-opensource.is-tab-out,
  .tech-expertise__main.is-tab-in,
  .tech-expertise__side.is-tab-in,
  .tech-opensource.is-tab-in,
  .tech-expertise__main.is-tab-in > *,
  .tech-expertise__side.is-tab-in > *,
  .tech-opensource.is-tab-in > *,
  .tech-expertise__side.is-tab-in .tech-expertise__item,
  .tech-expertise__main.is-tab-in .tech-expertise__feature,
  .tech-opensource.is-tab-in .tech-opensource__item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
.error-page {
  position: relative;
  min-height: calc(100vh - 79px);
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(253, 115, 9, 0.22), transparent 55%), radial-gradient(ellipse 60% 50% at 15% 80%, rgba(17, 28, 123, 0.55), transparent 50%), var(--color-brand-navy);
  overflow: hidden;
  padding-block: 5rem 3.5rem;
}
.error-page__container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.error-page__code {
  margin: 0;
  font-size: clamp(72px, 18vw, 120px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--color-brand-orange);
  opacity: 0.95;
}
.error-page__title {
  margin: 0;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
}
.error-page__text {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.error-page__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.error-page__links a:hover, .error-page__links a:focus-visible {
  color: var(--color-brand-orange);
  outline: none;
}

.legal-doc {
  padding-block: 3.5rem 5rem;
  background: var(--color-white);
}
.legal-doc__container {
  max-width: 760px;
}
.legal-doc__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-brand-orange);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-doc__title {
  margin: 0 0 0.5rem;
  color: var(--color-section-accelerate);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}
.legal-doc__updated {
  margin: 0 0 2rem;
  color: #6b7280;
  font-size: 14px;
}
.legal-doc__body {
  color: var(--color-text-dark);
  font-size: 14px;
  line-height: 1.65;
}
.legal-doc__body h2 {
  margin: 2rem 0 0.75rem;
  color: var(--color-section-accelerate);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  line-height: 1.3;
}
.legal-doc__body h3 {
  margin: 1rem 0 0.5rem;
  color: var(--color-section-accelerate);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  line-height: 1.35;
}
.legal-doc__body p {
  margin: 0 0 1rem;
}
.legal-doc__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-doc__body li {
  margin-bottom: 0.5rem;
}
.legal-doc__body a {
  color: var(--color-brand-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-doc__body a:hover {
  color: var(--color-section-accelerate);
}

body.legal-modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.legal-modal[hidden] {
  display: none;
}
.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 46, 98, 0.55);
}
.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: min(86vh, 820px);
  overflow: auto;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(6, 46, 98, 0.28);
  padding: 2rem 1.5rem 1.5rem;
  outline: none;
}
@media (min-width: 768px) {
  .legal-modal__dialog {
    padding: 2.625rem 2.625rem 2rem;
  }
}
.legal-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-brand-navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.legal-modal__close:hover, .legal-modal__close:focus-visible {
  background: rgba(6, 46, 98, 0.08);
  outline: none;
}
.legal-modal__eyebrow {
  margin: 0 0 0.5rem;
  padding-right: 40px;
  color: var(--color-brand-orange);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-modal__title {
  margin: 0 0 0.5rem;
  padding-right: 40px;
  color: var(--color-section-accelerate);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}
.legal-modal__updated {
  margin: 0 0 1.5rem;
  color: #6b7280;
  font-size: 14px;
}
.legal-modal__body {
  color: var(--color-text-dark);
  font-size: 14px;
  line-height: 1.65;
}
.legal-modal__body h2 {
  margin: 1.5rem 0 0.75rem;
  color: var(--color-section-accelerate);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  line-height: 1.3;
}
.legal-modal__body h3 {
  margin: 1rem 0 0.5rem;
  color: var(--color-section-accelerate);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 500;
  line-height: 1.35;
}
.legal-modal__body p {
  margin: 0 0 1rem;
}
.legal-modal__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.legal-modal__body li {
  margin-bottom: 0.5rem;
}
.legal-modal__body a {
  color: var(--color-brand-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-modal__body a:hover {
  color: var(--color-section-accelerate);
}
