:root {
  --navy: #07111f;
  --cyan: #8be6f2;
  --white: #f8fbfd;
  --muted: rgba(248, 251, 253, 0.66);
  --line: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.shell {
  width: min(1480px, 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100vh);
  overflow: hidden;
  background: var(--navy);
}

.hero__image,
.hero__overlay,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(4, 12, 23, 0.88), transparent 26%),
    linear-gradient(90deg, rgba(4, 11, 21, 0.48) 0%, rgba(4, 11, 21, 0.92) 58%, rgba(4, 11, 21, 0.98) 100%);
}

.hero__grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to left, black, transparent 78%);
  opacity: 0.38;
}

.header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 90px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(139, 230, 242, 0.45);
  background: rgba(139, 230, 242, 0.1);
  color: var(--cyan);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand__mark--image {
  overflow: hidden;
  border: 0;
  background: transparent;
}

.brand__mark--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__words {
  line-height: 1;
}

.brand__words strong,
.brand__words small {
  display: block;
}

.brand__words strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.brand__words small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.nav a,
.language {
  transition: 180ms ease;
}

.nav a:hover {
  color: #fff;
}

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

.language {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.language:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  background: var(--cyan);
  color: #06111f;
  font-weight: 750;
  transition: 180ms ease;
}

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

.button--compact {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 14px;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #fff;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero__content {
  display: grid;
  min-height: calc(100vh - 90px);
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 72px;
  padding-top: 80px;
  padding-bottom: 160px;
}

