@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap");

/* Layout */
.container {
  width: calc(100% - 2 * var(--container-gutter, 15px));
  max-width: var(--container-width, none);
  margin-inline: auto;
}

.container--fluid {
  --container-width: 100%;
}
.container--md {
  --container-width: 75rem;
}
.container--sm {
  --container-width: 50rem;
}
/* Typography */
.title-l {
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  line-height: 1.15;
}
.title-xl,
.cms h2 {
  font-family: var(--ff-primary);
  font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}
.title-1xl {
  font-family: var(--ff-primary);
  font-size: clamp(3rem, 4.4444444444vw + 0.5rem, 4rem);
  line-height: 1;
}
.title-2xl {
  font-family: var(--ff-primary);
  font-size: clamp(3.33rem, 5.5555555556vw + 0.5rem, 5rem);
  line-height: 1;
}
.title-3xl {
  font-family: var(--ff-primary);
  font-size: clamp(3.5rem, 6.6666666667vw + 0.5rem, 6rem);
  line-height: 1;
}
@media (max-width: 89.98rem) {
  .xxl-title-l {
    font-family: var(--ff-primary);
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .xxl-title-xl {
    font-family: var(--ff-primary);
    font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
    line-height: 1.2;
  }
  .xxl-title-1xl {
    font-family: var(--ff-primary);
    font-size: clamp(3rem, 4.4444444444vw + 0.5rem, 4rem);
    line-height: 1;
  }
  .xxl-title-2xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.33rem, 5.5555555556vw + 0.5rem, 5rem);
    line-height: 1;
  }
  .xxl-title-3xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.5rem, 6.6666666667vw + 0.5rem, 6rem);
    line-height: 1;
  }
}
@media (max-width: 78.98rem) {
  .xl-title-l {
    font-family: var(--ff-primary);
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .xl-title-xl {
    font-family: var(--ff-primary);
    font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
    line-height: 1.2;
  }
  .xl-title-1xl {
    font-family: var(--ff-primary);
    font-size: clamp(3rem, 4.4444444444vw + 0.5rem, 4rem);
    line-height: 1;
  }
  .xl-title-2xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.33rem, 5.5555555556vw + 0.5rem, 5rem);
    line-height: 1;
  }
  .xl-title-3xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.5rem, 6.6666666667vw + 0.5rem, 6rem);
    line-height: 1;
  }
}
@media (max-width: 63.98rem) {
  .lg-title-l {
    font-family: var(--ff-primary);
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .lg-title-xl {
    font-family: var(--ff-primary);
    font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
    line-height: 1.2;
  }
  .lg-title-1xl {
    font-family: var(--ff-primary);
    font-size: clamp(3rem, 4.4444444444vw + 0.5rem, 4rem);
    line-height: 1;
  }
  .lg-title-2xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.33rem, 5.5555555556vw + 0.5rem, 5rem);
    line-height: 1;
  }
  .lg-title-3xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.5rem, 6.6666666667vw + 0.5rem, 6rem);
    line-height: 1;
  }
}
/* Sticky Stacking Services */
.services-stack {
  padding: clamp(6rem, 10vw, 10rem) var(--container-gutter) 0;
  background: var(--thm-bg);
  color: var(--thm-txt);
}
.services-stack > .container {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}
.services-stack .convictions-pre {
  color: var(--thm-txt-muted);
}
.services-stack .convictions-title {
  display: block;
  margin-top: 1rem;
}
.services-stack-list {
  width: min(86rem, 100%);
  margin: clamp(3rem, 7vw, 6rem) auto 0;
  padding-bottom: 72vh;
}
.service-stack-card {
  --stack-offset: 0rem;
  --stack-mobile-offset: 0rem;
  --stack-z: 1;
  display: grid;
  min-height: max(25rem, 62vh);
  position: sticky;
  top: calc(var(--header-h) + 1.25rem + var(--stack-offset));
  z-index: var(--stack-z);
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--thm-bdr);
  border-radius: 0.25rem;
  margin-bottom: 12vh;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  background: var(--thm-surface);
  box-shadow: 0 -1rem 3rem rgba(17, 24, 39, 0.08);
}
.service-stack-card:nth-child(2) {
  --stack-offset: 0.7rem;
  --stack-mobile-offset: 0.45rem;
  --stack-z: 2;
  background: #f9fafb;
}
.service-stack-card:nth-child(3) {
  --stack-offset: 1.4rem;
  --stack-mobile-offset: 0.9rem;
  --stack-z: 3;
  background: #fff9e5;
}
.service-stack-card:nth-child(4) {
  --stack-offset: 2.1rem;
  --stack-mobile-offset: 1.35rem;
  --stack-z: 4;
  background: #f3f4f6;
}
.service-stack-card:nth-child(5) {
  --stack-offset: 2.8rem;
  --stack-mobile-offset: 1.8rem;
  --stack-z: 5;
  background: #ffffff;
}
.service-stack-card:nth-child(6) {
  --stack-offset: 3.5rem;
  --stack-mobile-offset: 2.25rem;
  --stack-z: 6;
  background: #ffefb5;
}
.service-stack-card-heading {
  align-self: start;
}
.service-stack-card-number {
  display: block;
  margin-bottom: clamp(3rem, 8vh, 6rem);
  color: var(--thm-txt-muted);
  font-family: var(--ff-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}
.service-stack-card h3 {
  max-width: 13ch;
  font-family: var(--ff-primary);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 0.92;
}
.service-stack-card-content {
  max-width: 37rem;
  justify-self: end;
}
.service-stack-card-content > p:first-child {
  color: var(--thm-txt);
  font-family: var(--ff-secondary);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.4;
}

.service-stack-card a {
  color: inherit;
  text-decoration: none;
}

.service-stack-card a:focus-visible {
  outline: 2px solid var(--thm-acnt);
  outline-offset: 0.35rem;
}
.service-stack-card-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--thm-bdr);
  margin-top: clamp(2rem, 5vw, 4rem);
  color: var(--thm-txt-muted);
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 63.98rem) {
  .service-stack-card {
    min-height: 28rem;
    top: calc(var(--header-h) + 0.75rem + var(--stack-mobile-offset));
    padding: 2rem;
    margin-bottom: 8vh;
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 3rem;
  }
  .service-stack-card-number {
    margin-bottom: 2rem;
  }
  .service-stack-card h3 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .service-stack-card-content {
    justify-self: start;
  }
}
@media (max-width: 47.98rem) {
  .md-title-l {
    font-family: var(--ff-primary);
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .md-title-xl {
    font-family: var(--ff-primary);
    font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
    line-height: 1.2;
  }
  .md-title-1xl {
    font-family: var(--ff-primary);
    font-size: clamp(3rem, 4.4444444444vw + 0.5rem, 4rem);
    line-height: 1;
  }
  .md-title-2xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.33rem, 5.5555555556vw + 0.5rem, 5rem);
    line-height: 1;
  }
  .md-title-3xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.5rem, 6.6666666667vw + 0.5rem, 6rem);
    line-height: 1;
  }
}
@media (max-width: 35.98rem) {
  .sm-title-l {
    font-family: var(--ff-primary);
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .sm-title-xl {
    font-family: var(--ff-primary);
    font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
    line-height: 1.2;
  }
  .sm-title-1xl {
    font-family: var(--ff-primary);
    font-size: clamp(3rem, 4.4444444444vw + 0.5rem, 4rem);
    line-height: 1;
  }
  .sm-title-2xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.33rem, 5.5555555556vw + 0.5rem, 5rem);
    line-height: 1;
  }
  .sm-title-3xl {
    font-family: var(--ff-primary);
    font-size: clamp(3.5rem, 6.6666666667vw + 0.5rem, 6rem);
    line-height: 1;
  }
}
/* Variables */
:root {
  --viewport-w: 100vw;
  --header-h: 5.125rem;
  --ff-primary: "Franie", sans-serif;
  --ff-secondary: "Franie", sans-serif;
  --container-width: 100rem;
  --container-gutter: clamp(1rem, 2.2222222222vw + 0.5rem, 2rem);
  --color-praxeti-white: #f3f4f6;
  --color-first-spring: #fedb5b;
  --color-midnight-mirage: #111827;
  --color-mantis: #e5e7eb;
  --color-picture-book-green: #fedb5b;
  --color-nuit-blanche: #6b7280;
  --color-dark-khaki: var(--color-midnight-mirage);
  --color-golden-earth-1: var(--color-first-spring);
  --color-golden-earth-2: var(--color-nuit-blanche);
  --color-apricot-cream: var(--color-mantis);
  --color-white: var(--color-praxeti-white);
  --black: var(--color-dark-khaki);
  --white: var(--color-white);
  --orange: var(--color-golden-earth-1);
  --darkblue: var(--color-dark-khaki);
  --green: var(--color-picture-book-green);
  --steel: var(--color-nuit-blanche);
}
@media (max-width: 63.98rem) {
  :root {
    --header-h: 4rem;
  }
}
[data-theme="light"] {
  --thm-bg: #f3f4f6;
  --thm-surface: #ffffff;
  --thm-txt: #111827;
  --thm-txt-muted: #6b7280;
  --thm-bdr: #e5e7eb;
  --thm-acnt: #fedb5b;
  --thm-acnt-2: #111827;
  color-scheme: light;
}
[data-theme="dark"] {
  --thm-bg: #040404;
  --thm-surface: #111827;
  --thm-txt: #f9fafb;
  --thm-txt-muted: #9ca3af;
  --thm-bdr: #374151;
  --thm-acnt: #fedb5b;
  --thm-acnt-2: #ffffff;
  color-scheme: dark;
}
@keyframes autoscroll-horizontal {
  to {
    transform: translateX(calc(var(--direction, -1) * 100%));
  }
}
@keyframes scroll-button {
  0%,
  16%,
  100% {
    translate: 0 0;
  }
  8% {
    translate: 0 100%;
  }
  8.1% {
    translate: 0 -100%;
  }
}
@keyframes spin {
  to {
    rotate: 360deg;
  }
}
/* Fonts */
@font-face {
  font-family: "Franie";
  src: url("../fonts/franie-English%20font/Exports/Web/WOFF2/Franie-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../fonts/franie-English%20font/Exports/Web/WOFF2/Franie-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../fonts/franie-English%20font/Exports/Web/WOFF2/Franie-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Franie";
  src: url("../fonts/franie-English%20font/Exports/Web/WOFF2/Franie-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Kufi Arabic";
  src: url("../fonts/Noto_Kufi_Arabic/NotoKufiArabic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
html[dir="rtl"] {
  --ff-primary: "Noto Kufi Arabic", sans-serif;
  --ff-secondary: "Noto Kufi Arabic", sans-serif;
  direction: rtl;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.home-hero-title,
.title-xl,
.title-2xl,
.title-3xl,
h1,
h2 {
  font-family: var(--ff-primary) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.td-statement-title {
  font-family: "Playfair Display", serif !important;
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  color: #0a0a0a !important;
  text-transform: none !important;
}

html[dir="rtl"] .td-statement-title {
  font-family: "Noto Kufi Arabic", sans-serif !important;
}

.td-statement-label {
  margin-bottom: 1.5rem;
  color: #6b7280 !important;
  font-family: var(--ff-secondary) !important;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cargo-drift-title {
  font-family: var(--ff-secondary) !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.button,
.header-nav-link {
  font-family: var(--ff-secondary) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}
hr {
  border: 0;
}
button,
input,
select,
textarea {
  border: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  appearance: none;
  letter-spacing: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
a,
button,
select,
input,
textarea {
  color: inherit;
}
a,
button {
  cursor: pointer;
}
button {
  text-transform: inherit;
}
a {
  text-decoration: none;
}
fieldset {
  border: 0;
}
ol li,
ul li {
  list-style-type: none;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
mark {
  background-color: inherit;
  color: inherit;
}
[hidden] {
  display: none !important;
}
/* Base */
html,
body {
  max-width: var(--viewport-w);
  height: auto;
}
@media (hover: hover) {
  html,
  body {
    overscroll-behavior: none;
  }
}
html {
  font-size: clamp(1rem, 0.55vw + 0.5rem, 1.25rem);
}
body {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  background-color: var(--thm-bg);
  font-family: var(--ff-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--thm-txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.wrapper {
  z-index: 1;
  flex: 1 1 auto;
  overflow: clip;
}
.quick-access {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.quick-access:not(:focus-within) {
  opacity: 0;
}
.quick-access-link:not(:focus-visible) {
  width: 0;
  height: 0;
  position: absolute;
  overflow: clip;
}
/* Utilities */
.icon {
  display: inline-block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  min-height: 1em;
  fill: none;
}
.icon [fill] {
  fill: currentColor;
}
.icon [stroke] {
  stroke: currentColor;
}
.anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}
.word {
  display: inline-block;
}
.screen-reader-text,
.slider-a11y {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}
:is(.media-contain, .media-cover) {
  position: relative;
  overflow: hidden;
}
:is(.media-contain, .media-cover) :is(img, video, iframe) {
  display: block;
  position: absolute;
  inset: 0;
}
.media-contain :is(img, video) {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.media-contain iframe {
  margin: auto;
}
.media-cover :is(img, video, iframe) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-parallax {
  position: relative;
  overflow: hidden;
}
.media-parallax :is(img, video, iframe) {
  display: block;
  width: 100%;
  height: calc(100% + var(--parallax-size, 10%));
  position: absolute;
  inset: calc(var(--parallax-size, 10%) / -2) 0;
  object-fit: cover;
  translate: 0 calc(var(--parallax-offset, 0) * var(--parallax-size, 10%));
}
[data-theme]:not([data-theme="light"]) img[data-theme="light"],
[data-theme]:not([data-theme="dark"]) img[data-theme="dark"] {
  display: none;
}
.logos-item,
.header-contact,
.header-nav-toggle,
.header-logo {
  position: relative;
}
.logos-item::before,
.header-contact::before,
.header-nav-toggle::before,
.header-logo::before {
  position: absolute;
  inset: 0;
  border: 1px solid var(--thm-acnt-2);
  clip-path: polygon(
    0% 0%,
    0% 100%,
    0 100%,
    0 100%,
    0 100%,
    0 0,
    0 0,
    0 0,
    100% 0,
    100% 0,
    100% 0,
    100% 100%,
    100% 100%,
    100% 100%,
    0 100%,
    0 100%,
    0 100%,
    100% 100%,
    100% 0%
  );
  content: "";
  pointer-events: none;
  transition: clip-path 0.3s ease;
}
.logos-item:hover::before,
.header-contact:hover::before,
.header-nav-toggle:hover::before,
.header-logo:hover::before {
  clip-path: polygon(
    0% 0%,
    0% 100%,
    0.75rem 100%,
    0.75rem calc(100% - 0.75rem),
    0 calc(100% - 0.75rem),
    0 0.75rem,
    0.75rem 0.75rem,
    0.75rem 0,
    calc(100% - 0.75rem) 0,
    calc(100% - 0.75rem) 0.75rem,
    100% 0.75rem,
    100% calc(100% - 0.75rem),
    calc(100% - 0.75rem) calc(100% - 0.75rem),
    calc(100% - 0.75rem) 100%,
    0.75rem 100%,
    0.75rem calc(100% - 0.75rem),
    0.75rem 100%,
    100% 100%,
    100% 0%
  );
}
[data-reveal="shuffle"]:not([data-split="true"]) {
  color: rgba(0, 0, 0, 0);
}
[data-reveal="words"]:not([data-split="true"]) {
  color: rgba(0, 0, 0, 0);
}
[data-reveal="words"] .word {
  opacity: 0;
  transition: opacity 0.6s ease;
}
[data-reveal="words"] .word[data-animate="true"] {
  opacity: 1;
}
[data-reveal="opacity"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}
[data-reveal="opacity"][data-animate="true"] {
  opacity: 1;
}
.cms p:not(:first-child),
.cms ul:not(:first-child),
.cms ol:not(:first-child),
.cms h1:not(:first-child),
.cms h2:not(:first-child),
.cms h3:not(:first-child),
.cms h4:not(:first-child),
.cms h5:not(:first-child),
.cms h6:not(:first-child),
.cms table:not(:first-child) {
  margin-top: 1em;
}
.cms img {
  display: block;
  width: 100%;
  height: auto;
}
.cms ol:not([class]) li {
  list-style: decimal;
}
.cms a {
  text-decoration: underline;
}
.cms table th,
.cms table td {
  padding-block: 0.25rem;
}
.cms table th:not(:last-child),
.cms table td:not(:last-child) {
  padding-right: 1rem;
}
.cms ul {
  list-style: none;
  padding-top: 10px;
}
.cms ul li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
}
.cms ul li::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 8.485px;
  aspect-ratio: 1;
  background-color: pink;
  background-color: currentColor;
  transform: rotate(45deg);
}
.cms table {
  width: 100%;
  border-collapse: collapse;
}
.cms table th,
.cms table td {
  padding: 0.75rem;
  border: 1px solid rgb(from currentColor r g b/0.5);
  font-size: 0.875rem;
}
.dflex {
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.txt-c {
  text-align: center;
}
.m-a {
  margin: auto;
}
.z1 {
  z-index: 1;
}
.rel {
  position: relative;
}
.title-h1 {
  font-size: 3rem;
  line-height: 3.5rem;
}
@media (max-width: 47.98rem) {
  .title-h1 {
    font-size: 2.3rem;
    line-height: initial;
  }
}
.title-h2 {
  font-size: 2.25rem;
  line-height: 2.75rem;
}
@media (max-width: 47.98rem) {
  .title-h2 {
    font-size: 2rem;
    line-height: initial;
  }
}
@media (max-width: 35.98rem) {
  .title-h2 {
    font-size: 1.6rem;
    line-height: initial;
  }
}
.title-h3 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.25rem;
}
@media (max-width: 47.98rem) {
  .title-h3 {
    font-size: 1.5rem;
    line-height: initial;
  }
}
.disp-mob {
  display: none;
}
@media (max-width: 47.98rem) {
  .disp-mob {
    display: block;
  }
}
.disp-desk {
  display: block;
}
@media (max-width: 47.98rem) {
  .disp-desk {
    display: none;
  }
}
.infobulle {
  position: relative;
  display: inline-block;
}
@media (max-width: 63.98rem) {
  .infobulle {
    position: inherit;
  }
}
.infobulle svg {
  cursor: pointer;
}
.infobulle .infobulle_text {
  visibility: hidden;
  width: 600px;
  background-color: var(--color-nuit-blanche);
  color: var(--color-praxeti-white);
  font-size: 1.1rem;
  line-height: 135%;
  padding: 0.8rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  position: absolute;
  bottom: 100%;
  z-index: 1;
}
@media (max-width: 63.98rem) {
  .infobulle .infobulle_text {
    font-size: 1rem;
    left: 0%;
    right: 0;
    width: 100%;
    border-bottom-left-radius: 1.25rem;
  }
  .infobulle .infobulle_text:before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 306px;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: var(--color-nuit-blanche) rgba(0, 0, 0, 0)
      rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    display: inline-block;
  }
}
@media (max-width: 47.98rem) {
  .infobulle .infobulle_text {
    font-size: 0.8rem;
  }
  .infobulle .infobulle_text:before {
    content: "";
    left: 260px;
  }
}
@media (max-width: 35.98rem) {
  .infobulle .infobulle_text:before {
    content: "";
    left: 212px;
  }
}
@media (max-width: 300px) {
  .infobulle .infobulle_text:before {
    content: none;
  }
}
.infobulle svg:hover + .infobulle_text {
  visibility: visible;
}
/* Components */
.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1rem;
  padding: 0.5rem;
  color: var(--thm-acnt);
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  line-height: 1.15;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--thm-acnt), transparent 84%);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-icon,
.select-arrow,
.phone-code-arrow {
  display: flex;
  min-width: 1rem;
  aspect-ratio: 1;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  transition: inherit;
}
.button-icon:not(:has(.icon))::before,
.select-arrow:not(:has(.icon))::before,
.phone-code-arrow:not(:has(.icon))::before,
.button-icon:not(:has(.icon))::after,
.select-arrow:not(:has(.icon))::after,
.phone-code-arrow:not(:has(.icon))::after {
  content: "";
  position: absolute;
  border-radius: 1px;
  background: currentColor;
  content: "";
}
.button-icon:not(:has(.icon))::before,
.select-arrow:not(:has(.icon))::before,
.phone-code-arrow:not(:has(.icon))::before {
  width: 0.5rem;
  height: 1px;
  top: calc(50% - 0.5px);
  left: calc(50% - 0.25rem);
}
.button-icon:not(:has(.icon))::after,
.select-arrow:not(:has(.icon))::after,
.phone-code-arrow:not(:has(.icon))::after {
  width: 1px;
  height: 0.5rem;
  top: calc(50% - 0.25rem);
  left: calc(50% - 0.5px);
  transition: rotate 0.2s ease;
}
.button:is(:hover, [aria-expanded="true"]),
details[open] .button {
  color: var(--thm-acnt-2);
  background: color-mix(in srgb, var(--thm-acnt-2), transparent 84%);
}
.button:is(:hover, [aria-expanded="true"]) .button-icon,
.button:is(:hover, [aria-expanded="true"]) .select-arrow,
.button:is(:hover, [aria-expanded="true"]) .phone-code-arrow,
details[open] .button .button-icon,
details[open] .button .select-arrow,
details[open] .button .phone-code-arrow {
  color: currentColor;
}
.button[aria-expanded="true"] .button-icon,
.button[aria-expanded="true"] .select-arrow,
.button[aria-expanded="true"] .phone-code-arrow,
details[open] .button .button-icon,
details[open] .button .select-arrow,
details[open] .button .phone-code-arrow {
  color: currentColor;
}
.button[aria-expanded="true"] .button-icon:not(:has(svg))::after,
.button[aria-expanded="true"] .select-arrow:not(:has(svg))::after,
.button[aria-expanded="true"] .phone-code-arrow:not(:has(svg))::after,
details[open] .button .button-icon:not(:has(svg))::after,
details[open] .button .select-arrow:not(:has(svg))::after,
details[open] .button .phone-code-arrow:not(:has(svg))::after {
  rotate: 90deg;
}
.secondary-button {
  display: inline-flex;
  padding: 0.625rem 1rem;
  border: 1px solid var(--thm-bdr);
  border-radius: 0.125rem;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--thm-txt), transparent 95%);
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
}
.secondary-button-icon {
  font-size: 1rem;
  color: var(--thm-acnt-2);
}
.contact-card {
  width: 100%;
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--thm-bdr);
  border-radius: 0.25rem;
}
.contact-card-copy {
  display: flex;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-left: auto;
  align-items: center;
  gap: 0.625rem;
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  transition: color 0.4s ease;
}
.contact-card-copy::before {
  content: "[";
}
.contact-card-copy::after {
  content: "]";
}
.contact-card-copy-icon {
  color: var(--thm-acnt-2);
}
.contact-card-copy:hover {
  color: var(--thm-acnt-2);
}
.contact-card-title {
  width: fit-content;
  margin-top: 2.5rem;
  background-image: linear-gradient(
    90deg,
    var(--thm-acnt-2),
    var(--thm-acnt-2)
  );
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: bottom left;
  transition:
    color 0.4s ease,
    background-size 0.4s ease;
}
.contact-card-footer {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  align-items: center;
}
.contact-card-arrow {
  display: flex;
  width: 1em;
  justify-content: end;
  color: var(--thm-acnt-2);
  overflow: hidden;
}
.contact-card-arrow .icon {
  transition: translate 0.4s ease;
}
.contact-card-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  text-indent: 100vw;
  white-space: nowrap;
  overflow: hidden;
}
.contact-card:has(.contact-card-link:hover) .contact-card-title {
  background-size: 100% 1px;
  color: var(--thm-acnt-2);
}
.contact-card:has(.contact-card-link:hover) .contact-card-arrow .icon {
  translate: 100% 0;
}
.post-card {
  position: relative;
}
.post-card-image {
  aspect-ratio: 1/0.625;
  position: relative;
  margin-bottom: 1.5rem;
  background: color-mix(in srgb, var(--thm-txt), transparent 96%);
}
.post-card-image-inner {
  position: absolute;
  inset: 0;
  scale: 0.85;
  clip-path: polygon(0% 6%, 100% 6%, 100% 94%, 0% 94%);
  transition:
    scale 0.35s ease,
    clip-path 0.35s ease;
}
.post-card-category,
.post-card-title {
  transition: color 0.35s ease;
}
.post-card-category {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--thm-acnt);
}
.post-card-title {
  font-size: 1.25rem;
  font-weight: 500;
}
.post-card-link {
  position: absolute;
  inset: 0;
  text-indent: 100vw;
  white-space: nowrap;
  overflow: hidden;
}
.post-card:hover .post-card-image-inner {
  scale: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.post-card:hover .post-card-category,
.post-card:hover .post-card-title {
  color: var(--thm-acnt-2);
}
@media (max-width: 78.98rem) {
  .post-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .post-card-text {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 47.98rem) {
  .post-card-link-content {
    position: static;
  }
}
.member-card {
  display: flex;
  padding-block: 1rem;
  align-items: start;
  gap: 1.25rem;
}
.member-card-image {
  min-width: 8.75rem;
  aspect-ratio: 1;
}
.member-card-name {
  margin-bottom: 0.5rem;
}
.member-card-function {
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  line-height: 1.15;
  color: var(--thm-acnt);
}
.figure-card-title {
  display: block;
  text-align: right;
  color: var(--thm-acnt-2);
}
.highlight-card {
  display: flex;
  position: relative;
  isolation: isolate;
  padding-block: 1.5rem;
  border-top: 1px solid var(--thm-bdr);
  flex-direction: column;
  background: var(--thm-bg);
  color: var(--thm-txt);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
.highlight-card-image {
  width: 100%;
  height: calc(100% + 1px);
  position: absolute;
  inset: -1px 0 0 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.highlight-card-title,
.highlight-card-subtitle,
.highlight-card-info {
  width: calc(100% - 3rem);
}
.highlight-card-title {
  text-transform: uppercase;
  color: var(--thm-acnt);
  transition:
    translate 0.3s ease,
    color 0.3s ease;
}
.highlight-card-subtitle {
  font-size: 1rem;
  transition:
    translate 0.3s ease,
    color 0.3s ease;
}
.highlight-card-subtitle:not(:first-child) {
  margin-top: 1rem;
}
.highlight-card-info {
  margin-bottom: auto;
  transition:
    translate 0.3s ease,
    opacity 0.3s ease;
}
.highlight-card-info[inert] {
  opacity: 0;
}
.highlight-card-info:not(:first-child) {
  margin-top: 1.5rem;
}
.highlight-card-info-item:not(:last-child) {
  margin-bottom: 1rem;
}
.highlight-card-toggle {
  width: 100%;
  position: sticky;
  bottom: 1.5rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  order: 1;
  will-change: width;
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .highlight-card[data-animate="true"] .highlight-card-image {
    opacity: 0.15;
  }
  .highlight-card:hover .highlight-card-image {
    opacity: 1;
  }
  .highlight-card:hover .highlight-card-title,
  .highlight-card:hover .highlight-card-subtitle,
  .highlight-card:hover .highlight-card-info {
    translate: 1.5rem;
  }
  .highlight-card:hover .highlight-card-title {
    color: var(--thm-acnt-2);
  }
  .highlight-card:hover .highlight-card-toggle {
    width: calc(100% - 3rem);
  }
}
@media (hover: none) {
  .highlight-card[data-animate="true"] .highlight-card-image {
    opacity: 1;
  }
  .highlight-card[data-animate="true"] .highlight-card-title {
    color: var(--thm-acnt-2);
  }
}
.highlight-card:is([data-animate="true"], :has([aria-expanded="true"]))
  .highlight-card-title,
.highlight-card:is([data-animate="true"], :has([aria-expanded="true"]))
  .highlight-card-subtitle,
.highlight-card:is([data-animate="true"], :has([aria-expanded="true"]))
  .highlight-card-info {
  translate: 1.5rem;
}
.highlight-card:is([data-animate="true"], :has([aria-expanded="true"]))
  .highlight-card-toggle {
  width: calc(100% - 3rem);
}
.highlight-card:has([aria-expanded="true"]) .highlight-card-image {
  opacity: 0;
}
.highlight-card:has([aria-expanded="true"]) .highlight-card-title {
  color: var(--thm-acnt-2);
}
.redirection-card {
  display: flex;
  aspect-ratio: 1/0.65;
  position: relative;
  isolation: isolate;
  padding-block: 1.5rem;
  border-top: 1px solid var(--thm-bdr);
  flex-direction: column;
}
.redirection-card-image {
  width: 100%;
  height: calc(100% + 1px);
  position: absolute;
  inset: -1px 0 0 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.redirection-card-title {
  width: calc(100% - 3rem);
  margin-bottom: 2.5rem;
  transition:
    translate 0.3s ease,
    color 0.3s ease;
}
.redirection-card-link {
  width: 100%;
  position: sticky;
  bottom: 1.5rem;
  margin-top: auto;
  margin-inline: auto;
  will-change: width;
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .redirection-card[data-animate="true"] .redirection-card-image {
    opacity: 0.15;
  }
  .redirection-card:hover .redirection-card-image {
    opacity: 1;
  }
  .redirection-card:hover .redirection-card-title {
    color: var(--thm-acnt-2);
    translate: 1.5rem;
  }
  .redirection-card:hover .redirection-card-link {
    width: calc(100% - 3rem);
  }
}
@media (hover: none) {
  .redirection-card[data-animate="true"] .redirection-card-image {
    opacity: 1;
  }
  .redirection-card[data-animate="true"] .redirection-card-title {
    color: var(--thm-acnt-2);
  }
}
.redirection-card:is([data-animate="true"]) .redirection-card-title {
  translate: 1.5rem;
}
.redirection-card:is([data-animate="true"]) .redirection-card-link {
  width: calc(100% - 3rem);
}
@media (prefers-reduced-motion: no-preference) {
  .skeleton {
    animation: flash 1s alternate infinite;
  }
}
.skeleton-text::before,
.skeleton-title::before {
  display: block;
  width: 100%;
  height: 1em;
  background: currentColor;
  content: "";
  opacity: 0.5;
}
.skeleton-title {
  width: min(var(--length, 100%), 90%);
  padding-block: 0.1em;
}
.skeleton-text {
  width: 100%;
  padding-block: 0.25em;
}
.skeleton-text + .skeleton-text:last-child {
  width: 75%;
}
.post-card.skeleton .post-card-category {
  width: 15ch;
}
.post-card.skeleton .post-card-title {
  width: 100%;
}
.lightbox {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: var(--container-gutter);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  flex-direction: column;
  color: var(--white);
  transition: opacity 0.3s ease;
}
.lightbox[inert] {
  opacity: 0;
}
.lightbox-close {
  padding: 1rem;
  margin-left: auto;
}
.lightbox .slider-wrapper {
  flex: 1 1 auto;
  margin-block: 1rem;
}
.lightbox .slider-arrows {
  margin-left: auto;
}
.pagination {
  margin-top: 3rem;
}
.pagination,
.pagination-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pagination-arrow {
  display: flex;
  min-width: 1.5rem;
  aspect-ratio: 1;
  border: 1px solid var(--thm-acnt);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: var(--thm-acnt);
}
.pagination-arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.pagination-link {
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}
.pagination-link[aria-current="true"] {
  color: var(--thm-acnt);
}
.input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--thm-bdr);
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.input[aria-invalid="true"] {
  border-color: var(--orange);
}
.input[type="file"]::file-selector-button {
  padding: 0.75rem 1rem;
  margin-right: 0.75rem;
  background: var(--thm-bdr);
  cursor: pointer;
}
textarea.input {
  height: calc(7.5em + 1.5rem + 2px);
  min-height: calc(1.5em + 1.5rem + 2px);
  resize: vertical;
}
.select,
.phone-code {
  position: relative;
}
.select-inner,
.phone-code-inner {
  display: block;
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: 1px solid var(--thm-bdr);
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.select-inner[aria-invalid="true"],
[aria-invalid="true"].phone-code-inner {
  border-color: var(--orange);
}
.select-inner option,
.phone-code-inner option {
  background: var(--thm-bg);
  color: var(--thm-txt);
}
.select-arrow,
.phone-code-arrow {
  position: absolute;
  top: calc(50% - 0.5rem);
  right: 1rem;
  color: var(--thm-acnt);
  pointer-events: none;
}
.radio,
.checkbox {
  display: flex;
  align-items: start;
}
.radio-input,
.checkbox-input {
  display: flex;
  min-width: 1.125rem;
  aspect-ratio: 1/1;
  border: 1px solid var(--thm-acnt);
  justify-content: center;
  align-items: center;
  background: color-mix(in srgb, var(--thm-acnt), transparent 84%);
  color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.radio-input[aria-invalid="true"],
.checkbox-input[aria-invalid="true"] {
  border-color: var(--orange);
  background: color-mix(in srgb, var(--orange), transparent 84%);
}
.radio-input::before,
.checkbox-input::before {
  display: block;
  width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 100%;
  background: currentColor;
  content: "";
}
.radio-input:checked,
.checkbox-input:checked {
  border-color: var(--thm-acnt-2);
  background: var(--thm-acnt-2);
  color: var(--white);
}
.radio-label,
.checkbox-label {
  padding-left: 1rem;
}
.radio-label a,
.checkbox-label a {
  text-decoration: underline;
}
.radio-input {
  border-radius: 100%;
}
.phone {
  display: flex;
}
.phone-code {
  display: flex;
  width: calc(15ch + 4rem);
  margin-right: -1px;
}
.form {
  --gap-x: min(var(--container-gutter), 2rem);
  --gap-y: 2rem;
}
.form-wrapper {
  display: grid;
  height: var(--form-h, auto);
  align-items: start;
}
.form-page {
  grid-area: 1/1;
}
@media (prefers-reduced-motion: no-preference) {
  .form-page {
    transition:
      opacity 0.3s ease,
      translate 0.3s ease;
  }
}
.form-page[inert] {
  opacity: 0;
  translate: calc(-1 * var(--spc-x));
}
.form-page:not([inert]) + .form-page[inert] {
  translate: var(--spc-x);
}
.form-status {
  padding: 1.1875rem 1rem;
  border: 1px solid;
}
.form-status:not(:last-child) {
  margin-bottom: 2rem;
}
.form-status[data-status="error"] {
  color: var(--orange);
}
.form-title {
  margin-bottom: 1rem;
}
.form-subtitle {
  margin-bottom: 1rem;
}
.form-mandatory {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}
.form-group {
  display: grid;
  gap: var(--gap-y) var(--gap-x);
}
.form-item:has(.form-error) :is(.form-label, .form-required) {
  color: var(--orange);
}
.form-label {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}
.form-required {
  color: var(--thm-acnt);
}
.form-description {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.checkbox + .form-description {
  margin-top: 1.5rem;
}
.form-description a {
  text-decoration: underline;
}
.form-error {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange);
}
.form-choices {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.form-footer {
  display: flex;
  margin-top: 2.5rem;
  align-items: center;
  gap: 1rem;
}
.form-footer[inert] {
  display: none;
}
.form-prev,
.form-next,
.form-submit {
  flex: 1;
}
.form-prev .button,
.form-next .button,
.form-submit .button {
  width: 100%;
}
.form-next,
.form-submit {
  position: relative;
  background: color-mix(in srgb, var(--thm-acnt), transparent 84%);
  color: var(--thm-acnt);
}
[data-loading="true"] .form-next > *,
[data-loading="true"] .form-submit > * {
  visibility: hidden;
}
[data-loading="true"] .form-next::after,
[data-loading="true"] .form-submit::after {
  display: block;
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  inset: 0;
  border: 2px solid color-mix(in srgb, currentColor, transparent 75%);
  border-radius: 100%;
  border-top-color: currentColor;
  margin: auto;
  content: "";
  animation: spin 1s linear infinite;
}
.form:has(.form-page):not(:has(.form-page:not([inert]) [required]))
  .form-mandatory {
  display: none;
}
@media (min-width: 64rem) {
  .form-group {
    grid-template-columns: repeat(12, 1fr);
  }
  .form-item,
  .form-item--12 {
    grid-column: span 12;
  }
  .form-item--9 {
    grid-column: span 9;
  }
  .form-item--6 {
    grid-column: span 6;
  }
  .form-item--4 {
    grid-column: span 4;
  }
  .form-item--3 {
    grid-column: span 3;
  }
}
@media (max-width: 63.98rem) {
  .form-group {
    grid-template-columns: 100%;
  }
}
.pre-title {
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 1rem;
  line-height: 1.15;
  color: var(--thm-acnt-2);
}
@media (max-width: 47.98rem) {
  .pre-title {
    font-size: 0.875rem;
  }
}
.c-quote {
  position: relative;
  isolation: isolate;
  overflow: clip;
  --spacing: 4.5rem;
}
.c-quote-icon {
  display: flex;
  width: 2.75rem;
  min-width: 2.75rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--thm-bdr);
  border-radius: 0.125rem;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: var(--thm-txt);
}
.c-quote-text {
  padding-left: calc(var(--spacing) + 2.75rem);
}
.c-quote-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing);
  margin-top: 3rem;
}
.c-quote-author-image {
  width: 3rem;
  min-width: 3rem;
  aspect-ratio: 1;
  border-radius: 100vmax;
}
.c-quote-author-name {
  color: var(--thm-acnt);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.c-quote-author-position {
  color: color-mix(in srgb, var(--thm-txt), transparent 64%);
}
@media (max-width: 47.98rem) {
  .c-quote {
    --spacing: 1.5rem;
  }
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.breadcrumbs-item[aria-current="page"] {
  color: var(--thm-txt);
}
.breadcrumbs-link {
  transition: color 0.3s ease;
}
.breadcrumbs-link:hover {
  color: var(--thm-txt);
}
.breadcrumbs-arrow {
  color: var(--thm-acnt-2);
}
.slider {
  --slide-w: calc(100% / var(--per-view, 1) - var(--gap, 1.5rem));
  overflow-x: clip;
}
.slider-wrapper {
  display: flex;
  width: 100%;
}
.slider-track {
  display: flex;
  width: calc(100% + var(--gap, 1.5rem));
  margin-right: calc(-1 * var(--gap, 1.5rem));
  row-gap: 1rem;
  touch-action: pan-y;
  translate: calc(var(--track-x, 0%) + var(--track-drag, 0%));
}
.slider-item {
  display: flex;
  min-width: min(var(--slide-w, 100%), 100% - var(--gap, 1.5rem));
  margin-right: var(--gap, 1.5rem);
  flex: 0;
}
.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.slider-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: min(var(--container-gutter) / 2, 1rem);
}
.slider-pagination-button {
  display: flex;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(0, 0, 0, 0);
}
.slider-pagination-button[aria-current="true"] {
  border-color: var(--thm-acnt-2);
}
.slider-arrows {
  display: flex;
  gap: 1px;
}
.slider-arrow {
  padding: 1rem;
}
.slider-arrow[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .slider-track {
    transition: translate 1ms linear;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .slider-track {
    transition: var(--transitions, translate 0.35s ease);
  }
}
/* Header */
.header {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  padding-bottom: 1px;
  gap: 1px;
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  line-height: 1;
  color: var(--thm-txt);
  transition: color 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Blog Page Premium Layout */
.blog-page {
  --blog-bg: #f5f6f4;
  --blog-ink: #07171d;
  --blog-muted: rgba(7, 23, 29, 0.58);
  --blog-line: rgba(7, 23, 29, 0.1);
  --blog-orange: #ff4b2c;
  --blog-blue: #0b5fc0;
  --blog-serif: "Montserrat", var(--ff-primary, Arial), sans-serif;
  --blog-sans: "Inter", var(--ff-secondary, Arial), sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 75, 44, 0.06), transparent 28rem),
    var(--blog-bg);
  color: var(--blog-ink);
  font-family: var(--blog-sans);
}

.blog-page .header {
  position: fixed;
}

.blog-page .service-detail-footer {
  background: #07171d;
  color: #f7f8f8;
}

.blog-hero {
  min-height: min(46rem, 86svh);
  border-radius: 0 0 clamp(1.2rem, 3vw, 2.4rem) clamp(1.2rem, 3vw, 2.4rem);
  overflow: hidden;
}

.blog-hero .home-hero-video::after {
  background:
    linear-gradient(90deg, rgba(4, 18, 24, 0.82) 0%, rgba(4, 18, 24, 0.38) 48%, rgba(4, 18, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 18, 24, 0.18), rgba(4, 18, 24, 0.72));
}

.blog-hero .home-hero-video video {
  filter: saturate(0.72) contrast(1.08) brightness(0.66);
  transform: scale(1.03);
}

.blog-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 82rem);
  min-height: min(46rem, 86svh);
  margin-inline: auto;
  padding: clamp(8rem, 13vw, 12rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 7vw, 5rem);
  align-content: end;
  gap: clamp(1.1rem, 2vw, 1.7rem);
}

.blog-hero__content h1,
.blog-featured__copy h2,
.blog-reading__article h2,
.blog-library__intro h2,
.blog-library-card h3 {
  font-family: var(--blog-serif) !important;
  text-transform: none !important;
  letter-spacing: -0.055em !important;
}

.blog-hero__content h1 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 8vw, 8rem) !important;
  font-weight: 800 !important;
  line-height: 0.92 !important;
}

.blog-hero__content p {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font: 500 clamp(1.05rem, 1.35vw, 1.32rem)/1.55 var(--blog-sans);
}

.blog-hero__content a,
.blog-featured__copy a,
.blog-library-card a {
  width: max-content;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: var(--blog-orange);
  color: #fff;
  font: 800 0.9rem/1 var(--blog-sans);
  text-decoration: none;
  transition:
    transform 0.32s ease,
    background 0.32s ease;
}

.blog-hero__content a:hover,
.blog-featured__copy a:hover,
.blog-library-card a:hover {
  background: #07171d;
  transform: translateY(-0.2rem);
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.7fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  width: min(100% - 2rem, 86rem);
  margin: clamp(1.2rem, 4vw, 3.5rem) auto 0;
}

.blog-featured__media,
.blog-featured__copy,
.blog-reading,
.blog-library-card {
  border: 1px solid var(--blog-line);
  border-radius: clamp(1.1rem, 2vw, 1.6rem);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1.8rem 5rem rgba(7, 23, 29, 0.07);
}

.blog-featured__media {
  min-height: clamp(24rem, 42vw, 42rem);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 23, 29, 0.14), rgba(255, 255, 255, 0)),
    #e9eceb;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.blog-featured__copy {
  display: grid;
  min-height: clamp(24rem, 42vw, 42rem);
  padding: clamp(1.5rem, 4vw, 4rem);
  align-content: end;
  gap: 1.25rem;
}

.blog-kicker {
  margin: 0;
  color: var(--blog-orange);
  font: 800 0.78rem/1.2 var(--blog-sans);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-featured__copy h2,
.blog-reading__article h2,
.blog-library__intro h2 {
  margin: 0;
  color: var(--blog-ink);
  font-weight: 700 !important;
}

.blog-featured__copy h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 4.8vw, 5.7rem) !important;
  line-height: 0.96 !important;
}

.blog-featured__copy p {
  max-width: 35rem;
  margin: 0;
  color: var(--blog-muted);
  font: 500 clamp(1rem, 1.25vw, 1.2rem)/1.62 var(--blog-sans);
}

.blog-reading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.22fr) minmax(0, 0.78fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  width: min(100% - 2rem, 86rem);
  margin: clamp(3.25rem, 8vw, 8rem) auto 0;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.blog-reading__rail {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: grid;
  gap: 0.65rem;
  padding-top: 0.25rem;
}

.blog-reading__rail span {
  color: var(--blog-muted);
  font: 800 0.72rem/1 var(--blog-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-reading__rail a {
  color: var(--blog-ink);
  font: 800 0.92rem/1.25 var(--blog-sans);
  text-decoration: none;
}

.blog-reading__rail a:hover {
  color: var(--blog-orange);
}

.blog-reading__rail strong {
  margin-bottom: 1rem;
  color: var(--blog-ink);
  font: 700 1rem/1.2 var(--blog-sans);
}

.blog-reading__article {
  max-width: 68rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--blog-line);
  scroll-margin-top: 7rem;
}

.blog-article-list {
  display: grid;
}

.blog-reading__article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.blog-reading__article h2 {
  max-width: 14ch;
  margin: 0.8rem 0 1.4rem;
  font-size: clamp(2.65rem, 5vw, 5.9rem) !important;
  line-height: 0.96 !important;
}

.blog-lede {
  color: rgba(7, 23, 29, 0.88) !important;
  font-size: clamp(1.35rem, 2vw, 2.05rem) !important;
  line-height: 1.32 !important;
}

.blog-reading__article p {
  max-width: 64ch;
  margin: 0 0 1.1rem;
  color: rgba(7, 23, 29, 0.66);
  font: 500 clamp(1rem, 1.12vw, 1.16rem)/1.75 var(--blog-sans);
}

.blog-section-note {
  display: grid;
  grid-template-columns: minmax(10rem, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.2rem, 2.5vw, 2rem) 0;
  border-top: 1px solid var(--blog-line);
}

.blog-section-note h3 {
  margin: 0;
  color: var(--blog-ink);
  font: 800 clamp(1.2rem, 1.6vw, 1.65rem)/1.08 var(--blog-sans);
  letter-spacing: 0;
}

.blog-section-note p {
  margin: 0;
}

.blog-library {
  width: min(100% - 2rem, 86rem);
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}

.blog-library__intro {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  padding: clamp(1.5rem, 3vw, 3rem) 0;
}

.blog-library__intro h2 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 5vw, 5.8rem) !important;
  line-height: 0.96 !important;
}

