: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: #062e62;
  --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-case-overlay: linear-gradient(
    180deg,
    rgba(1, 10, 85, 0.05) 0%,
    rgba(1, 10, 85, 0.45) 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: 20px;
}
@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .navbar__links {
    gap: 28px;
  }
}
@media (min-width: 1440px) {
  .navbar__links {
    gap: 36px;
  }
}
.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;
}
.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__cta.btn {
  display: none;
}
@media (min-width: 1024px) {
  .navbar__cta.btn {
    display: inline-flex;
  }
}
.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
}

.navbar__mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--color-brand-navy);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.navbar__mobile.is-open {
  transform: translateX(0);
}
.navbar__mobile .navbar__link {
  font-size: 18px;
  padding-bottom: 0;
}
.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: 32px;
    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: 28px 32px;
  justify-content: start;
  flex: 1 1 auto;
}
@media (min-width: 480px) {
  .footer__nav {
    grid-template-columns: repeat(3, max-content);
  }
}
@media (min-width: 1024px) {
  .footer__nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    width: auto;
    min-width: 0;
  }
}
.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: 8px;
    padding-left: 40px;
    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.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
}
.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;
}
.section-header--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 689px;
}
.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;
}

.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__slides, .hero__slide {
  position: absolute;
  inset: 0;
}
.hero__slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
.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;
  }
}
.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.hero__nav img {
  width: 10px;
  height: 21px;
  object-fit: contain;
  filter: none;
}
.hero__nav--prev {
  left: 34px;
}
.hero__nav--next {
  right: 34px;
}
.hero__nav--next img {
  transform: scaleX(-1);
}
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.hero__dot.is-active {
  background: var(--color-white);
}

.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-white);
  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: 112px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  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;
}
@media (min-width: 1024px) {
  .about {
    grid-template-columns: 502px 1fr;
    gap: 2rem;
  }
}
.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 0 0.5rem;
  max-width: 411px;
}
.about__cta {
  margin-top: 0.5rem;
}
.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 0.75rem 0.75rem 0;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .about .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services__cta,
.tech-strip__cta {
  margin-top: 2rem;
}

#technologies .section-header {
  margin-bottom: 1.5rem;
}
#technologies .section-header__title {
  max-width: 28ch;
}

.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: flex-start;
}
@media (min-width: 1024px) {
  .story {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.625rem;
  }
}
.story__copy {
  max-width: 301px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  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;
}

.industries-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .industries-cases {
    grid-template-columns: 300px 1fr;
    gap: 1rem;
  }
}

.industries-panel {
  background: var(--color-white);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.industries-panel__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-navy);
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 17px;
}
.industries-panel__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.industries-panel__cta {
  margin-top: 0.5rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  color: #000;
  transition: background-color 0.15s ease, box-shadow 0.2s ease;
  box-shadow: none;
}
.industry-item:hover {
  background: rgba(1, 77, 222, 0.06);
  box-shadow: var(--shadow-sm);
}
.industry-item__icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: hidden;
}
.industry-item__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  filter: none;
}
.industry-item__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
}

.cases-panel__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0 0 2rem;
  line-height: normal;
}
.cases-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cases-panel__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  display: flex;
  flex-direction: column;
}
.case-card__media {
  position: relative;
  width: 100%;
  max-width: 290px;
  height: 236px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-border-light);
  box-shadow: var(--shadow-card);
}
.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-card__overlay {
  position: absolute;
  inset: 0;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  background: var(--color-case-overlay);
}
.case-card__tag {
  display: inline-flex;
  background: var(--color-border-light);
  color: var(--color-brand-blue);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 6px;
  border-radius: 8px;
  line-height: normal;
}
.case-card__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  max-width: 200px;
  line-height: normal;
}
.case-card__body {
  padding: 0.75rem;
  max-width: 233px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-card__text {
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin: 0;
  min-height: 56px;
}

.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: flex-end;
  width: 100%;
}
.careers-cta__content {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  padding-block: 3.5rem;
}
.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;
}
.accelerate-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 374px;
  max-width: 1366px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .accelerate-cta__inner {
    grid-template-columns: 1fr 1.15fr;
  }
}
.accelerate-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  padding: 3.5rem 2rem;
  max-width: 500px;
}
.accelerate-cta__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 54px;
  color: var(--color-white);
  margin: 0;
}
.accelerate-cta__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 31px;
  color: var(--color-white);
  margin: 0;
  max-width: 417px;
}
.accelerate-cta__visual {
  position: relative;
  min-height: 280px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 1024px) {
  .accelerate-cta__visual {
    min-height: 374px;
  }
}
.accelerate-cta__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.accelerate-cta__slash {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: 241px;
  pointer-events: none;
  z-index: 1;
}