.hero__copy {
  max-width: 950px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.eyebrow span {
  width: 48px;
  height: 1px;
  background: var(--cyan);
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(54px, 7.4vw, 116px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h1 em {
  display: block;
  margin-top: 14px;
  color: var(--cyan);
  font-style: normal;
}

.lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.experience {
  align-self: end;
  padding-right: 24px;
  border-right: 1px solid rgba(139, 230, 242, 0.5);
}

.experience strong,
.experience span {
  display: block;
}

.experience strong {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.experience span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.experience hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.experience p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.9;
}

.capability-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-block: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.capability-strip__inner {
  display: flex;
  overflow-x: auto;
}

.capability-strip a {
  display: flex;
  min-width: 190px;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition: 180ms ease;
}

.capability-strip a:first-child {
  padding-right: 0;
}

.capability-strip a:last-child {
  border-left: 0;
  padding-left: 0;
}

.capability-strip span {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.capability-strip small {
  color: rgba(139, 230, 242, 0.78);
  font-size: 10px;
  font-weight: 700;
}

.capability-strip b {
  font-weight: 400;
  opacity: 0;
  transform: translateX(-6px);
  transition: 180ms ease;
}

.capability-strip a:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.capability-strip a:hover b {
  opacity: 1;
  transform: translateX(0);
}

.clients {
  position: relative;
  overflow: hidden;
  padding-block: clamp(58px, 6.5vw, 92px);
  border-bottom: 1px solid #d2dcdf;
  background: #fff;
  color: #091522;
}

.clients::before,
.clients::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: auto;
  width: clamp(50px, 8vw, 130px);
  height: 150px;
  background: linear-gradient(90deg, transparent, #fff 76%);
  content: "";
  pointer-events: none;
}

.clients::after {
  right: auto;
  left: 0;
  background: linear-gradient(-90deg, transparent, #fff 76%);
}

.clients__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.clients__header h2 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.clients__pause {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid #bfd0d5;
  background: transparent;
  color: #31535e;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.clients__pause:hover,
.clients__pause:focus-visible,
.clients__pause[aria-pressed="true"] {
  border-color: #0c3543;
  background: #0c3543;
  color: #fff;
}

.clients__pause span {
  color: #2e8ea2;
  font-size: 14px;
}

.clients__pause[aria-pressed="true"] span {
  color: var(--cyan);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  direction: ltr;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.logo-marquee:focus-visible {
  outline: 3px solid #2c8295;
  outline-offset: 7px;
}

.logo-marquee.is-dragging {
  cursor: grabbing;
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  margin-right: auto;
  margin-left: 0;
  direction: ltr;
  will-change: transform;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  margin: 0;
  padding: 0 clamp(28px, 4vw, 68px) 0 0;
  list-style: none;
}

.logo-marquee__group li {
  display: grid;
  width: clamp(190px, 18vw, 280px);
  height: 118px;
  flex: 0 0 auto;
  place-items: center;
  padding: 20px 26px;
  border: 1px solid #dce4e6;
  background: #f7f9fa;
}

.logo-marquee__group img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: grayscale(0.25);
  opacity: 0.84;
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.logo-marquee__group li:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.035);
}

.section {
  padding-block: clamp(92px, 11vw, 168px);
}

.section--light {
  background: #f3f7f8;
  color: #091522;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 7vw, 120px);
  margin-bottom: clamp(54px, 7vw, 96px);
}

.section-index {
  margin: 0;
  color: #4b7480;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.projects__header h2,
.legacy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 82px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > div > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #52616a;
  font-size: 17px;
  line-height: 1.9;
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #d7e0e4;
}

.capability-card {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  overflow: hidden;
  background: #0a1825;
}

.capability-card--wide {
  min-height: 620px;
}

.capability-card img,
.capability-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.capability-card img {
  z-index: -2;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.capability-card__shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.12), rgba(5, 13, 24, 0.92));
}

.capability-card__content {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  padding: clamp(26px, 4vw, 48px);
  color: #fff;
}

.capability-card__content small {
  align-self: start;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

.capability-card__content h3 {
  margin: 0;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.capability-card__content p {
  max-width: 510px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.85;
}

.capability-card__content > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 21px;
  transition: 180ms ease;
}

.capability-card:hover img {
  transform: scale(1.045);
}

.capability-card:hover .capability-card__content > span {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #06111f;
}

.process {
  position: relative;
  overflow: hidden;
  background: #091624;
  color: #fff;
}

.process__mark {
  position: absolute;
  top: 50%;
  left: clamp(-110px, -6vw, -36px);
  width: clamp(280px, 42vw, 680px);
  opacity: 0.055;
  transform: translateY(-50%);
  pointer-events: none;
}

.process__mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(1.8);
}

.section-heading--dark {
  position: relative;
}

.section-heading--dark .section-index {
  color: rgba(139, 230, 242, 0.68);
}

.section-heading--dark > div > p {
  color: rgba(255, 255, 255, 0.55);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 280px;
  padding: 42px 30px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.process-steps li:last-child {
  border-left: 0;
}

.process-steps li::before {
  position: absolute;
  top: -5px;
  right: 30px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.process-steps span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

.process-steps h3 {
  margin: 38px 0 0;
  font-size: 21px;
  font-weight: 600;
}

.process-steps p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid #cfdadd;
}

.industry-grid article {
  min-height: 330px;
  padding: 34px 30px;
  border-left: 1px solid #cfdadd;
  transition: 180ms ease;
}

.industry-grid article:last-child {
  border-left: 0;
}

.industry-grid article:hover {
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(9, 21, 34, 0.08);
}

.industry-grid span {
  color: #4a7885;
  font-size: 11px;
  font-weight: 700;
}

.industry-grid h3 {
  margin: 82px 0 0;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.industry-grid p {
  margin: 16px 0 0;
  color: #5d6a72;
  font-size: 14px;
  line-height: 1.8;
}

.projects {
  background: #ddecf0;
  color: #091522;
}

.projects__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(54px, 7vw, 90px);
}

.projects__header .section-index {
  margin-bottom: 24px;
}

.projects__header > p {
  max-width: 420px;
  margin: 0;
  color: #4e6068;
  font-size: 15px;
  line-height: 1.9;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, minmax(300px, 380px));
  gap: 18px;
}

.project-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  background: #091522;
}

.project-card--tall {
  grid-row: 1 / 3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(3, 10, 18, 0.9));
  content: "";
}

.project-card figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
  color: #fff;
}

.project-card figcaption span,
.project-card figcaption strong {
  display: block;
}

.project-card figcaption span {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

.project-card figcaption strong {
  font-size: 23px;
  font-weight: 600;
}

.project-card:hover img {
  transform: scale(1.045);
}

.legacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  background: #f7f9f9;
  color: #091522;
}

.legacy__image {
  min-height: 680px;
}

.legacy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.legacy__content h2 {
  margin-top: 32px;
  font-size: clamp(42px, 4.7vw, 70px);
}

.legacy__content > p:not(.section-index) {
  max-width: 620px;
  margin: 34px 0 0;
  color: #526169;
  font-size: 16px;
  line-height: 1.95;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid #0e2732;
  font-weight: 700;
}

.legacy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px 0 0;
  border-top: 1px solid #ced9dc;
}

.legacy__stats div {
  padding-top: 24px;
}