.blog-library__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.blog-library-card {
  display: grid;
  min-height: clamp(19rem, 24vw, 28rem);
  padding: clamp(1.35rem, 2vw, 2rem);
  align-content: space-between;
  gap: 2rem;
  color: var(--blog-ink);
  text-decoration: none;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.blog-library-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 2.2rem 5.5rem rgba(7, 23, 29, 0.12);
}

.blog-library-card span {
  color: var(--blog-orange);
  font: 800 0.76rem/1.2 var(--blog-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-library-card h3 {
  margin: 0;
  color: var(--blog-ink);
  font-size: clamp(1.35rem, 1.7vw, 2rem) !important;
  line-height: 1.04 !important;
}

.blog-library-card p {
  margin: 0;
  color: var(--blog-muted);
  font: 500 0.98rem/1.55 var(--blog-sans);
}

.blog-library-card--dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 75, 44, 0.28), transparent 32%),
    #07171d;
  color: #fff;
}

.blog-library-card--dark h3,
.blog-library-card--dark p {
  color: #fff;
}

.blog-library-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 74rem) {
  .blog-featured,
  .blog-reading,
  .blog-library__grid {
    grid-template-columns: 1fr;
  }

  .blog-reading__rail {
    position: relative;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
  }

  .blog-reading__rail strong {
    margin: 0 1rem 0 0;
  }

  .blog-section-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 47.98rem) {
  .blog-page .blog-hero,
  .blog-hero__content {
    min-height: 72svh;
  }

  .blog-hero__content {
    padding: 7rem 1rem 2rem;
  }

  .blog-hero__content h1 {
    max-width: 10ch;
    font-size: clamp(2.85rem, 14vw, 4.45rem) !important;
    line-height: 0.96 !important;
  }

  .blog-hero__content p {
    font-size: 1rem;
  }

  .blog-featured,
  .blog-reading,
  .blog-library {
    width: min(100% - 1rem, 86rem);
  }

  .blog-featured__media {
    min-height: 18rem;
  }

  .blog-featured__copy {
    min-height: auto;
    padding: 1.25rem;
  }

  .blog-featured__copy h2,
  .blog-reading__article h2,
  .blog-library__intro h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3.35rem) !important;
    line-height: 1 !important;
  }

  .blog-reading {
    padding: 1rem;
  }

  .blog-lede {
    font-size: clamp(1.15rem, 6vw, 1.45rem) !important;
  }

  .blog-library__intro {
    display: grid;
    gap: 0.75rem;
  }

  .blog-library-card {
    min-height: auto;
  }
}


/* Blog RTL support — shared structure, Arabic typography only */
html[dir="rtl"] .blog-page {
  --blog-serif: "Noto Kufi Arabic", sans-serif;
  --blog-sans: "Noto Kufi Arabic", sans-serif;
  text-align: start;
}

html[dir="rtl"] .blog-hero .home-hero-video::after {
  background:
    linear-gradient(270deg, rgba(4, 18, 24, 0.82) 0%, rgba(4, 18, 24, 0.38) 48%, rgba(4, 18, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 18, 24, 0.18), rgba(4, 18, 24, 0.72));
}