.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-life {
  background: var(--color-section-white);
}
.careers-life__container {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .careers-life__container {
    grid-template-columns: 419fr 856fr;
    gap: 1.5rem;
  }
}
.careers-life__title {
  font-size: clamp(24px, 5vw, 28px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.56px;
  margin: 0 0 0.5rem;
}
.careers-life__text {
  font-size: 14px;
  color: var(--color-text-body);
  margin: 0;
  line-height: 17px;
  max-width: 419px;
}
.careers-life__gallery {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .careers-life__gallery {
    grid-template-columns: 645fr 199fr;
    align-items: stretch;
  }
}
.careers-life__main {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 768px) {
  .careers-life__main {
    max-height: none;
    min-height: 240px;
  }
}
.careers-life__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .careers-life__thumbs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.careers-life__thumbs img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 768px) {
  .careers-life__thumbs img {
    height: 105px;
  }
}

.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-positions {
  background: var(--color-section-white);
}
.careers-positions__header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.careers-positions__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-positions__eyebrow {
    font-size: 16px;
  }
}
.careers-positions__title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
  letter-spacing: 0.64px;
}
.careers-positions__list {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  overflow: hidden;
}
.careers-positions__more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.careers-positions__more .btn {
  width: 100%;
  max-width: 280px;
}

.careers-job {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title title" "type loc" "exp exp" "apply apply";
  column-gap: 0.75rem;
  row-gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border-stat);
}
.careers-job:last-child {
  border-bottom: 0;
}
.careers-job > .careers-job__title {
  grid-area: title;
}
.careers-job > .careers-job__meta:nth-child(2) {
  grid-area: type;
}
.careers-job > .careers-job__meta:nth-child(3) {
  grid-area: loc;
}
.careers-job > .careers-job__meta:nth-child(4) {
  grid-area: exp;
}
.careers-job > .careers-job__apply {
  grid-area: apply;
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .careers-job {
    padding: 12px 1.5rem;
  }
}
@media (min-width: 1024px) {
  .careers-job {
    grid-template-columns: minmax(200px, 360px) repeat(3, 120px) auto;
    grid-template-areas: none;
    justify-content: space-between;
    gap: 1rem;
    padding: 12px 2rem;
    min-height: 66px;
  }
  .careers-job > .careers-job__title,
  .careers-job > .careers-job__meta:nth-child(2),
  .careers-job > .careers-job__meta:nth-child(3),
  .careers-job > .careers-job__meta:nth-child(4),
  .careers-job > .careers-job__apply {
    grid-area: auto;
  }
  .careers-job > .careers-job__apply {
    width: auto;
    justify-self: end;
    justify-content: center;
  }
}
.careers-job__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-navy);
  margin: 0;
}
.careers-job__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text-body);
}
@media (min-width: 1024px) {
  .careers-job__meta {
    font-size: 16px;
  }
}
.careers-job__meta svg,
.careers-job__meta .careers-job__meta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-brand-navy);
  object-fit: contain;
  display: block;
}
@media (min-width: 1024px) {
  .careers-job__meta svg,
  .careers-job__meta .careers-job__meta-icon {
    width: 24px;
    height: 24px;
  }
}
.careers-job__apply {
  justify-self: start;
}

.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-trusted);
  color: var(--color-white);
  overflow: hidden;
}
.careers-cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  max-width: 1366px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .careers-cta-band__inner {
    grid-template-columns: 1fr 1.15fr;
    min-height: 374px;
  }
}
.careers-cta-band__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .careers-cta-band__copy {
    padding: 3.5rem 2rem;
  }
}
.careers-cta-band__copy .btn {
  width: 100%;
  max-width: 220px;
  justify-content: center;
}
.careers-cta-band__title {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  letter-spacing: normal;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .careers-cta-band__title {
    line-height: 54px;
  }
}
.careers-cta-band__text {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
  line-height: 1.45;
  max-width: 417px;
}
@media (min-width: 768px) {
  .careers-cta-band__text {
    line-height: 31px;
  }
}
.careers-cta-band__visual {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  order: -1;
}
@media (min-width: 1024px) {
  .careers-cta-band__visual {
    min-height: 280px;
    order: 0;
  }
}
.careers-cta-band__photo {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .careers-cta-band__photo {
    min-height: 100%;
  }
}
.careers-cta-band__slash {
  display: none;
}
@media (min-width: 1024px) {
  .careers-cta-band__slash {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
  }
}