.legacy__stats dt {
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.legacy__stats dd {
  margin: 7px 0 0;
  color: #607079;
  font-size: 12px;
}

.contact {
  position: relative;
  overflow: hidden;
  background: #07111f;
  color: #fff;
}

.contact__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
  padding-block: clamp(100px, 12vw, 180px);
}

.contact .section-index {
  margin-bottom: 30px;
  color: rgba(139, 230, 242, 0.75);
}

.contact h2 em {
  color: var(--cyan);
  font-style: normal;
}

.contact__details > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.9;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: #07111f;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding-block: 34px;
}

.footer__info {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer__inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.nav__dropdown {
  position: relative;
  padding-block: 28px;
}

.nav__dropdown > button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.nav__dropdown > button span {
  color: var(--cyan);
  font-size: 12px;
  transition: transform 180ms ease;
}

.nav__menu {
  position: absolute;
  top: calc(100% - 9px);
  right: -24px;
  display: grid;
  width: 255px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a1725;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 180ms ease;
}

[dir="ltr"] .nav__menu {
  right: auto;
  left: -24px;
}

.nav__menu a {
  min-height: 45px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.nav__menu a:last-child {
  border-bottom: 0;
}

.nav__menu a:hover,
.nav__menu a[aria-current="page"] {
  background: rgba(139, 230, 242, 0.08);
  color: var(--cyan);
}

.nav__dropdown:hover .nav__menu,
.nav__dropdown:focus-within .nav__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown:hover > button span,
.nav__dropdown:focus-within > button span {
  transform: rotate(180deg);
}

.nav > a[aria-current="page"] {
  color: var(--cyan);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 21px;
  left: 12px;
  display: block;
  width: 19px;
  height: 1px;
  background: #fff;
  transition: 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-6px);
}

.menu-toggle span:last-child {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

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

.mobile-menu {
  position: fixed;
  z-index: 75;
  top: 90px;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  align-content: start;
  overflow-y: auto;
  padding: 20px;
  background: rgba(7, 17, 31, 0.985);
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu a[aria-current="page"] {
  color: var(--cyan);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .floating-tool {
  opacity: 0;
  pointer-events: none;
}

.header--solid {
  position: sticky;
  z-index: 80;
  top: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background: #07111f;
}

.inner-page {
  background: #f3f7f8;
  color: #091522;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  background: #07111f;
  color: #fff;
}

.page-hero > img,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > img {
  z-index: -2;
  object-fit: cover;
  opacity: 0.58;
}

.page-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 10, 18, 0.08), rgba(3, 10, 18, 0.72)),
    linear-gradient(90deg, rgba(3, 10, 18, 0.4), rgba(3, 10, 18, 0.94) 70%);
}

[dir="ltr"] .page-hero__overlay {
  background:
    linear-gradient(180deg, rgba(3, 10, 18, 0.08), rgba(3, 10, 18, 0.72)),
    linear-gradient(-90deg, rgba(3, 10, 18, 0.4), rgba(3, 10, 18, 0.94) 70%);
}

.page-hero__inner {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: end;
  padding-bottom: clamp(64px, 8vw, 110px);
}

.page-hero__inner > p {
  margin: 0 0 24px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.page-hero__inner h1 {
  max-width: 1100px;
  font-size: clamp(64px, 8.4vw, 128px);
  overflow-wrap: anywhere;
}

.page-hero__inner > span {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2vw, 28px);
}

.page-hero--short,
.page-hero--short .page-hero__inner {
  min-height: 500px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 110px);
  padding-block: clamp(76px, 9vw, 124px);
  border-bottom: 1px solid #cfdbde;
}

.page-intro h2 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 610;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.page-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
  padding-block: clamp(76px, 9vw, 132px);
}

.page-nav {
  position: sticky;
  top: 124px;
  display: grid;
  border-top: 2px solid #0e2835;
}

.page-nav > p {
  margin: 0;
  padding: 21px 0;
  color: #53737c;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.page-nav a {
  display: flex;
  min-height: 49px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d2dddf;
  color: #4d5e65;
  font-size: 13px;
  font-weight: 620;
}

.page-nav a b {
  opacity: 0;
  transition: 180ms ease;
}

.page-nav a:hover,
.page-nav a[aria-current="page"] {
  color: #0c2d3a;
}

.page-nav a:hover b,
.page-nav a[aria-current="page"] b {
  color: #2b8296;
  opacity: 1;
}

.page-content {
  min-width: 0;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-block: 62px;
  border-top: 1px solid #cfdbde;
}

.content-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.content-section__index {
  margin: 7px 0 0;
  color: #458093;
  font-size: 11px;
  font-weight: 750;
}