html[dir="rtl"] .blog-hero__content h1,
html[dir="rtl"] .blog-featured__copy h2,
html[dir="rtl"] .blog-reading__article h2,
html[dir="rtl"] .blog-library__intro h2,
html[dir="rtl"] .blog-library-card h3 {
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html[dir="rtl"] .blog-hero__content h1 {
  max-width: 14ch;
  line-height: 1.18 !important;
}

html[dir="rtl"] .blog-featured__copy h2,
html[dir="rtl"] .blog-reading__article h2,
html[dir="rtl"] .blog-library__intro h2,
html[dir="rtl"] .blog-library-card h3 {
  line-height: 1.3 !important;
}

html[dir="rtl"] .blog-kicker,
html[dir="rtl"] .blog-reading__rail span,
html[dir="rtl"] .blog-library-card span {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .blog-hero__content p,
html[dir="rtl"] .blog-featured__copy p,
html[dir="rtl"] .blog-reading__article p,
html[dir="rtl"] .blog-library-card p {
  line-height: 1.9;
}

@media (max-width: 47.98rem) {
  html[dir="rtl"] .blog-hero__content h1,
  html[dir="rtl"] .blog-featured__copy h2,
  html[dir="rtl"] .blog-reading__article h2,
  html[dir="rtl"] .blog-library__intro h2 {
    max-width: 100%;
    line-height: 1.35 !important;
  }
}

.header.is-hidden {
  pointer-events: none;
  transform: translateY(calc(-100% - 1rem));
}

.header.has-mega-open,
.header:has(.header-nav-wrapper:not([inert])) {
  transform: translateY(0);
}
.header::before,
.header::after {
  position: absolute;
  content: "";
  opacity: 0;
  pointer-events: none;
}
.header::before {
  inset: 0;
  z-index: -1;
  background: var(--thm-bg);
  opacity: var(--scrub, 0);
  transition: background-color 0.3s ease;
}
.header::after {
  width: 100%;
  height: calc(100dvh - 100%);
  top: 100%;
  left: 0;
  z-index: -3;
  background: rgba(0, 0, 0, 0.75);
  transition: opacity 0.6s ease;
}
.header:has(.header-nav-wrapper:not([inert]))::after {
  opacity: 1;
  pointer-events: all;
}
.header-logo,
.header-nav,
.header-contact {
  box-shadow:
    -1px 0 0 0 var(--thm-bdr),
    0 1px 0 0 var(--thm-bdr);
}
.header-logo {
  display: flex;
  min-width: 9rem;
  padding: 0.75rem 1.5rem;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.header-logo-inner {
  display: block;
  width: 7rem;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}
.header-logo::after {
  display: none;
}
.header-logo [fill] {
  fill: currentColor;
}
.header-logo:hover {
  color: var(--thm-acnt-2);
}
.header-nav {
  flex: 1 1 auto;
}
.header-nav::after {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--thm-acnt);
  content: "";
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}
.header-nav-toggle {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
[aria-expanded="true"] .header-nav-toggle-label:first-of-type,
[aria-expanded="false"] .header-nav-toggle-label:last-of-type {
  display: none;
}
.header-nav-toggle:hover .header-nav-toggle-icon {
  color: var(--thm-acnt-2);
}
.header-nav-toggle[aria-expanded="true"] .header-nav-toggle-icon::before {
  translate: 0 calc(0.125rem + 1px);
}
.header-nav-toggle[aria-expanded="true"] .header-nav-toggle-icon::after {
  translate: 0 calc(-0.125rem - 1px);
}
.header-nav-toggle-icon {
  display: grid;
  min-width: 1.75rem;
  gap: 0.25rem;
  transition: color 0.3s ease;
}
.header-nav-toggle-icon::before,
.header-nav-toggle-icon::after {
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transition: translate 0.3s ease;
}
.header-nav-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background: var(--thm-bg);
  transition: translate 0.6s ease;
}
.header-nav-wrapper[inert] {
  translate: 0 -100%;
}
.header-nav-list {
  display: grid;
  gap: 1.25rem;
}
.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.3;
}
.header-nav-link::before {
  min-width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  content: "";
  scale: 0;
  transition: scale 0.3s ease;
}
.header-nav-link-label {
  translate: -0.875rem;
  transition: translate 0.3s ease;
}
.header-nav-link:hover::before {
  scale: 1;
}
.header-nav-link:hover .header-nav-link-label {
  translate: 0;
}
.header-nav-button {
  width: 100%;
}
.header-contact {
  display: flex;
  padding: 1.75rem 2.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.header-contact:hover::after {
  background: var(--thm-acnt-2);
}
.header-contact::after {
  display: block;
  min-width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transition: background-color 0.3s ease;
}
@media (min-width: 48rem) {
  .header-nav-wrapper {
    display: grid;
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    border-bottom: 1px solid var(--thm-bdr);
    grid-template-columns: auto 1fr;
    gap: 8rem;
  }
  .header-nav-body {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 2rem 8rem;
  }
  .header-nav-list {
    flex: 1;
  }
  .header-nav-image {
    min-width: 20rem;
    aspect-ratio: 1/1.33;
  }
  .header-nav-footer {
    display: none;
  }
}
@media (max-width: 47.98rem) {
  .header-logo {
    padding: 0.75rem 1rem;
  }
  .header-logo-inner {
    width: 7.8125rem;
  }
  .header-nav-toggle {
    justify-content: end;
  }
  .header-nav-wrapper {
    display: flex;
    height: 100dvh;
    flex-direction: column;
  }
  .header-nav-image {
    display: none;
  }
  .header-nav-body {
    display: flex;
    padding: calc(var(--header-h) + 2rem) var(--container-gutter) 2rem;
    flex-direction: column;
    flex: 1 1 auto;
    overflow: auto;
  }
  .header-nav-list {
    gap: 1rem;
  }
  .header-nav-list:not(:last-child) {
    margin-bottom: 2rem;
  }
  .header-nav-footer {
    display: flex;
    border-top: 1px solid var(--thm-bdr);
  }
  .header-contact {
    padding-block: 1.5625rem;
    flex: 1;
  }
  .header > .header-contact {
    display: none;
  }
}

/* Premium Glass Navigation */
.header-desktop-nav,
.header-desktop-actions {
  display: none;
}

.header-mega-scrim {
  display: none;
}

@media (min-width: 64rem) {
  .header {
    width: auto;
    height: 4.25rem;
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    display: grid;
    padding: 0;
    grid-template-columns: 12rem minmax(0, 1fr) auto;
    grid-template-areas: "logo nav actions";
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(4, 7, 11, 0.72);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    color: #f9fafb;
    isolation: isolate;
  }

  .header::before,
  .header::after {
    display: none;
  }

  .header-logo {
    grid-area: logo;
    min-width: 0;
    height: 100%;
    padding: 0.65rem 1.25rem;
    justify-content: flex-start;
    box-shadow: none;
  }

  .header-logo-inner {
    width: 7.5rem;
    max-height: 2.7rem;
  }

  .header-nav {
    display: none;
  }

  .header-desktop-nav {
    grid-area: nav;
    display: flex;
    min-width: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 2.25vw, 2.5rem);
  }

  .header-desktop-link {
    display: inline-flex;
    padding: 0.75rem 0;
    align-items: center;
    gap: 0.35rem;
    color: rgba(249, 250, 251, 0.78);
    font-family: var(--ff-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    transition: color 0.25s ease;
  }

  .header-desktop-link:hover,
  .header-desktop-link:focus-visible,
  .header-services-toggle[aria-expanded="true"] {
    color: #ffffff;
  }

  .header-services-toggle svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
  }

  .header-services-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .header-mega-trigger {
    display: flex;
    height: 100%;
    align-items: center;
  }

  .header-desktop-actions {
    grid-area: actions;
    display: flex;
    padding-right: 0.55rem;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
  }

  .header-quote-link {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.75rem 1.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #f9fafb;
    color: #111827;
    font-family: var(--ff-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.25s ease;
  }

  .header-language-link {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    color: #f9fafb;
    font-family: var(--ff-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color 0.25s ease, background-color 0.25s ease;
  }

  .header-language-link:hover,
  .header-language-link:focus-visible {
    border-color: var(--thm-acnt, #fedb5b);
    background: rgba(254, 219, 91, 0.1);
  }

  html[dir="rtl"] .header {
    direction: ltr;
    grid-template-columns: auto minmax(0, 1fr) 12rem;
    grid-template-areas: "actions nav logo";
  }

  html[dir="rtl"] .header-desktop-nav,
  html[dir="rtl"] .header-desktop-actions,
  html[dir="rtl"] .header-mega-menu {
    direction: rtl;
  }

  html[dir="rtl"] .header-desktop-actions {
    padding-right: 0;
    padding-left: 0.55rem;
  }

  .header-quote-link:hover,
  .header-quote-link:focus-visible {
    background: var(--thm-acnt, #fedb5b);
    transform: translateY(-1px);
  }

  .header-mega-menu {
    width: min(52rem, calc(100vw - 3rem));
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    z-index: 3;
    display: grid;
    padding: 0.5rem;
    grid-template-columns: minmax(18rem, 1.25fr) minmax(0, 0.78fr) minmax(0, 0.78fr);
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(7, 9, 12, 0.9);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .header-mega-menu[inert] {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-0.5rem);
  }

  .header-mega-list {
    display: grid;
    gap: 0.35rem;
  }

  .header-mega-service {
    display: grid;
    min-height: 3.7rem;
    padding: 0.65rem 0.75rem;
    grid-template-columns: 2rem minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.045);
    color: #f9fafb;
    text-transform: none;
    transition: border-color 0.25s ease, background-color 0.25s ease;
  }

  .header-mega-service:hover,
  .header-mega-service:focus-visible {
    border-color: rgba(254, 219, 91, 0.45);
    background: rgba(254, 219, 91, 0.1);
  }

  .header-mega-index {
    display: grid;
    width: 2rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: var(--thm-acnt, #fedb5b);
    font-size: 0.625rem;
    font-weight: 600;
  }

  .header-mega-service strong,
  .header-mega-feature strong {
    display: block;
    font-family: var(--ff-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .header-mega-service small,
  .header-mega-feature small {
    display: block;
    margin-top: 0.2rem;
    color: rgba(249, 250, 251, 0.58);
    font-family: var(--ff-secondary);
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .header-mega-feature {
    min-height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 1rem;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #ffffff;
    text-transform: none;
    isolation: isolate;
  }

  .header-mega-feature::after {
    position: absolute;
    inset: 35% 0 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(3, 5, 8, 0.92));
    content: "";
  }

  .header-mega-feature img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.08);
    transition: transform 0.6s ease, filter 0.6s ease;
  }

  .header-mega-feature:hover img,
  .header-mega-feature:focus-visible img {
    filter: saturate(1) contrast(1.08);
    transform: scale(1.035);
  }

  .header-mega-scrim {
    position: fixed;
    inset: -0.75rem;
    z-index: -1;
    display: block;
    background: rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .header.has-mega-open .header-mega-scrim {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 63.98rem) {
  .header {
    height: 4.25rem;
    padding: 0;
    align-items: stretch;
    gap: 0;
    background: rgba(4, 7, 11, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    color: #f9fafb;
  }

  .header::before {
    display: none;
  }

  .header::after {
    display: none;
  }

  .header-logo {
    min-width: 9.5rem;
    height: 4.25rem;
    position: relative;
    z-index: 3;
    padding: 0.6rem 1rem;
    justify-content: flex-start;
    box-shadow: none;
  }

  .header-logo-inner {
    width: 7.25rem;
    max-height: 2.8rem;
  }

  .header-nav {
    display: flex;
    justify-content: flex-end;
    box-shadow: none;
  }

  .header-mobile-language {
    display: flex;
    min-width: 3rem;
    position: relative;
    z-index: 3;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-family: var(--ff-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .header-nav-toggle {
    width: auto;
    min-width: 6.75rem;
    position: relative;
    z-index: 3;
    padding: 0.75rem 1rem;
    justify-content: flex-end;
    color: #f9fafb;
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .header-nav-toggle-icon {
    min-width: 1.25rem;
  }

  .header-nav-toggle[aria-expanded="true"] .header-nav-toggle-icon::before {
    transform: translateY(3px) rotate(45deg);
  }

  .header-nav-toggle[aria-expanded="true"] .header-nav-toggle-icon::after {
    transform: translateY(-3px) rotate(-45deg);
  }

  .header-nav-toggle-icon::before,
  .header-nav-toggle-icon::after {
    transition: transform 0.3s ease;
  }

  .header-nav-wrapper {
    width: 100%;
    height: 100dvh;
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    padding-top: 4.25rem;
    flex-direction: column;
    background:
      linear-gradient(150deg, rgba(31, 45, 60, 0.88), rgba(4, 6, 9, 0.97) 48%),
      url("../assets/img%20(3).webp") center / cover no-repeat;
    opacity: 1;
    translate: 0;
    transition: opacity 0.42s ease, translate 0.42s ease;
  }

  .header-nav-wrapper[inert] {
    opacity: 0;
    pointer-events: none;
    translate: 0 -1rem;
  }

  .header-nav-body {
    display: grid;
    min-height: 0;
    padding: clamp(2rem, 8vh, 4.5rem) 1.5rem 2rem;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-content: start;
    gap: 2rem;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .header-mobile-column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .header-mobile-heading {
    margin-bottom: 0.35rem;
    color: rgba(249, 250, 251, 0.46);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .header-mobile-column a {
    color: #f9fafb;
    font-family: var(--ff-secondary);
    font-size: clamp(0.95rem, 4vw, 1.15rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
  }

  .header-nav-footer {
    display: grid;
    padding: 0.9rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 5, 8, 0.68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .header-mobile-action {
    display: flex;
    min-height: 3rem;
    padding: 0.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    color: #f9fafb;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
  }

  .header-mobile-action.is-primary {
    border-color: #f9fafb;
    background: #f9fafb;
    color: #111827;
  }

  html[dir="rtl"] .header {
    direction: ltr;
    flex-direction: row-reverse;
  }

  html[dir="rtl"] .header-nav {
    margin-right: auto;
    margin-left: 0;
    direction: ltr;
  }

  html[dir="rtl"] .header-nav-body,
  html[dir="rtl"] .header-nav-footer {
    direction: rtl;
  }

  html[dir="rtl"] .header-mobile-column {
    align-items: flex-start;
    text-align: start;
  }
}

html[dir="rtl"] body {
  font-family: var(--ff-secondary);
  text-align: start;
}

html[dir="rtl"] .service-stack-card,
html[dir="rtl"] .orbital-detail,
html[dir="rtl"] .td-footer-image-inner {
  direction: rtl;
}

@media (max-width: 24rem) {
  .header-logo {
    min-width: 8.5rem;
  }

  .header-nav-toggle {
    min-width: 5.5rem;
  }

  .header-nav-body {
    padding-inline: 1rem;
    gap: 1rem;
  }

  .header-mobile-column a {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-mega-menu,
  .header-mega-feature img,
  .header-nav-wrapper {
    transition-duration: 1ms;
  }
}
/* Image-Led Editorial Footer */
.td-footer-image {
  position: relative;
  width: 100%;
  min-height: clamp(48rem, 66.6667vw, 80rem);
  overflow: hidden;
  border-top: 0;
  background: #dce7e8;
  color: #111827;
  isolation: isolate;
}

.td-footer-image::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: clamp(6rem, 12vw, 12rem);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.82) 28%,
    rgba(255, 255, 255, 0.32) 66%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
}

.td-footer-image-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.td-footer-image-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 3.5rem);
}

.td-footer-image-wordmark {
  position: absolute;
  top: calc(var(--header-h) + 1.25rem);
  left: 50%;
  width: calc(100% - 2 * var(--container-gutter));
  color: rgba(10, 10, 10, 0.68);
  font-family: var(--ff-primary) !important;
  font-size: clamp(4.8rem, 10vw, 12.5rem);
  font-weight: 800 !important;
  -webkit-text-stroke: 0.7px rgba(17, 24, 39, 0.34);
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  text-align: center;
  text-shadow:
    1px 1px 0 rgba(230, 238, 235, 0.22),
    2px 2px 1px rgba(17, 24, 39, 0.14),
    4px 5px 2px rgba(17, 24, 39, 0.09),
    0 1rem 1.8rem rgba(17, 24, 39, 0.14);
  text-transform: uppercase !important;
  white-space: nowrap;
  opacity: 0.86;
  transform: translateX(-50%) perspective(70rem) rotateX(1.5deg);
  transform-origin: center top;
}

.td-footer-image-wordmark span + span::before {
  content: " ";
}

.td-footer-image-contact {
  position: absolute;
  top: 36%;
  left: clamp(1.5rem, 4vw, 5rem);
  width: min(30rem, 36vw);
  color: rgba(17, 24, 39, 0.82);
  font-family: var(--ff-secondary);
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  line-height: 1.45;
}

.td-footer-image-contact > div {
  display: flex;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}

.td-footer-image-contact a,
.td-footer-image-nav a,
.td-footer-image-meta a {
  color: inherit;
  text-decoration: none;
}

.td-footer-image-contact a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.35);
}

.td-footer-image-nav {
  position: absolute;
  top: 36%;
  right: clamp(1.5rem, 4vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-items: end;
  gap: 0.85rem clamp(1.5rem, 3vw, 3.5rem);
  font-family: var(--ff-secondary);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 500;
  text-transform: uppercase;
}

.td-footer-image-nav a {
  position: relative;
  padding-bottom: 0.3rem;
}

.td-footer-image-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.td-footer-image-nav a:hover::after,
.td-footer-image-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.td-footer-image-nav a:focus-visible,
.td-footer-image-contact a:focus-visible,
.td-footer-image-meta a:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 4px;
}

.td-footer-image-meta {
  position: absolute;
  top: 52%;
  right: clamp(1.5rem, 4vw, 5rem);
  left: clamp(1.5rem, 4vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  color: rgba(17, 24, 39, 0.66);
  font-family: var(--ff-secondary);
  font-size: clamp(0.66rem, 0.75vw, 0.78rem);
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 63.98rem) {
  .td-footer-image {
    min-height: 58rem;
  }

  .td-footer-image-wordmark {
    top: calc(var(--header-h) + 1.25rem);
    width: calc(100% - 3rem);
    font-size: clamp(4rem, 14vw, 8rem);
    white-space: normal;
    text-shadow:
      1px 1px 0 rgba(230, 238, 235, 0.2),
      2px 2px 1px rgba(17, 24, 39, 0.12),
      0 0.75rem 1.2rem rgba(17, 24, 39, 0.12);
  }

  .td-footer-image-wordmark span {
    display: block;
  }

  .td-footer-image-wordmark span:last-child {
    font-size: 0.72em;
  }

  .td-footer-image-wordmark span + span::before {
    content: none;
  }

  .td-footer-image-contact {
    top: 30%;
    right: 1.5rem;
    left: 1.5rem;
    width: min(31rem, calc(100% - 3rem));
  }

  .td-footer-image-nav {
    top: 46%;
    right: 1.5rem;
    left: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    justify-items: start;
    gap: 0.9rem 1rem;
  }

  .td-footer-image-meta {
    top: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 0.75rem rgba(0, 0, 0, 0.8);
  }
}

@media (max-width: 39.98rem) {
  .td-footer-image {
    min-height: 52rem;
  }

  .td-footer-image-wordmark {
    top: calc(var(--header-h) + 1rem);
    font-size: clamp(3.5rem, 18vw, 5.6rem);
    line-height: 0.95 !important;
  }

  .td-footer-image-contact {
    top: 30%;
    font-size: 0.84rem;
  }

  .td-footer-image-contact > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .td-footer-image-nav {
    top: 48%;
    grid-template-columns: repeat(2, 1fr);
    font-size: 0.7rem;
  }

  .td-footer-image-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .td-footer-image-nav a::after {
    transition: none;
  }
}
.hero {
  padding-top: calc(var(--header-h) + 10rem);
}
.hero-subtitle {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.hero-text {
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.hero-link {
  width: 100%;
  margin-top: 2.5rem;
}
.hero-media {
  width: 100%;
  aspect-ratio: 1/0.58;
  margin-top: 2.5rem;
}
@media (min-width: 64rem) {
  .hero-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
  }
  .hero-title {
    width: 50%;
  }
  .hero-content {
    width: 40%;
  }
}
@media (max-width: 63.98rem) {
  .hero-content {
    margin-top: 2rem;
  }
}
/* Hero Section */
.td-loader {
  --loader-progress: 0;
  --loader-percent-anchor: 0%;
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 3rem);
  background: var(--color-midnight-mirage);
  color: var(--color-praxeti-white);
  font-family: var(--ff-secondary), monospace;
  overflow: hidden;
  transition:
    transform 0.7s cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 0.7s;
  will-change: transform;
}
.td-loader.is-complete {
  transform: translateX(100vw);
  visibility: hidden;
}
.td-loader-logo {
  position: absolute;
  top: clamp(1.25rem, 2vw, 2rem);
  right: clamp(1.25rem, 2vw, 2rem);
  width: clamp(7rem, 13vw, 12rem);
  opacity: 0.92;
}
.td-loader-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.td-loader-progress {
  position: absolute;
  left: clamp(1.25rem, 3vw, 3rem);
  bottom: clamp(2rem, 5vw, 4rem);
  width: min(88vw, calc(100vw - 2.5rem));
  height: clamp(6.5rem, 13vw, 9rem);
}
.td-loader-percent {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 0;
  color: var(--color-first-spring);
  font-family: var(--ff-secondary), monospace;
  font-size: clamp(4rem, 8vw, 6.25rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 0;
  transform: none;
  transition: none;
}
.td-loader-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.45rem;
  border: 1px solid rgba(249, 250, 251, 0.28);
  border-radius: 999px;
  background: rgba(249, 250, 251, 0.12);
  overflow: hidden;
}
.td-loader-fill {
  width: calc(var(--loader-progress) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--color-first-spring);
  box-shadow: 0 0 1.5rem rgba(219, 230, 76, 0.45);
  transition: width 0.22s ease;
}
@media (max-width: 47.98rem) {
  .td-loader-logo {
    width: 6.5rem;
  }
  .td-loader-progress {
    width: calc(100vw - 2.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .td-loader,
  .td-loader-percent,
  .td-loader-fill {
    transition-duration: 1ms;
  }
}
.home-hero {
  display: flex;
  width: 100%;
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + var(--container-gutter))
    var(--container-gutter) var(--container-gutter);
  flex-direction: column;
  color: var(--white);
}
.home-hero-video {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.18),
    rgba(17, 24, 39, 0.44) 52%,
    rgba(17, 24, 39, 0.58)
  );
  content: "";
  pointer-events: none;
}
.home-hero-copy {
  display: flex;
  width: min(92%, 56rem);
  position: relative;
  z-index: 1;
  margin: auto;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
  transition:
    opacity 2.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    filter 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 3.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  will-change: opacity, filter, transform;
}
body:not(.td-loader-done) .home-hero-copy {
  opacity: 0;
  filter: blur(2rem);
  transform: translateY(1.5rem) scale(0.985);
}
.home-hero-eyebrow {
  margin-bottom: 1rem;
  color: var(--color-first-spring);
  font-family: var(--ff-secondary);
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-hero .home-hero-title {
  max-width: 56rem;
  color: var(--color-praxeti-white);
  font-size: clamp(3.25rem, 5.45vw, 5.75rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: normal;
  text-align: center;
  text-shadow: 0 0.75rem 3rem rgba(17, 24, 39, 0.68);
}
.home-hero-cta {
  display: inline-flex;
  min-height: 2.75rem;
  margin-top: 1.75rem;
  padding: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  background: var(--color-praxeti-white);
  color: var(--color-midnight-mirage);
  font-family: var(--ff-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}
.home-hero-cta:hover {
  background: var(--color-first-spring);
  transform: translateY(-0.2rem);
}
.home-hero-toast {
  display: flex;
  width: calc(100% - 2.5rem);
  max-width: 27.375rem;
  padding: 1rem;
  margin: auto 0 0 auto;
  align-items: center;
  gap: 1rem;
  background: color-mix(in srgb, var(--black), transparent 44%);
  backdrop-filter: blur(24px);
}
.home-hero-toast-image {
  display: flex;
  min-width: 40%;
  aspect-ratio: 16/9;
  justify-content: center;
  align-items: center;
}
.home-hero-toast-button {
  padding: 1rem;
}
.home-hero-toast-pre {
  margin-bottom: 0.75rem;
  color: var(--thm-acnt);
}
.home-hero-toast-title {
  font-weight: 500;
}
.home-hero-toast-content {
  display: flex;
  min-height: 3rem;
  align-items: center;
}
.home-hero-scroll {
  position: absolute;
  left: var(--container-gutter);
  bottom: var(--container-gutter);
  font-size: 1.5rem;
  overflow: hidden;
}
.home-hero-scroll-up {
  position: absolute;
  top: -100%;
  left: 0;
  animation: 2.6s ease infinite homeHeroArrow;
}
.home-hero-scroll-down {
  display: block;
  animation: 2.6s ease infinite homeHeroArrow;
}
@keyframes homeHeroArrow {
  0% {
    transform: translateY(0%);
  }
  25%,
  100% {
    transform: translateY(100%);
  }
}
/* TD Statement Section */
.td-statement {
  position: relative;
  min-height: clamp(34rem, 86vh, 56rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(6rem, 10vw, 10rem) var(--container-gutter);
  background: var(--color-white);
  color: var(--color-midnight-mirage);
}
.td-statement::before {
  position: absolute;
  top: clamp(1rem, 2vw, 2rem);
  left: clamp(4rem, 8vw, 7rem);
  width: 0.55rem;
  height: 0.55rem;
  z-index: 3;
  border-radius: 50%;
  background: var(--color-first-spring);
  content: "";
}
.td-statement-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(254, 219, 91, 0.16),
      transparent 45%
    ),
    var(--color-white);
}
.td-statement-globe {
  display: block;
  width: min(68rem, 102vw, 110vh);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-7%) scale(1.03);
  filter: contrast(1.06);
  mix-blend-mode: multiply;
  pointer-events: auto;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition: opacity 1.4s ease;
}
.td-statement-globe.is-dragging {
  cursor: grabbing;
}
.td-statement-globe.is-ready {
  opacity: 0.82;
}
.td-statement-inner {
  position: relative;
  z-index: 2;
  width: min(64rem, 100%);
  margin-inline: auto;
  text-align: center;
}
.td-statement-label {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  color: rgba(17, 24, 39, 0.5);
  font-family: var(--ff-secondary);
  font-size: clamp(0.78rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.15;
}
.td-statement-title {
  color: var(--color-midnight-mirage);
  font-family: var(--ff-primary);
  font-size: clamp(2.75rem, 5.65vw, 6.75rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}
@media (max-width: 63.98rem) {
  .home-hero-copy {
    width: calc(100% - 1rem);
  }

  .home-hero .home-hero-title {
    font-size: clamp(1.25rem, 6.6vw, 2.4rem);
    line-height: 0.94;
    white-space: nowrap;
  }

  html[dir="rtl"] .home-hero .home-hero-title {
    width: 100%;
    font-size: clamp(2rem, 9.5vw, 2.65rem);
    line-height: 1.2;
    white-space: normal;
  }
  .td-statement {
    min-height: 38rem;
  }
  .td-statement-globe {
    width: min(44rem, 155vw);
    transform: translateY(-5%) scale(1.03);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero-copy {
    transition-duration: 1ms;
    transition-delay: 0s;
  }
}
.hero-post {
  padding-block: calc(var(--header-h) + 2.5rem) 7.5rem;
}
.hero-post-meta {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  gap: 1.5rem;
}
.hero-post-tag {
  padding: 0.5rem;
  border: 1px solid var(--thm-bdr);
  border-radius: 0.125rem;
  background: color-mix(in srgb, var(--thm-txt), transparent 95%);
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
}
.hero-post-date {
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.hero-post-image {
  width: 100%;
  aspect-ratio: 1.77;
  border-radius: 0.25rem;
  margin-top: 2.5rem;
}
.hero-vehicles {
  padding-top: calc(var(--header-h) + 10rem);
  padding-bottom: 3rem;
}
.hero-vehicles-header {
  max-width: 56rem;
}
.hero-vehicles-title,
.hero-vehicles-text {
  display: inline;
}
.hero-vehicles-text {
  color: color-mix(in srgb, currentColor, transparent 36%);
}
.hero-vehicles-media {
  aspect-ratio: 16/9;
  margin-top: 2.5rem;
}
.hero-services {
  padding-top: calc(var(--header-h) + 10rem);
  background-color: var(--thm-bg);
}
.hero-services-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-services-title {
  width: min(42rem, 100%);
}
.hero-services-intro {
  width: min(35rem, 100%);
}
.hero-services-intro-text {
  color: color-mix(in srgb, currentColor, transparent 64%);
}
.hero-services-media {
  aspect-ratio: 16/9;
  margin-top: 2.5rem;
}
.hero-contact {
  padding-block: calc(var(--header-h) + 2.5rem) 7.5rem;
}
.hero-contact-title {
  max-width: 57rem;
}
.hero-newsroom {
  position: relative;
  isolation: isolate;
  padding-block: calc(var(--header-h) + 7.5rem) 5rem;
  background-color: var(--black);
  text-align: center;
}
.hero-newsroom-title {
  color: var(--white);
}
.hero-newsroom-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.banner {
  display: flex;
  min-height: calc(100svh - var(--header-h));
  position: relative;
  isolation: isolate;
  padding-block: 2rem;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.banner-media {
  --parallax-size: 25%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.banner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2.5rem 2rem;
}
.banner-partners {
  padding: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  background: hsla(0, 0%, 100%, 0.02);
  backdrop-filter: blur(35px);
}
.banner-partners-list {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.banner-partners-item {
  display: flex;
  padding: clamp(0.75rem, 1.6666666667vw + 0.5rem, 1.5rem);
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}
.banner-partners-logo {
  display: block;
  max-width: 100%;
  height: auto;
}
.banner-link {
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 64rem) {
  .banner-partners {
    width: 40%;
  }
  .banner-content {
    width: 50%;
  }
}
@media (max-width: 63.98rem) {
  .banner-wrapper {
    flex-direction: column;
  }
  .banner-partners,
  .banner-content {
    width: 100%;
  }
}
.market {
  margin-top: 5rem;
  counter-reset: market;
}
.market-item {
  display: grid;
  position: sticky;
  top: var(--header-h);
  padding-block: 1.5rem;
  border-top: 1px solid var(--thm-bdr);
  align-items: start;
  gap: 0.5rem 1.5rem;
  background: var(--thm-bg);
  counter-increment: market;
}
.market-item::before {
  font-size: 1.5rem;
  font-weight: 500;
  content: counter(market, decimal-leading-zero);
}
@media (min-width: 64rem) {
  .market-item {
    grid-template-columns: 2fr 5fr 5fr;
  }
}
@media (max-width: 63.98rem) {
  .market-item {
    grid-template-columns: 1fr 5fr;
  }
  .market-text {
    grid-column: 2;
    grid-row: 2;
  }
}
.figures {
  position: relative;
  isolation: isolate;
  margin-top: 7.5rem;
}
.figures-header {
  margin-bottom: 3.5rem;
  text-align: center;
}
.figures-title {
  display: block;
  margin-top: 1rem;
}
.figures-logo {
  display: grid;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.figures-logo-background,
.figures-logo-foreground {
  width: 100%;
  height: 100%;
  grid-area: 1/1;
}
.figures-logo-foreground {
  mask-image: radial-gradient(circle, #fff, rgba(255, 255, 255, 0) 300px);
  mask-position: calc(var(--mouse-x) - 50vw) calc(var(--mouse-y) - 50vh);
  mask-type: luminance;
}
.figures-logo-foreground .figures-logo-inner {
  stroke-opacity: 0.5;
  stroke: var(--thm-acnt-2);
}
.figures-logo-foreground .figures-logo-inner:first-child {
  stroke-width: 2px;
  filter: blur(6px);
}
.figures-logo-inner {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  fill: none;
  stroke: var(--thm-bdr);
}
.figures-list {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 64rem) {
  .figures-item {
    width: 25%;
    margin-left: 33%;
  }
  .figures-item:nth-child(2n + 2) {
    margin-left: 0;
  }
  .figures-item:nth-child(3n + 3) {
    margin-left: 50%;
  }
  .figures-item:nth-child(4n + 4) {
    margin-left: 16%;
  }
  .figures-item:nth-child(5n + 5) {
    margin-left: 60%;
  }
}
.team {
  margin-top: 7.5rem;
}
.team-title:not(:last-child) {
  margin-bottom: 2rem;
}
.team-link {
  width: 100%;
}
.team-list {
  display: grid;
  padding-block: 1px;
  gap: 1px;
}
.team-item {
  box-shadow:
    0 -1px 0 0 var(--thm-bdr),
    0 1px 0 0 var(--thm-bdr);
}
@media (min-width: 64rem) {
  .team-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1.5rem;
  }
  .team-header {
    width: 40%;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
  .team-list {
    width: 50%;
  }
}
@media (max-width: 63.98rem) {
  .team-header {
    margin-bottom: 2.5rem;
  }
}
.contacts {
  padding-top: 4.5rem;
}
.contacts-title {
  margin-bottom: 3rem;
}
.contacts-list {
  display: grid;
  gap: 2rem;
}
.contacts-item {
  display: flex;
}
@media (min-width: 64rem) {
  .contacts-list {
    grid-template-columns: 1fr 1fr;
  }
}
.bigtext {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--thm-bdr);
}
.titletext-title {
  margin-bottom: 1.5rem;
}
.titletext-text p:not(:last-child) {
  margin-bottom: 1rem;
}
.titletext-text a {
  text-decoration: underline;
}
.titletext-text ol,
.titletext-text ul {
  margin-bottom: 1.25rem;
  margin-left: 1rem;
  font-weight: 400;
}
.titletext-text ol:last-child,
.titletext-text ul:last-child {
  margin-bottom: 0;
}
.titletext-text li::marker {
  color: var(--color-nuit-blanche);
}
.titletext-text li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.titletext-text ol li {
  list-style-type: decimal;
}
.titletext-text ul li {
  list-style-type: disc;
}
.downloads-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.quote {
  border: 1px solid var(--thm-bdr);
  border-radius: 0.25rem;
}
.quote-container {
  display: flex;
  padding: 2rem;
  justify-content: space-between;
  gap: 2rem 6rem;
}
.quote-container:has(.quote-image) {
  gap: 2rem calc(6rem - 55px);
}
.quote-left {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem 1rem;
}
.quote-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border: 1px solid var(--thm-bdr);
}
.quote-image {
  width: 100px;
  aspect-ratio: 1;
  border-radius: 100%;
}
.quote-text {
  margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 1rem;
  color: var(--thm-acnt-2);
}
@media (min-width: 48rem) {
  .quote-left {
    flex-direction: column;
  }
}
@media (max-width: 47.98rem) {
  .quote-icon {
    order: 1;
  }
  .quote-container {
    flex-direction: column;
  }
}
.video {
  padding-bottom: 3rem;
}
.video-title {
  margin-bottom: 3rem;
}
.video-player {
  aspect-ratio: 16/9;
  border-radius: 0.25rem;
}
.video-cover {
  display: flex;
  position: absolute;
  inset: 0;
  z-index: 2;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.video-cover img {
  transform: scale(1.1);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.video-cover:hover img {
  transform: scale(1.05);
}
.video-button {
  display: flex;
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-nuit-blanche);
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--color-praxeti-white);
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
}
:hover > .video-button {
  background-color: var(--color-praxeti-white);
  color: var(--color-nuit-blanche);
}
.video-iframe {
  border: 0;
}
.video-cover:hover img {
  transform: scale(1.05);
}
.video--playing .video-cover {
  display: none;
}
.carousel {
  --gap: 0px;
}
.carousel-image {
  width: 100%;
  aspect-ratio: 1.77;
}
.carousel .slider-wrapper {
  position: relative;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  overflow: clip;
}
.carousel .slider-pagination {
  flex: 1 1 auto;
}
.carousel .slider-pagination-button {
  width: calc(25% - 0.75rem);
  aspect-ratio: 1.77;
  border-radius: 0.25rem;
}
@media (max-width: 63.98rem) {
  .carousel .slider-pagination-button {
    max-width: 3rem;
    aspect-ratio: 1;
  }
}
.image {
  position: relative;
}
.image-inner {
  display: block;
  max-width: 100%;
  height: auto;
}
.image-zoom,
.carousel-zoom {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding: 0.5rem;
  border-radius: 0.25rem 0 0 0;
  background: var(--thm-bg);
  font-size: 1.75rem;
}
.highlights-wrapper {
  display: grid;
  gap: 2rem;
}
@media (min-width: 64rem) {
  .highlights-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.points-of-interest {
  margin-top: 7.5rem;
}
.points-of-interest-title:not(:last-child) {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
.points-of-interest-text:not(:first-child) {
  display: inline;
}
.points-of-interest-info {
  display: grid;
  margin-top: 2.5rem;
  gap: 2rem;
}
.points-of-interest-info-item {
  padding-top: 1rem;
  border-top: 1px solid var(--thm-bdr);
}
.points-of-interest-info-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.15;
}
.points-of-interest-info-title::after {
  display: block;
  min-width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 100%;
  margin-block: 0.3125rem;
  background: currentColor;
  content: "";
}
.points-of-interest-info-text,
.points-of-interest-image-text {
  margin-top: 0.5rem;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.points-of-interest-image {
  position: relative;
  margin-top: 2.5rem;
}
.points-of-interest-image-inner {
  display: block;
  width: 100%;
  height: auto;
}
.points-of-interest-image-toggle {
  display: flex;
  width: 1.5rem;
  aspect-ratio: 1;
  isolation: isolate;
  border-radius: 100%;
  margin: -0.75rem;
  justify-content: center;
  align-items: center;
  color: var(--thm-acnt-2);
}
.points-of-interest-image-toggle::before {
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: var(--thm-bg);
  content: "";
  transition: scale 0.3s ease;
}
.points-of-interest-image-toggle::after {
  width: 0.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - 0.25rem);
  left: calc(50% - 0.25rem);
  border-radius: inherit;
  background-color: currentColor;
  content: "";
  transition: scale 0.3s ease;
}
.points-of-interest-image-toggle .icon {
  transition: scale 0.3s ease;
}
.points-of-interest-image-toggle[aria-expanded="false"] .icon {
  scale: 0;
}
.points-of-interest-image-toggle[aria-expanded="false"]:hover::before {
  scale: 1.25;
}
.points-of-interest-image-toggle[aria-expanded="true"]::after {
  scale: 0;
}
.points-of-interest-image-tooltip {
  padding: 1.5rem;
  border: 1px solid var(--thm-bdr);
  border-radius: 0.25rem;
  background-color: var(--thm-bg);
  overflow: clip;
  transition: opacity 0.3s ease;
}
.points-of-interest-image-tooltip[inert] {
  opacity: 0;
}
.points-of-interest-image-title {
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1.15;
}
@media (min-width: 64rem) {
  .points-of-interest-info {
    grid-template-columns: repeat(3, 1fr);
  }
  .points-of-interest-image-item {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 1;
  }
  .points-of-interest-image-toggle {
    position: relative;
  }
  .points-of-interest-image-tooltip {
    width: max-content;
    position: absolute;
    z-index: 1;
  }
  .points-of-interest-image-tooltip[data-y="top"] {
    bottom: 1rem;
  }
  .points-of-interest-image-tooltip[data-y="bottom"] {
    top: 1rem;
  }
  .points-of-interest-image-tooltip[data-x="left"] {
    right: 1rem;
  }
  .points-of-interest-image-tooltip[data-x="right"] {
    left: 1rem;
  }
}
@media (max-width: 63.98rem) {
  .points-of-interest-inner {
    flex-direction: column;
  }
  .points-of-interest-image-toggle {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 1;
  }
  .points-of-interest-image-tooltip {
    width: max-content;
    height: fit-content;
    max-width: calc(var(--viewport-w) - 2 * var(--container-gutter));
    max-height: calc(
      100dvh - 2 * var(--header-h) - 2 * var(--container-gutter)
    );
    position: fixed;
    inset: 0;
    z-index: 1000;
    margin: auto;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.75);
  }
}
@media (min-width: 64rem) {
  .vehicles::after {
    display: block;
    width: 100%;
    height: calc(var(--count, 1) * 100lvh);
    content: "";
  }
  .vehicles-background,
  .vehicles-foreground {
    display: grid;
    height: 100lvh;
    position: sticky;
    top: 0;
  }
  .vehicles-background-item,
  .vehicles-foreground-item {
    grid-area: 1/1;
  }
  .vehicles-background-item {
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% 12.5%,
      0% 12.5%,
      0% 12.5%,
      100% 12.5%,
      100% 25%,
      0% 25%,
      0% 25%,
      100% 25%,
      100% 37.5%,
      0% 37.5%,
      0% 37.5%,
      100% 37.5%,
      100% 50%,
      0% 50%,
      0% 50%,
      100% 50%,
      100% 62.5%,
      0% 62.5%,
      0% 62.5%,
      100% 62.5%,
      100% 75%,
      0% 75%,
      0% 75%,
      100% 75%,
      100% 87.5%,
      0% 87.5%,
      0% 87.5%,
      100% 87.5%,
      100% 100%,
      0% 100%
    );
    transition: clip-path 0.5s ease;
  }
  :not([inert]) ~ .vehicles-background-item {
    clip-path: polygon(
      0% 12.5%,
      100% 12.5%,
      100% 12.5%,
      0% 12.5%,
      0% 25%,
      100% 25%,
      100% 25%,
      0% 25%,
      0% 37.5%,
      100% 37.5%,
      100% 37.5%,
      0% 37.5%,
      0% 50%,
      100% 50%,
      100% 50%,
      0% 50%,
      0% 62.5%,
      100% 62.5%,
      100% 62.5%,
      0% 62.5%,
      0% 75%,
      100% 75%,
      100% 75%,
      0% 75%,
      0% 87.5%,
      100% 87.5%,
      100% 87.5%,
      0% 87.5%,
      0% 100%,
      100% 100%,
      100% 100%,
      0% 100%
    );
  }
  .vehicles-foreground {
    margin-top: -100lvh;
  }
}
@media (max-width: 63.98rem) {
  .vehicles {
    display: grid;
    grid-template-columns: 100%;
  }
  .vehicles-background,
  .vehicles-foreground {
    display: contents;
  }
  .vehicles-background-item,
  .vehicles-foreground-item {
    order: var(--index);
  }
  .vehicles-background-item {
    aspect-ratio: 16/9;
  }
}
.vehicle-title:not(:last-child),
.vehicle-tagline:not(:last-child) {
  margin-bottom: 1rem;
}
.vehicle-features {
  display: grid;
  gap: 0 2rem;
}
.vehicle-features-item {
  padding-block: 1rem;
  border-top: 1px solid var(--thm-bdr);
}
.vehicle-features-title {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 64rem) {
  .vehicle {
    color: var(--color-praxeti-white);
  }
  .vehicle-wrapper {
    display: flex;
    height: 100lvh;
    padding-block: calc(var(--header-h) + 2.5rem) 1.5rem;
    flex-direction: column;
  }
  .vehicle-title,
  .vehicle-features {
    transition: opacity 0.5s ease;
  }
  [inert] .vehicle-title,
  [inert] .vehicle-features {
    opacity: 0;
  }
  .vehicle-tagline {
    color: inherit;
  }
  .vehicle-tagline .word {
    overflow: clip;
  }
  .vehicle-tagline .char {
    display: inline-block;
    transition: translate 0.5s ease;
  }
  [inert] .vehicle-tagline .char {
    translate: 0 -100%;
  }
  :not([inert]) ~ [inert] .vehicle-tagline .char {
    translate: 0 100%;
  }
  .vehicle-features {
    margin-top: auto;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .vehicle-features-item {
    display: flex;
    flex-direction: column;
  }
  .vehicle-features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    order: 1;
  }
  .vehicle-features-toggle {
    min-width: 30%;
  }
  .vehicle-features-text {
    display: grid;
    grid-template-rows: 1fr;
    transition:
      grid-template-rows 0.4s ease,
      opacity 0.4s ease;
  }
  .vehicle-features-text[inert] {
    grid-template-rows: 0fr;
  }
  .vehicle-features-text-inner {
    overflow: hidden;
  }
  .vehicle-features-text-content {
    padding-block: 0.5rem;
  }
}
@media (max-width: 63.98rem) {
  .vehicle-wrapper {
    padding-block: 2rem;
  }
  .vehicle-features-toggle {
    display: none;
  }
  .vehicle-features-text {
    margin-top: 1rem;
  }
}
.features {
  margin-top: 7.5rem;
}
.features-header:not(:first-child) {
  margin-top: 1rem;
}
.features-text:not(:first-child) {
  margin-top: 1.5rem;
}
.features-table:not(:first-child) {
  margin-top: 2.5rem;
}
.features-table table {
  border-collapse: collapse;
  font-size: 0.875rem;
  table-layout: fixed;
}
.features-table th,
.features-table td {
  padding: 1.5rem;
  border: 1px solid var(--thm-bdr);
}
.features-table th {
  text-align: inherit;
  font-weight: inherit;
}
.features-table th[scope="rowgroup"] {
  vertical-align: top;
  font-size: 1.25rem;
  font-weight: 500;
}
.features-table th:empty {
  border: 0;
}
.features-first-row th:not([rowspan]),
.features-first-row td {
  border-bottom: 0;
}
.features-middle-row th:not([rowspan]),
.features-middle-row td {
  padding-top: 0;
  border-block: 0;
}
.features-last-row th:not([rowspan]),
.features-last-row td {
  padding-top: 0;
  border-top: 0;
}
.features-highlight {
  background: color-mix(in srgb, currentColor, transparent 96%);
}
.features-vehicle {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--thm-acnt-2);
}
.features-thumbnail {
  display: inline-block;
  position: relative;
  margin-left: 0.25rem;
  vertical-align: top;
}
.features-thumbnail-toggle {
  position: relative;
  top: -0.125rem;
  display: flex;
  min-width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background: var(--thm-acnt);
  font-size: 0.625rem;
  text-transform: lowercase;
  line-height: 0;
  color: var(--white);
}
.features-thumbnail-inner {
  position: absolute;
  width: min(20rem, 100vw - 2 * var(--container-gutter));
  aspect-ratio: 1/0.5;
  border-radius: 0.25rem;
}
.features-thumbnail-inner[inert] {
  opacity: 0;
}
.features-thumbnail-inner[data-y="top"] {
  bottom: calc(100% + 0.5rem);
}
.features-thumbnail-inner[data-y="bottom"] {
  top: calc(100% + 0.5rem);
}
.features-thumbnail-inner[data-x="left"] {
  right: 0;
}
.features-thumbnail-inner[data-x="right"] {
  left: 0;
}
.features-value-inner {
  display: inline-flex;
  align-items: start;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
}
.features-value-icon {
  margin-top: 0.125rem;
  opacity: 0.4;
}
@media (min-width: 64rem) {
  .features-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .features-title,
  .features-text {
    width: 40%;
  }
  .features-table table {
    width: 100%;
  }
  .features-heading,
  .features-value-title {
    display: none;
  }
}
@media (max-width: 63.98rem) {
  .features-table {
    width: calc(100% + 2 * var(--container-gutter));
    padding-inline: var(--container-gutter);
    margin-inline: calc(-1 * var(--container-gutter));
    overflow: auto;
  }
  .features-table th,
  .features-table td {
    min-width: min(16rem, 100vw - 3 * var(--container-gutter));
    vertical-align: top;
  }
  .features-table th:is(:empty, [scope="rowgroup"], [scope="row"]) {
    display: none;
  }
  .features-heading {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.125rem;
  }
  .features-value-title {
    font-weight: 700;
  }
}
.mixed {
  padding-top: 7.5rem;
  background-color: var(--thm-bg);
}
.mixed-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
}
.mixed-pre {
  margin-bottom: 1rem;
}
.mixed-title {
  color: var(--thm-txt);
}
.mixed-title:not(:last-child) {
  margin-bottom: 1.5rem;
}
.mixed-text {
  color: var(--thm-txt);
  font-weight: 400;
}
.mixed-text:not(:last-child) {
  margin-bottom: 2.5rem;
}
.mixed-subtitle {
  color: var(--thm-txt);
  font-weight: 500;
}
.mixed-subtitle:not(:last-child) {
  margin-bottom: 1.5rem;
}
.mixed-list {
  display: grid;
  margin-top: 1.5rem;
}
.mixed-list-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid var(--thm-bdr);
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}
.mixed-list-item:last-child {
  border-bottom: 1px solid var(--thm-bdr);
}
.mixed-list-item::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  min-width: 0.375rem;
  height: 0.375rem;
  background: var(--thm-txt);
  border-radius: 100vmax;
}
.mixed-quote {
  margin-top: 2.5rem;
}
@media (min-width: 64rem) {
  .mixed-content {
    width: 55%;
    align-self: center;
  }
  .mixed--sticky .mixed-content {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
    align-self: start;
  }
  .mixed-media {
    width: 37%;
    aspect-ratio: 1/1.33;
    margin-inline: calc(-1 * var(--container-gutter)) 0;
  }
  .mixed--reverse .mixed-media {
    order: 1;
    margin-inline: 0 calc(-1 * var(--container-gutter));
  }
}
@media (max-width: 63.98rem) {
  .mixed-wrapper {
    flex-direction: column;
  }
  .mixed-media {
    aspect-ratio: 1;
  }
}
.services {
  padding-top: 5rem;
  background-color: var(--thm-bg);
}
.services-heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 7.5rem;
}
.services-title {
  width: min(42rem, 100%);
  color: var(--thm-txt);
}
.services-intro {
  width: min(34.6875rem, 100%);
}
.services-intro-title {
  color: var(--thm-txt);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.1;
}
.services-intro-text {
  color: color-mix(in srgb, var(--thm-txt), transparent 64%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125;
  margin-top: 1rem;
}
.services-section {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 7.5rem;
  border-top: 1px solid var(--thm-bdr);
  background-color: var(--thm-bg);
}
.services-section--is-sticky {
  position: sticky;
  top: var(--header-h);
  z-index: 1;
}
.services-section-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.services-section-media {
  width: 20rem;
  min-width: 20rem;
  aspect-ratio: 0.85;
}
.services-section-texts {
  width: 20rem;
  min-width: 20rem;
}
.services-section-title {
  color: var(--thm-txt);
  margin-bottom: 2rem;
}
.services-section-subtitle {
  color: var(--thm-txt);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.125;
  margin-bottom: 1rem;
}
.services-section-text {
  color: color-mix(in srgb, var(--thm-txt), transparent 64%);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125;
  padding-top: 0.5rem;
  border-top: 1px solid var(--thm-bdr);
}
.services-list {
  flex: 1;
  max-width: 34.7rem;
}
.services-list-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid var(--thm-bdr);
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}
.services-list-item:last-child {
  border-bottom: 1px solid var(--thm-bdr);
}
.services-list-item::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  min-width: 0.375rem;
  height: 0.375rem;
  background: var(--thm-txt);
  border-radius: 100vmax;
}
@media (max-width: 63.98rem) {
  .services-section {
    flex-direction: column;
  }
  .services-section-texts {
    width: 100%;
    min-width: none;
  }
  .services-list {
    max-width: 100%;
  }
}
@media (max-width: 47.98rem) {
  .services-heading {
    flex-direction: column;
  }
  .services-section-content {
    flex-direction: column;
  }
  .services-section-mdia {
    width: 100%;
    min-width: none;
    aspect-ratio: 1;
  }
  .services-section-texts {
    max-width: 100%;
  }
}
.comparison {
  padding-block: 7.5rem;
  background-color: var(--thm-bg);
}
.comparison-wrapper {
  display: grid;
  gap: 2rem 1.25rem;
  counter-reset: comparison;
}
.comparison-content {
  max-width: 100%;
  overflow: auto;
  margin-top: 4rem;
}
.comparison-table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  table-layout: fixed;
}
.comparison-table-title {
  padding: 0 1rem 1rem 1rem;
  font-weight: 500;
  text-align: start;
}
.comparison-table-subtitle {
  position: relative;
  padding: 1rem 2rem 1rem 1rem;
  background-color: color-mix(in srgb, var(--thm-txt), transparent 96%);
  border: 1px solid var(--thm-bdr);
  color: var(--thm-acnt);
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}
.comparison-table-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  display: inline-block;
  width: 0.375rem;
  min-width: 0.375rem;
  height: 0.375rem;
  background: var(--thm-acnt);
  border-radius: 100vmax;
}
.comparison-table-item {
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
  font-size: 1rem;
  font-weight: 400;
  text-align: start;
  padding: 1rem;
  border: 1px solid var(--thm-bdr);
  background-color: var(--thm-bg);
}
.comparison-table-item--empty {
  text-align: center;
  background-color: color-mix(in srgb, var(--thm-txt), transparent 96%);
}
.comparison-link {
  display: flex;
  width: fit-content;
  margin: 2.5rem 0 0 auto;
}
@media (min-width: 64rem) {
  .comparison-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .comparison-pre:not(:last-child) {
    display: inline-block;
  }
  .comparison-title:not(:first-child) {
    display: inline;
    margin-left: 15rem;
  }
}
.logos {
  position: relative;
}
.logos-title-inner {
  padding: 0.5rem 1rem;
  background: var(--thm-acnt-2);
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  line-height: 1.15;
  color: var(--black);
}
.logos-list {
  display: flex;
  width: fit-content;
  gap: 1px;
  animation: logos 10s linear infinite;
}
.logos-list:hover,
.logos-list--pause {
  animation-play-state: paused;
}
.logos-item {
  display: flex;
  min-width: 15rem;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--thm-bdr);
}
.logos-item:not(:last-child) {
  border-right: 0;
}
.logos-item img {
  display: block;
  width: 8rem;
  height: 4rem;
  opacity: 0.16;
  object-fit: contain;
  transition: opacity 0.6s ease;
}
[data-theme="light"] .logos-item img {
  filter: invert(1);
}
.logos-item:hover img {
  opacity: 0.6;
}
@media (min-width: 48rem) {
  .logos-title {
    --diagonal: 3.25rem;
    position: absolute;
    bottom: calc(100% + var(--diagonal));
    left: calc(50% + var(--diagonal));
    opacity: 0;
    pointer-events: none;
    translate: -1rem 1rem;
    transition:
      opacity 0.4s ease,
      translate 0.4s ease;
  }
  .logos-title::before {
    width: var(--diagonal);
    height: var(--diagonal);
    position: absolute;
    top: 100%;
    left: calc(-1 * var(--diagonal));
    background: linear-gradient(
      to top left,
      transparent 0%,
      transparent calc(50% - 0.8px),
      var(--thm-acnt-2) 50%,
      transparent calc(50% + 0.8px),
      transparent 100%
    );
    content: "";
    translate: 1rem -1rem;
    transition:
      opacity 0.4s ease,
      translate 0.4s ease;
  }
  :hover > .logos-title {
    opacity: 1;
    translate: 0 0;
  }
  :hover > .logos-title::before {
    translate: 0 0;
  }
}
@media (max-width: 47.98rem) {
  .logos {
    display: flex;
    border-block: 1px solid var(--thm-bdr);
  }
  .logos-title {
    display: flex;
    min-width: 50%;
    position: relative;
    z-index: 1;
    padding: 1.5rem var(--container-gutter);
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(
      90deg,
      var(--thm-bg) 80%,
      transparent 100%
    );
    text-align: center;
  }
  .logos-list {
    animation-duration: 20s;
  }
  .logos-item {
    min-width: 12rem;
    border-block: 0;
  }
  .logos-item[data-show] img {
    opacity: 0.6;
  }
  .logos-item[data-show]::after {
    opacity: 1;
  }
}
@keyframes logos {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-33.33%);
  }
}
/* Convictions / Core Services */
.convictions-wrapper {
  display: grid;
  margin-top: 5rem;
  grid-template-columns: repeat(3, 1fr);
}
.convictions-item {
  display: flex;
  aspect-ratio: 20/23;
  position: relative;
  isolation: isolate;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  border-bottom: 1px solid var(--thm-bdr);
}
.convictions-item:not(:last-child) {
  border-right: 1px dotted var(--thm-bdr);
}
.convictions-item-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.convictions-item-content {
  position: sticky;
}
.convictions-item-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  line-height: 1.15;
}
.convictions-item-icon {
  color: var(--thm-acnt);
  transition: color 0.4s ease;
}
.convictions-item-text {
  margin-top: 1.75rem;
}
.convictions-item[data-show] .convictions-item-image {
  opacity: 0.15;
}
@media (min-width: 64rem) {
  .convictions {
    padding-top: 5rem;
  }
  .convictions-pre:not(:last-child) {
    display: inline-block;
  }
  .convictions-title:not(:first-child) {
    display: inline;
    margin-left: 15rem;
  }
  .convictions-item {
    padding: 4rem;
  }
  .convictions-item-content {
    bottom: 4rem;
    transition:
      color 0.3s ease,
      translate 0.3s ease;
  }
  .convictions-item:first-child {
    padding-right: 7rem;
  }
  :hover > .convictions-item:first-child .convictions-item-content {
    translate: 3rem 0;
  }
  .convictions-item:last-child {
    padding-left: 7rem;
  }
  :hover > .convictions-item:last-child .convictions-item-content {
    translate: -3rem 0;
  }
  :hover > .convictions-item .convictions-item-image {
    opacity: 0.15;
  }
  .convictions-item:hover > .convictions-item-image {
    opacity: 1;
  }
  .convictions-item:hover > .convictions-item-content {
    color: var(--white);
  }
  .convictions-item:hover > .convictions-item-icon {
    color: var(--thm-acnt-2);
  }
}
@media (max-width: 63.98rem) {
  .convictions {
    padding-top: 3rem;
  }
  .convictions-header {
    padding-inline: 1rem;
  }
  .convictions-title {
    display: block;
    margin-top: 0.75rem;
    margin-left: 0;
  }
  .convictions-wrapper {
    grid-template-columns: auto;
    margin-top: 1.5rem;
  }
  .convictions-item {
    aspect-ratio: 25/20;
    padding: 1rem;
    opacity: 0.65;
    transition: opacity 0.3s ease;
  }
  .convictions-item-content {
    bottom: 1rem;
    transition: color 0.3s ease;
  }
  .convictions-item-text {
    margin-top: 0.5rem;
  }
  .convictions-item[data-show] {
    opacity: 1;
  }
  .convictions-item[data-show] .convictions-item-image {
    opacity: 1;
  }
  .convictions-item[data-show] .convictions-item-content {
    color: var(--white);
  }
  .convictions-item[data-show] .convictions-item-icon {
    color: var(--thm-acnt-2);
  }
}
/* Trust Section */
.capabilities-flow {
  display: flex;
  flex-direction: column;
}
.capabilities-flow > .trust {
  order: 1;
}
.capabilities-flow > .services-stack {
  order: 2;
}
.trust {
  padding: clamp(6rem, 10vw, 10rem) var(--container-gutter);
  background: var(--thm-bg);
  color: var(--thm-txt);
}
.trust-header {
  width: min(48rem, 100%);
  margin: auto;
  text-align: center;
}
.trust-pre {
  color: var(--thm-acnt);
}
.trust-title {
  display: block;
  margin-top: 1rem;
}
.trust-convictions-wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-convictions-wrapper .convictions-item {
  min-width: 0;
  background: linear-gradient(180deg, #171717 0%, #050505 100%);
}
.trust-convictions-wrapper .convictions-item::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.08) 0%,
    rgba(10, 10, 10, 0.48) 58%,
    rgba(10, 10, 10, 0.94) 100%
  );
  content: "";
  pointer-events: none;
}
.trust-convictions-wrapper .convictions-item-image {
  z-index: -2;
}
.trust-convictions-wrapper .convictions-item:nth-child(3n) {
  border-right: 0;
}
.trust-convictions-wrapper .convictions-item-title {
  align-items: flex-start;
}
.trust-convictions-wrapper .convictions-item-icon {
  width: 1.5em;
  height: 1.5em;
  flex: 0 0 1.5em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-convictions-wrapper .convictions-item-text {
  color: inherit;
  font-family: var(--ff-secondary);
  opacity: 0.72;
}
@media (min-width: 64rem) {
  .trust-convictions-wrapper .convictions-item {
    padding: 4rem;
  }
  .trust-convictions-wrapper .convictions-item:nth-child(3n + 1) {
    padding-right: 7rem;
  }
  .trust-convictions-wrapper .convictions-item:nth-child(3n) {
    padding-left: 7rem;
  }
  .trust-convictions-wrapper:hover
    > .convictions-item:nth-child(3n + 1)
    .convictions-item-content {
    translate: 3rem 0;
  }
  .trust-convictions-wrapper:hover
    > .convictions-item:nth-child(3n)
    .convictions-item-content {
    translate: -3rem 0;
  }
}
@media (max-width: 63.98rem) {
  .trust-convictions-wrapper {
    grid-template-columns: 1fr;
  }
  .trust-convictions-wrapper .convictions-item {
    min-height: 25rem;
  }
}
.trust-wrapper {
  display: grid;
  max-width: var(--container-width);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.trust-item {
  display: flex;
  min-height: 20rem;
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--thm-bdr);
  background: var(--thm-surface);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.trust-item-text {
  color: var(--thm-txt);
  font-family: var(--ff-primary);
  font-size: 1.25rem;
  line-height: 1.1;
}
.trust-item-title {
  flex: 1 1 auto;
}
.trust-item-heading {
  display: block;
  color: var(--thm-txt);
  font-family: var(--ff-primary);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.05;
}
.trust-item-description {
  display: block;
  margin-top: 0.9rem;
  color: var(--thm-txt-muted);
  font-family: var(--ff-secondary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}
.trust-item-image {
  display: flex;
  width: 4.5rem;
  flex: 0 0 4.5rem;
  order: -1;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--thm-acnt), transparent 42%);
  background: color-mix(in srgb, var(--thm-acnt), transparent 88%);
}
.trust-item-image-inner {
  display: block;
  width: 30%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}
.trust-item-icon {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--thm-acnt);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 63.98rem) {
  .trust {
    padding-block: 5rem;
  }
  .trust-header {
    width: 100%;
    padding-inline: 1rem;
  }
  .trust-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
  }
  .trust-item {
    min-height: 17rem;
  }
  .trust-item-image {
    width: 4rem;
    flex-basis: 4rem;
  }
}
@media (max-width: 47.98rem) {
  .trust-wrapper {
    grid-template-columns: 1fr;
  }
  .trust-item {
    min-height: 15rem;
  }
}
/* Service Proposals */
.proposals {
  padding-top: 7.5rem;
  background-color: var(--color-midnight-mirage);
  color: var(--color-praxeti-white);
}
.proposals-item {
  display: grid;
}
.proposals-item-content {
  display: flex;
  flex-direction: column;
}
.proposals-item-toggle {
  order: 1;
}
.proposals-item-title {
  color: var(--color-praxeti-white);
}
.proposals-item-text-content {
  font-family: var(--ff-secondary);
  font-size: 1.05rem;
  line-height: 1.55;
}
.proposals-item-text-content p {
  color: rgba(255, 255, 255, 0.8);
}
.proposals-item-text[inert] {
  opacity: 0;
}
.proposals-item-media {
  aspect-ratio: 4/3;
  isolation: isolate;
  background-color: var(--color-midnight-mirage);
}
.proposals-item-media img {
  opacity: 0.72;
  filter: contrast(1.08);
  mix-blend-mode: luminosity;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 18%,
    black 38%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 18%,
    black 38%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (min-width: 64rem) {
  .proposals-item {
    grid-template-columns: 1fr 1fr;
    gap: var(--container-gutter);
  }
  .proposals-item:not(:last-child) {
    margin-bottom: 5rem;
  }
  .proposals-item-toggle:not([aria-expanded="true"]) {
    translate: 0 var(--offset, 0px);
  }
  .proposals-item-text {
    flex: 1 1 auto;
    padding-bottom: 2rem;
    margin-top: 2rem;
    transition: opacity 0.3s ease;
  }
  .proposals-item-media {
    scale: var(--scrub, 0);
    transform-origin: top left;
  }
  :nth-child(even) > .proposals-item-media {
    order: -1;
    transform-origin: top right;
  }
  :nth-child(even) > .proposals-item-media img {
    -webkit-mask-image: linear-gradient(
      to left,
      transparent 0%,
      rgba(0, 0, 0, 0.55) 18%,
      black 38%,
      black 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to left,
      transparent 0%,
      rgba(0, 0, 0, 0.55) 18%,
      black 38%,
      black 92%,
      transparent 100%
    );
  }
}
@media (max-width: 63.98rem) {
  .proposals-item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .proposals-item-content {
    margin-top: 1.5rem;
    order: 1;
  }
  .proposals-item-text {
    display: grid;
    margin-top: 1.5rem;
    grid-template-rows: 1fr;
    transition:
      grid-template-rows 0.4s ease,
      opacity 0.4s ease;
  }
  .proposals-item-text[inert] {
    grid-template-rows: 0fr;
  }
  .proposals-item-text-inner {
    overflow: hidden;
  }
  .proposals-item-text-content {
    padding-bottom: 1rem;
  }
  .proposals-item-media {
    width: calc(100% + 2 * var(--container-gutter));
    margin-inline: calc(-1 * var(--container-gutter));
  }
  .proposals-item-media img {
    -webkit-mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 62%,
      rgba(0, 0, 0, 0.6) 78%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 62%,
      rgba(0, 0, 0, 0.6) 78%,
      transparent 100%
    );
  }
}
/* Cargo Drift Section */
.cargo-drift {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 42rem) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  min-height: 360vh;
  overflow: clip;
  padding: clamp(6rem, 12vw, 12rem) var(--container-gutter);
  background: var(--color-dark-khaki);
  color: var(--color-white);
  isolation: isolate;
}
.cargo-drift::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(
      90deg,
      rgba(249, 250, 251, 0.18) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(249, 250, 251, 0.08) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 22rem;
  opacity: 0.42;
  content: "";
}
.cargo-drift::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 128, 76, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 39, 0), var(--color-dark-khaki) 88%);
  content: "";
}
.cargo-drift-rail {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: clamp(9rem, 20vh, 16rem);
  background: rgba(254, 219, 91, 0.76);
  transform: translateX(-50%);
}