.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__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-white);
  text-transform: uppercase;
}
body[data-page=clients] .logo-strip-section .logo-strip__logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.clients-industries {
  background-color: var(--color-section-muted);
  padding-block: 2rem 2.625rem;
}
.clients-industries__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.32px;
  color: var(--color-brand-navy);
  line-height: normal;
  text-transform: uppercase;
}
.clients-industries__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 480px) {
  .clients-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .clients-industries__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
  }
}

.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: 14px;
  font-weight: 500;
  line-height: normal;
  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: 1024px) {
  .clients-stories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 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.25rem 1.25rem 1.25rem 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: 14px;
  font-weight: 600;
  color: var(--color-brand-orange);
  line-height: normal;
}
.clients-journey-card__label {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-white);
}

.clients-section-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--color-brand-navy);
  text-transform: uppercase;
  padding-inline: 8px;
}
@media (min-width: 768px) {
  .clients-section-title {
    margin-bottom: 32px;
    font-size: 22px;
  }
}

.clients-testimonials {
  background-color: var(--color-section-muted);
  padding-block: 40px 36px;
}
@media (min-width: 768px) {
  .clients-testimonials {
    padding-block: 56px 48px;
  }
}
.clients-testimonials__inner {
  max-width: 1100px;
  margin-inline: auto;
}
.clients-testimonials__carousel {
  width: 100%;
  min-width: 0;
}
.clients-testimonials__viewport {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  container-name: testimonials;
  padding: 30px 10px 34px;
  margin: -30px -10px -18px;
}
.clients-testimonials__track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  max-width: none;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  .clients-testimonials__track {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .clients-testimonials__track {
    gap: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients-testimonials__track {
    transition: none;
  }
}
.clients-testimonials__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .clients-testimonials__dots {
    margin-top: 28px;
  }
}
.clients-testimonials__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #c8d2e4;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.clients-testimonials__dot.is-active {
  background-color: var(--color-brand-orange);
  transform: scale(1.15);
}
.clients-testimonials__dot:focus-visible {
  outline: 2px solid var(--color-brand-blue);
  outline-offset: 3px;
}

.testimonial-card {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 100cqi;
  width: 100cqi;
  max-width: 100cqi;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  filter: none;
  box-shadow:
    0 1px 2px rgba(1, 10, 85, 0.04),
    0 4px 14px rgba(1, 10, 85, 0.07);
  padding: 28px 20px 24px;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  min-height: 168px;
  height: auto;
  min-width: 0;
}
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc((100cqi - 40px) / 3);
    width: calc((100cqi - 40px) / 3);
    max-width: calc((100cqi - 40px) / 3);
    min-height: 168px;
    padding: 32px 28px 28px;
  }
}
@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100cqi - 48px) / 3);
    width: calc((100cqi - 48px) / 3);
    max-width: calc((100cqi - 48px) / 3);
  }
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 0;
  width: 42px;
  height: 42px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-bottom-color: var(--color-white);
  border-radius: 6px;
  z-index: 0;
  box-shadow: 0 -2px 8px rgba(1, 10, 85, 0.05);
}
.testimonial-card__quote {
  position: absolute;
  top: -22px;
  left: 0;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: none;
  pointer-events: none;
}
.testimonial-card__quote-text {
  margin: 6px 0 0;
  width: 100%;
  flex: 1 1 auto;
}
.testimonial-card__quote-text p {
  margin: 0;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.14px;
  color: #8b93a7;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.testimonial-card__author {
  margin: auto 0 0;
  padding-top: 16px;
  width: 100%;
  text-align: left;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #8b93a7;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.testimonial-card--focus .testimonial-card__quote-text p,
.testimonial-card--focus .testimonial-card__author {
  color: var(--color-brand-navy);
  font-weight: 500;
}

.clients-process {
  background-color: var(--color-section-white);
  padding-block: 64px 80px;
  border-top: 1px solid #c5d6f0;
}
@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: 40px;
  max-width: 1100px;
}
@media (min-width: 480px) {
  .clients-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}