.content-section h2 {
  margin: 0;
  font-size: clamp(31px, 3.7vw, 52px);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.content-section p {
  max-width: 850px;
  margin: 24px 0 0;
  color: #53636b;
  font-size: 16px;
  line-height: 1.95;
}

.content-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid #cfdbde;
  list-style: none;
}

.content-list li {
  position: relative;
  min-height: 64px;
  padding: 20px 24px 18px 30px;
  border-bottom: 1px solid #cfdbde;
  color: #1f3139;
  font-size: 14px;
  line-height: 1.6;
}

[dir="ltr"] .content-list li {
  padding-right: 30px;
  padding-left: 24px;
}

.content-list li:nth-child(odd) {
  border-left: 1px solid #cfdbde;
}

[dir="ltr"] .content-list li:nth-child(odd) {
  border-right: 1px solid #cfdbde;
  border-left: 0;
}

.content-list li::before {
  position: absolute;
  top: 27px;
  right: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4da2b4;
  content: "";
}

[dir="ltr"] .content-list li::before {
  right: auto;
  left: 7px;
}

.product-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.content-section__layout--with-media {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 48px);
}

.content-section__layout--with-media .product-media {
  margin-top: 24px;
}

.product-media--1 {
  grid-template-columns: minmax(0, 1fr);
}

.product-media--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-media figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #c8d6d9;
  background: #e9eff0;
}

.product-media img {
  display: block;
  width: 100%;
  height: clamp(230px, 26vw, 340px);
  object-fit: cover;
}

.product-media--3 img {
  height: clamp(210px, 19vw, 280px);
}

.product-media__figure--contain img {
  padding: clamp(14px, 2vw, 24px);
  background: linear-gradient(145deg, #f7fafb, #dce6e8);
  object-fit: contain;
}

.product-media figcaption {
  min-height: 54px;
  padding: 15px 17px;
  border-top: 1px solid #c8d6d9;
  color: #304850;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.floating-tool {
  position: fixed;
  z-index: 110;
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(3, 12, 20, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-tool:hover,
.floating-tool:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(3, 12, 20, 0.36);
}

.floating-tool:focus-visible,
.accessibility-panel button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.whatsapp-float {
  right: max(22px, env(safe-area-inset-right));
  width: 64px;
  height: 64px;
  background: transparent;
  color: #078c70;
}

.accessibility-toggle {
  left: max(22px, env(safe-area-inset-left));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: #0b3141;
  color: #fff;
}

.accessibility-toggle svg {
  width: 31px;
  height: 31px;
}

.floating-tool svg {
  width: 29px;
  height: 29px;
}

.whatsapp-float svg {
  width: 64px;
  height: 64px;
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel {
  position: fixed;
  z-index: 120;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: max(22px, env(safe-area-inset-left));
  width: min(390px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 32px));
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #081725;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.accessibility-panel__header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #081725;
}

.accessibility-panel__header h2 {
  margin: 0;
  font-size: 24px;
}

.accessibility-panel__header p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.accessibility-panel__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.accessibility-panel__content {
  display: grid;
  gap: 22px;
  padding: 24px;
}

.accessibility-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.accessibility-group legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 3px;
  color: #8be6f2;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.accessibility-option,
.accessibility-reset {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
}

.accessibility-option[aria-pressed="true"] {
  border-color: #8be6f2;
  background: rgba(139, 230, 242, 0.16);
  color: #fff;
}

.accessibility-language {
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
}

.accessibility-reset {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.26);
}

.a11y-text-large :where(p, li, dd, figcaption) {
  font-size: 18px !important;
}

.a11y-text-xlarge :where(p, li, dd, figcaption) {
  font-size: 21px !important;
}

.a11y-line-spacing :where(p, li, dd) {
  line-height: 2.15 !important;
}

.a11y-readable-font,
.a11y-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
}

.a11y-grayscale :where(header, main, footer) {
  filter: grayscale(1);
}

.a11y-high-contrast :where(header, main, footer) {
  filter: contrast(1.42);
}

.a11y-soft-contrast :where(header, main, footer) {
  filter: contrast(0.82) saturate(0.78);
}

.a11y-highlight-links main a,
.a11y-highlight-links footer a {
  outline: 3px solid #ffd60a !important;
  outline-offset: 3px;
  background: #111 !important;
  color: #ffd60a !important;
  text-decoration: underline !important;
}