.cargo-drift-column {
  display: grid;
  align-content: start;
  gap: clamp(10rem, 26vh, 22rem);
  min-width: 0;
}
.cargo-drift-column--left {
  padding-top: clamp(3rem, 12vh, 10rem);
}
.cargo-drift-column--right {
  padding-top: clamp(18rem, 36vh, 30rem);
}
.cargo-drift-card {
  position: relative;
  width: min(27rem, 100%);
  margin: 0;
  overflow: hidden;
  background: var(--color-apricot-cream);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  transform: translate3d(0, var(--td-float-y, 0px), 0);
  will-change: transform;
}

.cargo-drift-card::after {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: 2;
  border: clamp(0.45rem, 1.15vw, 0.85rem) solid rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    inset 900ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 520ms ease;
}

.cargo-drift-card.is-visible::after {
  inset: 0;
  opacity: 1;
}
.cargo-drift-card--landscape {
  aspect-ratio: 1.48;
}
.cargo-drift-card--portrait {
  aspect-ratio: 0.86;
}
.cargo-drift-card--cinematic {
  aspect-ratio: 1.78;
}
.cargo-drift-card--compact {
  width: min(21rem, 82%);
  aspect-ratio: 1.2;
}
.cargo-drift-column--left .cargo-drift-card {
  justify-self: start;
}
.cargo-drift-column--right .cargo-drift-card {
  justify-self: end;
}
.cargo-drift-card--inset {
  margin-inline: clamp(1rem, 4vw, 4rem);
}
.cargo-drift-center {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  align-self: stretch;
  justify-content: center;
}
.cargo-drift-copy {
  position: sticky;
  top: calc(var(--header-h) + 2vh);
  align-self: flex-start;
  width: min(42rem, 100%);
  padding-block: clamp(1rem, 3vh, 2.5rem);
  text-align: center;
}
.cargo-drift-pre {
  display: block;
  position: relative;
  z-index: 4;
  margin-bottom: clamp(2rem, 5vh, 4rem);
  color: rgba(254, 219, 91, 0.78);
  transform: none !important;
}
.cargo-drift-title {
  color: var(--color-white);
  font-family: var(--ff-primary);
  font-size: clamp(2.35rem, 3.5vw, 4.25rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}
.cargo-drift-text {
  width: min(36rem, 100%);
  margin: 2rem auto 0;
  color: rgba(249, 250, 251, 0.78);
  font-family: var(--ff-secondary);
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 500;
  line-height: 1.45;
}
@media (max-width: 63.98rem) {
  .cargo-drift {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 6rem;
  }
  .cargo-drift-rail {
    left: var(--container-gutter);
    transform: none;
  }
  .cargo-drift-center {
    order: -1;
  }
  .cargo-drift-copy {
    position: relative;
    top: auto;
    padding-block: 0 3rem;
    text-align: left;
  }
  .cargo-drift-title {
    font-size: clamp(2.75rem, 13vw, 4.8rem);
  }
  .cargo-drift-text {
    margin-inline: 0;
  }
  .cargo-drift-column {
    gap: 1.5rem;
    padding-top: 0;
  }
  .cargo-drift-column--right {
    margin-top: 1.5rem;
  }
  .cargo-drift-card,
  .cargo-drift-card--compact {
    width: 100%;
    margin-inline: 0;
    justify-self: stretch;
  }
}
/* Showroom Slider */
.showroom {
  display: flex;
  aspect-ratio: 12/7;
  position: relative;
  isolation: isolate;
  padding-top: 5rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: clip;
}
.showroom::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.78) 0%,
    rgba(17, 24, 39, 0.46) 44%,
    rgba(17, 24, 39, 0.72) 100%
  );
  content: "";
  pointer-events: none;
}
.showroom:hover .showroom-button {
  transform: translateY(0);
}
.showroom-image {
  position: absolute;
  z-index: -1;
  translate: var(--x, 0%) var(--y, 0%);
  transition: transform 0.3s ease-out;
}
.showroom-header {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
.showroom-header-pre {
  color: var(--color-first-spring);
  text-shadow: 0 0.5rem 2rem rgba(17, 24, 39, 0.9);
}
.showroom-title {
  display: block;
  margin-top: 1rem;
  color: var(--color-praxeti-white);
  text-shadow: 0 0.75rem 2.5rem rgba(17, 24, 39, 0.92);
}
.showroom-content {
  display: flex;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.showroom-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}
.showroom-item {
  text-align: center;
}
.showroom-item-title,
.showroom-item-text {
  overflow: hidden;
}
.showroom-item-title span,
.showroom-item-text span {
  display: inline-block;
}
.showroom-item-title {
  color: var(--color-first-spring);
  text-shadow: 0 0.5rem 1.5rem rgba(17, 24, 39, 0.9);
}
.showroom-item-text {
  margin-top: 0.7rem;
  color: var(--color-praxeti-white);
  text-shadow: 0 0.5rem 1.5rem rgba(17, 24, 39, 0.9);
}
.showroom-button {
  width: 100%;
}
@media (min-width: 64rem) {
  .showroom-image {
    inset: -2.5% -5%;
  }
  .showroom-item-title,
  .showroom-item-text {
    overflow: hidden;
  }
  .showroom-item-title span,
  .showroom-item-text span {
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.6, 0, 0.3, 1);
  }
  [data-active] .showroom-item-title span,
  [data-active] .showroom-item-text span {
    transform: translate(0%);
  }
  .showroom-button {
    position: sticky;
    bottom: 0;
    z-index: 1;
    transform: translateY(100%);
    transition-property: transform, color, background-color;
  }
}
@media (max-width: 63.98rem) {
  .showroom {
    --offset: 1;
    aspect-ratio: auto;
    height: calc(90vh - var(--header-h));
    padding: 3rem 1rem 1rem;
  }
  .showroom-image,
  .showroom-wrapper {
    width: 300%;
    transform: translateX(calc(var(--offset) * -33%));
    transition: transform 0.6s ease;
  }
  .showroom-image {
    height: 100%;
    top: 0;
    left: 0;
  }
  .showroom-header {
    width: 100%;
  }
  .showroom-title {
    margin-top: 0.75rem;
  }
  .showroom-content {
    padding-bottom: 2rem;
  }
  .showroom-item-title {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .showroom-item-text {
    margin-top: 0.5rem;
  }
}
/* Industries / Support */
.drivers {
  margin-top: 0;
  padding: clamp(6rem, 10vw, 10rem) 2rem clamp(7rem, 11vw, 11rem);
  background: #ffffff;
  color: #111827;
}
.drivers-title {
  color: #111827;
}
.drivers-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
}
.drivers-item {
  display: flex;
  align-items: flex-start;
  gap: 0 1.5rem;
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.drivers-item-image {
  flex: 0 0 7.0625rem;
  display: block;
  aspect-ratio: 113/149;
  object-fit: cover;
}
.drivers-item-text {
  flex: 1;
  color: #6b7280;
}
@media (max-width: 63.98rem) {
  .drivers {
    margin-top: 0;
    padding: 5rem 0 6rem;
  }
  .drivers-title {
    padding-inline: 1rem;
  }
  .drivers-wrapper {
    grid-template-columns: auto;
    margin-top: 1.5rem;
  }
  .drivers-item {
    position: sticky;
    top: calc(var(--header-h) - 1px);
    padding: 1rem 1rem 0;
    background-color: #ffffff;
  }
  .drivers-item-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.125;
  }
}
.testimonies {
  display: flex;
  margin-top: 7.5rem;
  border-top: 1px solid var(--thm-bdr);
}
.testimonies-header {
  flex: 0 0 41.6666666667%;
  border-right: 1px solid var(--thm-bdr);
  overflow: hidden;
}
.testimonies-title {
  width: 66.66%;
  margin-bottom: 8.5rem;
  padding-top: 2rem;
  padding-left: 2rem;
}
.testimonies-slider {
  flex: 0 0 58.3333333333%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 3rem 2rem 2rem;
}
.testimonies-item-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 1.5rem;
}
.testimonies-item-wrapper + .testimonies-item-wrapper {
  margin-top: 3rem;
}
.testimonies-item-icon {
  flex: 0 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid var(--thm-bdr);
}
.testimonies-item-text {
  flex: 0 0 71.4285714286%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}
.testimonies-item-image {
  flex: 0 0 3rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}