@media (min-width: 1024px) {
  .clients-process__steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

.clients-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.clients-process-step__icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #e8f1fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  overflow: hidden;
}
.clients-process-step__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.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;
}
.clients-process-step__text {
  margin: 0;
  max-width: 168px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12px;
  color: #6c7485;
}

/* ==========================================================================
   TECHNOLOGIES PAGE — restores missing hero + expertise styles
   ========================================================================== */
.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, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: var(--color-white);
  margin: 0;
}
@media (min-width: 768px) {
  .technologies-hero__title {
    line-height: 1.15;
  }
}
.technologies-hero__title-accent {
  color: var(--color-brand-orange);
}
.technologies-hero__subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  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 {
  margin-bottom: 1.5rem;
  max-width: 900px;
}
@media (min-width: 768px) {
  .technologies-specialize__header {
    margin-bottom: 2rem;
  }
}
.technologies-specialize__lead {
  margin: 12px 0 0;
  max-width: 78ch;
  font-size: clamp(14px, 2.8vw, 15px);
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: var(--color-text-body);
}

.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;
    min-height: 596px;
  }
}
.tech-expertise__tabs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--color-border-stat);
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
@media (min-width: 1024px) {
  .tech-expertise__tabs {
    flex-direction: column;
    gap: 16px;
    padding: 32px 32px 32px 0;
    overflow: visible;
    scroll-snap-type: none;
    border: 0;
    background: #f7f9fd;
  }
}
.tech-expertise__tab {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  text-align: left;
  padding: 12px 14px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  background: transparent;
  color: var(--color-brand-navy);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color 0.15s ease, border-color 0.15s ease;
  min-height: 44px;
}
@media (min-width: 1024px) {
  .tech-expertise__tab {
    width: 100%;
    padding: 16px;
    font-size: 14px;
    white-space: normal;
    border-bottom: 0;
    border-left: 2px solid transparent;
    scroll-snap-align: none;
  }
}
.tech-expertise__tab:hover,
.tech-expertise__tab:focus-visible {
  color: var(--color-brand-orange);
  outline: none;
}
.tech-expertise__tab.is-active {
  color: var(--color-brand-orange);
  border-bottom-color: var(--color-brand-orange);
  font-weight: 600;
}
@media (min-width: 1024px) {
  .tech-expertise__tab.is-active {
    border-bottom-color: transparent;
    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;
}
.tech-expertise__tab-label {
  min-width: 0;
}
.tech-expertise__main {
  min-width: 0;
  padding: 8px 4px 16px;
}
@media (min-width: 768px) {
  .tech-expertise__main {
    padding: 16px 8px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise__main {
    padding: 32px;
  }
}
.tech-expertise__panel-title {
  margin: 0 0 12px;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.44px;
  line-height: 1.25;
}
.tech-expertise__panel-text {
  margin: 0 0 12px;
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: var(--color-text-body);
  overflow-wrap: anywhere;
}
.tech-expertise__panel-text:last-child {
  margin-bottom: 0;
}
.tech-expertise__panel-text--emphasis {
  font-weight: 600;
  color: var(--color-brand-navy);
}
.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 {
  background: #f9f9f9;
  border: 1px solid var(--color-border-stat);
  border-radius: 12px;
  box-shadow: none;
  padding: 20px 16px;
  min-width: 0;
}
@media (min-width: 768px) {
  .tech-expertise__side {
    padding: 24px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise__side {
    padding: 32px;
    background: #f7f9fd;
    border-color: transparent;
  }
}
.tech-expertise__side-title {
  margin: 0 0 20px;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  color: var(--color-brand-navy-alt);
  letter-spacing: 0.44px;
  line-height: 1.17;
}
@media (min-width: 1024px) {
  .tech-expertise__side-title {
    margin-bottom: 32px;
  }
}
.tech-expertise__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .tech-expertise__list {
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .tech-expertise__list {
    gap: 32px;
  }
}
.tech-expertise__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(13px, 2.6vw, 13px);
  line-height: 1.45;
  color: var(--color-brand-navy);
  min-width: 0;
}
.tech-expertise__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/*# sourceMappingURL=style.css.map */
