
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--white);
  overflow: hidden;
}
.hero-bg,
.hero-bg img,
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .38s ease;
}
.hero-bg img.is-changing { opacity: 0; }
.hero-bg img:nth-child(1),
.hero-bg img:nth-child(2) {
  width: 100%;
  height: 998px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
}
.hero-bg img:nth-child(3) {
  width: 1496px;
  height: 930px;
  max-width: none;
}
.hero-slide {
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 110px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-top: 34px;
}
.hero h1 {
  margin: 0 0 10px;
  font-family: var(--clash);
  font-size: 75px;
  line-height: 1.1;
  font-weight: 600;
}
.hero p {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.61;
  color: var(--white);
}
.hero-tabs {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  display: flex;
  align-items: stretch;
  padding-left: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  padding-right: max(var(--page-pad), calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-tab {
  position: relative;
  flex: 1 0 0;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-top: 2px solid transparent;
  background: transparent;
  color: rgba(255,255,255,.56);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: color .25s ease;
}
.hero-tab::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}
.hero-tab.is-active {
  color: var(--white);
}
.hero-tab.is-active::before {
  animation: hero-tab-progress var(--progress-duration, 5500ms) linear forwards;
}
@keyframes hero-tab-progress {
  to { transform: scaleX(1); }
}

.credibility-strip {
  padding-top: 100px;
  padding-bottom: 0;
  background: var(--white);
}
.credibility-inner {
  max-width: var(--container);
  margin: 0 auto;
  min-height: 200px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  gap: 100px;
  padding-bottom: 60px;
}
.credibility-left {
  flex: 0 0 auto;
  width: 300px;
  padding-top: 20px;
}
.credibility-left h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--clash);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.credibility-left p {
  margin: 0;
  color: var(--muted-blue);
  font-size: 16px;
  line-height: 1.65;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400;
}
.credibility-right {
  flex: 1;
  min-width: 0;
  padding-top: 20px;
}
.metrics-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}
.metric-item {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}
.metric-item:hover {
  transform: translateY(-2px);
}
.metric-item:last-child {
  border-right: 0;
}
.metric-number {
  color: var(--blue);
  font-family: var(--clash);
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.metric-label {
  color: var(--muted-blue);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.section-white { background: var(--white); }
.impact {
  padding-top: 100px;
  padding-bottom: 100px;
}
.impact-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}
.impact-image {
  flex: 1 1 0;
  height: 578px;
  overflow: hidden;
}
.impact-image img {
  width: 100%;
  height: 170.76%;
  object-fit: cover;
  transform: translateY(-16.35%);
}
.impact-copy {
  width: 612px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.impact-copy h2 {
  margin: 0;
  font-family: var(--clash);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
}
.impact-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.81;
}

.services-section {
  background: var(--black);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.services-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.services-section h2,
.section-head h2,
.industry-head h2,
.insights h2 {
  margin: 0;
  font-family: var(--clash);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 400;
}
.services-section h2 {
  text-align: center;
  margin-bottom: 30px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}
.service-card {
  min-height: 310px;
  padding: 30px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.services-section.is-visible .service-card {
  animation: service-card-in .6s var(--ease) both;
}
.services-section.is-visible .service-card:nth-child(2) { animation-delay: .07s; }
.services-section.is-visible .service-card:nth-child(3) { animation-delay: .14s; }
.services-section.is-visible .service-card:nth-child(4) { animation-delay: .21s; }
.services-section.is-visible .service-card:nth-child(5) { animation-delay: .28s; }
.services-section.is-visible .service-card:nth-child(6) { animation-delay: .35s; }
.service-card:hover {
  background: rgba(255,255,255,.04);
  transform: translateY(-6px);
}
@keyframes service-card-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--blue);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card-icon img {
  width: 22px;
  height: 22px;
}
.service-card:hover .card-icon {
  box-shadow: 0 10px 22px rgba(26,105,253,.35);
  transform: translateX(4px) translateY(-2px);
}
.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--clash);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
}
.service-card p {
  margin: 0 0 30px;
  max-width: 380px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.6;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.chips span {
  height: 41px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-family: var(--clash);
  font-size: 16px;
  line-height: 1.3;
}
.service-more {
  margin: 30px auto 0;
  display: flex;
  width: fit-content;
}

.stories {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.section-head {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.stories-viewport,
.insight-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.stories-stage {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.stories-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  scrollbar-width: none;
  padding: 16px 0 18px;
  touch-action: pan-y;
  user-select: none;
}
.stories-viewport.is-dragging {
  cursor: grabbing;
}
.stories-viewport::-webkit-scrollbar {
  display: none;
}
.section-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.81;
}
.stories-track,
.drag-track {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
.stories-track {
  width: max-content;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.story-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 31vw, 470px);
  cursor: pointer;
  opacity: 0.52;
  transform: scale(0.94);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, filter 0.8s ease;
  filter: saturate(0.8);
}
.story-card.is-active {
  width: clamp(420px, 57vw, 680px);
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.story-card.is-neighbor {
  opacity: 0.86;
}
.story-card.is-animating {
  pointer-events: none;
}
.story-card.is-clone {
  pointer-events: none;
}
.story-image {
  width: 100%;
  height: clamp(245px, 28vw, 435px);
  overflow: hidden;
  border-radius: 24px;
  background: #dfe8f2;
}
.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: translateY(0);
}
.story-caption {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--clash);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  transition: color .2s ease;
}
.story-caption span {
  display: block;
  min-width: 0;
}
.story-caption:hover,
.story-caption:focus-visible {
  color: var(--blue);
}
.story-caption small {
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
}
.story-caption b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 400;
}
.story-card > p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #3b5068;
  font-size: 15px;
  line-height: 1.6;
}
.stories-nav {
  position: absolute;
  inset: 34% 0 auto 0;
  pointer-events: none;
  z-index: 10;
}
.story-nav {
  position: absolute;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 26, 39, 0.15);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #0b1d2d;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(17, 35, 56, 0.12);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  pointer-events: auto;
}
.story-nav:hover,
.story-nav:focus-visible {
  border-color: rgba(14, 92, 242, 0.35);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-2px);
}
.story-nav.prev {
  left: clamp(12px, 2vw, 30px);
}
.story-nav.next {
  right: clamp(12px, 2vw, 30px);
}