.testimonies-item-bottom {
  flex: 0 0 71.4285714286%;
}
.testimonies-item-name {
  color: var(--thm-acnt);
  font-family: var(--ff-secondary);
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}
.testimonies-item-job {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
  margin-top: 0.5rem;
}
@media (min-width: 64rem) {
  .testimonies-slider {
    border-bottom: 1px solid var(--thm-bdr);
  }
}
@media (max-width: 63.98rem) {
  .testimonies {
    display: block;
    margin-top: 5rem;
  }
  .testimonies-title {
    width: 100%;
    padding: 1.5rem 1rem;
    margin-bottom: 2.94rem;
  }
  .testimonies-slider {
    padding: 2.5rem 1rem 1rem;
  }
  .testimonies-wrapper + .testimonies-wrapper {
    margin-top: 2rem;
  }
  .testimonies-item-text {
    font-size: var(--font-size-S,);
    line-height: 1.125;
  }
  .testimonies-controls {
    margin-top: 5rem;
  }
}
.goals {
  margin-top: 5rem;
}
.goals-header {
  margin-bottom: 4rem;
}
.goals-title {
  display: block;
  margin-top: 1rem;
}
.goals-subtitle {
  margin-bottom: 2rem;
}
.goals-list {
  display: grid;
  padding-block: 1px;
  gap: 1px;
}
.goals-item {
  padding-block: 1.5rem;
  background: var(--thm-bg);
  box-shadow:
    0 -1px 0 0 var(--thm-bdr),
    0 1px 0 0 var(--thm-bdr);
  font-weight: 500;
}
.goals-item-title {
  font-size: 1.25rem;
}
.goals-item-text {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
@media (min-width: 64rem) {
  .goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .goals-images-item {
    height: calc(100dvh - var(--header-h));
    position: sticky;
    top: var(--header-h);
    opacity: var(--scrub, 1);
  }
  .goals-content {
    display: flex;
    height: calc(100dvh - var(--header-h));
    position: sticky;
    top: var(--header-h);
    padding: 4rem calc(2 * var(--container-gutter)) 2rem;
    flex-direction: column;
  }
  .goals-list {
    display: grid;
    margin-top: auto;
    grid-auto-rows: 1fr;
  }
  .goals-item {
    display: flex;
    grid-area: 1/1;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    translate: 0 max(0px, var(--scrub, 0px) - 50vh);
  }
}
@media (max-width: 63.98rem) {
  .goals-images {
    display: none;
  }
  .goals-content {
    padding-inline: var(--container-gutter);
  }
}
.columns {
  margin-top: 7.5rem;
}
.columns-wrapper {
  display: flex;
  padding-top: 2rem;
  border-top: 1px solid var(--thm-bdr);
  gap: 2rem;
}
.columns-title {
  display: block;
  margin-top: 1rem;
}
.columns-image {
  aspect-ratio: 1/1.33;
}
.columns-subtitle {
  font-size: 1.25rem;
}
.columns-subtitle:not(:last-child) {
  margin-bottom: 1rem;
}
.columns-text {
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
@media (min-width: 64rem) {
  .columns-wrapper {
    align-items: start;
  }
  .columns-header,
  .columns-image {
    width: calc((50% - 3rem) / 2);
  }
  .columns-content {
    width: 40%;
    margin-left: auto;
  }
}
@media (max-width: 63.98rem) {
  .columns-wrapper {
    flex-direction: column;
  }
}
.redirections {
  margin-top: 7.5rem;
}
.redirections-wrapper:has(.redirections-header) {
  padding-top: 2rem;
  border-top: 1px solid var(--thm-bdr);
}
.redirections-header {
  max-width: 56.625rem;
  margin-bottom: 4rem;
}
.redirections-title {
  display: block;
  margin-top: 1rem;
}
.redirections-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 64rem) {
  .redirections-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news {
  margin-top: 7.5rem;
}
.news-wrapper:has(.news-header) {
  padding-top: 2rem;
  border-top: 1px solid var(--thm-bdr);
}
.news-header {
  max-width: 56.625rem;
  margin-bottom: 1rem;
}
.news-title {
  display: block;
  margin-top: 1rem;
}
.news-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.media {
  margin-top: 5rem;
  text-align: center;
}
.media-title {
  margin-bottom: 3rem;
}
.media-image {
  display: block;
  width: 100%;
  height: auto;
}
.benefits {
  margin-top: 7.5rem;
}
.benefits-pre {
  margin-bottom: 1rem;
  text-align: center;
}
.benefits-title {
  text-align: center;
}
.benefits-wrapper {
  display: grid;
  margin-top: 5rem;
  align-items: start;
  gap: 2rem calc(2 * var(--container-gutter));
}
.benefits-subtitle {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
  gap: 0.5rem;
}
.benefits-icon {
  font-size: 1rem;
  color: var(--thm-acnt);
}
.benefits-list {
  border: 1px solid var(--thm-bdr);
  background: color-mix(in srgb, var(--thm-txt), transparent 96%);
}
.benefits-item {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14;
  text-transform: uppercase;
}
.benefits-item:not(:last-child) {
  border-bottom: 1px solid var(--thm-bdr);
}
.benefits-item::after {
  display: block;
  width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 100%;
  background: currentColor;
  content: "";
}
@media (min-width: 48rem) {
  .benefits-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.text {
  margin-top: 5rem;
}
.ecoindex-grade {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ecoindex-grade-item {
  display: flex;
  width: clamp(3rem, 5vw, 5rem);
  aspect-ratio: 1;
  padding: 0.75rem;
  border: 1px solid;
  border-radius: 0.5rem;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: 500;
  line-height: 1;
}
.ecoindex-grade-item:nth-child(1) {
  color: var(--color-picture-book-green);
}
.ecoindex-grade-item:nth-child(1).ecoindex-grade-item--active {
  background-color: var(--color-picture-book-green);
  color: var(--color-praxeti-white);
}
.ecoindex-grade-item:nth-child(2) {
  color: var(--color-mantis);
}
.ecoindex-grade-item:nth-child(2).ecoindex-grade-item--active {
  background-color: var(--color-mantis);
  color: var(--color-midnight-mirage);
}
.ecoindex-grade-item:nth-child(3) {
  color: var(--color-first-spring);
}
.ecoindex-grade-item:nth-child(3).ecoindex-grade-item--active {
  background-color: var(--color-first-spring);
  color: var(--color-midnight-mirage);
}
.ecoindex-grade-item:nth-child(4) {
  color: var(--color-nuit-blanche);
}
.ecoindex-grade-item:nth-child(4).ecoindex-grade-item--active {
  background-color: var(--color-nuit-blanche);
  color: var(--color-praxeti-white);
}
.ecoindex-grade-item:nth-child(5) {
  color: var(--color-mantis);
}
.ecoindex-grade-item:nth-child(5).ecoindex-grade-item--active {
  background-color: var(--color-mantis);
  color: var(--color-midnight-mirage);
}
.ecoindex-grade-item:nth-child(6) {
  color: var(--color-nuit-blanche);
}
.ecoindex-grade-item:nth-child(6).ecoindex-grade-item--active {
  background-color: var(--color-nuit-blanche);
  color: var(--color-praxeti-white);
}
.ecoindex-grade-item:nth-child(7) {
  color: var(--color-midnight-mirage);
}
.ecoindex-grade-item:nth-child(7).ecoindex-grade-item--active {
  background-color: var(--color-midnight-mirage);
  color: var(--color-praxeti-white);
}
.error {
  display: flex;
  min-height: 100svh;
  padding: 2rem var(--container-gutter) calc(2rem + var(--header-h))
    var(--container-gutter);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-title {
  margin-bottom: 2rem;
  color: var(--thm-acnt-2);
}
.error-button {
  margin-top: 2.5rem;
}
.contact-wrapper {
  padding-block: 2.5rem 7.5rem;
  border-top: 1px solid var(--thm-bdr);
}
.contact-info-item:not(:first-child) {
  padding-top: 2rem;
  border-top: 1px solid rgba(12, 12, 12, 0.06);
  margin-top: 2rem;
}
.contact-info-title {
  display: flex;
  align-items: start;
  gap: 1.125rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--thm-acnt);
}
.contact-info-text {
  margin-top: 1rem;
}
@media (min-width: 64rem) {
  .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .contact-info {
    width: 40%;
    order: -1;
  }
  .contact-form {
    width: 50%;
  }
}
@media (max-width: 63.98rem) {
  .contact-info {
    margin-top: 4rem;
  }
}
.newsroom {
  padding-bottom: 7.5rem;
}
.newsroom-wrapper {
  display: grid;
  align-items: start;
  gap: 3rem 10%;
}
.newsroom-filters {
  position: sticky;
  z-index: 100;
  text-transform: uppercase;
  font-family: var(--ff-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}
.newsroom-filters-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.newsroom-filters-input {
  min-width: 0.25rem;
  aspect-ratio: 1;
  background: var(--thm-acnt-2);
  scale: 0;
  transition: scale 0.2s ease;
}
.newsroom-filters-input:checked {
  scale: 1;
}
.newsroom-filters-label {
  cursor: pointer;
  translate: -0.5rem 0;
  transition:
    color 0.2s ease,
    translate 0.2s ease;
}
:checked + .newsroom-filters-label {
  color: var(--thm-acnt-2);
  translate: 0 0;
}
.newsroom-list {
  display: grid;
  gap: 3.5rem 2rem;
}
@media (min-width: 64rem) {
  .newsroom {
    padding-top: 3rem;
  }
  .newsroom-wrapper {
    grid-template-columns: 25% 1fr;
  }
  .newsroom-filters {
    display: flex;
    max-width: 17.5rem;
    top: calc(var(--header-h) + 3rem);
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
  }
  .newsroom-filters-list {
    display: grid;
    gap: 0.5rem;
  }
  .newsroom-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 63.98rem) {
  .newsroom-wrapper {
    grid-template-columns: 100%;
  }
  .newsroom-filters {
    top: var(--header-h);
    border-bottom: 1px solid var(--thm-bdr);
    margin-inline: calc(-1 * var(--container-gutter));
    background: var(--thm-bg);
  }
  .newsroom-filters-title {
    margin: 1rem var(--container-gutter);
  }
  .newsroom-filters-list {
    display: flex;
    padding-bottom: 1rem;
    gap: var(--container-gutter);
    white-space: nowrap;
    overflow: auto;
  }
  .newsroom-filters-list::before,
  .newsroom-filters-list::after {
    content: "";
  }
}
.post-wrapper {
  display: flex;
  align-items: start;
  gap: var(--container-gutter);
}
.post-nav {
  position: sticky;
}
.post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--thm-txt), transparent 36%);
}
.post-nav-link:hover,
.post-nav-link[aria-current="true"] {
  color: var(--thm-txt);
}
.post-section:not(:first-child) {
  padding-top: 4.5rem;
}
@media (min-width: 64rem) {
  .post-nav {
    display: flex;
    width: calc(33.3333333333% - var(--container-gutter) / 2);
    max-height: calc(100dvh - var(--header-h) - 3rem);
    top: calc(var(--header-h) + 1.5rem);
    flex-direction: column;
    align-items: start;
  }
  .post-nav-list {
    display: grid;
    width: 100%;
    padding: 2rem;
    border: 1px solid var(--thm-bdr);
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
    flex: 1 1 auto;
    background: color-mix(in srgb, var(--thm-txt), transparent 95%);
    overflow: auto;
  }
  .post-nav-link {
    transition: color 0.3s ease;
  }
  .post-nav-link-label {
    translate: -0.875rem;
    transition: translate 0.3s ease;
  }
  [aria-current="true"] .post-nav-link-label {
    translate: 0;
  }
  .post-nav-link::before {
    min-width: 0.375rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: currentColor;
    content: "";
    scale: 0;
    transition: scale 0.3s ease;
  }
  .post-nav-link[aria-current="true"]::before {
    scale: 1;
  }
  .post-content {
    width: calc(66.6666666667% - var(--container-gutter) / 2);
  }
}
@media (max-width: 63.98rem) {
  .post-wrapper {
    flex-direction: column;
  }
  .post-nav {
    display: flex;
    width: calc(100% + 2 * var(--container-gutter));
    top: var(--header-h);
    z-index: 700;
    border-bottom: 1px solid var(--thm-bdr);
    margin-inline: calc(-1 * var(--container-gutter));
    background: var(--thm-bg);
  }
  .post-nav::before,
  .post-nav::after {
    display: block;
    min-width: var(--container-gutter);
    position: relative;
    z-index: 1;
    align-self: stretch;
    content: "";
  }
  .post-nav::before {
    margin-right: calc(-1 * var(--container-gutter));
    background-image: linear-gradient(
      90deg,
      var(--thm-bg),
      color-mix(in srgb, var(--thm-bg), transparent 100%)
    );
  }
  .post-nav::after {
    margin-left: calc(-1 * var(--container-gutter));
    background-image: linear-gradient(
      -90deg,
      var(--thm-bg),
      color-mix(in srgb, var(--thm-bg), transparent 100%)
    );
  }
  .post-nav-list {
    display: flex;
    padding-left: var(--container-gutter);
    gap: var(--container-gutter);
    white-space: nowrap;
    overflow: auto;
  }
  .post-nav-list::after {
    min-width: var(--container-gutter);
    margin-left: calc(-1 * var(--container-gutter));
    content: "";
  }
  .post-nav-item {
    display: flex;
  }
  .post-nav-link {
    padding-block: 1rem;
    align-items: center;
    background-image: linear-gradient(var(--thm-acnt-2), var(--thm-acnt-2));
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 0px;
    transition:
      color 0.3s ease,
      background-size 0.3s ease;
  }
  .post-nav-link[aria-current="true"] {
    background-size: 100% 3px;
  }
  .post-share {
    margin: 1rem 1rem 1rem auto;
    order: 1;
    white-space: nowrap;
  }
  .post-content {
    width: 100%;
  }
}

/* Orbital Logistics Timeline */
.proposals--orbital {
  position: relative;
  overflow: hidden;
  background: #040404;
  color: #f9fafb;
}

.proposals--orbital > .container[hidden] {
  display: none !important;
}

.orbital-timeline {
  width: min(100%, 96rem);
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--container-gutter)
    clamp(4rem, 8vw, 8rem);
}

.orbital-timeline-header {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.orbital-timeline-kicker,
.orbital-detail-meta,
.orbital-detail-progress-label,
.orbital-detail-related > span {
  font-family: var(--ff-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.orbital-timeline-kicker {
  margin-bottom: 1rem;
  color: #fedb5b;
}

.orbital-timeline-title {
  max-width: 15ch;
  margin-inline: auto;
  font-family: var(--ff-primary);
  font-size: clamp(2.7rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
}

.orbital-timeline-intro {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: rgba(249, 250, 251, 0.68);
  font-family: var(--ff-secondary);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}

.orbital-stage {
  position: relative;
  min-height: clamp(39rem, 72vw, 55rem);
  margin-top: clamp(1rem, 3vw, 3rem);
  isolation: isolate;
  overflow: hidden;
}

.orbital-stage::before {
  position: absolute;
  inset: 10% 7%;
  z-index: -1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(254, 219, 91, 0.08),
    rgba(254, 219, 91, 0.015) 34%,
    transparent 68%
  );
  content: "";
  pointer-events: none;
}

.orbital-system {
  --orbit-radius: clamp(11.5rem, 24vw, 17rem);
  position: absolute;
  inset: 0;
}

.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-radius) * 2);
  aspect-ratio: 1;
  border: 1px solid rgba(249, 250, 251, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1.75rem rgba(249, 250, 251, 0.012),
    0 0 5rem rgba(254, 219, 91, 0.04);
}

.orbital-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 0 1.15rem rgba(254, 219, 91, 0.48));
  transform: translate(-50%, -50%);
}

.orbital-core::before {
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(254, 219, 91, 0.12);
  box-shadow: 0 0 2.75rem rgba(254, 219, 91, 0.34);
  content: "";
  filter: blur(8px);
}

.orbital-core-globe {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.orbital-core-globe.is-ready {
  opacity: 0.96;
}

.orbital-core-ring {
  position: absolute;
  inset: -0.75rem;
  border: 1px solid rgba(254, 219, 91, 0.32);
  border-radius: 50%;
  animation: orbital-ping 3.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.orbital-core-ring--two {
  animation-delay: 1.8s;
}

.orbital-node {
  --orbital-x: 0px;
  --orbital-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--orbital-z, 20);
  display: grid;
  width: 3.25rem;
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(249, 250, 251, 0.44);
  border-radius: 50%;
  background: #0a0a0a;
  color: #fafafa;
  cursor: pointer;
  opacity: var(--orbital-opacity, 1);
  transform: translate(-50%, -50%)
    translate(var(--orbital-x), var(--orbital-y));
  transition:
    opacity 500ms ease,
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.orbital-node:hover,
.orbital-node:focus-visible,
.orbital-node.is-related {
  border-color: #fedb5b;
  color: #111827;
  background: #fedb5b;
  outline: none;
}

.orbital-node.is-active {
  border-color: #fff;
  background: #fafafa;
  color: #111827;
  box-shadow: 0 0 2rem rgba(254, 219, 91, 0.36);
  transform: translate(-50%, -50%)
    translate(var(--orbital-x), var(--orbital-y)) scale(1.22);
}

.orbital-node-icon {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.orbital-node-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.orbital-node-label {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  width: max-content;
  max-width: 10rem;
  color: rgba(249, 250, 251, 0.7);
  font-family: var(--ff-primary);
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
  transition: color 300ms ease;
}

.orbital-node.is-active .orbital-node-label,
.orbital-node.is-related .orbital-node-label {
  color: #fafafa;
}

.orbital-node-glow {
  position: absolute;
  inset: -0.65rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 219, 91, 0.22), transparent 68%);
  opacity: 0;
  pointer-events: none;
}

.orbital-node.is-related .orbital-node-glow {
  animation: orbital-pulse 1.8s ease-in-out infinite;
}

.orbital-detail {
  position: absolute;
  top: calc(50% + 4.8rem);
  left: 50%;
  z-index: 180;
  display: grid;
  width: min(44rem, calc(100vw - 3rem));
  padding: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1.1fr);
  border: 1px solid rgba(249, 250, 251, 0.2);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  backdrop-filter: blur(16px) saturate(1.08);
  transition:
    opacity 380ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbital-detail-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(249, 250, 251, 0.16);
  background: rgba(17, 24, 39, 0.45);
}

.orbital-detail-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 4, 4, 0.72));
  content: "";
  pointer-events: none;
}

.orbital-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 19rem;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.72) contrast(1.08);
  transition:
    opacity 320ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms ease;
}

.orbital-detail-media img.is-changing {
  opacity: 0;
  transform: scale(1.025);
  filter: saturate(0.45) blur(4px);
}

.orbital-detail-media-index {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 1;
  color: #fedb5b;
  font-family: var(--ff-secondary);
  font-size: 0.72rem;
  font-weight: 600;
}

.orbital-detail-copy {
  padding: 1.35rem;
}

.orbital-detail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.orbital-detail-meta,
.orbital-detail-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.orbital-detail-status {
  padding: 0.3rem 0.55rem;
  border: 1px solid #fedb5b;
  background: #fedb5b;
  color: #111827;
}

.orbital-detail-step {
  color: rgba(249, 250, 251, 0.5);
}

.orbital-detail h3 {
  margin-top: 1rem;
  color: #fafafa;
  font-family: var(--ff-primary);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.orbital-detail-copy > p {
  margin-top: 0.75rem;
  color: rgba(249, 250, 251, 0.72);
  font-family: var(--ff-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.orbital-detail-progress,
.orbital-detail-related {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(249, 250, 251, 0.12);
}

.orbital-detail-progress-label,
.orbital-detail-related > span {
  color: rgba(249, 250, 251, 0.62);
}

.orbital-detail-progress-track {
  height: 3px;
  margin-top: 0.6rem;
  overflow: hidden;
  background: rgba(249, 250, 251, 0.14);
}

.orbital-detail-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #fedb5b;
  transition: width 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orbital-detail-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.orbital-related-button {
  display: inline-flex;
  min-height: 1.9rem;
  padding: 0.35rem 0.55rem;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(249, 250, 251, 0.22);
  border-radius: 4px;
  background: transparent;
  color: rgba(249, 250, 251, 0.78);
  font-family: var(--ff-secondary);
  font-size: 0.7rem;
  cursor: pointer;
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.orbital-related-button:hover,
.orbital-related-button:focus-visible {
  border-color: #fedb5b;
  background: #fedb5b;
  color: #111827;
  outline: none;
}

.orbital-related-button.is-next::after {
  content: "\2192";
}

.orbital-related-button.is-previous::before {
  content: "\2190";
}

@keyframes orbital-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes orbital-ping {
  0% {
    opacity: 0.55;
    transform: scale(0.7);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@media (max-width: 47.98rem) {
  .orbital-timeline {
    padding-top: 5rem;
  }

  .orbital-stage {
    min-height: 50rem;
    margin-inline: calc(-0.5 * var(--container-gutter));
  }

  .orbital-system {
    --orbit-radius: clamp(8.6rem, 36vw, 10rem);
  }

  .orbital-core {
    width: 3.5rem;
  }

  .orbital-node {
    width: 2.85rem;
  }

  .orbital-node-label {
    max-width: 6.5rem;
    white-space: normal;
  }

  .orbital-detail {
    top: calc(50% + 2.5rem);
    width: min(19rem, calc(100vw - 2rem));
    grid-template-columns: 1fr;
  }

  .orbital-detail-media {
    min-height: 8.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(249, 250, 251, 0.16);
  }

  .orbital-detail-media img {
    height: 9.5rem;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbital-core-ring,
  .orbital-node.is-related .orbital-node-glow {
    animation: none;
  }

  .orbital-node,
  .orbital-detail,
  .orbital-detail-progress-track span {
    transition-duration: 1ms;
  }
}

/* Service Detail Pages */
.service-detail-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(254, 219, 91, 0.24), transparent 24rem),
    linear-gradient(135deg, #f3f4f6 0%, #ffffff 48%, #e5e7eb 100%);
  color: #111827;
  font-family: var(--ff-secondary);
}

.service-detail-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(1rem, 2.2vw, 2rem);
  grid-template-rows: auto 1fr auto;
}

.service-detail-header,
.service-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-detail-logo img {
  display: block;
  width: clamp(7rem, 12vw, 10rem);
  height: auto;
  filter: invert(1) brightness(0.2);
}

.service-detail-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-detail-nav a,
.service-detail-footer a {
  color: #111827;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-detail-nav a:last-child {
  padding: 0.75rem 1rem;
  border: 1px solid #111827;
  border-radius: 999px;
  background: #111827;
  color: #f9fafb;
}

.service-detail-hero {
  display: grid;
  width: min(92rem, 100%);
  margin: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}

.service-detail-kicker {
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-detail-title {
  max-width: 7ch;
  margin-top: 1.4rem;
  font-family: var(--ff-primary);
  font-size: clamp(3.7rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  word-break: normal;
}

.service-detail-lede {
  max-width: 42rem;
  margin-top: 2rem;
  color: #374151;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.service-detail-actions a {
  display: inline-flex;
  min-height: 3rem;
  padding-inline: 1.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #111827;
  border-radius: 999px;
  color: #111827;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.service-detail-actions a:first-child {
  background: #fedb5b;
}

.service-detail-media {
  position: relative;
  min-height: clamp(28rem, 58vw, 44rem);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 1.35rem;
  background: #111827;
  box-shadow: 0 2rem 7rem rgba(17, 24, 39, 0.16);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.78) contrast(1.08);
}

.service-detail-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(17, 24, 39, 0.74)),
    linear-gradient(90deg, rgba(254, 219, 91, 0.2), transparent 34%);
  content: "";
}

.service-detail-panel {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(249, 250, 251, 0.18);
  border-radius: 0.9rem;
  background: rgba(10, 10, 10, 0.58);
  color: #fafafa;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.service-detail-panel span {
  padding: 0.75rem;
  color: rgba(249, 250, 251, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-panel strong {
  display: block;
  margin-top: 0.35rem;
  color: #fedb5b;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.service-detail-body {
  width: min(92rem, 100%);
  margin: 0 auto clamp(3rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid #e5e7eb;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.5rem 5rem rgba(17, 24, 39, 0.08);
}

.service-detail-body h2 {
  font-family: var(--ff-primary);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-detail-grid {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #e5e7eb;
}

.service-detail-grid article {
  min-height: 13rem;
  padding: 1.4rem;
  background: #ffffff;
}

.service-detail-grid h3 {
  color: #111827;
  font-family: var(--ff-primary);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-detail-grid p {
  margin-top: 1rem;
  color: #6b7280;
  line-height: 1.55;
}

@media (max-width: 63.98rem) {
  .service-detail-hero,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-title {
    max-width: 8ch;
    font-size: clamp(3.2rem, 15vw, 5.7rem);
  }

  .service-detail-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 35.98rem) {
  .service-detail-header,
  .service-detail-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .service-detail-nav a:last-child {
    padding-inline: 0.85rem;
  }

  .service-detail-title {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 4.4rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .service-detail-actions a {
    flex: 1 1 100%;
  }
}

/* Sticky Stacking Service Component */
.services-stack[data-services-stack] {
  --services-bg: #f9f9f9;
  --services-card: #f4f4f4;
  --services-blue: #0057b7;
  --services-pin-height: min(86vh, 54rem);
  min-height: calc((var(--services-card-count, 6) * 100vh) + var(--services-pin-height));
  padding: clamp(0.45rem, 1.1vw, 1.15rem);
  background: var(--services-bg);
  color: var(--services-blue);
}

.services-stack[data-services-stack] .services-stack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(0.7rem, 1.3vw, 1.5rem);
  align-items: start;
}

.services-stack[data-services-stack] .services-stack-pin {
  position: sticky;
  top: 2rem;
  min-height: var(--services-pin-height);
}

.services-stack[data-services-stack] .services-stack-media {
  position: relative;
  height: var(--services-pin-height);
  overflow: hidden;
  border-radius: clamp(1rem, 1.4vw, 1.5rem);
  background: #05070b;
}

.services-stack[data-services-stack] .services-stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1) brightness(0.72);
}

.services-stack[data-services-stack] .services-stack-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.82)), linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 72%);
}

.services-stack[data-services-stack] .services-stack-media figcaption {
  position: absolute;
  z-index: 1;
  top: clamp(3rem, 9vh, 7rem);
  left: clamp(2rem, 4.5vw, 4.25rem);
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: var(--ff-primary);
  font-size: clamp(4.5rem, 8vw, 8.75rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.services-stack[data-services-stack] .services-stack-progress {
  --services-progress: 16.666%;
  position: absolute;
  z-index: 1;
  right: clamp(2rem, 3.5vw, 4rem);
  bottom: clamp(2rem, 5vh, 3.5rem);
  left: clamp(2rem, 3.5vw, 4rem);
  height: 2px;
  background: rgba(255, 255, 255, 0.24);
}

.services-stack[data-services-stack] .services-stack-progress::before {
  content: "";
  display: block;
  width: var(--services-progress);
  height: 100%;
  background: #fff;
  transition: width 450ms ease;
}

.services-stack[data-services-stack] .services-stack-list {
  width: 100%;
  margin: clamp(1.25rem, 7vh, 5rem) 0 var(--services-pin-height);
  padding-bottom: var(--services-pin-height);
  scroll-snap-type: y proximity;
}

.services-stack[data-services-stack] .service-stack-card {
  position: sticky;
  top: 2rem;
  z-index: var(--card-layer, 1);
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.34fr) minmax(0, 0.9fr);
  align-items: center;
  min-height: var(--services-pin-height);
  margin-bottom: clamp(1rem, 4vh, 2rem);
  padding: clamp(2rem, 4.4vw, 4.35rem);
  border: 0;
  border-radius: clamp(1rem, 1.4vw, 1.5rem);
  background: var(--services-card);
  color: var(--services-blue);
  box-shadow: none;
  gap: clamp(1.25rem, 2.8vw, 3rem);
  opacity: 1;
  scroll-snap-align: start;
  transform: scale(1);
  transform-origin: center top;
  transition: opacity 320ms ease, transform 320ms ease, background-color 320ms ease;
}

.services-stack[data-services-stack] .service-stack-card.is-muted {
  opacity: 0.58;
  transform: scale(0.965);
}

.services-stack[data-services-stack] .service-stack-card:nth-child(even) {
  background: var(--services-blue);
  color: #fff;
}

.services-stack[data-services-stack] .service-stack-card:nth-child(even) .service-stack-card-button {
  background: #fff;
  color: var(--services-blue);
}

.services-stack[data-services-stack] .service-stack-card-number {
  display: block;
  margin: 0;
  color: inherit;
  font-family: var(--ff-primary);
  font-size: clamp(5.25rem, 8.1vw, 9.4rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.services-stack[data-services-stack] .service-stack-card-copy {
  max-width: 30rem;
}

.services-stack[data-services-stack] .service-stack-card h3 {
  max-width: 13ch;
  margin: 0;
  color: inherit;
  font-family: var(--ff-primary);
  font-size: clamp(1.85rem, 2.7vw, 3.35rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.services-stack[data-services-stack] .service-stack-card h3 a,
.services-stack[data-services-stack] .service-stack-card-button {
  color: inherit;
  text-decoration: none;
}

.services-stack[data-services-stack] .service-stack-card p {
  max-width: 19rem;
  margin: clamp(1.25rem, 2.2vw, 2rem) 0 0;
  color: inherit;
  font-family: var(--ff-secondary);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.05;
}

.services-stack[data-services-stack] .service-stack-card-button {
  position: absolute;
  bottom: clamp(2rem, 6vh, 4rem);
  left: 50%;
  display: grid;
  width: clamp(4rem, 5vw, 5.25rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0.35rem;
  background: var(--services-blue);
  color: #fff;
  font-family: var(--ff-secondary);
  font-size: clamp(1.75rem, 2vw, 2.2rem);
  font-weight: 800;
  transform: translateX(-50%);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.services-stack[data-services-stack] .service-stack-card-button:hover {
  transform: translateX(-50%) scale(1.04);
}

.services-stack[data-services-stack] .service-stack-card-button:focus-visible {
  outline: 3px solid rgba(0, 87, 183, 0.35);
  outline-offset: 0.35rem;
}

@media (max-width: 63.98rem) {
  .services-stack[data-services-stack] {
    min-height: auto;
    padding: 1rem;
  }

  .services-stack[data-services-stack] .services-stack-layout {
    grid-template-columns: 1fr;
  }

  .services-stack[data-services-stack] .services-stack-pin,
  .services-stack[data-services-stack] .service-stack-card {
    position: relative;
    top: auto;
  }

  .services-stack[data-services-stack] .services-stack-pin {
    min-height: 0;
  }

  .services-stack[data-services-stack] .services-stack-media {
    height: min(72vh, 34rem);
  }

  .services-stack[data-services-stack] .services-stack-media figcaption {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .services-stack[data-services-stack] .services-stack-list {
    margin: 1rem 0 0;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .services-stack[data-services-stack] .service-stack-card {
    grid-template-columns: 1fr;
    min-height: 30rem;
    padding: clamp(2rem, 8vw, 3rem);
    gap: 1.5rem;
  }

  .services-stack[data-services-stack] .service-stack-card-number {
    font-size: clamp(5rem, 24vw, 9rem);
  }

  .services-stack[data-services-stack] .service-stack-card-button {
    position: static;
    margin-top: 2rem;
    transform: none;
  }

  .services-stack[data-services-stack] .service-stack-card-button:hover {
    transform: scale(1.04);
  }
}

/* Cinematic Hero Refresh */
.home-hero {
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #05080c;
  color: #fff;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.08) brightness(0.86);
}

.home-hero::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.14) 54%, rgba(0, 0, 0, 0.56) 100%);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.35fr);
  grid-template-rows: 1fr auto;
  align-items: end;
  column-gap: clamp(2rem, 6vw, 8rem);
  padding: clamp(7rem, 12vh, 10rem) clamp(1.5rem, 2.6vw, 3rem) clamp(3rem, 6vh, 4.5rem);
}

body:not(.td-loader-done) .home-hero-copy {
  opacity: 1;
  transform: none;
}

.home-hero-eyebrow {
  position: absolute;
  left: clamp(1.5rem, 2.6vw, 3rem);
  right: clamp(1.5rem, 2.6vw, 3rem);
  bottom: clamp(39vh, 44vh, 45vh);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: #fff;
  font-family: var(--ff-secondary);
  font-size: clamp(0.72rem, 0.85vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-hero-eyebrow::before {
  content: "+";
  font-size: 1.35em;
  font-weight: 400;
}

.home-hero-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.home-hero .home-hero-title {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-family: var(--ff-secondary);
  font-size: clamp(4.2rem, 7vw, 8.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.075em;
  text-transform: none;
  text-wrap: balance;
}

.home-hero-actions {
  display: grid;
  align-self: end;
  justify-items: start;
  gap: clamp(1.5rem, 4vh, 2.8rem);
  padding-bottom: clamp(0.5rem, 2vh, 2rem);
}

.home-hero-summary {
  position: relative;
  max-width: 21rem;
  margin: 0;
  padding-left: 2.1rem;
  color: #fff;
  font-family: var(--ff-secondary);
  font-size: clamp(1.2rem, 1.55vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.home-hero-summary::before {
  content: "↳";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.95em;
}

.home-hero-cta {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--ff-secondary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: none;
  backdrop-filter: blur(12px);
}

.home-hero-cta:hover {
  background: #0057b7;
  color: #fff;
  transform: translateY(-2px);
}

.home-hero-scroll {
  z-index: 2;
}

.td-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 50%;
  background: #3b82f6;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition:
    opacity 160ms ease,
    width 240ms cubic-bezier(0.22, 1, 0.36, 1),
    height 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    box-shadow 180ms ease,
    mix-blend-mode 180ms ease;
  mix-blend-mode: normal;
}

.td-cursor-glow::after {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  background: rgba(59, 130, 246, 0.14);
  opacity: 1;
  filter: blur(4px);
  transition: opacity 180ms ease;
}

.td-cursor-glow.is-visible {
  opacity: 1;
}

.td-cursor-glow.is-active {
  width: 4.8rem;
  height: 4.8rem;
  background: #fff;
  box-shadow: none;
  mix-blend-mode: difference;
}

.td-cursor-glow.is-active::after {
  opacity: 0;
}

@media (max-width: 63.98rem) {
  .home-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2rem;
    padding: calc(var(--header-h) + 5rem) 1.25rem 2rem;
  }

  .home-hero-eyebrow {
    position: static;
    width: 100%;
  }

  .home-hero .home-hero-title {
    max-width: 10ch;
    font-size: clamp(3.8rem, 17vw, 6.8rem);
  }

  .home-hero-actions {
    gap: 1.4rem;
  }

  .home-hero-summary {
    font-size: 1.25rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .td-cursor-glow {
    display: none;
  }
}

/* Hero Position Fix */
.home-hero-copy {
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.28fr);
  column-gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(7rem, 12vh, 10rem) clamp(2rem, 3vw, 3.25rem) clamp(4rem, 7vh, 5.25rem);
}

.home-hero-eyebrow {
  bottom: clamp(53vh, 55vh, 57vh);
}

.home-hero .home-hero-title {
  max-width: 12.2em;
  font-family: var(--ff-secondary) !important;
  font-size: clamp(3.4rem, 5.2vw, 6.35rem) !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.065em !important;
  text-transform: none !important;
}

.home-hero-actions {
  align-self: end;
  justify-self: end;
  width: min(25rem, 100%);
  padding-bottom: clamp(0.25rem, 3vh, 2.2rem);
}

.home-hero-summary {
  max-width: 23rem;
  font-size: clamp(1.15rem, 1.45vw, 1.7rem);
  line-height: 1.08;
  text-align: left;
}

.home-hero-cta {
  min-width: 13.5rem;
}

@media (max-width: 63.98rem) {
  .home-hero-copy {
    padding: calc(var(--header-h) + 5rem) 1.25rem 2rem;
  }

  .home-hero .home-hero-title {
    max-width: 8.8em;
    font-size: clamp(3.15rem, 14vw, 5.4rem) !important;
    line-height: 1 !important;
  }

  .home-hero-actions {
    justify-self: stretch;
    width: 100%;
  }
}

/* CargoKite-Inspired Clean Theme Pass */
:root {
  --td-theme-ink: #10232c;
  --td-theme-ink-soft: #4f6770;
  --td-theme-teal: #004c65;
  --td-theme-teal-dark: #002d3f;
  --td-theme-teal-deep: #071416;
  --td-theme-mist: #eef4f6;
  --td-theme-cloud: #f7fbfc;
  --td-theme-line: #dce7eb;
  --td-theme-orange: #ff5a2f;
  --td-theme-white: #ffffff;
}

[data-theme="light"] {
  --thm-bg: var(--td-theme-white);
  --thm-surface: var(--td-theme-cloud);
  --thm-txt: var(--td-theme-ink);
  --thm-txt-muted: var(--td-theme-ink-soft);
  --thm-bdr: var(--td-theme-line);
  --thm-acnt: var(--td-theme-orange);
  --thm-acnt-2: var(--td-theme-teal);
}

[data-theme="dark"] {
  --thm-bg: var(--td-theme-teal-deep);
  --thm-surface: rgba(255, 255, 255, 0.06);
  --thm-txt: var(--td-theme-white);
  --thm-txt-muted: rgba(255, 255, 255, 0.68);
  --thm-bdr: rgba(255, 255, 255, 0.16);
  --thm-acnt: var(--td-theme-orange);
  --thm-acnt-2: var(--td-theme-white);
}

html,
body {
  background: var(--td-theme-white);
  color: var(--td-theme-ink);
}

.wrapper {
  background: var(--td-theme-white);
}

.header {
  color: var(--td-theme-white);
}

.header::before {
  background: rgba(0, 45, 63, 0.78);
  backdrop-filter: blur(18px);
}

@media (min-width: 64rem) {
  .header {
    padding: 1rem;
  }

  .header-logo,
  .header-desktop-nav,
  .header-desktop-actions {
    background: rgba(0, 23, 32, 0.74);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }

  .header-desktop-link,
  .header-language-link {
    color: rgba(255, 255, 255, 0.72);
  }

  .header-desktop-link:hover,
  .header-desktop-link:focus-visible,
  .header-services-toggle[aria-expanded="true"] {
    color: var(--td-theme-white);
  }

  .header-quote-link {
    background: var(--td-theme-orange);
    color: var(--td-theme-white);
  }

  .header-quote-link:hover,
  .header-quote-link:focus-visible {
    background: var(--td-theme-white);
    color: var(--td-theme-teal-dark);
  }

  .header-mega-menu {
    background: rgba(0, 39, 54, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
  }
}

.home-hero {
  background: linear-gradient(135deg, var(--td-theme-teal) 0%, var(--td-theme-teal-dark) 100%);
}

.home-hero-video video {
  filter: saturate(0.92) contrast(1.05) brightness(0.88);
}

.home-hero::before {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 90, 47, 0.22), transparent 0 10rem, transparent 24rem),
    linear-gradient(180deg, rgba(0, 35, 49, 0.32) 0%, rgba(0, 35, 49, 0.12) 42%, rgba(0, 35, 49, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 37, 52, 0.68) 0%, rgba(0, 37, 52, 0.18) 56%, rgba(0, 37, 52, 0.64) 100%);
}

.home-hero .home-hero-title {
  color: var(--td-theme-white);
}

.home-hero-summary {
  color: rgba(255, 255, 255, 0.9);
}

.home-hero-summary::before {
  color: var(--td-theme-orange);
}

.home-hero-cta,
.button {
  border-color: transparent;
  background: var(--td-theme-orange);
  color: var(--td-theme-white);
}

.home-hero-cta:hover,
.button:hover {
  background: var(--td-theme-teal-dark);
  color: var(--td-theme-white);
}

.td-statement {
  background: var(--td-theme-white);
  color: var(--td-theme-ink);
}

.td-statement::before {
  background:
    radial-gradient(circle at center, rgba(255, 90, 47, 0.12), transparent 0 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--td-theme-white) 78%);
}

.td-statement-label,
.cargo-drift-pre,
.showroom-header-pre,
.trust-pre,
.orbital-timeline-kicker {
  color: var(--td-theme-orange);
}

.trust {
  background: var(--td-theme-white);
  color: var(--td-theme-ink);
}

.trust-title {
  color: var(--td-theme-ink);
}

.trust-convictions-wrapper .convictions-item {
  background: var(--td-theme-cloud);
  color: var(--td-theme-ink);
  border: 1px solid var(--td-theme-line);
  box-shadow: none;
}

.trust-convictions-wrapper .convictions-item::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 76, 101, 0.82) 100%);
}

.trust-item-heading,
.trust-item-description {
  color: inherit;
}

.trust-item-icon {
  color: var(--td-theme-orange);
}

.services-stack[data-services-stack] {
  --services-bg: var(--td-theme-white);
  --services-card: #f4f8fa;
  --services-blue: var(--td-theme-teal);
  background:
    linear-gradient(180deg, var(--td-theme-white) 0%, var(--td-theme-white) 55%, var(--td-theme-mist) 55%, var(--td-theme-mist) 100%);
}

.services-stack[data-services-stack] .services-stack-media {
  background: var(--td-theme-teal-dark);
}

.services-stack[data-services-stack] .services-stack-media img {
  filter: saturate(0.82) contrast(1.04) brightness(0.86);
}

.services-stack[data-services-stack] .services-stack-media::after {
  background:
    linear-gradient(180deg, rgba(0, 45, 63, 0.68), rgba(0, 45, 63, 0.06) 48%, rgba(0, 45, 63, 0.86)),
    linear-gradient(90deg, rgba(0, 45, 63, 0.64), transparent 72%);
}

.services-stack[data-services-stack] .service-stack-card {
  box-shadow: 0 1.8rem 4rem rgba(16, 35, 44, 0.08);
}

.services-stack[data-services-stack] .service-stack-card:nth-child(even) {
  background: var(--td-theme-teal);
  color: var(--td-theme-white);
}

.services-stack[data-services-stack] .service-stack-card-button,
.services-stack[data-services-stack] .service-stack-card:nth-child(even) .service-stack-card-button {
  background: var(--td-theme-orange);
  color: var(--td-theme-white);
}

.proposals--orbital,
.orbital-timeline {
  background: var(--td-theme-teal-deep);
  color: var(--td-theme-white);
}

.orbital-detail {
  background: rgba(0, 45, 63, 0.62);
  border-color: rgba(255, 255, 255, 0.14);
}

.orbital-core,
.orbital-node.is-active .orbital-node-icon,
.orbital-detail-status,
.orbital-detail-progress-track span {
  background: var(--td-theme-orange);
  color: var(--td-theme-white);
}

.orbital-ring,
.orbital-node-icon {
  border-color: rgba(255, 255, 255, 0.24);
}

.cargo-drift {
  background: var(--td-theme-mist);
  color: var(--td-theme-ink);
}

.cargo-drift::before,
.cargo-drift::after {
  background: linear-gradient(180deg, var(--td-theme-mist), rgba(238, 244, 246, 0));
}

.cargo-drift-rail {
  background: rgba(0, 76, 101, 0.12);
}

.cargo-drift-card {
  box-shadow: none;
  outline: 1px solid rgba(0, 76, 101, 0.08);
}

.cargo-drift-card img {
  filter: saturate(0.86) contrast(1.02);
}

.cargo-drift-title,
.cargo-drift-text {
  color: var(--td-theme-ink);
}

.showroom {
  background: var(--td-theme-teal-deep);
  color: var(--td-theme-white);
}

.showroom::before {
  background:
    linear-gradient(180deg, rgba(7, 20, 22, 0.28), rgba(7, 20, 22, 0.9)),
    radial-gradient(circle at 20% 30%, rgba(255, 90, 47, 0.32), transparent 0 16rem);
}

.showroom-image img {
  filter: saturate(0.78) contrast(1.04) brightness(0.75);
}

.showroom-title,
.showroom-item-title {
  color: var(--td-theme-white);
}

.showroom-item-text {
  color: rgba(255, 255, 255, 0.72);
}

.logos,
.drivers {
  background: var(--td-theme-mist);
  color: var(--td-theme-ink);
}

.logos-title,
.drivers-title {
  color: var(--td-theme-ink);
}

.logos-item {
  opacity: 0.58;
  filter: grayscale(1) contrast(0.8);
}

.drivers-wrapper {
  border-color: var(--td-theme-line);
}

.drivers-item {
  color: var(--td-theme-ink-soft);
}

.drivers-item-image {
  border-radius: 0;
  filter: saturate(0.88) contrast(1.04);
}

.td-footer-image {
  background: var(--td-theme-white);
  color: var(--td-theme-ink);
}

.td-footer-image::before {
  z-index: 1;
  height: clamp(10rem, 20vh, 18rem);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.86) 28%, rgba(255, 255, 255, 0) 100%);
}

.td-footer-image-wordmark {
  color: rgba(16, 35, 44, 0.88);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 1.8rem 2.4rem rgba(0, 76, 101, 0.08);
}

.td-footer-image-contact,
.td-footer-image-meta,
.td-footer-image-nav a {
  color: var(--td-theme-ink);
}

.td-footer-image-nav a::after {
  background: var(--td-theme-orange);
}

.td-cursor-glow {
  background: #2d86ff;
}

.td-cursor-glow::after {
  background: rgba(45, 134, 255, 0.14);
}

.td-cursor-glow.is-active {
  background: #ff8a1f;
  mix-blend-mode: difference;
}

/* Ship-to-Truck Scroll Sequence */
.hero-scroll-sequence {
  position: relative;
  height: 320vh;
  background: var(--td-theme-teal-deep);
  overflow: clip;
  --scroll-freight: 0;
  --scroll-warehousing: 0;
  --scroll-supply: 0;
}

.hero-scroll-sequence::before,
.hero-scroll-sequence::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 18vh;
  pointer-events: none;
}

.hero-scroll-sequence::before {
  top: 0;
  background: linear-gradient(180deg, rgba(7, 20, 22, 1), rgba(7, 20, 22, 0));
}

.hero-scroll-sequence::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--td-theme-white), rgba(7, 20, 22, 0));
}

