@font-face {
  font-family: "Space Grotesk";
  src: url("../../fonts/Space_Grotesk/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../../fonts/Space_Grotesk/SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../../fonts/Space_Grotesk/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cyan: #3dc2ec;
  --blue: #1230ae;
  --coral: #ff7759;
  --magenta: #f23479;
  --purple: #7b2cbf;
  --ink: #000;
  --muted: #656565;
  --line: #d7d7d7;
  --surface: #f5f5f5;
  --container: 1230px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body.revamp-site {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.revamp-site img {
  display: block;
  max-width: 100%;
}

.revamp-site a {
  color: inherit;
  text-decoration: none;
}

.revamp-site button,
.revamp-site input,
.revamp-site select,
.revamp-site textarea {
  font: inherit;
}

.revamp-site button,
.revamp-site summary {
  -webkit-tap-highlight-color: transparent;
}

.site-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff !important;
  background: var(--blue);
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button--cyan {
  color: #000;
  background: var(--cyan);
}

.button--cyan img {
  filter: brightness(0);
}

.button--cyan:hover {
  background: #74d4f2;
  transform: translateY(-1px);
}

.button:focus-visible,
.icon-link:focus-visible,
.arrow-link:focus-visible,
.text-link:focus-visible,
.industry-card:focus-visible,
.revamp-site a:focus-visible,
.revamp-site summary:focus-visible,
.revamp-site input:focus-visible,
.revamp-site select:focus-visible,
.revamp-site textarea:focus-visible,
.revamp-site button:focus-visible {
  outline: 3px solid rgba(61, 194, 236, 0.75);
  outline-offset: 3px;
}

.text-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.text-link--light {
  color: #fff !important;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.section-heading h2,
.approach-section h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -1.08px;
}

.section-heading--with-link,
.section-heading--with-controls {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading--with-link > div,
.section-heading--with-controls > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--blue) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.arrow-link img {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--blue);
  border-radius: 5px;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 5px;
  transition: background-color 180ms ease;
}

.icon-link:hover,
.arrow-link:hover img {
  background: rgba(18, 48, 174, 0.08);
}

/* Header */
.revamp-header {
  position: relative;
  z-index: 100;
  height: 80px;
  background: #fff;
}

.revamp-header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.revamp-brand {
  flex: 0 0 auto;
}

.revamp-brand img {
  width: 167px;
  height: 50px;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.desktop-nav > a:not(.button),
.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.desktop-nav > a:not(.button):hover,
.nav-dropdown > summary:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown > summary {
  height: 100%;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-dropdown[open] .nav-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown__panel {
  position: absolute;
  z-index: 10;
  top: 68px;
  left: -20px;
  width: 260px;
  padding: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.nav-dropdown__panel--wide {
  width: 330px;
}

.nav-dropdown__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 20px;
}

.nav-dropdown__panel a:hover {
  color: var(--blue);
  background: #f5f7ff;
}

.hiring-pill {
  display: inline-flex;
  margin-left: 7px;
  padding: 0 7px;
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.header-contact {
  margin-left: 4px;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.home-hero {
  height: 542px;
  color: #fff;
  background: #111 url("../../images/frontend/revamp/home-hero-crop.webp") center center / cover no-repeat;
}

.home-hero__inner {
  position: relative;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero__copy {
  position: absolute;
  top: 99px;
  left: 0;
  width: 765px;
}

.home-hero h1 {
  width: 765px;
  margin: 15px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.32px;
}

.home-hero__description {
  width: 762px;
  margin: 15px 0 0;
  font-size: 18px;
  line-height: 30px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 40px;
}

.home-hero__badge {
  position: absolute;
  right: 2px;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  white-space: nowrap;
}

.home-hero__badge img {
  width: 32px;
  height: 32px;
}

/* Trust strip */
.trust-strip {
  height: 229px;
  overflow: hidden;
  background: linear-gradient(100.26deg, rgba(61, 194, 236, 0.05) 11.8%, rgba(174, 22, 156, 0.1) 100%);
}

.trust-strip__inner {
  padding-top: 60px;
}

.trust-strip h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}

.logo-rail {
  width: 100%;
  margin-top: 10px;
  overflow: visible;
}

.logo-rail__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  margin-left: -10px;
}

.logo-rail__track img {
  flex: 0 0 220px;
  width: 220px;
  height: 80px;
  object-fit: contain;
}

/* Services */
.services-section {
  position: relative;
  height: 1503px;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1322px;
  background: linear-gradient(180deg, rgba(18, 48, 174, 0.09), rgba(242, 52, 121, 0.09));
}

.services-section > .site-container {
  position: relative;
  padding-top: 98px;
}

.services-section .section-heading {
  width: 595px;
  height: 80px;
}

.services-list {
  height: 875px;
  margin-top: 40px;
}

.service-row {
  height: 150px;
  display: grid;
  grid-template-columns: 22px 57px 384px minmax(30px, 1fr) 520px minmax(30px, 1fr) 38px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.service-row:nth-child(2) {
  height: 125px;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row__number {
  grid-column: 1;
  align-self: start;
  margin-top: 25px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.service-row__heading {
  grid-column: 3;
  align-self: start;
  margin-top: 25px;
}

.service-row__heading h3 {
  width: 458px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.72px;
}

.service-row__heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.39px;
}

.service-row__description {
  grid-column: 5;
  width: 520px;
  margin: 0;
  font-size: 15px;
  line-height: 25px;
}

.service-row .icon-link {
  grid-column: 7;
}

.project-cta {
  position: relative;
  height: 330px;
  margin-top: 80px;
  overflow: hidden;
  color: #fff;
  background: #111 url("../../images/frontend/revamp/home-project-cta.webp") center / cover no-repeat;
  border-radius: 20px;
}

.project-cta__content {
  position: absolute;
  top: 48px;
  left: 55px;
}

.project-cta h2 {
  width: 706px;
  margin: 16px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.32px;
}

.project-cta .button {
  margin-top: 32px;
}

/* Case studies */
.case-studies-section {
  height: 740px;
  padding: 80px 0;
  background: #fff;
}

.case-studies-section .site-container {
  height: 580px;
}

.case-studies-section .section-heading {
  height: 80px;
}

.case-studies-section .section-heading > div {
  width: 729px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 390px);
  gap: 30px;
  margin-top: 40px;
}

.case-study-card {
  height: 460px;
  padding: 18px 19px;
  overflow: hidden;
  background: linear-gradient(139.8deg, rgba(242, 52, 121, 0.1) 1.2%, rgba(61, 194, 236, 0.1) 100%);
  border: 1px solid #e5e5e5;
  border-radius: 15px;
}

.case-study-card__image {
  height: 210px;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.case-study-card__image img {
  width: 350px;
  height: 210px;
  object-fit: cover;
}

.case-study-card__body {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
}

.case-study-card__tags {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}

.case-study-card h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.case-study-card h3 a:hover {
  color: var(--blue);
}

.case-study-card__body > p:not(.case-study-card__tags) {
  margin: 13px 0 0;
  font-size: 15px;
  line-height: 25px;
}

.case-study-card .arrow-link {
  gap: 8px;
  margin-top: 19px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.case-study-card .arrow-link img {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
}

/* Approach */
.approach-section {
  height: 845px;
  color: #fff;
  background: #000 url("../../images/frontend/howwebg.webp") center / cover no-repeat;
}

.approach-section__inner {
  height: 100%;
  padding-top: 83px;
}

.approach-section__heading {
  width: 1006px;
}

.approach-section__heading h2 {
  margin-top: 8px;
}

.approach-section__heading > p:last-child {
  width: 986px;
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.approach-tabs {
  display: grid;
  grid-template-columns: 359px 810px;
  gap: 61px;
  margin-top: 80px;
}

.approach-tabs__list {
  display: flex;
  flex-direction: column;
}

.approach-tab {
  position: relative;
  height: 80px;
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 17px;
  align-items: start;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.approach-tab:last-child {
  height: 30px;
}

.approach-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 316px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.approach-tab:last-child::after {
  display: none;
}

.approach-tab span {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.approach-tab strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.54px;
  white-space: nowrap;
}

.approach-tab.is-active,
.approach-tab.is-active span {
  color: var(--coral);
}

.approach-tabs__panel h3 {
  margin: 0 0 25px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.approach-tabs__panel-content {
  display: grid;
  grid-template-columns: repeat(2, 390px);
  gap: 30px;
}

.approach-tabs__panel-content img {
  width: 390px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.approach-tabs__panel-content p {
  width: 390px;
  min-height: 338px;
  margin: 0;
  font-size: 16px;
  line-height: 30px;
}

/* Industries */
.industries-section {
  height: 540px;
  padding: 80px 0;
  background: #fff;
}

.industries-section .site-container {
  height: 380px;
  overflow: hidden;
}

.industries-section .section-heading {
  width: 100%;
  height: 80px;
}

.industries-section .section-heading > div:first-child {
  width: 100%;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.carousel-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #000;
  background: var(--line);
  border: 0;
  border-radius: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: #c7c7c7;
}

.industry-rail {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.industry-rail::-webkit-scrollbar {
  display: none;
}

.industry-card {
  position: relative;
  flex: 0 0 385px;
  width: 385px;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
}

.industry-card > img {
  width: 385px;
  height: 260px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.industry-card:not(.industry-card--figma)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.industry-card span {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 22px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.industry-card:hover > img {
  transform: scale(1.025);
}

/* Testimonials */
.testimonials-section {
  height: 528px;
  padding-bottom: 80px;
  background: #fff;
}

.testimonial-rail {
  width: 1200px;
  height: 448px;
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 30px;
}

.testimonial-card {
  width: 380px;
  height: 448px;
  margin: 0;
}

.testimonial-card > img {
  width: 81px;
  height: 63px;
  object-fit: contain;
}

.testimonial-card blockquote {
  width: 380px;
  height: 245px;
  margin: 38px 0 0;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.54px;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 40px;
}

.testimonial-card figcaption strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.testimonial-card figcaption span {
  font-size: 15px;
  line-height: 25px;
}

/* Insights */
.insights-section {
  height: 740px;
  padding: 80px 0;
  background: var(--surface);
}

.insights-section .section-heading {
  height: 128px;
}

.insights-section .section-heading > div {
  width: 817px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 390px);
  gap: 30px;
  margin-top: 40px;
}

.insight-card {
  width: 390px;
  height: 379px;
  padding: 16px 20px 27px;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
}

.insight-card > a {
  height: 233px;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.insight-card img {
  width: 350px;
  height: 233px;
  object-fit: cover;
}

.insight-card > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
}

.insight-card time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}

.insight-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.insight-card h3 a:hover {
  color: var(--blue);
}

/* Contact */
.contact-section {
  position: relative;
  height: 918px;
  overflow: hidden;
}

.contact-section--errors {
  height: auto;
  min-height: 1050px;
  overflow: visible;
}

.contact-section--errors .contact-section__inner {
  min-height: 1050px;
}

.contact-section--errors .contact-section__wash {
  height: calc(100% - 305px);
}

.anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-section__top,
.contact-section__wash {
  position: absolute;
  inset-inline: 0;
}

.contact-section__top {
  top: 0;
  height: 330px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
}

.contact-section__wash {
  top: 305px;
  height: 613px;
  background: linear-gradient(204.12deg, rgba(123, 44, 191, 0.125), rgba(61, 194, 236, 0.125));
}

.contact-section__inner {
  position: relative;
  height: 100%;
}

.contact-copy > header {
  position: absolute;
  top: 104px;
  left: 0;
  width: 576px;
  color: #fff;
}

.contact-copy h2 {
  margin-top: 12px;
  font-size: 44px;
  line-height: 56px;
  letter-spacing: -1.32px;
}

.contact-copy__details {
  position: absolute;
  top: 358px;
  left: 0;
  width: 600px;
}

.contact-copy__details > p {
  width: 600px;
  margin: 0;
  font-size: 15px;
  line-height: 25px;
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.contact-direct a:hover {
  color: var(--blue);
}

.why-us {
  margin-top: 34px;
}

.why-us h3,
.next-steps h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.6px;
}

.why-us > div {
  width: 495px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 47px;
  margin-top: 15px;
}

.why-us p {
  display: flex;
  gap: 17px;
  margin: 0;
  font-size: 18px;
  line-height: 35px;
}

.next-steps {
  margin-top: 33px;
}

.next-steps ol {
  width: 600px;
  display: grid;
  grid-template-columns: 148px 163px 197px;
  gap: 34px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  position: relative;
  display: flex;
  flex-direction: column;
}

.next-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -24px;
  width: 1px;
  height: 59px;
  background: rgba(0, 0, 0, 0.22);
  transform: rotate(16deg);
}

.next-steps strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.48px;
  white-space: nowrap;
}

.next-steps span {
  margin-top: 1px;
  font-size: 15px;
  line-height: 25px;
}

.contact-card {
  position: absolute;
  top: 78px;
  right: 0;
  width: 600px;
  min-height: 750px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.1);
}

.contact-card__header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.contact-card__header h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.72px;
}

.contact-card__body {
  padding: 29px 40px 24px;
}

.form-alert {
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 20px;
}

.form-alert--success {
  color: #14532d;
  background: #dcfce7;
}

.form-alert--error {
  color: #7f1d1d;
  background: #fee2e2;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 19px;
}

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-size: 15px;
  line-height: 25px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span {
  margin-bottom: 5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: #000;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 48px;
  padding: 8px 12px;
}

.form-field select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position: calc(100% - 17px) 19px, calc(100% - 12px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-field textarea {
  height: 110px;
  padding: 10px 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 48, 174, 0.1);
}

.form-field small,
.captcha-wrap small {
  display: block;
  margin-top: 3px;
  color: #b91c1c;
  font-size: 11px;
  line-height: 15px;
}

.contact-card__actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 25px;
}

.captcha-wrap {
  width: 225px;
  min-height: 58px;
  overflow: visible;
}

.captcha-wrap .g-recaptcha {
  width: 304px;
  height: 78px;
  transform: scale(0.74);
  transform-origin: top left;
}

.contact-card__actions .button {
  flex: 0 0 auto;
  order: -1;
  margin-bottom: 0;
}

/* Footer */
.revamp-footer__main {
  height: 702px;
  color: #fff;
  background: #000;
}

.revamp-footer__main-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 585px 584px;
  gap: 61px;
  padding-top: 80px;
}

.footer-links h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -0.72px;
}

.footer-links a {
  display: block;
  font-size: 15px;
  line-height: 25px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-link-columns {
  display: grid;
  grid-template-columns: 265px 224px;
  gap: 49px;
  margin-top: 29px;
}

.footer-link-columns > div,
.footer-links__lower section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links__lower {
  display: grid;
  grid-template-columns: 265px 224px;
  gap: 49px;
  margin-top: 42px;
}

.footer-links__lower h2 {
  margin-bottom: 18px;
}

.footer-links__lower a {
  display: flex;
  align-items: center;
}

.footer-hr {
  margin: 40px 0 0;
  font-size: 15px;
  line-height: 25px;
}

.footer-hr a {
  display: inline;
}

.footer-consultation {
  height: 584px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background-image: radial-gradient(circle, rgba(61, 194, 236, 0.45) 1.3px, transparent 1.5px);
  background-size: 20px 20px;
}

.footer-consultation > img {
  width: 241px;
  height: 72px;
}

.revamp-footer__bottom {
  height: 240px;
  background: #fff;
}

.revamp-footer__bottom .site-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0 23px;
}

.footer-addresses {
  display: grid;
  grid-template-columns: 247px 247px 274px 1fr;
  align-items: start;
  gap: 39px;
}

.footer-addresses section {
  position: relative;
}

.footer-addresses section:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -20px;
  width: 1px;
  height: 50px;
  background: rgba(0, 0, 0, 0.1);
}

.footer-addresses h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.footer-addresses section:first-child h2 {
  text-transform: none;
}

.footer-addresses p {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
}

.footer-addresses p a:hover {
  color: var(--blue);
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  padding-top: 44px;
}

.footer-socials img {
  width: 26px;
  height: 26px;
}

.footer-social-placeholder {
  display: block;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.footer-legal a:hover {
  color: var(--blue);
}

@media (max-width: 1240px) {
  .desktop-nav {
    gap: 20px;
  }

  .service-row {
    grid-template-columns: 22px 35px minmax(300px, 1fr) 30px minmax(420px, 520px) 30px 38px;
  }

  .service-row__heading h3,
  .service-row__description {
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-container {
    width: min(calc(100% - 48px), 920px);
  }

  .revamp-header,
  .revamp-header__inner {
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .mobile-menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 2px;
    background: #000;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 72px 0 0;
    display: block;
    overflow-y: auto;
    background: #fff;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav__inner {
    width: min(calc(100% - 48px), 920px);
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    padding: 24px 0 40px;
  }

  .mobile-nav__inner > a,
  .mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
  }

  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav details > div {
    display: flex;
    flex-direction: column;
    padding: 6px 0 12px 18px;
  }

  .mobile-nav details > div a {
    padding: 9px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 24px;
  }

  .mobile-nav__contact {
    margin-top: 24px;
    border-bottom: 0 !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 14px !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .home-hero,
  .trust-strip,
  .services-section,
  .case-studies-section,
  .approach-section,
  .industries-section,
  .testimonials-section,
  .insights-section,
  .contact-section,
  .revamp-footer__main,
  .revamp-footer__bottom {
    height: auto;
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero__inner {
    min-height: 590px;
  }

  .home-hero__copy {
    top: 80px;
    width: min(765px, 100%);
  }

  .home-hero h1,
  .home-hero__description {
    width: min(765px, 100%);
  }

  .trust-strip {
    min-height: 210px;
  }

  .logo-rail {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .services-section {
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(18, 48, 174, 0.09), rgba(242, 52, 121, 0.09));
  }

  .services-section::before {
    display: none;
  }

  .services-section > .site-container {
    padding-top: 0;
  }

  .services-list {
    height: auto;
  }

  .service-row,
  .service-row:nth-child(2) {
    height: auto;
    min-height: 170px;
    grid-template-columns: 32px minmax(230px, 1fr) 48px;
    gap: 22px;
    padding: 28px 0;
  }

  .service-row__number,
  .service-row__heading,
  .service-row__description,
  .service-row .icon-link {
    align-self: start;
    margin-top: 0;
  }

  .service-row__number {
    grid-column: 1;
  }

  .service-row__heading {
    grid-column: 2;
  }

  .service-row__heading h3 {
    width: auto;
  }

  .service-row__description {
    grid-column: 2;
    width: auto;
  }

  .service-row .icon-link {
    grid-column: 3;
    grid-row: 1;
  }

  .project-cta {
    margin-top: 64px;
  }

  .case-studies-section,
  .industries-section,
  .insights-section {
    padding: 72px 0;
  }

  .case-studies-section .site-container,
  .industries-section .site-container,
  .insights-section .site-container {
    height: auto;
  }

  .case-study-grid,
  .insights-grid,
  .testimonial-rail {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .case-study-card,
  .insight-card,
  .testimonial-card {
    flex: 0 0 390px;
    scroll-snap-align: start;
  }

  .approach-section {
    padding: 72px 0;
  }

  .approach-section__inner {
    height: auto;
    padding-top: 0;
  }

  .approach-section__heading,
  .approach-section__heading > p:last-child {
    width: 100%;
  }

  .approach-tabs {
    grid-template-columns: minmax(280px, 1fr);
    gap: 46px;
    margin-top: 56px;
  }

  .approach-tabs__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 26px;
  }

  .approach-tab,
  .approach-tab:last-child {
    height: 70px;
  }

  .approach-tab::after {
    right: 0;
    bottom: 14px;
    width: calc(100% - 40px);
  }

  .approach-tab:nth-last-child(-n + 2)::after {
    display: none;
  }

  .approach-tab strong {
    white-space: normal;
  }

  .approach-tabs__panel-content {
    grid-template-columns: minmax(280px, 390px) 1fr;
  }

  .approach-tabs__panel-content p {
    width: auto;
  }

  .industries-section .section-heading,
  .case-studies-section .section-heading,
  .insights-section .section-heading {
    height: auto;
  }

  .industry-rail {
    padding-bottom: 4px;
  }

  .testimonials-section {
    padding: 72px 0;
  }

  .testimonial-rail {
    width: min(calc(100% - 48px), 920px);
    height: auto;
  }

  .contact-section {
    padding: 72px 0;
    overflow: visible;
    background: linear-gradient(204.12deg, rgba(123, 44, 191, 0.125), rgba(61, 194, 236, 0.125));
  }

  .contact-section__top {
    height: 370px;
  }

  .contact-section__wash {
    display: none;
  }

  .contact-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-copy > header,
  .contact-copy__details,
  .contact-card {
    position: relative;
    inset: auto;
  }

  .contact-copy > header {
    width: min(620px, 100%);
    min-height: 230px;
    padding-top: 28px;
  }

  .contact-copy__details,
  .contact-copy__details > p {
    width: 100%;
  }

  .contact-copy__details {
    margin-top: 55px;
  }

  .next-steps ol {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-card {
    width: min(600px, 100%);
    justify-self: center;
  }

  .revamp-footer__main {
    padding: 72px 0;
  }

  .revamp-footer__main-grid {
    height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 0;
  }

  .footer-consultation {
    height: 420px;
  }

  .revamp-footer__bottom {
    padding: 52px 0 28px;
  }

  .revamp-footer__bottom .site-container {
    height: auto;
    padding: 0;
  }

  .footer-addresses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials {
    justify-content: flex-start;
    padding-top: 0;
  }

  .footer-legal {
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .site-container,
  .mobile-nav__inner,
  .testimonial-rail {
    width: calc(100% - 48px);
  }

  .revamp-brand img {
    width: 143px;
    height: auto;
  }

  .home-hero {
    min-height: 660px;
    background-position: 56% center;
  }

  .home-hero__inner {
    min-height: 660px;
  }

  .home-hero__copy {
    top: 64px;
  }

  .home-hero h1 {
    margin-top: 14px;
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .home-hero__description {
    margin-top: 18px;
    font-size: 16px;
    line-height: 27px;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .home-hero__badge {
    right: auto;
    bottom: 32px;
    left: 0;
    font-size: 13px;
  }

  .trust-strip {
    min-height: 214px;
  }

  .trust-strip__inner {
    padding-top: 42px;
  }

  .trust-strip h2 {
    padding-inline: 8px;
    font-size: 12px;
    line-height: 21px;
  }

  .logo-rail {
    margin-top: 20px;
  }

  .section-heading h2,
  .approach-section h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.8px;
  }

  .section-heading--with-link,
  .section-heading--with-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .services-section,
  .case-studies-section,
  .approach-section,
  .industries-section,
  .testimonials-section,
  .insights-section {
    padding: 64px 0;
  }

  .services-section .section-heading,
  .services-section .section-heading h2,
  .case-studies-section .section-heading > div,
  .insights-section .section-heading > div {
    width: 100%;
    height: auto;
  }

  .services-list {
    margin-top: 36px;
  }

  .service-row,
  .service-row:nth-child(2) {
    grid-template-columns: 32px 1fr 38px;
    gap: 14px;
    padding: 28px 0;
  }

  .service-row__heading h3 {
    font-size: 21px;
    line-height: 29px;
  }

  .service-row__heading p {
    font-size: 12px;
    line-height: 20px;
  }

  .service-row__description {
    grid-column: 1 / -1;
    padding-left: 46px;
  }

  .project-cta {
    height: 430px;
    margin-top: 48px;
    background-position: 58% center;
  }

  .project-cta__content {
    inset: 42px 28px auto;
  }

  .project-cta h2 {
    width: 100%;
    font-size: 38px;
    line-height: 47px;
    letter-spacing: -1px;
  }

  .project-cta .button {
    margin-top: 28px;
  }

  .case-study-grid,
  .insights-grid {
    width: calc(100vw - 24px);
    gap: 18px;
    margin-top: 34px;
    padding-right: 24px;
  }

  .case-study-card,
  .insight-card {
    flex-basis: min(390px, calc(100vw - 62px));
    width: min(390px, calc(100vw - 62px));
  }

  .case-study-card {
    height: 500px;
  }

  .insight-card {
    height: 420px;
  }

  .case-study-card__image img,
  .insight-card img {
    width: 100%;
  }

  .approach-section__heading > p:last-child {
    font-size: 17px;
    line-height: 28px;
  }

  .approach-tabs {
    margin-top: 44px;
  }

  .approach-tabs__list {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-right: -24px;
    padding-right: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .approach-tab,
  .approach-tab:last-child {
    flex: 0 0 250px;
    height: 72px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

  .approach-tab::after {
    display: none;
  }

  .approach-tab strong {
    font-size: 15px;
    line-height: 23px;
  }

  .approach-tabs__panel-content {
    grid-template-columns: 1fr;
  }

  .approach-tabs__panel-content img,
  .approach-tabs__panel-content p {
    width: 100%;
  }

  .approach-tabs__panel-content img {
    height: auto;
    aspect-ratio: 390 / 350;
  }

  .approach-tabs__panel-content p {
    min-height: 0;
  }

  .industries-section .section-heading h2 {
    white-space: normal;
  }

  .carousel-controls {
    align-self: flex-end;
  }

  .industry-rail {
    width: calc(100vw - 24px);
    gap: 18px;
    margin-top: 34px;
    padding-right: 24px;
  }

  .industry-card {
    flex-basis: min(385px, calc(100vw - 62px));
    width: min(385px, calc(100vw - 62px));
    height: auto;
    aspect-ratio: 385 / 260;
  }

  .industry-card > img {
    width: 100%;
    height: 100%;
  }

  .testimonials-section {
    overflow: hidden;
  }

  .testimonial-rail {
    gap: 18px;
    padding-right: 0;
  }

  .testimonial-card {
    flex-basis: calc(100vw - 62px);
    width: calc(100vw - 62px);
    height: auto;
    min-height: 500px;
  }

  .testimonial-card blockquote {
    width: 100%;
    height: auto;
    min-height: 245px;
    font-size: 17px;
    line-height: 32px;
  }

  .insights-section .arrow-link,
  .case-studies-section .arrow-link {
    align-self: flex-end;
  }

  .contact-section {
    padding: 0 0 64px;
  }

  .contact-section__top {
    height: 430px;
  }

  .contact-copy > header {
    min-height: 430px;
    padding-top: 64px;
  }

  .contact-copy h2 {
    margin-top: 12px;
    font-size: 39px;
    line-height: 48px;
    letter-spacing: -1px;
  }

  .contact-copy__details {
    margin-top: 48px;
  }

  .contact-copy__details > p {
    font-size: 15px;
    line-height: 26px;
  }

  .contact-direct {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
  }

  .why-us > div {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .next-steps {
    margin-top: 36px;
  }

  .next-steps ol {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 16px;
  }

  .next-steps li:not(:last-child)::after {
    display: none;
  }

  .next-steps strong {
    white-space: normal;
  }

  .contact-section__inner {
    gap: 48px;
  }

  .contact-card {
    min-height: 0;
  }

  .contact-card__header {
    height: 82px;
    padding-inline: 18px;
  }

  .contact-card__header h2 {
    font-size: 22px;
  }

  .contact-card__body {
    padding: 28px 24px 32px;
  }

  .contact-fields {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .form-field,
  .form-field--full {
    grid-column: 1;
  }

  .form-field input,
  .form-field select {
    height: 48px;
  }

  .form-field textarea {
    height: 110px;
  }

  .contact-card__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 20px;
  }

  .captcha-wrap {
    width: 100%;
    min-height: 78px;
    overflow-x: auto;
  }

  .captcha-wrap .g-recaptcha {
    transform: scale(0.88);
  }

  .contact-card__actions .button {
    width: 100%;
    order: 0;
    margin-bottom: 0;
  }

  .revamp-footer__main {
    padding: 64px 0;
  }

  .footer-link-columns,
  .footer-links__lower {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links__lower {
    margin-top: 48px;
  }

  .footer-hr {
    margin-top: 44px;
  }

  .footer-consultation {
    height: 360px;
  }

  .footer-addresses {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-addresses section:not(:last-of-type)::after {
    top: auto;
    right: auto;
    bottom: -17px;
    left: 0;
    width: 49px;
    height: 1px;
  }

  .footer-socials {
    padding-top: 6px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