.industries {
  padding-top: 80px;
  padding-bottom: 80px;
}
.industry-head {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.arrows { display: flex; gap: 16px; color: #777; }
.arrows span,
.arrows button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: var(--white);
  color: #777;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.arrows span:hover,
.arrows button:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.industry-text-row {
  display: none;
}
.industry-images {
  display: none;
}
.industry-slider {
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.industry-track {
  display: flex;
  gap: 0;
  transition: transform .45s var(--ease);
  will-change: transform;
}
.industry-card {
  flex: 0 0 25%;
  min-height: 405px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.industry-card:hover,
.industry-card:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.industry-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.industry-card > div {
  flex: 1 1 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.industry-card h3 {
  margin: 0 0 12px;
  font-family: var(--clash);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
.industry-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.mini-icon {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--blue);
  margin-bottom: 16px;
}
.industry-dots {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.industry-dots button {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d7dce8;
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}
.industry-dots button.is-active {
  width: 44px;
  background: var(--blue);
}
/* Legacy industry rows are hidden above after the functional carousel is mounted. */
/*
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.industry-text-row article {
  min-height: 150px;
}
.mini-icon {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--blue);
  margin-bottom: 16px;
}
.industry-text-row h3 {
  margin: 0 0 12px;
  font-family: var(--clash);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
.industry-text-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.industry-images .drag-track {
  gap: 0;
}
.industry-images img {
  flex: 0 0 330px;
  width: 330px;
  height: 190px;
  object-fit: cover;
}
*/

.appreciation {
  padding-top: 80px;
  padding-bottom: 80px;
}
.appreciation h2 {
  max-width: var(--container);
  margin: 0 auto 30px;
  font-family: var(--clash);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 400;
}
.appreciation-card {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 395px;
  padding: 58px 60px 42px;
  border-radius: 24px;
  background: var(--black);
  color: var(--white);
}
.quote-mark {
    position: absolute;
    right: 0;
    top: 50px;
    color: #fff;
    font-family: var(--clash);
    font-size: 80px;
    line-height: .8;
    left: 50px;
}
.appreciation blockquote {
  margin: 36px 0 70px;
  max-width: 860px;
  width: 100%;
  font-family: var(--clash);
  font-size: 32px;
  line-height: 1.4;
}
.people-row {
  display: flex;
  height: 90px;
}
.person {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  opacity: .55;
}
.person.is-active { opacity: 1; }
.person img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.person strong {
  display: block;
  font-family: var(--clash);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}
.person small {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1;
}

.insights {
  padding-top: 60px;
  padding-bottom: 80px;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.insight-grid article { height: 438px; }
.insight-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.insight-grid small {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1;
  color: var(--blue);
}
.insight-grid h3 {
  margin: 12px 0 0;
  font-family: var(--clash);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 500;
}
.insight-grid h3 a {
  transition: color .2s ease;
}
.insight-grid h3 a:hover,
.insight-grid h3 a:focus-visible {
  color: var(--blue);
}

/* Services page v2 */
.services-page-v2 {
  background: #f7f7f7;
}
/* .services-page-v2 .site-header {
  position: absolute;
  background: #052536;
  border-bottom: 0;
} */
.services-page-v2 .site-nav {
  gap: 28px;
  font-size: 12px;
}
.services-reference-hero {
  position: relative;
  height: 610px;
  padding-left: max(42px, calc((100vw - var(--container)) / 2));
  padding-right: max(42px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.services-reference-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.46);
}
.services-reference-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-reference-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  width: 100%;
  margin: 30px auto 0;
}
.services-reference-hero h1 {
  max-width: 610px;
  margin: 0;
  font-family: var(--clash);
  font-size: 68px;
  line-height: .98;
  font-weight: 500;
}
.service-reference-section {
  padding: 125px max(75px, calc((100vw - var(--container)) / 2));
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
}
.service-reference-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  column-gap: 88px;
  row-gap: 78px;
}
.service-reference-title h2 {
  margin: 0;
  font-family: var(--clash);
  font-size: 64px;
  line-height: .98;
  font-weight: 400;
  color: #101010;
}
.service-reference-title strong,
.service-reference-title span {
  display: block;
}
.service-reference-title strong {
  font-weight: 700;
}
.service-reference-copy {
  margin: 0;
  color: #000;
  font-size: 16px;
  line-height: 1.75;
}
.service-reference-image {
  width: 520px;
  height: 500px;
  border-radius: 0 0 0 110px;
  overflow: hidden;
}
.service-reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-reference-accordion {
  align-self: start;
  padding-top: 2px;
}
.service-reference-accordion > p {
  margin: 0 0 24px;
  color: #101010;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
}
.service-reference-item,
.service-reference-accordion > a {
  border-top: 1px solid #ededed;
}
.service-reference-accordion > a:last-child,
.service-reference-accordion > .service-reference-item:last-child {
  border-bottom: 1px solid #ededed;
}
.service-reference-item button,
.service-reference-accordion > a {
  width: 100%;
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
  background: transparent;
  color: #000;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.service-reference-item.is-open button {
  color: #161616;
}
.service-reference-item button > span:nth-child(2) {
  flex: 1;
}
.service-reference-item button:hover,
.service-reference-item button:focus-visible,
.service-reference-accordion > a {
  transition: color .2s ease;
}
.service-reference-item button:hover,
.service-reference-item button:focus-visible,
.service-reference-accordion > a:hover,
.service-reference-accordion > a:focus-visible {
  color: var(--blue);
}
.service-reference-accordion b {
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transform-origin: center;
  transition: transform .24s var(--ease), color .2s ease;
}
.service-reference-item.is-open b {
  transform: rotate(180deg);
}
.service-reference-icon,
.service-reference-accordion > a span {
  width: 24px;
  color: #000;
  font-size: 24px;
  text-align: center;
}
.service-reference-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height .28s var(--ease), opacity .2s ease, visibility 0s linear .28s;
}
.service-reference-item.is-open .service-reference-panel {
  max-height: 150px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.service-reference-item div {
  padding: 0 22px 15px 30px;
}
.service-reference-item div p {
  margin: 0 0 8px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
}
.service-reference-item div a,
.service-dark-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}
.service-reference-item div a {
  padding: 12px 20px;
}
.services-reference-cta {
  min-height: 375px;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.services-reference-cta h2 {
  margin: 0;
  font-family: var(--clash);
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}
.services-reference-cta p {
  margin: 8px 0 26px;
  font-size: 35px;
  line-height: 1.18;
  font-weight: 400;
}
.service-dark-button {
  min-height: 36px;
  padding: 12px 20px;
  font-size: 14px;
}
.service-dark-button img {
  width: 14px;
  height: 14px;
  transition: transform .25s var(--ease);
}
.service-dark-button:hover img,
.service-dark-button:focus-visible img {
  transform: translateX(3px);
}

/* About company page */
.about-company-page {
  background: #f7f7f7;
}
.about-company-page .site-header {
  position: absolute;
  height: 54px;
  background: #052536;
  border-bottom: 0;
}
.about-company-page .site-logo {
  width: 117px;
  height: 28px;
}
.about-company-page .site-logo img {
  width: 117px;
  transform: translateY(-19px);
}
.about-company-page .site-nav {
  gap: 28px;
  font-size: 12px;
}
.about-company-page .header-button {
  height: 28px;
  padding: 8px 13px;
  font-size: 11px;
}
.about-company-page .header-button img {
  width: 13px;
  height: 13px;
}
.about-company-hero {
  position: relative;
  min-height: 610px;
  padding: 54px max(42px, calc((100vw - var(--container)) / 2)) 0;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.about-company-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.28));
}
.about-company-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-company-hero-copy {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
.about-company-hero-copy p {
  margin: 0 0 12px;
  font-family: var(--equip);
  font-size: 16px;
  line-height: 1;
}
.about-company-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-family: var(--clash);
  font-size: 76px;
  line-height: .98;
  font-weight: 500;
}
.about-company-intro,
.about-company-media,
.about-company-values,
.about-company-why,
.about-company-location {
  padding-left: max(75px, calc((100vw - var(--container)) / 2));
  padding-right: max(75px, calc((100vw - var(--container)) / 2));
}


.cta {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: var(--white);
}
.cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg-one { transform: translateY(-270px); height: 986px !important; }
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 990px;
  width: calc(100% - (var(--page-pad) * 2));
  margin: 0 auto;
  padding-top: 113px;
  text-align: center;
}
.cta-content p {
  margin: 0;
  font-family: var(--equip);
  font-size: 18px;
  line-height: 1.1;
}
.cta-content h2 {
  margin: 0;
  font-family: var(--clash);
  font-size: 58px;
  line-height: 1.3;
  font-weight: 500;
}
.cta-content div {
  width: 778px;
  margin: 10px auto 20px;
  font-size: 20px;
  line-height: 1.61;
}


@media (max-width: 1024px) {
  :root { --page-pad: 24px; }
  .site-header { position: fixed; background: rgba(0,0,0,.85); }
  .site-logo { width: 150px; }
  .site-logo img { width: 150px; transform: translateY(-24px); }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: 80px 16px auto;
    padding: 18px;
    background: #000;
    border: 1px solid rgba(255,255,255,.15);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .hero h1 { font-size: 56px; }
  .hero-tabs { overflow-x: auto; }
  .hero-tab { flex-basis: 260px; }
  .services-page-v2 .site-header {
    position: fixed;
    height: 80px;
    background: rgba(5,37,54,.95);
  }
  .about-company-page .site-header {
    position: fixed;
    height: 80px;
    background: rgba(5,37,54,.95);
  }
  .services-page-v2 .site-logo {
    width: 150px;
    height: 36px;
  }
  .about-company-page .site-logo {
    width: 150px;
    height: 36px;
  }
  .about-company-page .site-logo img {
    width: 150px;
    transform: translateY(-24px);
  }
  .about-company-hero {
    min-height: 560px;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .about-company-hero h1,
  .about-company-intro h2,
  .about-company-panel h2,
  .about-company-section-head h2,
  .about-company-location h2 {
    font-size: 52px;
  }
  .about-company-intro,
  .about-company-media,
  .about-company-values,
  .about-company-why,
  .about-company-location {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .about-company-intro-inner,
  .about-company-media-inner,
  .about-company-values .about-company-section-head,
  .about-company-why > .about-company-section-head {
    grid-template-columns: 1fr;
  }
  .about-company-stats {
    grid-column: auto;
  }
  .about-company-media-inner,
  .about-company-why > .about-company-section-head {
    display: grid;
  }
  .about-company-media-inner {
    gap: 36px;
  }
  .about-company-image-large {
    height: 460px;
  }
  .about-company-value-grid,
  .about-company-why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-reference-hero {
    height: 520px;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
  .services-reference-hero h1 {
    font-size: 54px;
  }
  .service-reference-section {
    padding: 85px var(--page-pad);
  }
  .service-reference-inner {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
  .service-reference-title h2 {
    font-size: 52px;
  }
  .service-reference-copy {
    max-width: 680px;
  }
  .service-reference-image {
    width: 100%;
    max-width: 560px;
    height: 420px;
  }
  .client-inner,
  .credibility-inner,
  .impact-inner,
  .section-head,
  .industry-head {
    display: grid;
  }
  .credibility-inner { height: auto; flex-direction: column; align-items: flex-start; gap: 40px; padding-bottom: 20px; }
  .credibility-left { width: 100%; }
  .credibility-right { width: 100%; }
  .metrics-row { flex-wrap: wrap; }
  .metric-item { flex: 0 1 calc(50% - 10px); border-right: none; border-bottom: 1px solid var(--border-light); padding: 24px 20px; }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--border-light); }
  .metric-item:last-child { border-bottom: none; }
  .impact-copy,
  .appreciation-card,
  .appreciation blockquote,
  .cta-content,
  .cta-content div,
  .footer-word { width: 100%; }
  .service-grid,
  .insight-grid,
  .footer-grid,
  .industry-text-row {
    grid-template-columns: 1fr 1fr;
  }
  .industry-card { flex-basis: 50%; }
  .service-card,
  .service-grid,
  .insight-grid article,
  .insight-grid img { width: 100%; }
  .service-card p { width: auto; }
  .footer { height: auto; min-height: auto; padding-bottom: 40px; }
  .footer-word { font-size: 150px; }
}

@media (max-width: 640px) {
  :root { --page-pad: 18px; }
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-slide { padding-top: 96px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .hero p br { display: none; }
  .hero-tab { flex-basis: 210px; font-size: 14px; }
  .services-reference-hero {
    height: 430px;
  }
  .about-company-hero {
    min-height: 480px;
    padding-top: 80px;
  }
  .about-company-hero h1 {
    font-size: 43px;
  }
  .credibility-inner {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  .credibility-left {
    width: 100%;
  }
  .credibility-left h3 {
    font-size: 18px;
  }
  .credibility-left p {
    font-size: 14px;
  }
  .credibility-right {
    width: 100%;
  }
  .metrics-row {
    flex-direction: column;
  }
  .metric-item {
    flex: 1;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
  }
  .metric-item:last-child {
    border-bottom: none;
  }
  .metric-number {
    font-size: 32px;
  }
  .metric-label {
    font-size: 12px;
  }
  .about-company-intro,
  .about-company-media,
  .about-company-values,
  .about-company-why,
  .about-company-location {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .about-company-intro-inner {
    gap: 28px;
  }
  .about-company-intro h2,
  .about-company-panel h2,
  .about-company-section-head h2,
  .about-company-location h2 {
    font-size: 42px;
  }
  .about-company-intro p,
  .about-company-panel p,
  .about-company-section-head p,
  .about-company-value-grid p,
  .about-company-why-grid p,
  .about-company-location p {
    font-size: 15px;
  }
  .about-company-stats,
  .about-company-value-grid,
  .about-company-why-grid {
    grid-template-columns: 1fr;
  }
  .about-company-stats article,
  .about-company-value-grid article {
    border-right: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .about-company-value-grid article {
    border-bottom-color: rgba(255,255,255,.16);
  }
  .about-company-stats article:last-child,
  .about-company-value-grid article:last-child {
    border-bottom: 0;
  }
  .about-company-image-large {
    height: 330px;
    border-bottom-left-radius: 72px;
  }
  .about-company-values .about-company-section-head,
  .about-company-why > .about-company-section-head {
    gap: 18px;
  }
  .about-company-value-grid span {
    margin-bottom: 50px;
  }
  .about-company-why-grid article {
    min-height: auto;
  }
  .about-company-why-grid img {
    height: 260px;
  }
  .about-company-location-image {
    height: 300px;
  }
  .services-reference-hero h1 {
    font-size: 42px;
  }
  .service-reference-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .service-reference-inner {
    row-gap: 28px;
  }
  .service-reference-title h2 {
    font-size: 42px;
  }
  .service-reference-copy {
    font-size: 14px;
  }
  .service-reference-image {
    height: 330px;
    border-bottom-left-radius: 72px;
  }
  .services-reference-cta {
    min-height: 350px;
  }
  .services-reference-cta h2 {
    font-size: 30px;
  }
  .services-reference-cta p {
    font-size: 25px;
  }
  .impact,
  .services-section,
  .stories,
  .industries,
  .appreciation,
  .insights { padding-top: 60px; padding-bottom: 60px; }
  .impact-image { height: 360px; }
  .impact-copy h2,
  .services-section h2,
  .section-head h2,
  .industry-head h2,
  .appreciation h2,
  .insights h2,
  .service-reference-title h2 { font-size: 42px; }
  .service-grid,
  .insight-grid,
  .footer-grid,
  .industry-text-row {
    grid-template-columns: 1fr;
  }
  .industry-card { flex-basis: 100%; }
  .service-grid { grid-auto-rows: auto; }
  .story-card { flex-basis: 84vw; height: auto; }
  .story-image { width: 100%; height: 300px; }
  .story-caption { font-size: 22px; }
  .people-row { display: grid; height: auto; gap: 16px; }
  .person { width: 100%; }
  .insight-grid { gap: 32px; }
  .insight-grid article { height: auto; }
  .cta-content h2 { font-size: 36px; }
  .cta-content div { font-size: 16px; }
  .footer-word { font-size: 64px; margin-bottom: 50px; }
  .footer-bottom { display: grid; }
}