.hero-scroll-sequence-sticky {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  height: 100svh;
  place-items: center;
  overflow: hidden;
}

.hero-scroll-sequence-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--td-theme-teal-deep);
}

.hero-scroll-sequence-title {
  position: absolute;
  top: 50%;
  left: clamp(1.5rem, 7vw, 8.5rem);
  z-index: 3;
  width: min(58rem, calc(100vw - 3rem));
  min-height: clamp(6rem, 16vw, 13rem);
  margin: 0;
  color: var(--td-theme-white);
  font-family: var(--ff-primary);
  font-size: clamp(4.2rem, 11vw, 12rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-shadow:
    0 1.6rem 4rem rgba(0, 0, 0, 0.48),
    0 0 4rem rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-scroll-word {
  position: relative;
  display: block;
  max-width: 10ch;
  opacity: var(--word-opacity);
  filter: blur(calc((1 - var(--word-opacity)) * 18px));
  transform:
    translate3d(0, calc((1 - var(--word-opacity)) * 2.4rem), 0)
    scale(calc(0.965 + (var(--word-opacity) * 0.035)));
  transition:
    opacity 180ms linear,
    filter 180ms linear,
    transform 180ms linear;
  will-change: opacity, filter, transform;
}

.hero-scroll-word-freight {
  --word-opacity: var(--scroll-freight);
}

.hero-scroll-word-warehousing {
  --word-opacity: var(--scroll-warehousing);
}

.hero-scroll-word-supply {
  --word-opacity: var(--scroll-supply);
  max-width: 10ch;
  font-size: 0.74em;
  line-height: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-sequence {
    height: 100svh;
  }

  .hero-scroll-sequence-sticky {
    position: relative;
  }
}

/* Globe Statement Adjustment */
.td-statement {
  min-height: clamp(42rem, 94vh, 58rem);
  place-items: center start;
  background: #030607;
  color: #f8fbff;
}

.td-statement-media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 58%, rgba(45, 134, 255, 0.12), transparent 0 24rem),
    linear-gradient(90deg, #030607 0%, rgba(3, 6, 7, 0.9) 28%, rgba(3, 6, 7, 0.56) 100%);
}

.td-statement-media::after {
  position: absolute;
  right: clamp(-21rem, -22vw, -14rem);
  bottom: clamp(-12rem, -14vw, -8rem);
  width: clamp(48rem, 58vw, 58rem);
  aspect-ratio: 1;
  z-index: 1;
  border: 1px solid rgba(45, 134, 255, 0.62);
  border-radius: 50%;
  box-shadow:
    0 0 0.85rem rgba(45, 134, 255, 0.34),
    inset 0 0 1rem rgba(45, 134, 255, 0.16),
    0 0 3.5rem rgba(45, 134, 255, 0.12);
  content: "";
  pointer-events: none;
}

.td-statement-media::before {
  position: absolute;
  right: clamp(-20rem, -21vw, -13rem);
  bottom: clamp(-11rem, -13vw, -7rem);
  width: clamp(44rem, 54vw, 54rem);
  aspect-ratio: 1;
  z-index: 1;
  border: 1px solid rgba(45, 134, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 3rem rgba(45, 134, 255, 0.12);
  content: "";
  pointer-events: none;
}

.td-statement-globe {
  position: relative;
  z-index: 2;
  width: clamp(34rem, 40vw, 40rem);
  max-width: none;
  transform: translate(39%, 16%) scale(1.48);
  transform-origin: center right;
  opacity: 0.58;
  filter:
    grayscale(1)
    contrast(1.12)
    brightness(0.9);
  mix-blend-mode: screen;
  will-change: transform;
}

.td-statement-globe.is-ready {
  opacity: 0.58;
}

.td-statement-inner {
  justify-self: start;
  width: min(39rem, 42vw);
  margin-inline: clamp(2rem, 10.2vw, 12rem) auto;
  text-align: left;
}

.td-statement-label {
  margin-bottom: clamp(1rem, 1.7vw, 1.45rem);
  color: rgba(248, 251, 255, 0.68) !important;
  font-family: var(--ff-secondary) !important;
  font-size: clamp(0.74rem, 0.9vw, 0.92rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.td-statement-title {
  color: #f8fbff !important;
  font-size: clamp(3.1rem, 5.7vw, 6.65rem) !important;
  line-height: 0.98 !important;
  max-width: 12ch;
  text-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.45);
}

.td-statement-support {
  max-width: 31rem;
  margin-top: clamp(1.1rem, 2vw, 1.75rem);
  color: rgba(248, 251, 255, 0.66);
  font-family: var(--ff-secondary);
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.55;
}

.cargo-drift-container-visual {
  position: relative;
  width: min(34rem, 82vw);
  margin: 0 auto;
  transform: translateY(clamp(-2rem, -4vh, -1rem));
  animation: td-container-settle 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.cargo-drift-container-visual::before {
  content: "";
  position: absolute;
  top: min(-26vh, -10rem);
  bottom: calc(100% - 1.05rem);
  left: 50%;
  z-index: 0;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(0, 76, 101, 0), rgba(0, 76, 101, 0.55) 18%, rgba(0, 76, 101, 0.72));
  box-shadow: 0 0 18px rgba(45, 134, 255, 0.18);
  transform: translateX(-50%);
}

.cargo-drift-container-visual::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 2%;
  left: 12%;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(18px);
  transform: scaleX(0.78);
  transform-origin: center;
  animation: td-container-shadow 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.cargo-drift-container-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2.5rem 2.8rem rgba(0, 0, 0, 0.22));
}

@keyframes td-container-settle {
  from {
    transform: translateY(clamp(-3.5rem, -7vh, -2rem));
  }
  to {
    transform: translateY(0);
  }
}

@keyframes td-container-shadow {
  from {
    opacity: 0.35;
    transform: scaleX(0.64);
  }
  to {
    opacity: 0.75;
    transform: scaleX(1);
  }
}

@media (max-width: 63.98rem) {
  .hero-scroll-sequence-title {
    top: 48%;
    left: clamp(1.25rem, 6vw, 2rem);
    width: min(28rem, calc(100vw - 2.5rem));
    min-height: 9rem;
    font-size: clamp(3.25rem, 17vw, 5.85rem);
  }

  .td-statement {
    min-height: 42rem;
  }

  .td-statement-globe {
    width: min(32rem, 96vw);
    transform: translate(43%, 18%) scale(1.38);
  }

  .td-statement-media::after {
    right: -21rem;
    bottom: -9rem;
    width: min(46rem, 140vw);
  }

  .td-statement-media::before {
    right: -19rem;
    bottom: -8rem;
    width: min(42rem, 130vw);
  }

  .td-statement-inner {
    width: min(28rem, 88vw);
    margin-inline: clamp(1.25rem, 6vw, 2rem) auto;
  }

  .td-statement-title {
    font-size: clamp(2.7rem, 13vw, 4.35rem) !important;
  }

}

/* Header Polish Fix */
@media (min-width: 64rem) {
  .header {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    height: 5.05rem;
    padding: 0 !important;
    grid-template-columns: 14rem minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 28, 36, 0.94) !important;
    box-shadow:
      0 1.25rem 4rem rgba(0, 0, 0, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
  }

  .header-logo,
  .header-desktop-nav,
  .header-desktop-actions {
    height: 100%;
    background: transparent !important;
    border: 0;
    box-shadow: none !important;
  }

  .header-logo {
    padding-inline: 1.65rem 1.25rem;
  }

  .header-logo-inner {
    width: 8.2rem;
    max-height: 3rem;
  }

  .header-desktop-nav {
    gap: clamp(1.55rem, 2.5vw, 3.1rem);
  }

  .header-desktop-actions {
    gap: 1.35rem;
    padding-right: 0.65rem;
  }

  .header-language-link {
    min-width: 4.75rem;
    min-height: 3.45rem;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
  }

  .header-quote-link {
    min-height: 3.45rem;
    padding-inline: 1.35rem;
    border-radius: 7px;
  }
}

/* Process Scroll Sequence */
.sequence-section {
  position: relative;
  min-height: 100svh;
  background: #000000;
  color: #f9fafb;
}

.sequence-sticky {
  position: relative;
  top: 0;
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(47, 119, 255, 0.08), transparent 42%),
    #000000;
}

.sequence-title {
  position: absolute;
  top: clamp(5.25rem, 8vw, 7rem);
  left: var(--container-gutter);
  z-index: 3;
  width: auto;
  color: #f9fafb;
  pointer-events: none;
}

.sequence-title p {
  margin: 0 0 0.6rem;
  color: var(--thm-acnt, #fedb5b);
  font-family: var(--ff-secondary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sequence-title h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ff-primary);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[dir="rtl"] .sequence-title {
  right: var(--container-gutter);
  left: auto;
  text-align: right;
}

.process-sequence-canvas,
#seq-canvas {
  display: block;
  width: auto;
  max-width: min(82vw, 78rem);
  height: auto;
  max-height: 76vh;
  object-fit: contain;
}

.step-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3.5rem);
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(4, 4, 4, 0.55) 55%,
    rgba(0, 0, 0, 0.96) 100%
  );
}

.step-info {
  width: min(32rem, 100%);
}