.a11y-highlight-headings :where(h1, h2, h3, h4, h5, h6) {
  padding-block: 4px;
  outline: 3px solid #ffd60a;
  outline-offset: 4px;
}

.a11y-large-cursor,
.a11y-large-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M4 2v23l6-6 4 10 5-2-4-9h9z' fill='%23000' stroke='%23fff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 2, auto !important;
}

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

.a11y-reduce-motion .logo-marquee__track,
.a11y-reduce-motion .hero__image,
.a11y-reduce-motion .hero__copy > *,
.a11y-reduce-motion .experience,
.a11y-reduce-motion .page-hero__inner > * {
  animation: none !important;
}

.a11y-reduce-motion .reveal,
.a11y-reduce-motion .hero__copy > *,
.a11y-reduce-motion .experience,
.a11y-reduce-motion .page-hero__inner > * {
  opacity: 1 !important;
  transform: none !important;
}

body.accessibility-open {
  overflow: hidden;
}

.contact--compact .contact__inner {
  padding-block: clamp(86px, 9vw, 132px);
}

.contact--compact h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.faq-list {
  max-width: 1080px;
  padding-bottom: clamp(86px, 10vw, 150px);
}

.faq-list details {
  border-top: 1px solid #c9d7da;
}

.faq-list details:last-child {
  border-bottom: 1px solid #c9d7da;
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #122832;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 630;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b6c9ce;
  color: #377b8a;
  transition: 180ms ease;
}

.faq-list details[open] summary span {
  border-color: #0d3442;
  background: #0d3442;
  color: #fff;
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 820px;
  margin: 0;
  padding: 0 0 30px;
  color: #53646c;
  font-size: 15px;
  line-height: 1.9;
}

.contact-page {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(55px, 9vw, 140px);
  padding-block: clamp(80px, 10vw, 150px);
}

.contact-page__intro h2 {
  margin: 28px 0 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 620;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.contact-page__intro dl {
  margin: 58px 0 0;
  border-top: 1px solid #cbd8db;
}

.contact-page__intro dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #cbd8db;
}

.contact-page__intro dt {
  color: #5f747c;
  font-size: 12px;
}

.contact-page__intro dd {
  margin: 0;
  font-weight: 620;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  padding: clamp(30px, 5vw, 56px);
  background: #0a1927;
  color: #fff;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 650;
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  outline: 2px solid rgba(139, 230, 242, 0.18);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  align-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.6;
}

.form-status.is-success {
  color: #9ef1c0;
}

.form-status.is-error {
  color: #ffb5b5;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.motion-ready .hero__image {
  animation: hero-image-enter 1.5s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.motion-ready .hero__copy > *,
.motion-ready .experience,
.motion-ready .page-hero__inner > * {
  opacity: 0;
  animation: hero-content-enter 720ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

.motion-ready .hero__copy > :nth-child(1),
.motion-ready .page-hero__inner > :nth-child(1) {
  animation-delay: 100ms;
}

.motion-ready .hero__copy > :nth-child(2),
.motion-ready .page-hero__inner > :nth-child(2) {
  animation-delay: 210ms;
}

.motion-ready .hero__copy > :nth-child(3),
.motion-ready .page-hero__inner > :nth-child(3) {
  animation-delay: 320ms;
}

.motion-ready .hero__copy > :nth-child(4),
.motion-ready .experience {
  animation-delay: 430ms;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.72, 0.2, 1) var(--reveal-delay, 0ms),
    transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1) var(--reveal-delay, 0ms);
}

.motion-ready .reveal.reveal--from-side {
  transform: translateX(38px);
}