.step-meta {
  display: flex;
  margin-bottom: 0.85rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--thm-acnt, #fedb5b);
  font-family: var(--ff-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-meta::before {
  display: block;
  width: 0.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.step-title {
  color: #f9fafb;
  font-family: var(--ff-primary);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.step-desc {
  margin-top: 0.75rem;
  color: rgba(249, 250, 251, 0.68);
  font-family: var(--ff-secondary);
  font-size: clamp(0.85rem, 1.1vw, 0.98rem);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.step-overlay.visible .step-meta,
.step-overlay.visible .step-title,
.step-overlay.visible .step-desc {
  opacity: 1;
  transform: translateY(0);
}

.step-rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.step-count {
  color: rgba(249, 250, 251, 0.5);
  font-family: var(--ff-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.step-instruction {
  max-width: 15rem;
  margin: 0;
  color: rgba(249, 250, 251, 0.58);
  font-family: var(--ff-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.step-count strong {
  color: #f9fafb;
}

.step-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-dot {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(249, 250, 251, 0.18);
  transition: background-color 0.3s ease, width 0.3s ease;
}

.step-dot.is-active {
  width: 1.4rem;
  border-radius: 0.25rem;
  background: var(--thm-acnt, #fedb5b);
}

.step-dot.is-done {
  background: rgba(254, 219, 91, 0.55);
}

.sequence-spacer {
  height: 0;
}

@media (max-width: 63.98rem) {
  .sequence-spacer {
    height: 0;
  }

  .process-sequence-canvas,
  #seq-canvas {
    max-width: 94vw;
    max-height: 62vh;
  }

  .step-overlay {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .sequence-title {
    top: clamp(5rem, 12vw, 6.25rem);
  }

  .step-rail {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .step-instruction {
    text-align: left;
  }
}

@media (max-width: 35.98rem) {
  .step-title {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
  }

  .step-desc {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-meta,
  .step-title,
  .step-desc,
  .step-dot {
    transition-duration: 1ms;
  }
}

/* Cargo Transition Scroll Sequence */
.cargo-trans-sequence {
  position: relative;
  height: 360vh;
  overflow: clip;
  background: #b8e9f4;
  --cargo-trans-across: 1;
  --cargo-trans-beyond: 0;
}

.cargo-trans-sequence::before,
.cargo-trans-sequence::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  height: 18vh;
  content: "";
  pointer-events: none;
}

.cargo-trans-sequence::before {
  top: 0;
  background: linear-gradient(180deg, var(--td-theme-white), rgba(255, 255, 255, 0));
}

.cargo-trans-sequence::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--td-theme-white), rgba(255, 255, 255, 0));
}

.cargo-trans-sequence-sticky {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  height: 100svh;
  place-items: center;
  overflow: hidden;
}

.cargo-trans-sequence-sticky::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.14), transparent 0 30rem),
    linear-gradient(180deg, rgba(6, 19, 25, 0.08), rgba(6, 19, 25, 0.32));
  content: "";
  pointer-events: none;
}

.cargo-trans-sequence-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #b8e9f4;
}

.cargo-trans-sequence-title {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: min(92rem, calc(100vw - 3rem));
  min-height: clamp(6rem, 13vw, 12rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Playfair Display", serif;
  font-size: clamp(4.1rem, 10vw, 11.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-align: center;
  text-shadow:
    0 0.08em 0.35em rgba(0, 62, 85, 0.32),
    0 1.5rem 5rem rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.cargo-trans-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: var(--cargo-text-opacity);
  filter: blur(calc((1 - var(--cargo-text-opacity)) * 12px));
  transform:
    translate3d(0, calc((1 - var(--cargo-text-opacity)) * 1.1rem), 0)
    scale(calc(0.985 + (var(--cargo-text-opacity) * 0.015)));
  transition:
    opacity 80ms linear,
    filter 180ms ease,
    transform 180ms ease;
  will-change: opacity, filter, transform;
}

.cargo-trans-text-across {
  --cargo-text-opacity: var(--cargo-trans-across);
}

.cargo-trans-text-beyond {
  --cargo-text-opacity: var(--cargo-trans-beyond);
}

@media (max-width: 63.98rem) {
  .cargo-trans-sequence {
    height: 300vh;
  }

  .cargo-trans-sequence-title {
    width: min(34rem, calc(100vw - 2rem));
    min-height: 10rem;
    font-size: clamp(3.5rem, 18vw, 6.25rem);
  }
}

/* Hero Left Rail Adjustment */
.home-hero-copy {
  padding-left: var(--container-gutter);
}

.home-hero .home-hero-title {
  justify-self: start;
  text-align: left !important;
}

@media (max-width: 63.98rem) {
  .home-hero-copy {
    padding-left: 1.25rem;
  }
}

/* Nav Dropdown Fix */
@media (min-width: 64rem) {
  .header {
    overflow: visible !important;
  }

  .header::before {
    display: block;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: rgba(7, 28, 36, 0.94);
    opacity: 1;
    content: "";
  }

  .header-mega-trigger {
    position: relative;
  }

  .header-mega-menu {
    top: calc(100% + 0.9rem);
    left: 50%;
    z-index: 1002;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(4, 18, 24, 0.94) !important;
    box-shadow:
      0 2rem 5rem rgba(0, 0, 0, 0.42),
      inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  }

  .header-mega-menu[inert] {
    visibility: hidden;
  }

  .header-mega-feature img {
    filter: saturate(0.86) contrast(1.04) brightness(0.82);
  }
}

/* Header Action Dropdowns */
@media (min-width: 64rem) {
  .header-action-trigger {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .header-contact-toggle svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
  }

  .header-contact-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .header-action-menu {
    width: min(27rem, calc(100vw - 3rem));
    left: auto;
    right: 0;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.65rem;
    transform: translateY(0);
  }

  .header-action-menu[inert] {
    transform: translateY(-0.5rem);
  }

  .header-contact-card {
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.055);
    color: #f9fafb;
    text-transform: none;
  }

  .header-contact-card span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--td-theme-orange, #ff5a2f);
    font-family: var(--ff-secondary);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .header-contact-card strong {
    display: block;
    font-family: var(--ff-secondary);
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .header-contact-card small {
    display: block;
    margin-top: 0.35rem;
    color: rgba(249, 250, 251, 0.62);
    font-family: var(--ff-secondary);
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .header-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .header-contact-actions a {
    display: flex;
    min-height: 2.75rem;
    padding: 0.7rem 0.8rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    color: #f9fafb;
    font-family: var(--ff-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .header-contact-actions a:hover,
  .header-contact-actions a:focus-visible {
    background: var(--td-theme-orange, #ff5a2f);
    color: #ffffff;
  }
}

/* Shared Service Page Nav Compensation */
.service-detail-page .service-detail-shell {
  padding-top: calc(var(--header-h) + clamp(3.5rem, 7vw, 6rem));
}

.service-detail-page .header {
  position: fixed;
}

/* Service Detail Heading Wrap Fix */
.service-detail-hero > div:first-child {
  min-width: 0;
}

.service-detail-title {
  max-width: min(10.5ch, 100%);
  overflow-wrap: normal;
}

.service-detail-title--long {
  max-width: min(12.5ch, 100%);
  font-size: clamp(3.25rem, 6vw, 6.35rem);
  line-height: 0.9;
}

.service-detail-page .service-detail-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 1fr);
}

/* Back To Top */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 90;
  display: grid;
  width: clamp(3.25rem, 4.2vw, 4.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 22, 28, 0.78);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem) scale(0.92);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 260ms ease,
    color 260ms ease;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top span {
  display: block;
  font-family: var(--ff-secondary);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 800;
  line-height: 1;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--td-theme-orange, #ff4a2a);
  color: #ffffff;
  outline: 0;
}

/* Mobile Compatibility Pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

img,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 63.98rem) {
  :root {
    --container-gutter: clamp(1rem, 5vw, 1.5rem);
  }

  .header {
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    min-width: 0;
    height: 4.5rem;
    border-radius: 0.55rem;
  }

  .header-logo {
    min-width: 9rem;
    max-width: 48vw;
    padding-inline: 0.9rem;
  }

  .header-logo-inner {
    width: min(9.5rem, 42vw);
    height: auto;
  }

  .header-nav {
    min-width: 0;
    flex: 0 0 auto;
  }

  .header-nav-toggle {
    min-width: 5.7rem;
    padding-inline: 0.85rem;
    font-size: 0.72rem;
  }

  .header-nav-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    padding: calc(var(--header-h) + 1.75rem) 1rem 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .header-nav-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .header-mobile-column {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.04);
  }

  .header-mobile-column a {
    display: block;
    padding-block: 0.48rem;
    overflow-wrap: anywhere;
  }

  .header-mobile-actions,
  .header-nav-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 0 0;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-copy {
    display: flex;
    min-height: 100svh;
    padding: calc(var(--header-h) + 4.75rem) 1rem 2rem !important;
    justify-content: flex-end;
    gap: clamp(1.25rem, 6vh, 2.5rem);
  }

  .home-hero .home-hero-title {
    max-width: min(8.6em, 100%) !important;
    font-size: clamp(3.2rem, 15vw, 5.5rem) !important;
    line-height: 0.95 !important;
    overflow-wrap: normal;
  }

  .home-hero-actions {
    width: min(100%, 25rem);
    justify-self: stretch;
  }

  .home-hero-summary {
    max-width: 100%;
    padding-left: 1.3rem;
    font-size: clamp(1rem, 5vw, 1.35rem) !important;
    line-height: 1.08;
  }

  .home-hero-cta {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-scroll-sequence {
    height: 240vh;
  }

  .hero-scroll-sequence-title {
    top: 52%;
    left: 1rem;
    width: calc(100vw - 2rem);
    font-size: clamp(3.6rem, 17vw, 6.4rem);
  }

  .cargo-trans-sequence {
    height: 240vh;
  }

  .cargo-trans-sequence-title {
    width: calc(100vw - 2rem);
    font-size: clamp(3.25rem, 17vw, 6rem);
  }

  .sequence-sticky {
    align-items: center;
  }

  .sequence-title {
    top: calc(var(--header-h) + 1.75rem);
    left: 1rem;
    width: calc(100vw - 2rem);
  }

  html[dir="rtl"] .sequence-title {
    right: 1rem;
    left: auto;
    text-align: right;
  }

  .process-sequence-canvas,
  #seq-canvas {
    max-width: 100vw;
    max-height: 58vh;
  }

  .step-overlay {
    padding: 1rem;
  }

  .step-info {
    width: 100%;
  }

  .step-title {
    max-width: 100%;
    font-size: clamp(1.25rem, 7vw, 2rem);
  }

  .step-desc {
    max-width: 100%;
  }

  .services-stack[data-services-stack] {
    padding: clamp(4rem, 12vw, 6rem) 1rem;
  }

  .services-stack[data-services-stack] .services-stack-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-stack[data-services-stack] .services-stack-visual {
    position: relative;
    top: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.05;
  }

  .services-stack[data-services-stack] .service-stack-card {
    position: sticky;
    top: calc(var(--header-h) + 1rem + var(--stack-mobile-offset));
    display: flex;
    min-height: 25rem;
    padding: clamp(1.25rem, 6vw, 2rem);
    flex-direction: column;
    justify-content: space-between;
  }

  .services-stack[data-services-stack] .service-stack-card h3 {
    max-width: 100%;
    font-size: clamp(2.25rem, 12vw, 4rem);
    line-height: 0.9;
  }

  .trust-convictions-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-convictions-wrapper .convictions-item {
    min-height: 24rem;
  }

  .cargo-drift {
    display: grid;
    min-height: auto;
    padding: clamp(4rem, 14vw, 6rem) 1rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cargo-drift-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    transform: none !important;
  }

  .cargo-drift-column--left,
  .cargo-drift-column--right {
    grid-column: 1;
  }

  .cargo-drift-sticky {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    grid-column: 1;
    grid-row: 2;
    padding: 1.5rem 0;
  }

  .cargo-drift-title {
    font-size: clamp(2.15rem, 11vw, 4rem) !important;
    line-height: 1.05 !important;
  }

  .cargo-drift-card {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1 / 0.82;
  }

  .cargo-drift-card--portrait {
    aspect-ratio: 0.78 / 1;
  }

  .showroom {
    min-height: auto;
    padding: clamp(4rem, 12vw, 6rem) 1rem;
  }

  .showroom-image {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 22rem;
    aspect-ratio: 1 / 1.15;
  }

  .showroom-wrapper,
  .showroom-list,
  .showroom-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .showroom-title,
  .showroom-item-title {
    font-size: clamp(2.4rem, 13vw, 4.5rem) !important;
    line-height: 0.95;
  }

  .drivers-wrapper,
  .drivers-list,
  .logos-list {
    grid-template-columns: 1fr;
  }

  .drivers-item {
    min-height: auto;
  }

  .td-footer-image {
    min-height: 80svh;
    padding: clamp(3rem, 12vw, 5rem) 1rem 1rem;
  }

  .td-footer-image-inner {
    min-height: 68svh;
    align-content: end;
  }

  .td-footer-image-wordmark {
    font-size: clamp(3.2rem, 19vw, 7rem);
    line-height: 0.78;
    word-break: keep-all;
  }

  .td-footer-image-contact,
  .td-footer-image-nav,
  .td-footer-image-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

@media (max-width: 47.98rem) {
  .home-hero .home-hero-title {
    font-size: clamp(2.75rem, 14vw, 4.65rem) !important;
  }

  .home-hero-summary::before {
    left: 0;
  }

  .hero-scroll-sequence-title {
    font-size: clamp(3rem, 16vw, 5.25rem);
  }

  .cargo-drift-column {
    grid-template-columns: 1fr;
  }

  .cargo-drift-card {
    aspect-ratio: 1.35 / 1;
  }

  .trust-convictions-wrapper .convictions-item {
    min-height: 21rem;
  }
}

@media (max-width: 35.98rem) {
  .header {
    right: 0.45rem;
    left: 0.45rem;
  }

  .header-logo {
    min-width: 7.75rem;
    padding-inline: 0.65rem;
  }

  .header-logo-inner {
    width: min(8rem, 39vw);
  }

  .header-nav-toggle {
    min-width: 4.9rem;
    padding-inline: 0.65rem;
  }

  .home-hero-copy {
    padding-inline: 0.85rem !important;
  }

  .home-hero .home-hero-title {
    font-size: clamp(2.35rem, 13.5vw, 4rem) !important;
  }

  .service-stack-card h3,
  .services-stack[data-services-stack] .service-stack-card h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }
}

@media (max-width: 63.98rem) {
  .service-detail-page .service-detail-shell {
    padding: calc(var(--header-h) + 2.2rem) 1rem 1.25rem;
  }

  .service-detail-page .header {
    right: 0.75rem;
    left: 0.75rem;
  }

  .service-detail-page .service-detail-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .service-detail-title,
  .service-detail-title--long {
    max-width: 100%;
    font-size: clamp(2.85rem, 14vw, 5rem);
    line-height: 0.9;
    overflow-wrap: anywhere;
  }

  .service-detail-lede {
    max-width: 100%;
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  .service-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-detail-actions a {
    justify-content: center;
    text-align: center;
  }

  .service-detail-media {
    min-width: 0;
    aspect-ratio: 1 / 1.05;
  }

  .service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-detail-panel {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: auto;
  }

  .service-detail-panel span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .service-detail-body {
    padding-block: clamp(3rem, 12vw, 5rem);
  }

  .service-detail-body h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3.75rem);
    line-height: 1;
  }

  .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-detail-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Integrated TD Source Sections */
.td-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.td-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.td-image-pop {
  --td-pop-scale: 0.95;
  opacity: 0;
  transform: scale(var(--td-pop-scale));
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.td-image-pop.is-visible {
  --td-pop-scale: 1;
  opacity: 1;
}

.td-services-area {
  --td-new-blue: var(--td-theme-teal, #0057b7);
  --td-new-orange: var(--td-theme-orange, #ff4a2a);
  background: #fff;
  color: #030405;
}

.td-cargo-mission {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 74, 42, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f7fafb 100%);
  color: #030405;
}

.td-cargo-lines {
  position: absolute;
  left: 4vw;
  top: 260px;
  width: min(760px, 50vw);
  height: 470px;
  border: 1px solid rgba(0, 87, 183, 0.2);
  border-radius: 48% 52% 46% 54%;
  transform: rotate(-8deg);
}

.td-cargo-lines::after {
  content: "";
  position: absolute;
  inset: 86px;
  border: 1px solid rgba(0, 87, 183, 0.16);
  border-radius: 48% 52% 46% 54%;
}

.td-section-truck {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.td-section-truck--air {
  right: clamp(16px, 6vw, 110px);
  top: 250px;
  width: min(560px, 36vw);
  transform: translate3d(24vw, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale));
}

.td-section-truck--air.is-visible {
  transform: translate3d(0, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale));
}

.td-cargo-plane {
  position: absolute;
  z-index: 1;
  top: 150px;
  left: -5vw;
  width: min(1040px, 56vw);
  height: 520px;
  margin: 0;
  transform: translate3d(-18vw, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale));
  pointer-events: none;
}

.td-cargo-plane.is-visible {
  transform: translate3d(0, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale));
}

.td-cargo-plane img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.td-cargo-mission__content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
}

.td-cargo-mission h2 {
  margin: 0;
  max-width: 880px;
  font-family: var(--ff-primary);
  font-size: clamp(54px, 4.7vw, 94px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.td-nowrap {
  white-space: nowrap;
}

.td-cargo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.td-cargo-pills a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(3, 4, 5, 0.08);
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.td-cargo-pills span {
  color: var(--td-new-orange);
}

.td-cargo-mission p {
  margin: 0;
  max-width: 610px;
  color: #2b3033;
  font-size: 17px;
  line-height: 1.55;
}

.td-services-grid-section {
  padding: 84px 24px 12px;
  background: #fff;
  color: #030405;
}

.td-services-kicker {
  margin: 0 0 0.9rem;
  color: var(--td-new-orange, #ff4a2a);
  font-family: var(--ff-secondary);
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.td-services-grid-section > h2 {
  margin: 0 0 58px;
  font-family: var(--ff-primary);
  font-size: clamp(2rem, 2.7777777778vw + 0.5rem, 2.5rem);
  font-weight: 520;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.td-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-radius: 14px;
  overflow: visible;
}

.td-service-card {
  position: relative;
  min-height: 342px;
  padding: 32px 24px 30px;
  background: #f6f7f7;
  border: 1px solid rgba(0, 76, 101, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition:
    background 300ms ease,
    color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease;
}

.td-service-card img {
  display: block;
  width: 82%;
  height: 190px;
  margin: 20px auto 0;
  object-fit: contain;
  transform: translateY(0) scale(1);
  transition:
    filter 300ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.td-service-card span,
.td-service-card a {
  color: currentColor;
  font-size: 18px;
}

.td-service-card__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 24px;
  border-top: 1px solid transparent;
}

.td-service-card__body--plain {
  justify-content: flex-start;
}

.td-service-card a {
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
  white-space: nowrap;
}

.td-service-card:hover,
.td-service-card:focus-within {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #2f8cff 0%, #0057b7 58%, #003a84 100%);
  color: #fff;
  box-shadow: 0 2.1rem 4rem rgba(0, 87, 183, 0.2);
  transform: translateY(-2px);
}

.td-service-card:hover img,
.td-service-card:focus-within img {
  filter: drop-shadow(0 1.6rem 1.25rem rgba(0, 33, 72, 0.18));
  transform: translateY(-0.35rem) scale(1.03);
}

.td-service-card:hover .td-service-card__body,
.td-service-card:focus-within .td-service-card__body {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.td-service-card:hover a,
.td-service-card:focus-within a {
  opacity: 1;
  transform: translateX(0);
}

.td-service-card--all {
  padding: 0;
  justify-content: flex-end;
  background: #111719;
  color: #fff;
}

.td-service-card-action {
  display: flex;
  width: 100%;
  min-height: 100%;
  padding: 32px 24px 30px;
  align-items: flex-end;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.td-service-card-action:focus-visible {
  outline: 2px solid var(--td-new-orange, #ff4a2a);
  outline-offset: -8px;
}

.td-service-card--all span {
  max-width: 230px;
  font-family: var(--ff-primary);
  font-size: clamp(34px, 2.7vw, 52px);
  font-weight: 650;
  line-height: 0.98;
}

.td-b2b-scroll {
  min-height: 285vh;
  padding: 0 clamp(24px, 7vw, 120px);
  background: #fff;
  color: #07090b;
  overflow: visible;
}

.td-b2b-scroll__stage {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100vh;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.td-b2b-scroll__title {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  margin: 0;
  color: #121416;
  text-align: center;
  line-height: 1.05;
  letter-spacing: 0;
}

.td-b2b-line {
  display: block;
  color: currentColor;
}

.td-b2b-line--small {
  font-size: clamp(40px, 5vw, 82px);
  font-weight: 420;
}

.td-b2b-line--large {
  margin-top: 14px;
  font-family: var(--ff-primary);
  font-size: clamp(70px, 8.4vw, 128px);
  font-weight: 720;
}

.td-b2b-line--after {
  font-family: var(--ff-primary);
  font-size: clamp(62px, 7.2vw, 118px);
  font-weight: 520;
  line-height: 1.12;
}

.td-b2b-scroll__truck {
  position: absolute;
  z-index: 3;
  left: var(--td-truck-x, -88vw);
  top: 50%;
  width: min(1420px, 112vw);
  height: auto;
  transform: translate(-28%, -50%);
  filter: drop-shadow(0 28px 34px rgba(10, 14, 18, 0.13));
  will-change: left;
}

.td-laptop-quote {
  position: relative;
  min-height: 230vh;
  overflow: visible;
  padding: 18vh clamp(24px, 5vw, 88px) 0;
  background: #fff;
  color: #071012;
}

.td-laptop-quote::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: clamp(8rem, 18vh, 16rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 72%);
}

.td-laptop-quote__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 118px);
  min-height: 100vh;
}

.td-laptop-quote__device {
  position: relative;
  margin: 0;
  transform:
    translate3d(var(--td-laptop-x, 0vw), 0, 0)
    scale3d(var(--td-laptop-scale, 2.35), var(--td-laptop-scale, 2.35), 1);
  transform-origin: 42% 36%;
  transition: opacity 220ms ease;
  contain: layout paint style;
  will-change: transform;
}

.td-laptop-quote__device::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 4%;
  left: 8%;
  z-index: -1;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(17, 24, 29, 0.18), rgba(17, 24, 29, 0));
  transform: translate3d(0, 1.6rem, 0) scaleX(0.82);
  pointer-events: none;
}

.td-laptop-quote__device img {
  display: block;
  width: min(760px, 56vw);
  height: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.td-laptop-quote__cta {
  max-width: 460px;
  opacity: var(--td-laptop-cta-opacity, 0);
  transform: translateY(var(--td-laptop-cta-y, 34px));
  will-change: opacity, transform;
}

.td-laptop-quote__cta p {
  max-width: 360px;
  margin: 0 0 22px;
  color: #536067;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.td-laptop-quote__cta h2 {
  margin: 0 0 22px;
  font-family: var(--ff-primary);
  font-size: clamp(54px, 4.7vw, 88px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: 0;
}

.td-laptop-quote__cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--td-new-orange, #ff4a2a);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

@media (max-width: 63.98rem) {
  .td-cargo-mission {
    min-height: auto;
    padding: 80px 24px;
  }

  .td-cargo-lines,
  .td-cargo-plane,
  .td-section-truck,
  .td-cargo-mission__content {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .td-cargo-lines,
  .td-section-truck {
    display: none;
  }

  .td-cargo-plane {
    width: 100%;
    height: 240px;
    margin: 0 0 36px;
    transform: translate3d(-18vw, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale));
  }

  .td-cargo-mission__content {
    display: block;
  }

  .td-cargo-mission h2 {
    margin-bottom: 30px;
    font-size: 48px;
  }

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

  .td-service-card {
    min-height: 300px;
  }

  .td-b2b-scroll {
    min-height: 185vh;
    padding: 0 24px;
  }

  .td-b2b-scroll__title {
    font-size: clamp(52px, 14vw, 84px);
  }

  .td-b2b-scroll__truck {
    width: 92vw;
  }

  .td-laptop-quote {
    min-height: 165vh;
    padding: 0 24px;
  }

  .td-laptop-quote__sticky {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }

  .td-laptop-quote__device {
    transform:
      translate3d(0, var(--td-laptop-mobile-y, 0px), 0)
      scale3d(var(--td-laptop-scale, 1.5), var(--td-laptop-scale, 1.5), 1);
    transform-origin: center;
  }

  .td-laptop-quote__device img {
    width: min(100%, 560px);
  }

  .td-laptop-quote__cta h2 {
    font-size: clamp(46px, 13vw, 72px);
  }
}

@media (max-width: 35.98rem) {
  .td-services-grid-section {
    padding-inline: 16px;
  }

  .td-services-grid-section > h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .td-services-grid {
    grid-template-columns: 1fr;
  }

  .td-service-card {
    min-height: 280px;
  }

  .td-service-card__body {
    align-items: flex-start;
    flex-direction: column;
  }

  .td-service-card a {
    opacity: 1;
    transform: none;
  }
}

/* Final Mobile Stabilization Layer */
@media (max-width: 63.98rem) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: clip !important;
  }

  body {
    touch-action: pan-y;
  }

  .header {
    position: fixed;
    top: 0.65rem;
    right: 0.65rem;
    left: 0.65rem;
    width: auto;
    height: 4.4rem;
    min-width: 0;
    border-radius: 0.6rem;
  }

  .header-desktop-nav,
  .header-desktop-actions,
  .header-mega-scrim {
    display: none !important;
  }

  .header-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 6.25rem);
  }

  .header-logo-inner {
    width: min(9rem, 48vw);
  }

  .header-nav {
    display: flex;
    flex: 0 0 auto;
  }

  .header-nav-wrapper {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .home-hero {
    min-height: 100svh;
    border-radius: 0 0 0.75rem 0.75rem;
  }

  .home-hero-copy {
    display: flex !important;
    min-height: 100svh;
    padding: calc(var(--header-h) + 3.8rem) 1rem 2.25rem !important;
    justify-content: flex-end;
  }

  .home-hero .home-hero-title {
    max-width: 100% !important;
    font-size: clamp(2.7rem, 13.6vw, 4.85rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
  }

  .home-hero-actions {
    width: 100%;
    max-width: 28rem;
  }

  .home-hero-summary {
    max-width: 100%;
    font-size: clamp(1rem, 4.7vw, 1.35rem) !important;
  }

  .home-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .home-hero-scroll {
    display: none;
  }

  .td-b2b-scroll {
    min-height: auto !important;
    padding: clamp(4rem, 16vw, 7rem) 1rem;
  }

  .td-b2b-scroll__stage {
    position: relative !important;
    min-height: auto;
    gap: 2rem;
  }

  .td-b2b-scroll__title {
    text-align: left;
  }

  .td-b2b-line--large,
  .td-b2b-line--after {
    font-size: clamp(2.7rem, 13vw, 4.85rem);
    line-height: 0.98;
  }

  .td-b2b-scroll__truck {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 28rem);
    transform: none;
  }

  .trust {
    padding: clamp(4rem, 14vw, 6rem) 1rem;
  }

  .trust-title {
    font-size: clamp(2.4rem, 12vw, 4.4rem) !important;
    line-height: 0.98 !important;
  }

  .trust-convictions-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .trust-convictions-wrapper .convictions-item {
    width: 100%;
    min-height: 24rem;
  }

  .trust-convictions-wrapper .convictions-item-image {
    opacity: 0.62;
  }

  .td-cargo-mission {
    min-height: auto !important;
    padding: clamp(4rem, 15vw, 7rem) 1rem;
  }

  .td-cargo-lines,
  .td-section-truck {
    display: none !important;
  }

  .td-cargo-plane {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: 13rem;
    margin: 0 0 2rem;
    transform: none !important;
  }

  .td-cargo-mission__content {
    position: relative !important;
    inset: auto !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .td-cargo-mission h2,
  .td-services-grid-section > h2 {
    font-size: clamp(2.4rem, 11.5vw, 4.25rem) !important;
    line-height: 1 !important;
  }

  .td-nowrap {
    white-space: normal;
  }

  .td-cargo-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .td-cargo-pills a {
    justify-content: center;
  }

  .td-services-grid-section {
    padding: clamp(4rem, 14vw, 6rem) 1rem 1rem;
  }

  .td-services-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .td-service-card {
    min-height: 18rem;
  }

  .td-service-card img {
    height: 11rem;
  }

  .td-service-card__body {
    align-items: flex-start;
    flex-direction: column;
  }

  .td-service-card a {
    opacity: 1;
    transform: none;
  }

  .sequence-section {
    min-height: auto !important;
    height: auto !important;
    padding: clamp(4rem, 16vw, 6rem) 1rem;
    background: #050505;
  }

  .sequence-sticky {
    position: relative !important;
    top: auto !important;
    display: grid;
    min-height: auto !important;
    gap: 2rem;
  }

  .sequence-title {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
  }

  .sequence-title h2 {
    font-size: clamp(3rem, 14vw, 5.25rem);
  }

  .process-sequence-canvas,
  #seq-canvas {
    display: block !important;
    width: 100%;
    max-width: 34rem;
    height: auto;
    margin-inline: auto;
    border-radius: 1rem;
    background: #050505;
  }

  .step-overlay {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    width: 100%;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .step-info,
  .step-rail {
    width: 100%;
  }

  .step-title {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .step-instruction {
    display: none;
  }

  .sequence-spacer {
    display: none !important;
  }

  .cargo-drift {
    display: grid !important;
    min-height: auto !important;
    padding: clamp(4rem, 14vw, 6rem) 1rem;
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .cargo-drift-rail,
  .cargo-drift::before,
  .cargo-drift::after {
    display: none !important;
  }

  .cargo-drift-column {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem;
    transform: none !important;
  }

  .cargo-drift-column--left,
  .cargo-drift-column--right,
  .cargo-drift-center {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .cargo-drift-copy {
    position: relative !important;
    top: auto !important;
    padding: 1rem 0;
  }

  .cargo-drift-container-visual {
    width: min(100%, 18rem);
    margin: 0 auto;
  }

  .cargo-drift-card {
    width: calc(100vw - 2rem) !important;
    min-width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    min-width: 0 !important;
    aspect-ratio: 1.25 / 1;
  }

  .cargo-drift-card:nth-child(n + 4) {
    display: none;
  }

  .showroom {
    min-height: auto;
    padding: clamp(4rem, 14vw, 6rem) 1rem;
  }

  .showroom-image {
    position: relative;
    inset: auto;
    min-height: 18rem;
    aspect-ratio: 1.25 / 1;
    margin-bottom: 2rem;
  }

  .showroom-content,
  .showroom-wrapper,
  .showroom-list,
  .showroom-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .showroom-title,
  .showroom-item-title,
  .drivers-title {
    font-size: clamp(2.5rem, 12vw, 4.7rem) !important;
    line-height: 0.98 !important;
  }

  .showroom-button {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 1.5rem;
  }

  .drivers {
    padding: clamp(4rem, 14vw, 6rem) 1rem;
  }

  .drivers-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .drivers-item {
    min-height: auto;
    padding: 1rem;
  }

  .td-laptop-quote {
    min-height: auto !important;
    padding: clamp(4rem, 14vw, 6rem) 1rem;
  }

  .td-laptop-quote__sticky {
    position: relative !important;
    top: auto !important;
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .td-laptop-quote__device {
    transform: none !important;
  }

  .td-laptop-quote__device img {
    width: 100%;
  }

  .td-laptop-quote__cta {
    opacity: 1 !important;
    transform: none !important;
  }

  .td-laptop-quote__cta h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .td-footer-image {
    min-height: auto;
    padding: clamp(4rem, 14vw, 6rem) 1rem 1rem;
  }

  .td-footer-image-inner {
    min-height: 68svh;
    align-content: end;
  }

  .td-footer-image-wordmark {
    font-size: clamp(3.1rem, 18vw, 6.75rem);
    line-height: 0.8;
  }

  .td-footer-image-contact,
  .td-footer-image-nav,
  .td-footer-image-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .back-to-top {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3.15rem;
  }
}

@media (max-width: 35.98rem) {
  .home-hero .home-hero-title {
    font-size: clamp(2.25rem, 12.5vw, 3.85rem) !important;
  }

  .hero-scroll-sequence-title,
  .cargo-trans-sequence-title,
  .trust-title,
  .showroom-title,
  .drivers-title {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .td-service-card,
  .trust-convictions-wrapper .convictions-item {
    min-height: 20rem;
  }
}

/* Mobile Editorial Refinement */
@media (max-width: 63.98rem) {
  body {
    text-rendering: optimizeLegibility;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-copy {
    inset: auto 1rem clamp(2.25rem, 9vw, 4rem) 1rem !important;
    display: grid;
    gap: clamp(1.15rem, 5vw, 2rem);
    width: auto;
    max-width: none;
  }

  .home-hero .home-hero-title {
    max-width: 10.5ch;
    margin: 0;
    font-size: clamp(3.15rem, 15.5vw, 6rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.07em !important;
    text-wrap: balance;
  }

  .home-hero-actions {
    display: grid;
    gap: 1rem;
    max-width: min(100%, 24rem);
  }

  .home-hero-summary {
    max-width: 19rem;
    margin: 0;
    font-size: clamp(1.05rem, 4.7vw, 1.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0;
  }

  .home-hero-cta,
  .td-cargo-pills a,
  .td-service-card a,
  .header-mobile-quote {
    min-height: 3.25rem;
    border-radius: 0.85rem;
    font-size: 0.92rem;
    letter-spacing: -0.01em;
  }

  .td-b2b-scroll {
    padding: clamp(4.5rem, 18vw, 7rem) 1.1rem;
    overflow: hidden;
  }

  .td-b2b-scroll__stage {
    width: min(100%, 30rem);
    margin-inline: auto;
    align-items: start;
  }

  .td-b2b-scroll__title {
    max-width: 9.5ch;
    margin: 0;
  }

  .td-b2b-line--large,
  .td-b2b-line--after {
    font-size: clamp(3.15rem, 16vw, 5.7rem) !important;
    line-height: 0.88 !important;
    letter-spacing: -0.075em;
    text-wrap: balance;
  }

  .td-b2b-line--small {
    margin-top: 0.75rem;
    font-size: clamp(0.95rem, 4.1vw, 1.15rem);
    line-height: 1.35;
    color: rgba(17, 24, 39, 0.62);
  }

  .td-b2b-scroll__truck {
    width: min(115%, 34rem);
    margin: clamp(1.25rem, 6vw, 2.5rem) 0 0 -8%;
    opacity: 0.96;
  }

  .trust .container,
  .td-services-grid-section,
  .td-cargo-mission__content,
  .sequence-sticky,
  .cargo-drift-copy,
  .td-laptop-quote__cta {
    width: min(100%, 31rem);
    margin-inline: auto;
  }

  .trust-title,
  .td-cargo-mission h2,
  .td-services-grid-section > h2,
  .sequence-title h2,
  .cargo-drift-title,
  .td-laptop-quote__cta h2 {
    max-width: 10.5ch;
    font-size: clamp(2.9rem, 14vw, 5.4rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.07em !important;
    text-wrap: balance;
  }

  .td-services-grid-section > h2 {
    max-width: 9.5ch;
  }

  .td-cargo-mission p,
  .cargo-drift-text,
  .td-service-card p,
  .step-desc,
  .td-laptop-quote__cta p {
    font-size: clamp(0.98rem, 4.15vw, 1.12rem);
    line-height: 1.45;
    letter-spacing: -0.018em;
  }

  .td-services-kicker,
  .sequence-title p,
  .cargo-drift-pre,
  .step-meta,
  .trust-eyebrow {
    font-size: 0.76rem;
    line-height: 1.2;
    letter-spacing: 0.12em;
  }

  .trust-convictions-wrapper .convictions-item,
  .td-service-card,
  .step-overlay {
    border-radius: 1.2rem;
  }

  .convictions-item-title,
  .td-service-card h3,
  .step-title {
    font-size: clamp(1.45rem, 7vw, 2.45rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .convictions-item-text {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .td-cargo-mission__copy {
    display: grid;
    gap: 1.1rem;
  }

  .td-cargo-pills {
    gap: 0.7rem;
  }

  .td-service-card__body {
    gap: 0.85rem;
  }

  .sequence-title {
    display: grid;
    gap: 0.55rem;
  }

  .step-overlay {
    gap: 1rem;
    padding: clamp(1rem, 5vw, 1.5rem);
  }

  .step-count {
    font-size: 0.9rem;
  }

  .cargo-drift-copy {
    display: grid;
    gap: 0.85rem;
    padding: 0.4rem 0 1.4rem;
  }

  .cargo-drift-container-visual {
    margin-top: 0.75rem;
  }

  .td-footer-image-wordmark {
    max-width: 6ch;
    letter-spacing: -0.08em;
  }

  .td-footer-image-contact,
  .td-footer-image-nav,
  .td-footer-image-meta {
    font-size: 0.86rem;
    line-height: 1.45;
  }
}

@media (max-width: 35.98rem) {
  .home-hero .home-hero-title {
    font-size: clamp(3rem, 16vw, 4.65rem) !important;
  }

  .home-hero-summary {
    max-width: 17rem;
  }

  .td-b2b-line--large,
  .td-b2b-line--after,
  .trust-title,
  .td-cargo-mission h2,
  .td-services-grid-section > h2,
  .sequence-title h2,
  .cargo-drift-title,
  .td-laptop-quote__cta h2 {
    font-size: clamp(2.65rem, 15vw, 4.35rem) !important;
  }

  .td-b2b-scroll__truck {
    width: min(122%, 31rem);
  }
}

/* Mobile Refinement Patch */
@media (max-width: 47.98rem) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    height: auto;
    overflow-x: hidden;
  }

  body {
    display: block;
    min-height: 100svh;
  }

  .wrapper {
    display: block;
    min-height: auto;
    overflow: visible;
  }

  .td-footer-image {
    position: relative;
    display: block;
    min-height: 88svh;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    overflow: visible;
  }

  .td-footer-image-inner {
    min-height: 74svh;
  }

  .header {
    min-height: 5.15rem;
    height: auto;
    padding-block: 0.42rem;
    align-items: stretch;
  }

  .header-logo,
  .header-nav {
    min-height: 4.15rem;
  }

  .header-logo {
    max-width: 54vw;
    padding-block: 0.55rem;
  }

  .header-logo-inner {
    width: min(8.6rem, 43vw);
  }

  .header-nav-toggle {
    min-width: 5.45rem;
    min-height: 4.15rem;
    padding: 0.8rem 0.85rem;
    touch-action: manipulation;
  }

  .header-nav-wrapper {
    z-index: 9990;
    padding-top: calc(5.15rem + 2rem);
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.28s ease,
      transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header-nav-wrapper[inert] {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.85rem);
  }

  html.has-mobile-menu-open .header-nav-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  html.has-mobile-menu-open,
  html.has-mobile-menu-open body {
    overflow: hidden;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-copy {
    display: flex !important;
    min-height: 100svh;
    width: 100% !important;
    padding: calc(5.15rem + 3.25rem) 1rem 2.25rem !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
  }

  body:not(.td-loader-done) .home-hero-copy {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .home-hero .home-hero-title {
    width: min(100%, 10.5ch) !important;
    max-width: 10.5ch !important;
    font-size: clamp(2.85rem, 11.8vw, 3.85rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none;
  }

  .td-cargo-mission {
    display: grid;
    min-height: auto;
    padding: clamp(4.25rem, 14vw, 6rem) 1rem 2rem;
    grid-template-rows: auto auto auto;
    overflow: hidden;
  }

  .td-cargo-lines {
    top: 5rem;
    left: 50%;
    width: 90vw;
    height: 18rem;
    transform: translateX(-50%) rotate(-8deg);
  }

  .td-section-truck--air {
    top: 8.25rem;
    right: -18vw;
    width: min(58vw, 18rem);
    transform: translate3d(0, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale, 1));
  }

  .td-cargo-plane {
    position: relative;
    top: auto;
    left: auto;
    width: min(122vw, 36rem);
    height: clamp(13rem, 56vw, 22rem);
    margin: 0 0 clamp(2rem, 8vw, 3rem) -18vw;
    transform: translate3d(0, var(--td-float-y, 0px), 0) scale(var(--td-pop-scale, 1));
  }

  .td-cargo-mission__content {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .td-cargo-mission h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.25rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.055em;
  }

  .td-cargo-mission p {
    max-width: 100%;
    font-size: clamp(0.98rem, 4.3vw, 1.12rem);
    line-height: 1.5;
  }

  .td-cargo-pills {
    margin-bottom: 1rem;
  }

  .td-cargo-pills a {
    min-height: 2.45rem;
    padding-inline: 0.9rem;
    font-size: 0.82rem;
  }

  .trust-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 3.25rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.045em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .td-b2b-scroll {
    min-height: 250svh;
    padding-inline: 1rem;
    overflow: visible;
  }

  .td-b2b-scroll__stage {
    min-height: 100svh;
    overflow: hidden;
  }

  .td-b2b-scroll__title {
    z-index: 2;
    width: min(100%, 22rem);
    text-align: center;
  }

  .td-b2b-line--large,
  .td-b2b-line--after {
    font-size: clamp(2.55rem, 13vw, 4.6rem) !important;
    line-height: 1.02;
  }

  .td-b2b-scroll__truck {
    left: var(--td-truck-x, -118vw);
    top: 58%;
    width: min(172vw, 42rem);
    transform: translate(-18%, -50%);
    will-change: left;
  }

  .showroom {
    display: grid;
    min-height: auto;
    padding: clamp(4rem, 14vw, 6rem) 1rem;
    gap: 1.5rem;
    overflow: visible;
  }

  .showroom::before {
    opacity: 0.35;
  }

  .showroom-image {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 18rem;
    aspect-ratio: 1 / 0.82;
    order: 1;
  }

  .showroom-content {
    position: relative;
    z-index: 2;
    width: 100%;
    order: 2;
  }

  .showroom-wrapper,
  .showroom-list,
  .showroom-item {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .showroom-title,
  .showroom-item-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 3.35rem) !important;
    line-height: 1.02 !important;
    overflow: visible !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .showroom-item-title span,
  .showroom-item-text span {
    white-space: normal;
  }

  .showroom-item-text {
    max-width: 100%;
    font-size: clamp(0.82rem, 3.5vw, 0.98rem);
    line-height: 1.45;
    overflow: visible;
  }

  .drivers {
    padding: clamp(4rem, 13vw, 5.5rem) 1rem;
    overflow: visible;
  }

  .drivers-title {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.7vw, 2.95rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none;
  }

  .drivers-title .word {
    white-space: nowrap;
  }

  .drivers-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .drivers-item {
    min-height: auto;
    padding: clamp(1.25rem, 6vw, 1.75rem);
    overflow: hidden;
  }

  .drivers-item-text {
    max-width: 100%;
    padding-inline: 0.25rem;
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    line-height: 1.5;
  }
}

/* Shared Arabic / RTL component refinements */
html[dir="rtl"] .home-hero-summary {
  padding-left: 0;
  padding-right: 2.1rem;
  letter-spacing: 0;
}

html[dir="rtl"] .home-hero-summary::before {
  right: 0;
  left: auto;
  transform: scaleX(-1);
}

html[dir="rtl"] .header-logo {
  justify-content: flex-end;
}

html[dir="rtl"] .header-mobile-column,
html[dir="rtl"] .header-mobile-heading,
html[dir="rtl"] .td-footer-image-contact,
html[dir="rtl"] .td-footer-image-nav,
html[dir="rtl"] .td-footer-image-meta {
  text-align: start;
}

html[dir="rtl"] .header-mobile-actions {
  justify-content: flex-start;
}

html[dir="rtl"] .back-to-top {
  right: auto;
  left: clamp(1rem, 2.2vw, 2rem);
}

html[dir="rtl"] .td-footer-image-contact,
html[dir="rtl"] .td-footer-image-nav,
html[dir="rtl"] .td-footer-image-meta,
html[dir="rtl"] .td-footer-image-inner {
  direction: rtl;
}

html[dir="rtl"] .td-footer-image-wordmark {
  direction: ltr;
  text-align: left;
  letter-spacing: -0.06em;
}

/* Arabic landing-page typography and component alignment */
html[dir="rtl"] .ar-page {
  direction: rtl;
  text-align: start;
  font-family: var(--ff-secondary);
}

html[dir="rtl"] .ar-page .home-hero-copy,
html[dir="rtl"] .ar-page .td-cargo-mission__content,
html[dir="rtl"] .ar-page .td-laptop-quote__cta,
html[dir="rtl"] .ar-page .sequence-copy,
html[dir="rtl"] .ar-page .showroom-content,
html[dir="rtl"] .ar-page .drivers-content {
  text-align: start;
}

html[dir="rtl"] .ar-page .home-hero-title {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 7.2rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

html[dir="rtl"] .ar-page .trust-title,
html[dir="rtl"] .ar-page .td-services-grid-section h2,
html[dir="rtl"] .ar-page .showroom-title,
html[dir="rtl"] .ar-page .drivers-title,
html[dir="rtl"] .ar-page .td-laptop-quote__cta h2,
html[dir="rtl"] .ar-page .td-cargo-mission__content h2,
html[dir="rtl"] .ar-page .hero-scroll-sequence-title {
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  overflow-wrap: break-word;
  word-break: normal;
}

html[dir="rtl"] .ar-page .td-cargo-mission__content h2,
html[dir="rtl"] .ar-page .td-services-grid-section h2 {
  max-width: 14ch;
}

html[dir="rtl"] .ar-page .hero-scroll-sequence-title {
  font-size: clamp(2.7rem, 7vw, 6.5rem);
}

html[dir="rtl"] .ar-page .td-service-card__body,
html[dir="rtl"] .ar-page .td-cargo-pills,
html[dir="rtl"] .ar-page .header-contact-actions,
html[dir="rtl"] .ar-page .td-footer-image-nav,
html[dir="rtl"] .ar-page .td-service-card__body span,
html[dir="rtl"] .ar-page .trust-item-title,
html[dir="rtl"] .ar-page .drivers-item-text {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 63.98rem) {
  html[dir="rtl"] .ar-page .home-hero-title {
    max-width: 10.5ch;
    font-size: clamp(2.7rem, 13vw, 4.6rem) !important;
    line-height: 1.22 !important;
  }

  html[dir="rtl"] .ar-page .trust-title,
  html[dir="rtl"] .ar-page .td-services-grid-section h2,
  html[dir="rtl"] .ar-page .drivers-title {
    font-size: clamp(2rem, 9vw, 3.1rem) !important;
    line-height: 1.3 !important;
  }

  html[dir="rtl"] .back-to-top {
    left: 0.85rem;
  }

  html[dir="rtl"] .td-footer-image-contact,
  html[dir="rtl"] .td-footer-image-nav,
  html[dir="rtl"] .td-footer-image-meta {
    padding-inline-start: 0;
    padding-inline-end: 3.35rem;
  }

  html[dir="rtl"] .td-footer-image-wordmark {
    width: calc(100vw - 2rem);
    min-width: 0;
    max-width: calc(100vw - 2rem);
    margin-inline: 0;
    white-space: nowrap;
    transform: none;
  }
}

/* MOBILE LAYOUT — FINAL OVERRIDES, edit here only */
@media (max-width: 63.98rem) {
  *,
  *::before,
  *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  html,
  body,
  .service-detail-shell {
    width: 100%;
    min-width: 0;
    overflow-x: clip !important;
  }

  /* Sticky scroll stories must not sit inside an overflow scroll-container.
     Body remains the horizontal overflow guard; the document wrapper must
     stay overflow-visible so position: sticky is relative to the viewport. */
  .wrapper {
    width: 100%;
    min-width: 0;
    overflow: visible !important;
  }

  body {
    min-height: 100%;
  }

  img,
  video,
  canvas,
  svg {
    max-width: 100%;
  }

  .header {
    position: fixed !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    left: 0.75rem !important;
    width: auto !important;
    height: auto !important;
    min-height: 4.9rem !important;
    padding-block: 0.7rem !important;
    border-radius: 0.75rem !important;
  }

  .header-logo {
    min-width: 0 !important;
    max-width: calc(100% - 6rem) !important;
  }

  .header-logo-inner {
    width: min(9.2rem, 48vw) !important;
    height: auto !important;
  }

  .header-nav-wrapper {
    max-height: calc(100svh - 6.5rem) !important;
    overflow-y: auto !important;
  }

  .home-hero {
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .home-hero-video,
  .home-hero-video video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    transform: none !important;
  }

  .home-hero-copy {
    position: absolute !important;
    inset: auto 1rem clamp(2rem, 7vw, 3.5rem) 1rem !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    align-content: end !important;
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    gap: clamp(1rem, 4vw, 1.6rem) !important;
    justify-content: stretch !important;
  }

  .home-hero .home-hero-title {
    width: calc(100vw - 2rem) !important;
    min-width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    justify-self: stretch !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    font-size: clamp(2.35rem, 10.8vw, 4rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.05em !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .home-hero .home-hero-title br {
    display: none !important;
  }

  .home-hero .home-hero-title .word {
    display: inline !important;
  }

  .home-hero-actions {
    position: static !important;
    inset: auto !important;
    display: grid !important;
    width: min(100%, 24rem) !important;
    justify-self: start !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    gap: 1rem !important;
    margin-top: 0.5rem !important;
    transform: none !important;
  }

  .home-hero-summary {
    position: static !important;
    width: 100% !important;
    max-width: 22rem !important;
    margin: 0 !important;
    font-size: clamp(1rem, 4.4vw, 1.28rem) !important;
    line-height: 1.16 !important;
  }

  .home-hero-cta {
    width: 100% !important;
    min-height: 3.25rem !important;
    justify-content: center !important;
  }

  .td-cursor-glow,
  .cargo-trans-sequence,
  .home-hero-scroll,
  .cargo-drift-rail,
  .td-cargo-lines,
  .td-section-truck,
  .td-b2b-scroll__truck,
  .sequence-spacer {
    display: none !important;
  }

  .td-reveal,
  .td-image-pop,
  .cargo-drift-card,
  [data-reveal],
  [data-reveal] .word,
  [data-sea-reveal] {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
  }

  .td-b2b-scroll,
  .sequence-section,
  .td-laptop-quote,
  .cargo-drift,
  .showroom,
  .drivers,
  .td-cargo-mission,
  .td-services-grid-section,
  .td-footer-image {
    height: auto !important;
    min-height: auto !important;
    padding: clamp(4rem, 13vw, 6rem) 1rem !important;
    overflow: visible !important;
  }

  .td-b2b-scroll__stage,
  .sequence-sticky,
  .td-laptop-quote__sticky,
  .cargo-drift-copy,
  .services-stack-pin,
  .service-stack-card {
    position: static !important;
    top: auto !important;
    min-height: auto !important;
    transform: none !important;
  }

  .td-b2b-scroll__title,
  .showroom-title,
  .showroom-item-title,
  .drivers-title,
  .trust-title,
  .sequence-title h2,
  .td-cargo-mission h2,
  .td-services-grid-section > h2,
  .td-laptop-quote__cta h2 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.1rem, 9.5vw, 3.6rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
  }

  .td-b2b-line--large,
  .td-b2b-line--after,
  .td-b2b-line--small {
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .td-b2b-scroll__title {
    text-align: left !important;
  }

  .trust,
  .trust .container,
  .trust-convictions-wrapper,
  .td-cargo-mission__content,
  .td-services-grid,
  .sequence-sticky,
  .cargo-drift,
  .cargo-drift-column,
  .showroom,
  .showroom-wrapper,
  .showroom-list,
  .showroom-item,
  .drivers-wrapper,
  .td-laptop-quote__sticky,
  .td-footer-image-contact,
  .td-footer-image-nav,
  .td-footer-image-meta {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .trust-convictions-wrapper .convictions-item,
  .td-service-card,
  .drivers-item,
  .cargo-drift-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: auto !important;
  }

  .td-cargo-plane,
  .showroom-image,
  .td-laptop-quote__device,
  .cargo-drift-container-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 1.5rem !important;
    transform: none !important;
  }

  .td-cargo-plane {
    height: clamp(10rem, 45vw, 16rem) !important;
  }

  .td-cargo-plane img,
  .td-laptop-quote__device img,
  .showroom-image img,
  .cargo-drift-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .td-cargo-mission__content,
  .sequence-title,
  .showroom-content,
  .showroom-wrapper,
  .showroom-list,
  .showroom-item,
  .cargo-drift-center,
  .cargo-drift-column--left,
  .cargo-drift-column--right {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    transform: none !important;
    translate: none !important;
  }

  .td-cargo-pills,
  .td-service-card__body,
  .sea-service-card__body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .td-cargo-pills a,
  .td-service-card a,
  .sea-service-card__body a {
    opacity: 1 !important;
    transform: none !important;
    white-space: normal !important;
  }

  .process-sequence-canvas,
  #seq-canvas {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 48svh !important;
    object-fit: contain !important;
  }

  .step-overlay {
    position: static !important;
    inset: auto !important;
    display: grid !important;
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .step-instruction {
    display: none !important;
  }

  .td-laptop-quote__cta {
    opacity: 1 !important;
    transform: none !important;
  }

  .td-footer-image-inner {
    min-height: auto !important;
    display: grid !important;
    gap: 1.25rem !important;
    align-content: end !important;
  }

  .td-footer-image-wordmark {
    font-size: clamp(3rem, 17vw, 6.4rem) !important;
    line-height: 0.85 !important;
  }
}

@media (max-width: 35.98rem) {
  .home-hero .home-hero-title {
    font-size: clamp(2.2rem, 12vw, 3.85rem) !important;
  }

  .td-b2b-scroll__title,
  .showroom-title,
  .showroom-item-title,
  .drivers-title,
  .trust-title,
  .sequence-title h2,
  .td-cargo-mission h2,
  .td-services-grid-section > h2,
  .td-laptop-quote__cta h2 {
    font-size: clamp(1.95rem, 9.2vw, 3.05rem) !important;
  }
}

/* MOBILE/TABLET FOOTER — compact horizontal layout */
@media (max-width: 63.98rem) {
  .header {
    z-index: 10010 !important;
  }

  .header-nav {
    position: static !important;
  }

  .header-nav-toggle {
    position: relative !important;
    z-index: 10030 !important;
    min-width: 3.25rem !important;
    width: 3.25rem !important;
  }

  .header-nav-toggle-label {
    display: none !important;
  }

  .header-nav-wrapper {
    position: fixed !important;
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: auto !important;
    left: -0.75rem !important;
    z-index: 10020 !important;
    display: grid !important;
    grid-template-rows: 1fr auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    max-height: none !important;
    padding: calc(5.15rem + max(1.25rem, env(safe-area-inset-top))) 1rem max(1rem, env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    background:
      radial-gradient(circle at 14% 8%, rgba(255, 75, 44, 0.18), transparent 16rem),
      linear-gradient(145deg, rgba(7, 23, 29, 0.98), rgba(1, 15, 20, 0.98)) !important;
    color: #f7f8f8 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    translate: 0 0 !important;
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease !important;
  }

  .header-nav-wrapper[inert] {
    display: grid !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    translate: 0 0 !important;
  }

  .header-nav-body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: start !important;
    gap: clamp(1rem, 4.5vw, 1.65rem) !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .header-mobile-column {
    display: grid !important;
    gap: 0.52rem !important;
    text-align: left !important;
  }

  .header-mobile-heading {
    margin: 0 0 0.2rem !important;
    color: rgba(255, 255, 255, 0.48) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
  }

  .header-mobile-column a {
    color: #fff !important;
    font-size: clamp(1.35rem, 6.8vw, 2.25rem) !important;
    font-weight: 800 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    text-decoration: none !important;
  }

  .header-mobile-actions {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    gap: 0.65rem !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 1.1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .header-mobile-actions a {
    display: inline-flex !important;
    min-height: 2.75rem !important;
    padding: 0.75rem 0.95rem !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .header-mobile-actions .header-mobile-quote {
    background: #ff4b2c !important;
    border-color: #ff4b2c !important;
  }

  html.has-mobile-menu-open .header {
    transform: none !important;
  }

  html.has-mobile-menu-open,
  html.has-mobile-menu-open body {
    overflow: hidden !important;
  }

  .td-footer-image {
    min-height: auto !important;
    padding: 1rem !important;
    overflow: hidden !important;
    background: #f7f8f5 !important;
  }

  .td-footer-image-background {
    position: absolute !important;
    inset: auto 0 0 0 !important;
    width: 100% !important;
    height: 42% !important;
    object-fit: cover !important;
    object-position: center bottom !important;
    opacity: 0.42 !important;
    transform: none !important;
    pointer-events: none !important;
  }

  .td-footer-image::before {
    background:
      linear-gradient(180deg, #f7f8f5 0%, rgba(247, 248, 245, 0.92) 48%, rgba(247, 248, 245, 0.72) 100%) !important;
  }

  .td-footer-image-inner {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: auto !important;
    gap: 0.85rem !important;
    padding: 0 !important;
    align-content: start !important;
  }

  .td-footer-image-wordmark {
    position: relative !important;
    inset: auto !important;
    grid-row: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    color: rgba(7, 23, 29, 0.62) !important;
    font-size: clamp(2rem, 10vw, 3.1rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.075em !important;
    text-align: left !important;
    white-space: nowrap !important;
    mix-blend-mode: multiply !important;
    transform: none !important;
    translate: none !important;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.55),
      0 0.45rem 1.8rem rgba(7, 23, 29, 0.14) !important;
    pointer-events: none !important;
  }

  .td-footer-image-wordmark span {
    display: inline !important;
  }

  .td-footer-image-wordmark span + span::before {
    display: none !important;
  }

  .td-footer-image-meta {
    position: relative !important;
    inset: auto !important;
    grid-row: 1 !important;
    display: flex !important;
    width: 100% !important;
    gap: 0.45rem 0.75rem !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    color: #07171d !important;
    font-size: 0.63rem !important;
    line-height: 1.1 !important;
  }

  .td-footer-image-contact {
    position: relative !important;
    inset: auto !important;
    grid-row: 3 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.55rem !important;
    width: 100% !important;
    color: #07171d !important;
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
  }

  .td-footer-image-contact p {
    max-width: none !important;
    margin: 0 !important;
  }

  .td-footer-image-contact > div {
    display: flex !important;
    gap: 0.45rem 0.8rem !important;
    flex-wrap: wrap !important;
  }

  .td-footer-image-contact a,
  .td-footer-image-nav a,
  .td-footer-image-meta a {
    color: #07171d !important;
    font-size: inherit !important;
    line-height: 1.1 !important;
    text-decoration: none !important;
  }

  .td-footer-image-nav {
    position: relative !important;
    inset: auto !important;
    grid-row: 4 !important;
    display: flex !important;
    width: 100% !important;
    gap: 0.5rem 0.85rem !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .td-footer-image-nav a {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    font-size: 0.66rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    text-transform: uppercase !important;
  }

  .td-footer-image-nav a::after {
    display: none !important;
  }

  .back-to-top {
    right: 0.85rem !important;
    bottom: 0.85rem !important;
    width: 2.35rem !important;
    height: 2.35rem !important;
  }
}

/* MOBILE/TABLET NAV — final fullscreen drawer */
@media (max-width: 63.98rem) {
  .header {
    z-index: 10010 !important;
  }

  .header-nav {
    position: static !important;
  }

  .header-nav-toggle {
    position: relative !important;
    z-index: 10030 !important;
    min-width: 3.25rem !important;
    width: 3.25rem !important;
  }

  .header-nav-toggle-label {
    display: none !important;
  }

  .header-nav-wrapper {
    position: fixed !important;
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: auto !important;
    left: -0.75rem !important;
    z-index: 10020 !important;
    display: grid !important;
    grid-template-rows: 1fr auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    max-height: none !important;
    padding: calc(5.15rem + max(1.25rem, env(safe-area-inset-top))) clamp(1rem, 5vw, 3rem) max(1rem, env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    background:
      radial-gradient(circle at 14% 8%, rgba(255, 75, 44, 0.18), transparent 16rem),
      linear-gradient(145deg, rgba(7, 23, 29, 0.98), rgba(1, 15, 20, 0.98)) !important;
    color: #f7f8f8 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    translate: 0 0 !important;
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease !important;
  }

  .header-nav-wrapper[inert] {
    display: grid !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    translate: 0 0 !important;
  }

  .header-nav-body {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: start !important;
    gap: clamp(1rem, 4.5vw, 1.65rem) !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .header-mobile-column {
    display: grid !important;
    gap: 0.52rem !important;
    text-align: left !important;
  }

  .header-mobile-heading {
    margin: 0 0 0.2rem !important;
    color: rgba(255, 255, 255, 0.48) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
  }

  .header-mobile-column a {
    color: #fff !important;
    font-size: clamp(1.35rem, 6.8vw, 2.45rem) !important;
    font-weight: 800 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.055em !important;
    text-decoration: none !important;
  }

  .header-mobile-actions {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    gap: 0.65rem !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-top: 1.1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .header-mobile-actions a {
    display: inline-flex !important;
    min-height: 2.75rem !important;
    padding: 0.75rem 0.95rem !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .header-mobile-actions .header-mobile-quote {
    background: #ff4b2c !important;
    border-color: #ff4b2c !important;
  }

  html.has-mobile-menu-open .header {
    transform: none !important;
  }

  html.has-mobile-menu-open,
  html.has-mobile-menu-open body {
    overflow: hidden !important;
  }
}

/* Hero copy + dual CTA refinement */
.home-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.home-hero-cta-row .home-hero-cta {
  margin-top: 0;
}

.home-hero-cta--secondary {
  min-width: 9.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 45, 63, 0.5);
  color: var(--td-theme-white);
  backdrop-filter: blur(12px);
}

.home-hero-cta--secondary:hover {
  border-color: var(--td-theme-white);
  background: var(--td-theme-white);
  color: var(--td-theme-teal-dark);
}

@media (max-width: 63.98rem) {
  .home-hero-cta-row {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-hero-cta-row .home-hero-cta {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Talk to Us CTA — animated conversation gateway
   -------------------------------------------------------------------------- */
.td-talk-cta {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 82svh, 900px);
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1.25rem, 3.2vw, 3.75rem);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 90, 47, 0.095), transparent 23rem),
    radial-gradient(circle at 8% 88%, rgba(0, 76, 101, 0.055), transparent 31rem),
    linear-gradient(145deg, #ffffff 0%, #fbfcfc 50%, #f7faf9 100%);
  color: var(--td-theme-teal-dark, #002d3f);
}

.td-talk-cta::before {
  content: "LET'S TALK";
  position: absolute;
  z-index: -1;
  right: -0.045em;
  bottom: -0.2em;
  color: rgba(0, 45, 63, 0.035);
  font-family: var(--ff-primary);
  font-size: clamp(8rem, 22vw, 26rem);
  font-weight: 760;
  line-height: 0.72;
  letter-spacing: -0.075em;
  white-space: nowrap;
  pointer-events: none;
  transform: translate3d(3%, 10%, 0);
}

.td-talk-cta__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1440px);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(4rem, 8vw, 8rem);
}

.td-talk-cta__pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.55rem 0.75rem 0.55rem 0.65rem;
  border: 1px solid rgba(0, 45, 63, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(0, 45, 63, 0.7);
  font-size: clamp(0.72rem, 0.84vw, 0.88rem);
  line-height: 1.2;
  backdrop-filter: blur(14px);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease;
  opacity: 0;
  transform: translateY(18px);
}

.td-talk-cta.is-visible .td-talk-cta__pill {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms;
}

.td-talk-cta__pill:hover {
  border-color: rgba(255, 90, 47, 0.55);
  background: rgba(255, 90, 47, 0.07);
  color: var(--td-theme-teal-dark, #002d3f);
  transform: translateY(-2px);
}

.td-talk-cta__pill strong {
  color: var(--td-theme-teal-dark, #002d3f);
  font-weight: 720;
}

.td-talk-cta__pulse {
  position: relative;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--td-theme-orange, #ff5a2f);
  box-shadow: 0 0 0 0 rgba(255, 90, 47, 0.52);
  animation: tdTalkPulse 2.2s ease-out infinite;
}

.td-talk-cta__pill-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 0.2rem;
  border-radius: 50%;
  background: rgba(0, 45, 63, 0.07);
  color: var(--td-theme-orange, #ff5a2f);
  transition: transform 260ms ease, background 260ms ease;
}

.td-talk-cta__pill:hover .td-talk-cta__pill-arrow {
  background: var(--td-theme-orange, #ff5a2f);
  color: #fff;
  transform: rotate(45deg);
}

.td-talk-cta__content {
  display: grid;
  gap: clamp(2.7rem, 5vw, 5.5rem);
}

.td-talk-cta__title {
  margin: 0;
  max-width: 1320px;
  font-family: var(--ff-primary);
  font-size: clamp(3.6rem, 7.45vw, 8.4rem);
  font-weight: 560;
  line-height: 0.87;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.td-talk-cta__title-line {
  display: block;
  opacity: 0;
  transform: translateY(0.42em);
  transition:
    opacity 800ms ease,
    transform 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.td-talk-cta__title-line:nth-child(2) {
  transition-delay: 110ms;
}

.td-talk-cta.is-visible .td-talk-cta__title-line {
  opacity: 1;
  transform: translateY(0);
}

.td-talk-cta__title-line--dynamic {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.18em;
  row-gap: 0;
}

.td-talk-cta__word-shell {
  position: relative;
  display: inline-flex;
  min-width: min(6.8em, 100%);
  height: 0.92em;
  align-items: baseline;
  overflow: hidden;
  color: var(--td-theme-orange, #ff5a2f);
}

.td-talk-cta__word {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(0);
  opacity: 1;
}

.td-talk-cta__word.is-leaving {
  transform: translateY(-115%);
  opacity: 0;
  transition:
    transform 320ms cubic-bezier(0.4, 0, 1, 1),
    opacity 240ms ease;
}

.td-talk-cta__word.is-entering {
  animation: tdTalkWordIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.td-talk-cta__footer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  padding-top: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid rgba(0, 45, 63, 0.15);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms ease 220ms,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
}

.td-talk-cta.is-visible .td-talk-cta__footer {
  opacity: 1;
  transform: translateY(0);
}

.td-talk-cta__description {
  max-width: 690px;
  margin: 0;
  color: rgba(0, 45, 63, 0.67);
  font-size: clamp(1rem, 1.32vw, 1.28rem);
  font-weight: 420;
  line-height: 1.55;
  letter-spacing: -0.016em;
}

.td-talk-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.td-talk-cta__button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1;
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.td-talk-cta__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.td-talk-cta__button:hover {
  transform: translateY(-3px);
}

.td-talk-cta__button--primary {
  background: var(--td-theme-orange, #ff5a2f);
  color: #fff;
}

.td-talk-cta__button--primary:hover {
  background: var(--td-theme-teal-dark, #002d3f);
  color: #fff;
}

.td-talk-cta__button--primary:hover svg {
  transform: rotate(-8deg) scale(1.06);
}

.td-talk-cta__button--secondary {
  border-color: rgba(0, 45, 63, 0.32);
  background: rgba(255, 255, 255, 0.65);
  color: var(--td-theme-teal-dark, #002d3f);
}

.td-talk-cta__button--secondary:hover {
  border-color: var(--td-theme-teal-dark, #002d3f);
  background: var(--td-theme-teal-dark, #002d3f);
  color: #fff;
}

.td-talk-cta__button--secondary:hover svg {
  transform: translateX(4px);
}

.td-talk-cta__route {
  position: absolute;
  z-index: 0;
  top: -14%;
  right: 6vw;
  width: min(38vw, 560px);
  height: 128%;
  opacity: 0.55;
  transform: rotate(17deg);
  pointer-events: none;
}

.td-talk-cta__route-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 45, 63, 0.08) 14%,
    rgba(255, 90, 47, 0.52) 50%,
    rgba(0, 45, 63, 0.08) 86%,
    transparent 100%
  );
}

.td-talk-cta__route-line::before,
.td-talk-cta__route-line::after {
  content: "";
  position: absolute;
  left: -130px;
  width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 45, 63, 0.1), transparent);
}

.td-talk-cta__route-line::before { top: 33%; }
.td-talk-cta__route-line::after { top: 67%; }

.td-talk-cta__route-dot {
  position: absolute;
  left: calc(50% - 4px);
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 90, 47, 0.9);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 90, 47, 0.08);
}

.td-talk-cta__route-dot--one { top: 20%; }
.td-talk-cta__route-dot--two { top: 49%; }
.td-talk-cta__route-dot--three { top: 76%; }

.td-talk-cta.is-visible .td-talk-cta__route-dot--two {
  animation: tdTalkRouteTravel 5.2s ease-in-out infinite;
}

@keyframes tdTalkPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 47, 0.52); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(255, 90, 47, 0); }
}

@keyframes tdTalkWordIn {
  from { transform: translateY(115%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes tdTalkRouteTravel {
  0%, 100% { top: 49%; opacity: 0.65; }
  50% { top: 61%; opacity: 1; }
}

html[dir="rtl"] .ar-page .td-talk-cta::before {
  content: "لنتحدث";
  right: auto;
  left: -0.03em;
  letter-spacing: 0;
}

html[dir="rtl"] .ar-page .td-talk-cta__pill-arrow {
  margin-right: 0.2rem;
  margin-left: 0;
}

html[dir="rtl"] .ar-page .td-talk-cta__pill:hover .td-talk-cta__pill-arrow {
  transform: rotate(-45deg);
}

html[dir="rtl"] .ar-page .td-talk-cta__route {
  right: auto;
  left: 6vw;
  transform: rotate(-17deg);
}

html[dir="rtl"] .ar-page .td-talk-cta__title {
  font-family: "Noto Kufi Arabic", var(--ff-primary), sans-serif;
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

html[dir="rtl"] .ar-page .td-talk-cta__title-line--dynamic {
  flex-direction: row;
}

html[dir="rtl"] .ar-page .td-talk-cta__word-shell {
  min-width: min(6.6em, 100%);
}

html[dir="rtl"] .ar-page .td-talk-cta__description {
  line-height: 1.9;
}

html[dir="rtl"] .ar-page .td-talk-cta__actions {
  justify-content: flex-start;
}

html[dir="rtl"] .ar-page .td-talk-cta__button--secondary:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 63.98rem) {
  .td-talk-cta {
    min-height: auto;
    padding: 5.5rem clamp(1rem, 5vw, 2rem);
  }

  .td-talk-cta__inner {
    min-height: auto;
    gap: 5rem;
  }

  .td-talk-cta__pill {
    max-width: 100%;
  }

  .td-talk-cta__pill > span:not(.td-talk-cta__pulse):not(.td-talk-cta__pill-arrow) {
    display: none;
  }

  .td-talk-cta__title {
    font-size: clamp(3.2rem, 11vw, 6.4rem);
    line-height: 0.92;
  }

  .td-talk-cta__word-shell {
    min-width: 100%;
  }

  .td-talk-cta__title-line--dynamic {
    display: block;
  }

  .td-talk-cta__word-shell {
    display: flex;
    margin-top: 0.08em;
  }

  .td-talk-cta__footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .td-talk-cta__actions {
    justify-content: flex-start;
  }

  .td-talk-cta__route {
    right: -16vw;
    width: 60vw;
    opacity: 0.32;
  }

  html[dir="rtl"] .ar-page .td-talk-cta__route {
    right: auto;
    left: -16vw;
  }

  html[dir="rtl"] .ar-page .td-talk-cta__title {
    font-size: clamp(2.65rem, 9.5vw, 5rem);
    line-height: 1.22;
  }
}

@media (max-width: 40rem) {
  .td-talk-cta {
    padding-top: 4.5rem;
    padding-bottom: 4.75rem;
  }

  .td-talk-cta__inner {
    gap: 4rem;
  }

  .td-talk-cta__pill {
    width: 100%;
    justify-content: space-between;
  }

  .td-talk-cta__pill strong {
    margin-right: auto;
  }

  html[dir="rtl"] .ar-page .td-talk-cta__pill strong {
    margin-right: 0;
    margin-left: auto;
  }

  .td-talk-cta__title {
    font-size: clamp(2.75rem, 13.5vw, 4.4rem);
  }

  .td-talk-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .td-talk-cta__button {
    width: 100%;
  }

  .td-talk-cta::before {
    font-size: 10rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .td-talk-cta__pulse,
  .td-talk-cta__route-dot,
  .td-talk-cta__word {
    animation: none !important;
    transition: none !important;
  }

  .td-talk-cta__pill,
  .td-talk-cta__title-line,
  .td-talk-cta__footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