[dir="ltr"] .motion-ready .reveal.reveal--from-side {
  transform: translateX(-38px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.capability-card,
.project-card {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.capability-card:hover,
.capability-card:focus-within {
  z-index: 1;
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(5, 16, 28, 0.2);
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(5, 16, 28, 0.24);
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-enter {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 0.52;
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .experience {
    max-width: 360px;
  }

  .process-steps,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid article:nth-child(2) {
    border-left: 0;
  }

  .industry-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid #cfdadd;
  }

  .legacy {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: auto 1fr;
  }

  .footer__inner > p {
    grid-column: 1 / -1;
  }

  .page-body {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 50px;
  }

  .content-section__layout--with-media {
    grid-template-columns: 1fr;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header {
    min-height: 78px;
  }

  .mobile-menu {
    top: 78px;
  }

  .brand__words,
  .header .language {
    display: none;
  }

  .header__actions {
    gap: 8px;
  }

  .button--compact {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__content {
    min-height: 700px;
    padding-top: 70px;
    padding-bottom: 170px;
  }

  .hero__image {
    object-position: 28% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(4, 11, 21, 0.68), rgba(4, 11, 21, 0.96) 72%);
  }

  h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

  .lead {
    line-height: 1.75;
  }

  .hero__actions .button {
    width: 100%;
  }

  .experience {
    display: none;
  }

  .capability-strip__inner {
    padding-inline: 20px;
  }

  .clients__header {
    align-items: start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .clients__pause {
    min-height: 42px;
  }

  .clients::before,
  .clients::after {
    width: 34px;
    height: 104px;
  }

  .logo-marquee__group {
    gap: 14px;
    padding-right: 14px;
  }

  .logo-marquee__group li {
    width: 175px;
    height: 94px;
    padding: 16px 20px;
  }

  .logo-marquee__group img {
    max-height: 60px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > div > p {
    margin-top: 22px;
  }

  .capability-cards {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card--wide {
    min-height: 460px;
  }

  .capability-card__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .capability-card__content > span {
    display: none;
  }

  .process-steps,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .process-steps li,
  .process-steps li:last-child,
  .industry-grid article,
  .industry-grid article:nth-child(2),
  .industry-grid article:last-child {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-steps li {
    min-height: 250px;
  }

  .industry-grid article,
  .industry-grid article:nth-child(-n + 2) {
    min-height: 270px;
    border-bottom-color: #cfdadd;
  }

  .industry-grid h3 {
    margin-top: 75px;
  }

  .projects__header {
    display: block;
  }

  .projects__header > p {
    margin-top: 28px;
  }

  .project-grid {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-color: #43899a #d9e3e6;
    scrollbar-width: thin;
  }

  .project-card {
    min-height: 420px;
    flex: 0 0 min(84vw, 370px);
    scroll-snap-align: start;
  }

  .project-card--tall {
    grid-row: auto;
  }

  .legacy {
    grid-template-columns: 1fr;
  }

  .legacy__image {
    min-height: 460px;
  }

  .legacy__content {
    padding: 72px 20px;
  }

  .legacy__stats {
    gap: 16px;
    margin-top: 56px;
  }

  .legacy__stats dt {
    font-size: 25px;
  }

  .contact__actions .button {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__info {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero,
  .page-hero__inner,
  .page-hero--short,
  .page-hero--short .page-hero__inner {
    min-height: 430px;
  }

  .page-hero__inner {
    padding-bottom: 54px;
  }

  .page-hero__inner h1 {
    font-size: clamp(48px, 14.5vw, 74px);
    line-height: 0.98;
  }

  .page-hero__inner > span {
    max-width: 300px;
    font-size: 18px;
    line-height: 1.6;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-intro h2 {
    font-size: 34px;
  }

  .page-body {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .page-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-nav > p {
    grid-column: 1 / -1;
  }

  .page-nav a {
    min-height: 56px;
    padding-inline-end: 12px;
    border-left: 1px solid #d2dddf;
  }

  .page-nav a:nth-child(odd) {
    border-left: 0;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 50px;
  }

  .content-section h2 {
    font-size: 34px;
  }

  .content-section p {
    font-size: 15px;
    line-height: 1.85;
  }

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

  .content-list li,
  .content-list li:nth-child(odd) {
    border-right: 0;
    border-left: 0;
  }

  .product-media,
  .product-media--3 {
    grid-template-columns: 1fr;
  }

  .product-media img,
  .product-media--3 img {
    height: min(78vw, 360px);
  }

  .floating-tool {
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    width: 64px;
    height: 64px;
  }

  .whatsapp-float svg {
    width: 64px;
    height: 64px;
  }

  .accessibility-toggle {
    left: max(14px, env(safe-area-inset-left));
  }

  .accessibility-panel {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    max-height: calc(100dvh - 24px);
  }

  .accessibility-panel__header,
  .accessibility-panel__content {
    padding: 20px;
  }

  .contact-page__intro dl > div {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .contact-form__message {
    grid-column: auto;
  }

  .contact-form .button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 78px;
  }
}

@media (max-width: 340px) {
  .header.shell {
    padding-inline: 12px;
  }

  .header .button--compact {
    display: none;
  }

  .page-hero__inner h1 {
    font-size: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .logo-marquee__track,
  .hero__image,
  .hero__copy > *,
  .experience,
  .page-hero__inner > * {
    animation: none !important;
  }

  .reveal,
  .hero__copy > *,
  .experience,
  .page-hero__inner > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
