:root {
  --navy: #07326f;
  --navy-2: #0a3d83;
  --orange: #ff7a00;
  --orange-2: #ff9a28;
  --ink: #07101f;
  --black: #02050a;
  --paper: #fff4e3;
  --paper-2: #f9efe0;
  --white: #fffaf2;
  --muted: #a9bbd3;
  --line: rgba(255,255,255,.14);
  --shadow: 0 28px 90px rgba(0,0,0,.38);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 10% 10%, rgba(255,122,0,.26), transparent 24rem), radial-gradient(circle at 90% 5%, rgba(7,50,111,.54), transparent 26rem), radial-gradient(circle at 70% 75%, rgba(255,122,0,.12), transparent 24rem), linear-gradient(180deg, #03070f 0%, #05152d 44%, #05070c 100%);
}
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: #d7e2ef;
  margin: 0 0 1rem;
  font-size: 1rem;
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  line-height: .98;
  letter-spacing: -.045em;
}
h1 {
  font-size: clamp(2.5rem,6.4vw,5.8rem);
}
h2 {
  font-size: clamp(1.8rem,3.8vw,3.6rem);
}
h3 {
  font-size: clamp(1.05rem,1.7vw,1.45rem);
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2,5,10,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
  background: #fff;
  border-radius: 18px;
  padding: 8px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.brand img {
  width: 220px;
  max-height: 46px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.nav-link {
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 10px 14px;
  border-radius: 999px;
  color: #cdd9e9;
  transition: .2s ease;
}
.nav-link:hover,
.nav-link.active {
  background: var(--orange);
  color: #160800;
}
.nav-toggle {
  display: none;
  appearance: none;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}
.hero {
  position: relative;
  padding: 84px 0 62px;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.eyebrow::before,
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 10px;
}
.mega-title {
  font-size: clamp(3.8rem,11vw,10rem);
  line-height: .76;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: -.11em;
  max-width: 900px;
  text-shadow: 0 24px 80px rgba(0,0,0,.32);
}
.mega-title span {
  color: var(--orange);
  letter-spacing: -.105em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: 14px 21px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .88rem;
  transition: .2s ease;
  cursor: pointer;
}
.button.primary {
  background: var(--orange);
  color: #170900;
  border-color: var(--orange);
  box-shadow: 0 14px 40px rgba(255,122,0,.25);
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(255,122,0,.36);
}
.mission-board,
.callout-card,
.data-card,
.content-panel,
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
  padding: clamp(1.3rem,3vw,2.2rem);
  position: relative;
  overflow: hidden;
}
.mission-board::after,
.feature-card::after,
.content-panel::after,
.callout-card::after,
.data-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% -30%;
  height: 150px;
  background: radial-gradient(ellipse, rgba(255,122,0,.26), transparent 68%);
  pointer-events: none;
}
.route-orbit {
  position: absolute;
  right: -14vw;
  bottom: -26vw;
  width: 70vw;
  height: 70vw;
  border: 2px dashed rgba(255,255,255,.12);
  border-radius: 50%;
  z-index: -1;
  animation: spin 38s linear infinite;
}
.route-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 2px dashed rgba(255,122,0,.22);
  border-radius: 50%;
}
.dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255,122,0,.16);
}
.dot.one {
  top: 8%;
  left: 48%;
}
.dot.two {
  right: 12%;
  top: 44%;
  background: var(--navy-2);
}
.dot.three {
  bottom: 18%;
  left: 20%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.section {
  padding: clamp(64px,9vw,120px) 0;
}
.section.compact {
  padding: clamp(48px,6vw,80px) 0;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}
.section-heading.narrow {
  max-width: 640px;
  text-align: center;
  margin-inline: auto;
}
.section-heading p {
  font-size: 1.1rem;
  color: #d9e5f4;
}
.cards-three {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.cards-four {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-card h3 {
  margin-bottom: .8rem;
}
.feature-card p {
  color: #cfdae9;
}
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--orange-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.text-link:hover {
  color: #fff;
}
.orange-panel {
  background: linear-gradient(145deg, rgba(255,122,0,.24), rgba(255,255,255,.055));
}
.check-list,
.legal-list {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 0;
}
.check-list li,
.legal-list li {
  position: relative;
  padding-left: 1.75rem;
  margin: .62rem 0;
  color: #dce8f5;
}
.check-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .64rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,122,0,.16);
}
.map-section {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,122,0,.05));
  border-block: 1px solid var(--line);
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
  margin-top: 2rem;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 7%;
  right: 7%;
  border-top: 2px dashed rgba(255,122,0,.42);
}
.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(2,5,10,.72);
  padding: 20px;
  min-height: 210px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #170900;
  font-weight: 1000;
  margin-bottom: 2rem;
  box-shadow: 0 0 0 10px rgba(255,122,0,.14);
}
.process-step h3 {
  font-size: 1.35rem;
  margin-bottom: .75rem;
}
.process-step p {
  font-size: .95rem;
  color: #bdcce0;
}
.dark-card-section {
  background: linear-gradient(160deg, rgba(7,50,111,.72), rgba(2,5,10,.35));
  border-block: 1px solid var(--line);
}
.page-hero {
  padding: clamp(70px,10vw,130px) 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  top: 24%;
  width: 50vw;
  height: 50vw;
  border: 2px dashed rgba(255,122,0,.18);
  border-radius: 50%;
  z-index: -1;
}
.page-hero h1 {
  max-width: 850px;
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 720px;
  color: #dce8f7;
}
.legal-hero {
  padding-bottom: clamp(14px,2vw,24px);
}
.legal-hero + .legal-section {
  padding-top: clamp(18px,2.4vw,32px);
}
.legal-content > p:first-child {
  margin-top: 0;
}
.callout-card h2 {
  color: var(--orange);
  font-size: clamp(1.8rem,3.8vw,3.6rem);
}
.data-card strong {
  font-size: clamp(1.6rem,4vw,3.6rem);
  display: block;
  color: var(--orange);
  line-height: .95;
  letter-spacing: -.05em;
}
.data-card span {
  display: block;
  margin-top: 1rem;
  color: #dce8f7;
}
.content-panel h2 {
  margin-bottom: 1.1rem;
}
.content-panel h3 {
  margin: 1.4rem 0 .4rem;
  font-size: 1.5rem;
}
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(1.5rem,4vw,3rem);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(1.4rem,4vw,3rem);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
.legal-layout:has(> :only-child),
.legal-hero .page-hero-grid:has(> :only-child) {
  grid-template-columns: 1fr;
}
.legal-section {
  padding-top: clamp(28px,4vw,46px);
}
.legal-document-header {
  margin: 0 0 clamp(18px,2.5vw,28px);
  padding: clamp(18px,3vw,30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(247,251,255,.95));
  box-shadow: var(--premium-shadow);
}
.legal-document-header h1 {
  margin: 0;
}
.legal-document-header p {
  margin: 10px 0 0;
}
.legal-note {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,122,0,.1);
  padding: 20px;
}
.legal-note h2 {
  font-size: 1.6rem;
  margin-bottom: .8rem;
}
.legal-content {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  padding: clamp(1.4rem,4vw,3rem);
  box-shadow: var(--shadow);
}
.legal-content h2 {
  margin: 2.1rem 0 1rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  margin: 1.5rem 0 .5rem;
}
.legal-list {
  margin-bottom: 1rem;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width:1000px) {
  .hero-grid,
  .page-hero-grid,
  .form-layout,
  .mission-vision {
    grid-template-columns: 1fr;
  }
  .cards-four {
    grid-template-columns: repeat(2,1fr);
  }
  .cards-three {
    grid-template-columns: 1fr 1fr;
  }
  .process-line {
    grid-template-columns: 1fr 1fr;
  }
  .process-line::before {
    display: none;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-note {
    position: relative;
    top: auto;
  }
  .brand img {
    width: 190px;
  }
}
@media (max-width:760px) {
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    border-radius: 24px;
    padding: 12px;
    background: rgba(2,5,10,.96);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 14px;
  }
  .nav-toggle {
    display: flex;
  }
  .brand img {
    width: 178px;
  }
  .hero {
    padding-top: 56px;
    min-height: auto;
  }
  .mega-title {
    font-size: clamp(4.2rem,23vw,7rem);
  }
  .cards-three,
  .cards-four,
  .process-line {
    grid-template-columns: 1fr;
  }
  .form-layout {
    padding: 22px;
    border-radius: 28px;
  }
  .page-hero {
    padding-top: 54px;
  }
  .mission-board {
    margin-top: 1rem;
  }
  .route-orbit {
    display: none;
  }
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.5);
  padding: 44px 0 24px;
}
.footer-logo {
  width: 230px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 1rem;
}
.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.site-footer a,
.site-footer span {
  display: block;
  color: #c9d7e8;
  margin: .45rem 0;
}
.site-footer a:hover {
  color: var(--orange-2);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #aebbd0;
}
@media (prefers-reduced-motion:reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
.form-button-layout {
  align-items: center;
}
.popup-trigger {
  margin-top: 1.2rem;
}
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.form-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,5,10,.78);
  backdrop-filter: blur(10px);
}
.form-modal-panel {
  position: relative;
  width: min(940px,100%);
  max-height: min(88vh,860px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(5,17,38,.98), rgba(2,5,10,.98));
  box-shadow: 0 40px 120px rgba(0,0,0,.56);
  padding: clamp(1.2rem,4vw,2.3rem);
}
body.modal-open {
  overflow: hidden;
}
.form-modal .button {
  min-height: 54px;
}
@media (max-width:760px) {
  .form-modal {
    padding: 14px;
  }
  .form-modal-panel {
    border-radius: 24px;
    padding: 1rem;
  }
}
:root {
  --ink: #0d1424;
  --ink-2: #3d4a63;
  --ink-3: #8494af;
  --surface: #ffffff;
  --surface-2: #f4f7fc;
  --surface-3: #eaf0fb;
  --border: #dce5f5;
  --blue: #2563eb;
  --blue-lt: #3b82f6;
  --blue-glow: rgba(37,99,235,.15);
  --blue-bg: #eff4ff;
  --teal: #0d9488;
  --teal-bg: #f0fdfa;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --rose: #e11d48;
  --rose-bg: #fff1f2;
  --green: #059669;
  --green-bg: #ecfdf5;
  --white: #ffffff;
  --line: var(--border);
  --shadow-card: 0 2px 24px rgba(13,20,36,.08), 0 1px 4px rgba(13,20,36,.04);
  --shadow-blue: 0 8px 24px rgba(37,99,235,.28);
  --shadow: var(--shadow-card);
  --radius: 20px;
  --orange: var(--blue);
  --orange-2: var(--blue-lt);
}
html {
  background: #f0f4fb;
}
body {
  background: #f0f4fb;
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
body::before {
  background: radial-gradient(circle at 12% 10%, rgba(37,99,235,.10), transparent 26rem), radial-gradient(circle at 88% 6%, rgba(13,148,136,.09), transparent 25rem), radial-gradient(circle at 70% 78%, rgba(217,119,6,.08), transparent 24rem), linear-gradient(180deg,#f7faff 0%,#f0f4fb 45%,#eef3fa 100%);
}
.page-noise {
  opacity: .42;
  background-image: linear-gradient(rgba(13,20,36,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(13,20,36,.035) 1px,transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
}
p {
  color: var(--ink-2);
  font-size: 1.04rem;
  line-height: 1.72;
}
h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.4rem,5.2vw,5rem);
}
h2 {
  font-size: clamp(1.9rem,3.6vw,3.5rem);
}
h3 {
  font-size: clamp(1.15rem,1.7vw,1.55rem);
}
.mega-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(4rem,9.5vw,8.5rem);
  line-height: .8;
  color: var(--ink);
  text-shadow: none;
}
.mega-title span {
  color: var(--blue);
}
.container {
  width: min(1180px, calc(100% - 36px));
}
.site-header {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 8px 28px rgba(13,20,36,.06);
}
.header-inner {
  padding: 13px 0;
}
.brand {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  min-width: 190px;
  padding: 8px 12px;
}
.brand img {
  width: 218px;
  max-height: 48px;
  object-fit: contain;
}
.site-nav {
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
.nav-link {
  color: var(--ink-2);
  font-family: "Outfit",sans-serif;
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .06em;
}
.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg,var(--blue-lt),var(--blue));
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.nav-toggle {
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
.nav-toggle span {
  background: var(--ink);
}
.hero {
  min-height: calc(100vh - 82px);
  padding: 86px 0 70px;
}
.page-hero {
  padding: clamp(70px,9vw,118px) 0 50px;
}
.page-hero::after,
.route-orbit {
  border-color: rgba(37,99,235,.14);
}
.route-orbit::before {
  border-color: rgba(13,148,136,.16);
}
.dot {
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(37,99,235,.12);
}
.dot.two {
  background: var(--teal);
}
.eyebrow,
.kicker {
  color: var(--blue);
  font-family: "Outfit",sans-serif;
  font-weight: 800;
  letter-spacing: .12em;
}
.eyebrow::before,
.kicker::before {
  background: var(--blue);
}
.page-hero p,
.section-heading p,
.content-panel p,
.data-card span,
.process-step p,
.feature-card p,
.legal-content p {
  color: var(--ink-2);
}
.button {
  border-radius: 14px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1.5px solid var(--border);
  font-family: "Outfit",sans-serif;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .86rem;
}
.button.primary {
  background: linear-gradient(135deg,var(--blue-lt),var(--blue));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,99,235,.36);
}
.mission-board,
.callout-card,
.data-card,
.content-panel,
.feature-card,
.form-layout,
.legal-content,
.legal-note,
.process-step,
.doc-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  color: var(--ink);
}
.mission-board::after,
.feature-card::after,
.content-panel::after,
.callout-card::after,
.data-card::after {
  background: radial-gradient(ellipse,rgba(37,99,235,.11),transparent 70%);
}
.footer-logo {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
.data-card strong,
.callout-card h2 {
  color: var(--blue);
}
.section {
  padding: clamp(58px,8vw,104px) 0;
}
.section.compact {
  padding: clamp(46px,5.5vw,72px) 0;
}
.map-section,
.dark-card-section,
.industries-section,
.cta-section {
  background: transparent;
  border: 0;
}
.feature-card,
.content-panel {
  min-height: auto;
}
.feature-card:hover,
.content-panel:hover,
.process-step:hover {
  border-color: rgba(37,99,235,.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,.10);
}
.text-link {
  color: var(--blue);
}
.text-link:hover {
  color: var(--teal);
}
.orange-panel {
  background: linear-gradient(145deg,var(--blue-bg),#fff);
}
.check-list li,
.legal-list li {
  color: var(--ink-2);
}
.check-list li::before,
.legal-list li::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(37,99,235,.12);
}
.process-line::before {
  border-top: 2px dashed rgba(37,99,235,.26);
}
.process-step {
  background: var(--surface);
}
.process-step span {
  background: linear-gradient(135deg,var(--blue-lt),var(--blue));
  color: #fff;
  box-shadow: 0 0 0 10px rgba(37,99,235,.10);
  font-family: "Outfit",sans-serif;
}
.form-layout {
  background: var(--surface);
  border-radius: 24px;
}
.form-modal-backdrop {
  background: rgba(13,20,36,.62);
  backdrop-filter: blur(10px);
}
.form-modal-panel {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(13,20,36,.24);
}
.legal-note {
  background: var(--blue-bg);
}
.site-footer {
  background: var(--ink);
  border-top: 0;
  color: #fff;
  padding: 46px 0 24px;
}
.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255,255,255,.70);
}
.site-footer h3 {
  color: #fff;
  font-family: "Outfit",sans-serif;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
}
.service-enquiry-section {
  padding-top: clamp(46px,6vw,76px);
}
.service-enquiry-card {
  align-items: center;
}
.reveal {
  transition: opacity .55s ease, transform .55s ease;
}
@media (max-width:760px) {
  .site-nav {
    background: #fff;
    border: 1.5px solid var(--border);
  }
  .nav-link {
    color: var(--ink-2);
  }
  .mega-title {
    font-size: clamp(3.5rem,19vw,6.2rem);
  }
  h1 {
    font-size: clamp(2.05rem,11vw,3.4rem);
  }
  h2 {
    font-size: clamp(1.65rem,8vw,2.6rem);
  }
  .form-layout {
    border-radius: 20px;
  }
}
.form-button-layout {
  align-items: center;
}
.form-button-layout .button.primary.popup-trigger {
  margin-top: 1.25rem;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.testimonial-card,
.vehicle-category-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: 1.2rem;
}
.testimonial-card strong {
  display: block;
  font-family: "Outfit",sans-serif;
  color: var(--ink);
  font-size: 1.05rem;
}
.testimonial-card span {
  display: block !important;
  color: var(--ink-3);
  font-size: .92rem;
  margin-top: 4px;
}
.vehicle-category-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.vehicle-category-card span {
  display: inline-flex !important;
  color: var(--blue);
  background: var(--blue-bg);
  border: 1.5px solid rgba(37,99,235,.18);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 16px;
  font-family: "Outfit",sans-serif;
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.vehicle-category-card h3 {
  color: var(--ink);
  margin-bottom: .7rem;
}
.vehicle-category-card p {
  color: var(--ink-2);
  margin-bottom: 0;
}
.embedded-form-modal .iframe-panel {
  width: min(980px,calc(100vw - 32px));
  height: min(88vh,900px);
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f0f4fb;
}
.embedded-form-modal .large-iframe-panel {
  width: min(1180px,calc(100vw - 24px));
  height: min(92vh,940px);
}
.embedded-form-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #f0f4fb;
}
.form-button-layout {
  display: flex;
  justify-content: center;
  text-align: center;
}
.form-button-layout > div {
  width: 100%;
}
.form-button-layout h2 {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 1.35rem;
}
.site-footer {
  background: var(--ink);
  border-top: 0;
  color: #fff;
  padding: 34px 0 18px;
}
.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand-block {
  max-width: 430px;
}
.footer-brand-block p {
  margin: 0;
  color: rgba(255,255,255,.70);
}
.footer-logo {
  width: 220px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  margin: 0 0 12px;
  box-shadow: var(--shadow-card);
}
.footer-links-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-left: 32px;
}
.footer-company-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a {
  display: inline-flex !important;
  color: rgba(255,255,255,.78);
  margin: 0 !important;
  align-items: center;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 22px;
  padding-top: 16px;
  display: block;
  color: rgba(255,255,255,.66);
}
.footer-bottom span,
.footer-bottom #year {
  display: inline !important;
  margin: 0 !important;
  color: rgba(255,255,255,.72) !important;
}
.linkedin-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  justify-content: center;
  background: #0a66c2;
  color: #fff !important;
}
.linkedin-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.floating-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--blue-lt),var(--blue));
  color: #fff !important;
  font-family: "Outfit",sans-serif;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: var(--shadow-blue);
}
.floating-back-top:hover {
  transform: translateY(-2px);
}
@media (max-width:980px) {
  .testimonial-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .vehicle-category-grid {
    grid-template-columns: 1fr;
  }
  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links-block {
    margin-left: 0;
  }
  .footer-company-row {
    gap: 12px;
  }
  .floating-back-top {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }
}
@media (max-width:620px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-company-row {
    gap: 10px;
  }
  .footer-company-row a {
    font-size: .92rem;
  }
  .embedded-form-modal .iframe-panel,
  .embedded-form-modal .large-iframe-panel {
    width: calc(100vw - 16px);
    height: 90vh;
  }
  .site-footer {
    padding-bottom: 76px;
  }
}
.linkedin-letters {
  font-family: "Outfit",sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1;
  color: #fff;
}
.header-inner {
  gap: 1.1rem;
}
.brand {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-width: 174px;
  padding: 7px 10px;
  border-radius: 14px;
}
.brand img {
  width: 150px;
  max-height: 36px;
  object-fit: contain;
}
.brand-tagline {
  display: block !important;
  margin: 0 !important;
  color: var(--ink-2) !important;
  font-family: "Outfit",sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.1;
  white-space: nowrap;
}
.site-nav {
  margin-left: auto;
}
.vehicle-category-card {
  display: flex;
  flex-direction: column;
}
.vehicle-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.vehicle-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: .96rem;
  line-height: 1.35;
}
.vehicle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.footer-topline {
  align-items: flex-start;
}
.footer-brand-block {
  max-width: 340px;
}
.footer-tagline {
  margin: 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-family: "Outfit",sans-serif;
  font-size: .95rem !important;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.4;
}
.footer-links-block {
  margin-left: auto;
  align-items: flex-end;
  min-width: max-content;
}
.footer-company-row {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 15px;
}
.footer-company-row a {
  font-size: .95rem;
}
.footer-bottom {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 22px;
  padding-top: 16px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.footer-bottom-links a {
  display: inline-flex !important;
  margin: 0 !important;
}
.copyright-line {
  white-space: nowrap;
}
.linkedin-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}
.linkedin-letters {
  font-size: .96rem;
}
.floating-back-top {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 50%;
  right: 18px;
  bottom: 18px;
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.floating-back-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-back-top:hover {
  transform: translateY(-2px);
}
.embedded-form-modal .iframe-panel {
  height: min(88vh,920px);
}
.embedded-form-modal .large-iframe-panel {
  height: min(92vh,960px);
}
@media (max-width:980px) {
  .footer-links-block {
    align-items: flex-start;
    min-width: 0;
  }
  .footer-company-row {
    flex-wrap: wrap;
    white-space: normal;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    white-space: normal;
  }
  .copyright-line {
    white-space: normal;
  }
}
@media (max-width:760px) {
  .brand img {
    width: 132px;
    max-height: 32px;
  }
  .brand-tagline {
    font-size: .55rem;
  }
  .site-nav {
    margin-left: 0;
  }
}
.footer-links-block {
  margin-left: auto !important;
  align-items: flex-end !important;
  min-width: 180px !important;
}
.footer-company-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 8px !important;
  white-space: normal !important;
}
.footer-company-row a {
  font-size: .96rem !important;
  line-height: 1.2 !important;
}
.footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.25rem !important;
}
.footer-bottom-links {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  white-space: nowrap !important;
  padding-right: 0 !important;
}
.linkedin-icon {
  position: relative !important;
  z-index: 2 !important;
}
.floating-back-top {
  width: 30px !important;
  height: 30px !important;
  right: 76px !important;
  bottom: 18px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: .9rem !important;
  line-height: 1 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) !important;
  transition: opacity .2s ease,visibility .2s ease,transform .2s ease !important;
  z-index: 70 !important;
}
.floating-back-top.visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.floating-back-top:hover {
  transform: translateY(-2px) !important;
}
.embedded-form-modal .iframe-panel {
  width: min(1040px,calc(100vw - 18px)) !important;
  height: 96vh !important;
  max-height: 1120px !important;
}
.embedded-form-modal .large-iframe-panel {
  width: min(1220px,calc(100vw - 16px)) !important;
  height: 96vh !important;
  max-height: 1180px !important;
}
.embedded-form-frame {
  height: 100% !important;
}
.testimonial-card {
  position: relative;
  padding: 76px 24px 24px !important;
}
@media (max-width:980px) {
  .footer-links-block {
    align-items: flex-start !important;
    min-width: 0 !important;
    margin-left: 0 !important;
  }
  .footer-company-row {
    align-items: flex-start !important;
  }
  .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  .footer-bottom-links {
    flex-wrap: wrap !important;
    white-space: normal !important;
  }
  .floating-back-top {
    right: 16px !important;
    bottom: 16px !important;
  }
}
@media (max-width:620px) {
  .embedded-form-modal .iframe-panel,
  .embedded-form-modal .large-iframe-panel {
    width: calc(100vw - 10px) !important;
    height: 96vh !important;
  }
  .site-footer {
    padding-bottom: 64px !important;
  }
}
.form-modal.embedded-form-modal {
  padding: 0 !important;
  display: block !important;
}
.form-modal.embedded-form-modal.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.form-modal.embedded-form-modal .form-modal-backdrop {
  background: #f0f4fb !important;
  backdrop-filter: none !important;
}
.form-modal.embedded-form-modal .form-modal-panel,
.form-modal.embedded-form-modal .iframe-panel,
.form-modal.embedded-form-modal .large-iframe-panel {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 100vh !important;
  border-radius: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #f0f4fb !important;
  box-shadow: none !important;
}
.form-modal.embedded-form-modal .embedded-form-frame {
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  border: 0 !important;
  display: block !important;
}
.floating-back-top {
  right: 10px !important;
  bottom: 88px !important;
  width: 32px !important;
  height: 32px !important;
  z-index: 9000 !important;
}
.footer-bottom-links {
  padding-right: 52px !important;
}
.footer-topline {
  align-items: center !important;
}
.footer-links-block {
  margin-left: auto !important;
  min-width: 0 !important;
  align-items: flex-end !important;
}
.footer-company-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  gap: 18px !important;
}
.footer-company-row a {
  display: inline-flex !important;
  font-size: .96rem !important;
  line-height: 1 !important;
}
@media (max-width:980px) {
  .footer-topline {
    align-items: flex-start !important;
  }
  .footer-links-block {
    align-items: flex-start !important;
    margin-left: 0 !important;
  }
  .footer-company-row {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
  }
  .footer-bottom-links {
    padding-right: 0 !important;
  }
  .floating-back-top {
    right: 10px !important;
    bottom: 72px !important;
  }
}
@media (max-width:620px) {
  .floating-back-top {
    right: 8px !important;
    bottom: 72px !important;
  }
}
.form-modal.embedded-form-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1000 !important;
  display: grid !important;
  place-items: center !important;
  padding: 24px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-modal.embedded-form-modal.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.form-modal.embedded-form-modal .form-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(13,20,36,.46) !important;
  backdrop-filter: blur(8px) !important;
}
.form-modal.embedded-form-modal .form-modal-panel,
.form-modal.embedded-form-modal .iframe-panel,
.form-modal.embedded-form-modal .large-iframe-panel {
  position: relative !important;
  inset: auto !important;
  width: min(860px,calc(100vw - 36px)) !important;
  height: min(90vh,820px) !important;
  min-height: 0 !important;
  max-width: 860px !important;
  max-height: 820px !important;
  border-radius: 24px !important;
  border: 1.5px solid rgba(255,255,255,.72) !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #f0f4fb !important;
  box-shadow: 0 24px 80px rgba(13,20,36,.30) !important;
}
.form-modal.embedded-form-modal .large-iframe-panel {
  width: min(1120px,calc(100vw - 36px)) !important;
  height: min(92vh,900px) !important;
  max-width: 1120px !important;
  max-height: 900px !important;
}
.form-modal.embedded-form-modal .embedded-form-frame {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border: 0 !important;
  display: block !important;
  background: #f0f4fb !important;
}
.footer-topline {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}
.footer-links-block {
  margin-left: auto !important;
  min-width: 0 !important;
  align-items: flex-end !important;
}
.footer-company-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 24px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  text-align: right !important;
}
.footer-company-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.floating-back-top {
  right: 10px !important;
  bottom: 88px !important;
}
.footer-bottom-links {
  padding-right: 0 !important;
}
@media (max-width:980px) {
  .footer-topline {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
  .footer-links-block {
    align-items: flex-start !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .footer-company-row {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    white-space: normal !important;
    text-align: left !important;
    gap: 14px 18px !important;
  }
}
@media (max-width:620px) {
  .form-modal.embedded-form-modal {
    padding: 10px !important;
  }
  .form-modal.embedded-form-modal .form-modal-panel,
  .form-modal.embedded-form-modal .iframe-panel,
  .form-modal.embedded-form-modal .large-iframe-panel {
    width: calc(100vw - 20px) !important;
    height: 92vh !important;
    max-height: none !important;
    border-radius: 18px !important;
  }
  .floating-back-top {
    right: 8px !important;
    bottom: 72px !important;
  }
}
.form-modal.embedded-form-modal .form-modal-panel,
.form-modal.embedded-form-modal .iframe-panel {
  width: min(780px,calc(100vw - 36px)) !important;
  height: min(88vh,780px) !important;
  max-width: 780px !important;
  max-height: 780px !important;
}
.form-modal.embedded-form-modal .large-iframe-panel {
  width: min(1120px,calc(100vw - 36px)) !important;
  height: min(92vh,900px) !important;
  max-width: 1120px !important;
  max-height: 900px !important;
}
.form-modal.embedded-form-modal .embedded-form-frame {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}
.footer-topline {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 32px !important;
}
.footer-links-block {
  margin-left: auto !important;
  align-items: flex-start !important;
  text-align: left !important;
  min-width: 180px !important;
}
.footer-company-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  white-space: normal !important;
  text-align: left !important;
}
.footer-company-row a {
  justify-content: flex-start !important;
  text-align: left !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width:980px) {
  .footer-topline {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .footer-links-block {
    margin-left: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .footer-company-row {
    gap: 9px !important;
  }
}
@media (max-width:620px) {
  .form-modal.embedded-form-modal .form-modal-panel,
  .form-modal.embedded-form-modal .iframe-panel,
  .form-modal.embedded-form-modal .large-iframe-panel {
    width: calc(100vw - 20px) !important;
    height: 90vh !important;
    max-height: none !important;
  }
}
#career-application-modal.form-modal.embedded-form-modal,
#customer-enquiry-modal.form-modal.embedded-form-modal,
#vendor-onboarding-modal.form-modal.embedded-form-modal {
  padding: 12px !important;
}
#career-application-modal.form-modal.embedded-form-modal .iframe-panel,
#customer-enquiry-modal.form-modal.embedded-form-modal .iframe-panel,
#vendor-onboarding-modal.form-modal.embedded-form-modal .iframe-panel {
  width: min(840px,calc(100vw - 24px)) !important;
  height: calc(100vh - 24px) !important;
  max-width: 840px !important;
  max-height: none !important;
  border-radius: 22px !important;
}
@media (max-width:620px) {
  #career-application-modal.form-modal.embedded-form-modal,
  #customer-enquiry-modal.form-modal.embedded-form-modal,
  #vendor-onboarding-modal.form-modal.embedded-form-modal {
    padding: 6px !important;
  }
  #career-application-modal.form-modal.embedded-form-modal .iframe-panel,
  #customer-enquiry-modal.form-modal.embedded-form-modal .iframe-panel,
  #vendor-onboarding-modal.form-modal.embedded-form-modal .iframe-panel {
    width: calc(100vw - 12px) !important;
    height: calc(100vh - 12px) !important;
    border-radius: 16px !important;
  }
}
.capability-grid .feature-card {
  min-height: 220px;
}
.capability-grid .feature-card h3 {
  margin-bottom: .75rem;
}
.capability-grid .feature-card p {
  color: var(--ink-2) !important;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 0;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Outfit",sans-serif;
  font-weight: 850;
  color: var(--ink);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-bg);
  color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--ink-2);
}
@media (max-width:980px) {
  .capability-grid {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width:620px) {
  .capability-grid {
    grid-template-columns: 1fr !important;
  }
  .capability-grid .feature-card {
    min-height: auto;
  }
}
.contact-full-window {
  min-height: calc(100vh - 82px);
  padding: clamp(52px,7vw,88px) 0 clamp(64px,8vw,96px);
}
.contact-window-inner {
  max-width: 1120px;
}
.contact-window-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px;
}
.contact-window-intro h1 {
  color: var(--ink);
  font-size: clamp(2.4rem,5vw,5rem);
  margin-bottom: 18px;
}
.contact-window-intro p {
  color: var(--ink-2);
  font-size: clamp(1rem,1.6vw,1.22rem);
  max-width: 920px;
  margin: 0 auto;
}
.contact-form-body {
  width: 100%;
  min-height: 760px;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: #f0f4fb;
  box-shadow: var(--shadow-card);
}
.contact-body-frame {
  width: 100%;
  height: 820px;
  border: 0;
  display: block;
  background: #f0f4fb;
}
.contact-details-after-form {
  margin: 28px auto 0;
  padding: clamp(1.4rem,3vw,2rem);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.contact-details-after-form h2 {
  color: var(--ink);
  font-size: clamp(1.6rem,3vw,2.6rem);
  margin-bottom: 10px;
}
.contact-info-columns {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(1rem,3vw,2rem);
  align-items: start;
}
.contact-info-item {
  text-align: left;
}
.contact-info-item h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.contact-info-item p {
  color: var(--ink-2);
  margin-bottom: 0;
}
.contact-details-after-form a {
  color: var(--blue);
  font-weight: 800;
}
@media (max-width:760px) {
  .contact-full-window {
    padding-top: 36px;
  }
  .contact-form-body {
    border-radius: 18px;
    min-height: 820px;
  }
  .contact-body-frame {
    height: 900px;
  }
  .contact-info-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.careers-hero.full-window-heading {
  min-height: auto;
  display: block;
  align-items: initial;
  padding: clamp(52px,7vw,88px) 0 clamp(12px,2vw,24px);
}
.careers-hero.full-window-heading .page-hero-grid {
  grid-template-columns: 1fr;
  width: 100%;
  text-align: center;
  justify-items: center;
}
.careers-hero.full-window-heading .reveal {
  max-width: 980px;
  margin: 0 auto;
}
.careers-hero.full-window-heading h1 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.careers-hero.full-window-heading p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.career-full-section {
  width: 100%;
  padding: clamp(20px,3vw,36px) 0;
}
.career-no-gap {
  margin-top: 0;
  margin-bottom: 0;
}
.careers-hero.full-window-heading + .career-full-section {
  padding-top: 0;
}
.career-full-section + .career-full-section,
.career-full-section + .cta-section {
  padding-top: 0;
}
.career-full-section .container,
.cta-section.career-no-gap .container {
  max-width: none;
  width: 100%;
  padding-left: clamp(20px,5vw,72px);
  padding-right: clamp(20px,5vw,72px);
}
.career-full-section .section-heading {
  max-width: 980px;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.career-full-section .section-heading h2,
.career-full-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}
#openings.career-full-section .section-heading {
  margin-bottom: 0;
}
#openings.career-full-section .section-heading p {
  margin-top: .5rem;
}
.cta-section.career-no-gap {
  padding-top: clamp(18px,2.5vw,32px);
}
.careers-hero.full-window-heading .container {
  max-width: none;
  width: 100%;
  padding-left: clamp(20px,5vw,72px);
  padding-right: clamp(20px,5vw,72px);
}
.career-apply-button {
  margin-top: 18px;
}
#openings.career-full-section {
  padding-bottom: clamp(28px,4vw,48px);
}
.careers-hero.full-window-heading h1,
.careers-hero.full-window-heading p {
  white-space: nowrap;
  max-width: none;
}
@media (max-width:900px) {
  .careers-hero.full-window-heading h1,
  .careers-hero.full-window-heading p {
    white-space: normal;
  }
}
body.spacing-tight .hero.data-hero {
  min-height: auto;
  padding: clamp(48px,6vw,76px) 0 clamp(28px,4vw,48px);
}
body.spacing-tight .page-hero:not(.careers-hero) {
  padding: clamp(46px,6vw,76px) 0 clamp(22px,3vw,36px);
}
body.spacing-tight main > .section:not(.career-full-section) {
  padding-top: clamp(30px,4.2vw,54px);
  padding-bottom: clamp(30px,4.2vw,54px);
}
body.spacing-tight main > .section.compact:not(.career-full-section) {
  padding-top: clamp(24px,3.4vw,42px);
  padding-bottom: clamp(24px,3.4vw,42px);
}
body.spacing-tight .page-hero:not(.careers-hero) + .section,
body.spacing-tight .hero.data-hero + .section {
  padding-top: clamp(24px,3.5vw,42px);
}
body.spacing-tight main > .section + .section:not(.career-full-section) {
  padding-top: clamp(24px,3.6vw,44px);
}
body.spacing-tight .section-heading {
  margin-bottom: 1.25rem;
}
body.spacing-tight .process-line {
  margin-top: 1.25rem;
}
body.spacing-tight .cards-three,
body.spacing-tight .cards-four,
body.spacing-tight .vehicle-category-grid {
  gap: clamp(14px,2.4vw,24px);
}
@media (max-width:760px) {
  body.spacing-tight .hero.data-hero,
  body.spacing-tight .page-hero:not(.careers-hero) {
    padding-top: 34px;
    padding-bottom: 24px;
  }
  body.spacing-tight main > .section:not(.career-full-section),
  body.spacing-tight main > .section.compact:not(.career-full-section) {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
body.spacing-tight main > section:empty,
body.spacing-tight main > .section:empty {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.spacing-tight .hero.data-hero {
  padding-top: clamp(34px,4.5vw,58px) !important;
  padding-bottom: clamp(18px,2.8vw,32px) !important;
}
body.spacing-tight .page-hero:not(.careers-hero) {
  padding-top: clamp(34px,4.5vw,58px) !important;
  padding-bottom: clamp(18px,2.8vw,32px) !important;
}
body.spacing-tight main > .section:not(.career-full-section) {
  padding-top: clamp(18px,2.8vw,34px) !important;
  padding-bottom: clamp(18px,2.8vw,34px) !important;
}
body.spacing-tight main > .section.compact:not(.career-full-section) {
  padding-top: clamp(14px,2.2vw,28px) !important;
  padding-bottom: clamp(14px,2.2vw,28px) !important;
}
body.spacing-tight main > .section + .section:not(.career-full-section),
body.spacing-tight .page-hero:not(.careers-hero) + .section,
body.spacing-tight .hero.data-hero + .section {
  padding-top: clamp(14px,2.2vw,28px) !important;
}
body.spacing-tight .section-heading {
  margin-bottom: 1rem !important;
}
body.spacing-tight .page-hero-grid:has(> :only-child),
body.spacing-tight .service-hero .page-hero-grid,
body.spacing-tight .vendor-hero .page-hero-grid {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
@media (max-width:760px) {
  body.spacing-tight .hero.data-hero,
  body.spacing-tight .page-hero:not(.careers-hero),
  body.spacing-tight main > .section:not(.career-full-section),
  body.spacing-tight main > .section.compact:not(.career-full-section) {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
}
body.page-vendor .vendor-hero,
body.page-vendor .vehicle-category-section,
body.page-vendor .source-detail-section,
body.page-vendor .map-section {
  width: 100%;
}
body.page-vendor .vendor-hero .container,
body.page-vendor .vehicle-category-section .container,
body.page-vendor .source-detail-section .container,
body.page-vendor .map-section .container {
  width: min(1480px, calc(100% - 32px));
  max-width: none;
}
body.page-vendor .vendor-hero .page-hero-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
}
body.page-vendor .vendor-hero .reveal {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}
body.page-vendor .vendor-hero h1,
body.page-vendor .vendor-hero p {
  margin-left: auto;
  margin-right: auto;
}
body.page-vendor .vehicle-category-section .section-heading,
body.page-vendor .source-detail-section .section-heading,
body.page-vendor .map-section .section-heading {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.page-vendor .vehicle-category-section .section-heading h2,
body.page-vendor .source-detail-section .section-heading h2,
body.page-vendor .source-detail-section .section-heading p,
body.page-vendor .map-section .section-heading h2,
body.page-vendor .map-section .section-heading p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
body.page-vendor .vendor-hero .eyebrow,
body.page-vendor .vehicle-category-section .eyebrow,
body.page-vendor .source-detail-section .eyebrow,
body.page-vendor .map-section .eyebrow {
  justify-content: center;
}
body.page-vendor .vehicle-category-grid,
body.page-vendor .source-detail-section .cards-four,
body.page-vendor .process-line {
  width: 100%;
}
body.page-vendor .source-detail-section .feature-card,
body.page-vendor .process-step {
  text-align: center;
  align-items: center;
}
body.page-vendor .source-detail-section .feature-card .kicker,
body.page-vendor .process-step span {
  justify-content: center;
}
body.page-vendor .vehicle-category-card {
  align-items: center;
  text-align: center;
}
body.page-vendor .vehicle-list {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width:980px) {
  body.page-vendor .vendor-hero .container,
  body.page-vendor .vehicle-category-section .container,
  body.page-vendor .source-detail-section .container,
  body.page-vendor .map-section .container {
    width: calc(100% - 24px);
  }
  body.page-vendor .source-detail-section .cards-four,
  body.page-vendor .vehicle-category-grid,
  body.page-vendor .process-line {
    grid-template-columns: 1fr !important;
  }
}
body.page-vendor .map-section .process-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body.page-vendor .map-section .process-step span {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width:980px) {
  body.page-vendor .map-section .process-line::before {
    display: none;
  }
}
body.page-vendor .vendor-hero h1 {
  max-width: 980px;
  font-size: clamp(2.15rem,4.6vw,4.55rem);
}
body.page-vendor .vendor-hero h1 .hero-title-line {
  white-space: nowrap;
}
@media (max-width:640px) {
  body.page-vendor .vendor-hero h1 {
    font-size: clamp(1.45rem,7.1vw,2.25rem);
  }
}
body.page-vendor .vendor-single-panel {
  width: min(1480px, calc(100% - 32px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 900px);
  justify-content: center;
  margin-inline: auto;
}
body.page-vendor .vendor-single-panel .content-panel {
  text-align: center;
}
body.page-vendor .vendor-single-panel .check-list {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width:980px) {
  body.page-vendor .vendor-single-panel {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }
}
body.page-vendor .vendor-single-panel .content-panel {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}
body.page-vendor .vendor-single-panel .content-panel::after {
  display: none !important;
}
body.page-services .service-hero,
body.page-services .source-detail-section,
body.page-services .industries-section,
body.page-services .faq-section,
body.page-services .service-enquiry-section {
  width: 100%;
}
body.page-services .service-hero .container,
body.page-services .section > .container {
  width: min(1480px, calc(100% - 32px));
  max-width: none;
}
body.page-services .service-hero .page-hero-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center;
  gap: 0 !important;
  text-align: center;
}
body.page-services .service-hero .reveal,
body.page-services .service-hero h1,
body.page-services .service-hero p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.page-services .service-hero .reveal {
  max-width: 1060px;
  width: 100%;
}
body.page-services .service-hero .eyebrow,
body.page-services .industries-section .eyebrow,
body.page-services .source-detail-section .eyebrow {
  justify-content: center;
}
body.page-services .industries-section .section-heading,
body.page-services .source-detail-section .section-heading {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
body.page-services .industries-section .section-heading h2,
body.page-services .industries-section .section-heading p,
body.page-services .source-detail-section .section-heading h2,
body.page-services .source-detail-section .section-heading p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
body.page-services #service-capabilities .capability-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  width: 100%;
}
body.page-services #service-capabilities .feature-card {
  text-align: center;
  align-items: center;
}
body.page-services #service-capabilities .feature-card .kicker {
  justify-content: center;
}
@media (max-width:980px) {
  body.page-services .service-hero .container,
  body.page-services .section > .container {
    width: calc(100% - 24px);
  }
  body.page-services #service-capabilities .capability-grid {
    grid-template-columns: 1fr !important;
  }
}
body.page-services .service-hero .reveal {
  max-width: 1240px;
}
body.page-services .service-hero h1.services-hero-title {
  font-size: clamp(2.05rem,4.15vw,4rem);
  line-height: 1.06;
  max-width: 1240px;
}
body.page-services .service-hero h1.services-hero-title .title-line {
  display: block;
  white-space: nowrap;
}
@media (max-width:760px) {
  body.page-services .service-hero h1.services-hero-title {
    font-size: clamp(1.72rem,7.6vw,2.8rem);
  }
}
@media (max-width:420px) {
  body.page-services .service-hero h1.services-hero-title {
    font-size: 1.58rem;
  }
}
:root {
  --site-h1-size: clamp(2.05rem,4.15vw,4rem);
  --site-h2-size: clamp(1.55rem,2.7vw,2.35rem);
  --site-h3-size: clamp(1.05rem,1.45vw,1.32rem);
}
body h1,
body .page-hero h1,
body .contact-window-intro h1,
body.page-services .service-hero h1.services-hero-title,
body.page-vendor .vendor-hero h1,
body .mega-title {
  font-size: var(--site-h1-size) !important;
  line-height: 1.06 !important;
  letter-spacing: -.04em !important;
}
body h2,
body .section-heading h2,
body .callout-card h2,
body .content-panel h2,
body .contact-details-after-form h2,
body .legal-content h2,
body .legal-note h2 {
  font-size: var(--site-h2-size) !important;
  line-height: 1.1 !important;
  letter-spacing: -.03em !important;
}
body h3,
body .feature-card h3,
body .process-step h3,
body .contact-info-item h3,
body .site-footer h3 {
  font-size: var(--site-h3-size) !important;
  line-height: 1.18 !important;
}
body.page-services .service-hero h1.services-hero-title .title-line,
body.page-vendor .vendor-hero h1 .hero-title-line {
  white-space: nowrap;
}
@media (max-width:760px) {
  :root {
    --site-h1-size: clamp(1.72rem,7.6vw,2.8rem);
    --site-h2-size: clamp(1.38rem,6.2vw,2.05rem);
    --site-h3-size: clamp(1rem,4.8vw,1.22rem);
  }
}
@media (max-width:420px) {
  :root {
    --site-h1-size: 1.58rem;
  }
  body.page-services .service-hero h1.services-hero-title .title-line,
  body.page-vendor .vendor-hero h1 .hero-title-line {
    white-space: normal;
  }
}
:root {
  --site-content-size: 1rem;
  --site-content-small-size: .94rem;
  --site-content-label-size: .84rem;
  --site-content-button-size: .86rem;
}
body,
body p,
body li,
body .page-hero p,
body .section-heading p,
body .contact-window-intro p,
body .content-panel p,
body .feature-card p,
body .process-step p,
body .callout-card p,
body .legal-content p,
body .legal-note p,
body .testimonial-card p,
body .vehicle-category-card p,
body .contact-info-item p,
body .site-footer p {
  font-size: var(--site-content-size) !important;
  line-height: 1.65 !important;
}
body .button,
body button,
body .floating-back-top {
  font-size: var(--site-content-button-size) !important;
}
body .nav-link,
body .vehicle-category-card span,
body .eyebrow,
body .kicker {
  font-size: var(--site-content-label-size) !important;
}
body .data-card span,
body .testimonial-card span,
body .vehicle-list li,
body .site-footer a,
body .site-footer span,
body .footer-company-row a {
  font-size: var(--site-content-small-size) !important;
  line-height: 1.45 !important;
}
@media (max-width:760px) {
  :root {
    --site-content-size: .98rem;
    --site-content-small-size: .92rem;
  }
}
:root {
  --site-section-heading-size: clamp(1.55rem,2.7vw,2.35rem);
  --site-section-heading-line-height: 1.1;
}
body main section h2,
body .section-heading h2,
body .career-full-section .section-heading h2,
body .contact-details-after-form h2,
body .legal-content h2,
body .legal-note h2,
body .content-panel h2,
body .callout-card h2,
body.page-services .source-detail-section .section-heading h2,
body.page-services .industries-section .section-heading h2,
body.page-vendor .vendor-single-panel h2,
body.page-vendor .vehicle-category-section .section-heading h2,
body.page-vendor .source-detail-section .section-heading h2,
body.page-vendor .map-section .section-heading h2 {
  font-size: var(--site-section-heading-size) !important;
  line-height: var(--site-section-heading-line-height) !important;
  letter-spacing: -.03em !important;
}
body main section h2.sr-only {
  font-size: 1px !important;
  line-height: 1 !important;
}
@media (max-width:760px) {
  :root {
    --site-section-heading-size: clamp(1.38rem,6.2vw,2.05rem);
  }
}
:root {
  --site-final-page-heading-size: clamp(2.05rem,4.15vw,4rem);
  --site-final-section-heading-size: clamp(1.85rem,3.25vw,2.85rem);
  --site-final-heading-size: clamp(1.45rem,2.25vw,2.05rem);
  --site-final-subheading-size: clamp(1.02rem,1.45vw,1.28rem);
}
body h1,
body .page-hero h1,
body .contact-window-intro h1,
body.page-services .service-hero h1.services-hero-title,
body.page-vendor .vendor-hero h1,
body .mega-title {
  font-size: var(--site-final-page-heading-size) !important;
  line-height: 1.06 !important;
  letter-spacing: -.04em !important;
}
body main section > .container > h2,
body main section > .container > .section-heading h2,
body .section-heading h2,
body .career-full-section .section-heading h2,
body .contact-details-after-form h2,
body .legal-content h2,
body .legal-note h2,
body .content-panel h2,
body .callout-card h2,
body.page-services .source-detail-section .section-heading h2,
body.page-services .industries-section .section-heading h2,
body.page-vendor .vendor-single-panel h2,
body.page-vendor .vehicle-category-section .section-heading h2,
body.page-vendor .source-detail-section .section-heading h2,
body.page-vendor .map-section .section-heading h2 {
  font-size: var(--site-final-section-heading-size) !important;
  line-height: 1.1 !important;
  letter-spacing: -.03em !important;
}
body h2:not(.sr-only) {
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
}
body .feature-card h2,
body .form-layout h2 {
  font-size: var(--site-final-heading-size) !important;
}
body h3,
body .feature-card h3,
body .process-step h3,
body .contact-info-item h3,
body .site-footer h3,
body .legal-content h3 {
  font-size: var(--site-final-subheading-size) !important;
  line-height: 1.2 !important;
  letter-spacing: -.01em !important;
}
body main section h2.sr-only {
  font-size: 1px !important;
  line-height: 1 !important;
}
@media (max-width:760px) {
  :root {
    --site-final-page-heading-size: clamp(1.72rem,7.6vw,2.8rem);
    --site-final-section-heading-size: clamp(1.55rem,6.4vw,2.2rem);
    --site-final-heading-size: clamp(1.32rem,5.4vw,1.9rem);
    --site-final-subheading-size: clamp(1rem,4.6vw,1.18rem);
  }
}
@media (max-width:420px) {
  :root {
    --site-final-page-heading-size: 1.58rem;
    --site-final-section-heading-size: 1.52rem;
  }
}
.justify-copy,
body.page-vendor .vendor-hero p,
body.page-vendor .vendor-single-panel .content-panel p,
body.page-services .service-hero p,
body.page-services #service-capabilities .section-heading p {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: justify !important;
  text-align-last: center;
  text-justify: inter-word;
}
body.page-services #service-capabilities .section-heading h2,
body.page-services .industries-section .section-heading h2 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width:760px) {
  .justify-copy,
  body.page-vendor .vendor-hero p,
  body.page-vendor .vendor-single-panel .content-panel p,
  body.page-services .service-hero p,
  body.page-services #service-capabilities .section-heading p {
    text-align: center !important;
    text-align-last: center;
  }
}
.balanced-two-line {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  text-align-last: center !important;
}
.balanced-two-line span {
  display: block;
}
@media (max-width:760px) {
  .balanced-two-line span {
    display: inline;
  }
  .balanced-two-line span + span::before {
    content: " ";
  }
}
body.page-home .mega-title {
  font-size: clamp(4.5rem,10.4vw,9.5rem) !important;
  line-height: .77 !important;
  letter-spacing: -.105em !important;
}
body.page-home .mega-title span {
  letter-spacing: -.1em !important;
}
body.page-services .industries-section .section-heading h2.single-line-service-heading {
  max-width: none !important;
  white-space: nowrap !important;
  font-size: clamp(1.65rem,2.65vw,2.45rem) !important;
  line-height: 1.08 !important;
}
@media (max-width:760px) {
  body.page-home .mega-title {
    font-size: clamp(4.2rem,23vw,7rem) !important;
    line-height: .78 !important;
  }
  body.page-services .industries-section .section-heading h2.single-line-service-heading {
    white-space: normal !important;
    font-size: clamp(1.36rem,6vw,1.82rem) !important;
  }
}
:root {
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #f3f7ff;
  --border: #edf2fa;
  --line: #edf2fa;
  --shadow-card: 0 6px 18px rgba(13,20,36,.045);
  --shadow: var(--shadow-card);
}
html,
body {
  background: #f7faff !important;
}
body::before {
  background: linear-gradient(180deg,#ffffff 0%,#f7faff 50%,#f3f7fd 100%) !important;
}
.page-noise,
.route-orbit,
.route-orbit::before,
.dot {
  display: none !important;
}
.mission-board::after,
.feature-card::after,
.content-panel::after,
.callout-card::after,
.data-card::after {
  display: none !important;
}
.mission-board,
.callout-card,
.data-card,
.content-panel,
.feature-card,
.form-layout,
.legal-content,
.legal-note,
.process-step,
.doc-card,
.testimonial-card,
.vehicle-category-card {
  background: #ffffff !important;
  border-color: var(--border) !important;
  box-shadow: var(--shadow-card) !important;
}
.site-header,
.site-nav,
.brand,
.footer-logo {
  box-shadow: 0 4px 16px rgba(13,20,36,.04) !important;
}
.feature-card:hover,
.content-panel:hover,
.process-step:hover {
  transform: none !important;
  box-shadow: 0 8px 22px rgba(37,99,235,.055) !important;
}
.testimonial-card {
  padding: 24px !important;
}
.testimonial-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--blue-bg);
  color: var(--blue);
  font-family: "Outfit",sans-serif;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: 16px;
  border: 1px solid rgba(37,99,235,.12);
}
.site-footer .footer-logo {
  box-shadow: none !important;
}
@media (max-width:760px) {
  .testimonial-card {
    padding: 20px !important;
  }
}
body .contact-details-after-form h2.contact-company-heading {
  font-size: var(--site-final-subheading-size) !important;
  line-height: 1.2 !important;
  letter-spacing: -.01em !important;
  margin-bottom: 14px !important;
}
body .contact-window-intro h1 {
  margin-top: 0 !important;
}
body .page-hero .page-hero-grid > .reveal > h1:first-child,
body .contact-window-intro > h1:first-child {
  margin-top: 0 !important;
}
body .page-hero.service-hero,
body .page-hero.vendor-hero,
body .page-hero.careers-hero {
  padding-top: clamp(48px,7vw,92px) !important;
}
body .contact-full-window {
  padding-top: clamp(38px,5.5vw,70px) !important;
}
@media (max-width:760px) {
  body .page-hero.service-hero,
  body .page-hero.vendor-hero,
  body .page-hero.careers-hero {
    padding-top: 38px !important;
  }
  body .contact-full-window {
    padding-top: 34px !important;
  }
}
body.page-home .faq-section .section-heading {
  text-align: left;
}
body.page-home .faq-section .faq-list {
  max-width: 900px;
}
body.page-services .services-showcase {
  padding-top: clamp(38px,5vw,72px);
}
body.page-services .services-showcase .section-heading {
  text-align: center;
  margin-inline: auto;
}
.service-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(18px,2.4vw,28px);
  align-items: stretch;
  margin-top: clamp(24px,4vw,44px);
}
.service-showcase-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-showcase-card {
  flex: 1;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 30px;
  padding: clamp(20px,2.2vw,28px);
  background: linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,251,255,.94));
  box-shadow: 0 12px 30px rgba(37,99,235,.065);
  color: #122033;
}
.service-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.service-showcase-card .service-index {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg,var(--blue),var(--orange));
  box-shadow: 0 10px 20px rgba(37,99,235,.16);
}
.service-showcase-card .kicker {
  text-align: right;
  color: var(--blue);
}
.service-showcase-card h2 {
  font-size: clamp(1.55rem,2vw,2rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: #122033;
}
.service-showcase-card h3 {
  font-size: 1.05rem;
  color: #122033;
  margin: 18px 0 10px;
}
.service-showcase-card p,
.service-showcase-card span,
.service-showcase-card li {
  color: #4f6075;
}
@media (max-width:1000px) {
  .service-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
  body.page-home .faq-section .section-heading {
    text-align: center;
  }
  .service-showcase-card .kicker {
    text-align: left;
  }
}
@media (max-width:620px) {
  .service-showcase-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
.home-services-showcase .section-heading {
  text-align: center;
  margin-inline: auto;
}
.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(18px,2.4vw,28px);
  margin-top: clamp(24px,4vw,42px);
}
.home-service-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-service-card {
  flex: 1;
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 28px;
  background: linear-gradient(180deg,rgba(255,255,255,.96),rgba(248,251,255,.94));
  padding: clamp(20px,2.2vw,28px);
  box-shadow: 0 12px 28px rgba(37,99,235,.06);
}
.home-service-card h3 {
  color: #122033;
  margin: .45rem 0 .8rem;
}
.home-service-card p {
  color: #4f6075;
}
.home-service-card .text-link {
  margin-top: 1.1rem;
}
@media (max-width:1000px) {
  .home-service-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
}
.logistics-solution-grid {
  align-items: stretch;
}
.logistics-solution-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.logistics-solution-card h2 {
  margin-bottom: 0;
}
.logistics-solution-card > p:not(.service-commitment) {
  margin: 0;
}
.service-commitment {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 7px 12px;
  margin: 0;
  background: rgba(255,122,0,.10);
  border: 1px solid rgba(255,122,0,.18);
  color: #a34a00 !important;
  font-weight: 900;
  font-size: .84rem;
}
.service-info-block {
  padding: 14px 15px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 8px 18px rgba(37,99,235,.04);
}
.service-info-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
}
.service-info-block span {
  display: block;
  color: #4f6075;
  line-height: 1.58;
  font-weight: 600;
}
.service-info-block.specialised {
  background: linear-gradient(145deg,rgba(37,99,235,.07),rgba(255,122,0,.06));
}
@media (max-width:1200px) and (min-width:1001px) {
  .logistics-solution-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
  }
  .logistics-solution-card {
    padding: 20px;
  }
  .service-showcase-card h2 {
    font-size: clamp(1.35rem,1.55vw,1.65rem);
  }
}
.support-card-block {
  padding: 16px;
}
.support-chip-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin-top: 8px;
}
.service-info-block .support-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.12);
  box-shadow: 0 8px 18px rgba(15,23,42,.04);
  color: #1f3555;
  font-weight: 800;
  font-size: .88rem;
  line-height: 1.3;
  text-align: center;
}
@media (max-width:640px) {
  .support-chip-grid {
    grid-template-columns: 1fr;
  }
}
.key-benefit-block {
  text-align: left;
}
.key-benefit-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.key-benefit-list li {
  position: relative;
  padding-left: 18px;
  color: #4f6075;
  font-weight: 700;
  line-height: 1.45;
}
.key-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}
body.page-services .service-showcase-grid,
body.page-services .logistics-solution-grid {
  grid-template-columns: 1fr !important;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(28px,4vw,44px);
}
body.page-services .service-showcase-item {
  width: 100%;
}
body.page-services .service-showcase-card {
  width: 100%;
}
body.page-services .service-showcase-top {
  justify-content: flex-start;
}
body.page-services .service-showcase-card .kicker {
  text-align: left;
}
body.page-services .service-info-block {
  margin-top: 4px;
}
body.page-home .home-service-grid {
  grid-template-columns: 1fr !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: clamp(26px,4vw,40px);
}
body.page-home .home-service-item {
  width: 100%;
}
@media (max-width:640px) {
  body.page-services .service-showcase-grid,
  body.page-services .logistics-solution-grid,
  body.page-home .home-service-grid {
    max-width: 100%;
    gap: 26px;
  }
}
body.page-services .service-hero-intro {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-inline: auto;
}
body.page-services .service-hero-intro span {
  display: block;
}
body.page-services .services-showcase {
  padding-top: clamp(22px,3vw,42px);
}
body.page-services .services-showcase .service-showcase-grid,
body.page-services .services-showcase .logistics-solution-grid {
  margin-top: 0;
}
body.page-services .service-showcase-item,
body.page-home .home-service-item {
  gap: 0;
}
body.page-services .industry-chip-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(120px, 1fr)) !important;
  gap: 10px !important;
  margin-top: 24px !important;
  width: 100% !important;
}
body.page-services .industry-chip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 48px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 14px rgba(13,20,36,.04) !important;
  color: var(--ink) !important;
  font-family: "Outfit",sans-serif !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
body.page-services .industry-symbol {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 1.05rem !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}
body.page-services .industries-section {
  padding-top: clamp(36px,5vw,64px) !important;
  padding-bottom: clamp(36px,5vw,64px) !important;
}
@media (max-width:1100px) {
  body.page-services .industry-chip-grid {
    grid-template-columns: repeat(4, minmax(120px, 1fr)) !important;
  }
}
@media (max-width:760px) {
  body.page-services .industry-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  body.page-services .industry-chip {
    font-size: .88rem !important;
    min-height: 44px !important;
    padding: 9px 10px !important;
  }
}
@media (max-width:420px) {
  body.page-services .industry-chip-grid {
    grid-template-columns: 1fr !important;
  }
}
body.page-services .logistics-solution-card,
body.page-home .home-service-card {
  position: relative !important;
}
body.page-services .service-commitment {
  position: absolute !important;
  top: clamp(18px,2vw,24px) !important;
  right: clamp(18px,2vw,24px) !important;
  z-index: 2 !important;
  margin: 0 !important;
  white-space: nowrap !important;
}
body.page-services .service-showcase-top {
  padding-right: clamp(150px,22vw,250px) !important;
  min-height: 44px !important;
}
body.page-home .home-service-card h3 {
  position: absolute !important;
  top: clamp(18px,2vw,24px) !important;
  right: clamp(18px,2vw,24px) !important;
  z-index: 2 !important;
  width: max-content !important;
  max-width: calc(100% - 36px) !important;
  margin: 0 !important;
  border-radius: 999px !important;
  padding: 7px 12px !important;
  background: rgba(255,122,0,.10) !important;
  border: 1px solid rgba(255,122,0,.18) !important;
  color: #a34a00 !important;
  font-weight: 900 !important;
  font-size: .84rem !important;
  line-height: 1.2 !important;
}
body.page-home .home-service-card .kicker {
  display: block !important;
  padding-right: clamp(150px,22vw,250px) !important;
}
@media (max-width:640px) {
  body.page-services .service-showcase-top,
  body.page-home .home-service-card .kicker {
    padding-right: 0 !important;
    padding-top: 36px !important;
  }
  body.page-services .service-commitment,
  body.page-home .home-service-card h3 {
    top: 16px !important;
    right: 16px !important;
    font-size: .78rem !important;
    padding: 6px 10px !important;
  }
}
body.page-services .key-benefit-block {
  order: 1 !important;
  margin-top: 8px !important;
}
body.page-services .service-parallel-info {
  order: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: clamp(14px,2vw,20px) !important;
  align-items: stretch !important;
  margin-top: 4px !important;
}
body.page-services .service-parallel-info .service-info-block {
  height: 100% !important;
  margin-top: 0 !important;
}
body.page-services .service-parallel-info .support-chip-grid {
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
}
@media (max-width:760px) {
  body.page-services .service-parallel-info {
    grid-template-columns: 1fr !important;
  }
}
body.page-about .mission-vision {
  grid-template-columns: repeat(3,minmax(0,1fr));
}
body.page-about .mission-vision .content-panel {
  text-align: left;
}
body.page-about .core-values-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width:1000px) {
  body.page-about .mission-vision {
    grid-template-columns: 1fr;
  }
}
body.page-about .mission-vision .content-panel {
  padding: clamp(1.15rem,2.2vw,1.7rem) !important;
}
body.page-about .mission-vision .mission-text {
  margin: 0 !important;
  color: var(--muted) !important;
  font-family: "DM Sans",sans-serif !important;
  font-size: var(--content-size) !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
  letter-spacing: 0 !important;
}
body.page-about .value-chip-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(130px, 1fr)) !important;
  gap: 10px !important;
  margin-top: 24px !important;
  width: 100% !important;
}
body.page-about .value-chip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 48px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 14px rgba(13,20,36,.04) !important;
  color: var(--ink) !important;
  font-family: "Outfit",sans-serif !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
body.page-about .value-symbol {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 1.05rem !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}
@media (max-width:1100px) {
  body.page-about .value-chip-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr)) !important;
  }
}
@media (max-width:760px) {
  body.page-about .value-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  body.page-about .value-chip {
    font-size: .88rem !important;
    min-height: 44px !important;
    padding: 9px 10px !important;
  }
}
@media (max-width:420px) {
  body.page-about .value-chip-grid {
    grid-template-columns: 1fr !important;
  }
}
body.page-about .why-choose-impressive {
  padding-top: clamp(48px,6vw,76px) !important;
  padding-bottom: clamp(48px,6vw,78px) !important;
  background: linear-gradient(180deg, rgba(37,99,235,.045), rgba(255,255,255,.72), rgba(13,148,136,.04)) !important;
  border-block: 1px solid rgba(220,229,245,.8) !important;
}
body.page-about .why-choose-shell {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(220,229,245,.96) !important;
  border-radius: 30px !important;
  background: linear-gradient(145deg,#ffffff 0%,#f7faff 58%,#eef6ff 100%) !important;
  box-shadow: 0 16px 45px rgba(13,20,36,.08) !important;
  padding: clamp(1.35rem,3.8vw,3rem) !important;
}
body.page-about .why-choose-shell::before {
  content: "" !important;
  position: absolute !important;
  inset: -90px auto auto -90px !important;
  width: 230px !important;
  height: 230px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(37,99,235,.16), transparent 66%) !important;
  pointer-events: none !important;
}
body.page-about .why-choose-shell::after {
  content: "" !important;
  position: absolute !important;
  right: -70px !important;
  bottom: -80px !important;
  width: 260px !important;
  height: 260px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(13,148,136,.13), transparent 68%) !important;
  pointer-events: none !important;
}
body.page-about .why-heading {
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(1.4rem,3vw,2.2rem) !important;
}
body.page-about .why-heading .eyebrow {
  justify-content: center !important;
}
body.page-about .why-heading h2 {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-about .why-heading p {
  max-width: 820px !important;
  margin: 14px auto 0 !important;
  color: var(--ink-2) !important;
  font-size: var(--content-size) !important;
  line-height: 1.72 !important;
}
body.page-about .why-choose-grid {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: 14px !important;
}
body.page-about .why-card {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 14px !important;
  align-items: flex-start !important;
  min-height: 154px !important;
  padding: clamp(1rem,2vw,1.35rem) !important;
  border: 1px solid rgba(220,229,245,.96) !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 8px 20px rgba(13,20,36,.055) !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}
body.page-about .why-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(37,99,235,.36) !important;
  box-shadow: 0 16px 34px rgba(37,99,235,.12) !important;
}
body.page-about .why-card.primary {
  background: linear-gradient(145deg,#eff4ff,#ffffff) !important;
  border-color: rgba(37,99,235,.28) !important;
}
body.page-about .why-icon {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg,var(--blue-bg),#ffffff) !important;
  color: var(--blue) !important;
  font-size: 1.28rem !important;
  font-family: "Outfit",sans-serif !important;
  font-weight: 900 !important;
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.12) !important;
  flex: 0 0 auto !important;
}
body.page-about .why-card h3 {
  margin: 0 0 7px !important;
  font-size: var(--site-final-subheading-size) !important;
  line-height: 1.18 !important;
  letter-spacing: -.01em !important;
  color: var(--ink) !important;
}
body.page-about .why-card p {
  margin: 0 !important;
  color: var(--ink-2) !important;
  font-size: .96rem !important;
  line-height: 1.62 !important;
}
body.page-about .why-summary-strip {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: 10px !important;
  margin-top: 16px !important;
}
body.page-about .why-summary-strip span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  font-family: "Outfit",sans-serif !important;
  font-weight: 800 !important;
  font-size: .92rem !important;
  text-align: center !important;
}
@media (max-width:980px) {
  body.page-about .why-choose-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  body.page-about .why-summary-strip {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:640px) {
  body.page-about .why-choose-shell {
    border-radius: 22px !important;
    padding: 1rem !important;
  }
  body.page-about .why-choose-grid {
    grid-template-columns: 1fr !important;
  }
  body.page-about .why-card {
    min-height: auto !important;
  }
  body.page-about .why-summary-strip {
    grid-template-columns: 1fr !important;
  }
}
body.page-about main > section.page-hero + section.section {
  padding-top: clamp(42px,5vw,70px) !important;
}
body.page-about .about-hero-copy {
  max-width: 900px !important;
}
body.page-about .about-hero-copy p {
  max-width: 900px !important;
  font-size: var(--content-size) !important;
  line-height: 1.75 !important;
  color: var(--ink-2) !important;
  font-family: "DM Sans",sans-serif !important;
  font-weight: 500 !important;
  margin: 14px 0 0 !important;
  text-align: left !important;
}
:root {
  --theme-font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --theme-font-heading: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html,
body {
  font-family: var(--theme-font-body) !important;
}
body,
p,
li,
a,
span,
div,
label,
input,
select,
textarea,
button,
summary,
details,
small,
strong,
em {
  font-family: var(--theme-font-body) !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.mega-title,
.page-hero h1,
.section-heading h2,
.content-panel h2,
.content-panel h3,
.legal-content h2,
.legal-content h3,
.nav-link,
.button,
.eyebrow,
.kicker,
.brand-tagline,
.footer-tagline,
.site-footer h3,
.text-link,
.home-service-card h3,
.home-service-card .kicker,
.value-chip,
.industry-chip,
.why-icon,
.why-summary-strip span,
.testimonial-initial,
.linkedin-letters,
.floating-back-top {
  font-family: var(--theme-font-heading) !important;
}
.about-hero-copy p,
.legal-content p,
.page-hero p,
.section-heading p,
.feature-card p {
  font-family: var(--theme-font-body) !important;
}
body.page-home .industry-chip-grid {
  display: grid !important;
  grid-template-columns: repeat(6,minmax(120px,1fr)) !important;
  gap: 10px !important;
  max-width: 1040px !important;
  margin: 22px auto 0 !important;
}
body.page-home .industry-chip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 48px !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(37,99,235,.16) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  font-family: var(--theme-font-heading) !important;
  font-weight: 800 !important;
  font-size: .92rem !important;
  box-shadow: 0 8px 20px rgba(15,23,42,.045) !important;
  text-align: center !important;
}
body.page-home .industry-symbol {
  font-size: 1.05rem !important;
  line-height: 1 !important;
}
body.page-home .source-detail-section .section-heading p,
body.page-home .home-services-showcase .section-heading p,
body.page-home .faq-section .section-heading p {
  font-size: var(--content-size) !important;
}
@media (max-width:980px) {
  body.page-home .industry-chip-grid {
    grid-template-columns: repeat(4,minmax(120px,1fr)) !important;
  }
}
@media (max-width:640px) {
  body.page-home .industry-chip-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 8px !important;
  }
  body.page-home .industry-chip {
    font-size: .88rem !important;
    min-height: 44px !important;
    padding: 9px 10px !important;
  }
}
body.page-home .mission-board {
  display: grid !important;
  gap: 14px !important;
  align-content: center !important;
}
body.page-home .mission-board p {
  margin: 0 !important;
  color: var(--ink-2) !important;
  font-size: var(--content-size) !important;
  line-height: 1.72 !important;
  font-weight: 500 !important;
}
body.page-home .mission-board .mission-intro {
  color: var(--ink) !important;
  font-weight: 700 !important;
}
body.page-home .home-services-showcase {
  padding-top: clamp(46px,6vw,78px) !important;
}
body.page-home .home-service-grid {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  max-width: 1180px !important;
  margin: clamp(24px,4vw,42px) auto 0 !important;
  gap: clamp(18px,2.2vw,28px) !important;
  align-items: stretch !important;
}
body.page-home .home-service-item,
body.page-home .home-service-card {
  height: 100% !important;
}
body.page-home .home-service-card {
  min-height: 245px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
body.page-home .home-service-card p {
  margin-top: .55rem !important;
}
body.page-home .movement-strip {
  width: min(100%,980px) !important;
  margin: clamp(22px,3vw,32px) auto 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(37,99,235,.14) !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,rgba(37,99,235,.06),rgba(255,122,0,.08),rgba(37,99,235,.06)) !important;
  box-shadow: 0 10px 26px rgba(15,23,42,.045) !important;
}
body.page-home .movement-track {
  display: flex !important;
  width: max-content !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  animation: gatisetuMoveStrip 18s linear infinite !important;
}
body.page-home .movement-track span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid rgba(37,99,235,.12) !important;
  font-family: var(--theme-font-heading) !important;
  font-weight: 800 !important;
  font-size: .94rem !important;
  white-space: nowrap !important;
}
@keyframes gatisetuMoveStrip {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
body.page-home .clients-section {
  padding-top: clamp(42px,5vw,70px) !important;
  padding-bottom: clamp(38px,5vw,64px) !important;
}
body.page-home .clients-section .section-heading {
  text-align: center !important;
  margin-inline: auto !important;
}
body.page-home .client-logo-grid {
  display: grid !important;
  grid-template-columns: repeat(2,minmax(180px,280px)) !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(18px,3vw,32px) !important;
  margin-top: clamp(22px,3vw,34px) !important;
}
body.page-home .client-logo-card {
  display: grid !important;
  place-items: center !important;
  min-height: 118px !important;
  padding: 18px !important;
  border: 1px solid rgba(37,99,235,.13) !important;
  border-radius: 28px !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.055) !important;
}
body.page-home .client-logo-card img {
  width: min(100%,210px) !important;
  height: auto !important;
  display: block !important;
}
body.page-home .performance-section {
  padding-top: 0 !important;
  padding-bottom: clamp(38px,5vw,64px) !important;
}
body.page-home .performance-section .section-heading {
  text-align: center !important;
  margin-inline: auto !important;
  margin-bottom: clamp(22px,3vw,34px) !important;
}
body.page-home .performance-grid {
  display: grid !important;
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: clamp(14px,2vw,22px) !important;
}
body.page-home .performance-card {
  display: grid !important;
  align-content: center !important;
  min-height: 118px !important;
  padding: clamp(18px,2.5vw,26px) !important;
  text-align: center !important;
  border: 1px solid rgba(37,99,235,.13) !important;
  border-radius: 24px !important;
  background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(247,251,255,.95)) !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.055) !important;
}
body.page-home .performance-card strong {
  display: block !important;
  color: #1e3a8a !important;
  font-size: clamp(2rem,4vw,3.15rem) !important;
  line-height: .95 !important;
  font-weight: 900 !important;
}
body.page-home .performance-card span {
  display: block !important;
  margin-top: 10px !important;
  color: #334155 !important;
  font-size: .96rem !important;
  font-weight: 800 !important;
}
@media (max-width:980px) {
  body.page-home .home-service-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
  }
  body.page-home .home-service-card {
    min-height: auto !important;
  }
  body.page-home .performance-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:640px) {
  body.page-home .client-logo-grid {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    margin-inline: auto !important;
  }
  body.page-home .performance-grid {
    grid-template-columns: 1fr !important;
  }
  body.page-home .movement-track span {
    min-width: 170px !important;
    font-size: .88rem !important;
  }
}
body.page-home .home-service-card h3,
body.page-services .service-commitment {
  font-size: .72rem !important;
  line-height: 1 !important;
  padding: 5px 9px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  max-width: none !important;
  letter-spacing: .01em !important;
}
body.page-home .home-service-card .kicker {
  padding-right: clamp(105px,15vw,175px) !important;
}
body.page-services .service-showcase-top {
  padding-right: clamp(110px,16vw,200px) !important;
}
body.page-services .service-commitment {
  top: 18px !important;
  right: 18px !important;
}
body.page-home .home-service-card h3 {
  top: 18px !important;
  right: 18px !important;
}
body.page-home .movement-strip {
  width: min(100%,980px) !important;
  margin: clamp(20px,3vw,30px) auto 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(37,99,235,.14) !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg,rgba(37,99,235,.06),rgba(255,122,0,.08),rgba(37,99,235,.06)) !important;
  box-shadow: 0 10px 24px rgba(15,23,42,.04) !important;
}
body.page-home .movement-track {
  display: flex !important;
  width: max-content !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  animation: gatisetuMoveStrip 24s linear infinite !important;
  will-change: transform !important;
}
body.page-home .movement-track span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid rgba(37,99,235,.12) !important;
  font-family: var(--theme-font-heading) !important;
  font-weight: 800 !important;
  font-size: .94rem !important;
  white-space: nowrap !important;
}
body.page-home .home-vehicle-categories {
  padding-top: clamp(42px,5vw,68px) !important;
  padding-bottom: clamp(34px,4vw,56px) !important;
}
body.page-home .home-vehicle-categories .section-heading {
  text-align: center !important;
  margin-inline: auto !important;
}
body.page-home .home-vehicle-grid {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: clamp(14px,2vw,22px) !important;
  max-width: 1040px !important;
  margin: clamp(22px,3vw,32px) auto 0 !important;
}
body.page-home .home-vehicle-card {
  background: #fff !important;
  border: 1px solid rgba(37,99,235,.13) !important;
  border-radius: 24px !important;
  padding: clamp(16px,2.4vw,22px) !important;
  text-align: center !important;
  box-shadow: 0 12px 28px rgba(15,23,42,.045) !important;
}
body.page-home .home-vehicle-card .vehicle-symbol {
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 auto 10px !important;
  border-radius: 14px !important;
  background: rgba(37,99,235,.08) !important;
  font-size: 1.35rem !important;
}
body.page-home .home-vehicle-card h3 {
  margin: 0 0 6px !important;
  font-size: 1.02rem !important;
  font-weight: 900 !important;
  color: var(--ink) !important;
}
body.page-home .home-vehicle-card p {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: .94rem !important;
  line-height: 1.6 !important;
}
body.page-services #service-capabilities .capability-grid {
  display: grid !important;
  grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  gap: clamp(16px,2vw,24px) !important;
}
@media (max-width:980px) {
  body.page-home .home-vehicle-grid,
  body.page-services #service-capabilities .capability-grid {
    grid-template-columns: 1fr !important;
    max-width: 720px !important;
    margin-inline: auto !important;
  }
}
@media (max-width:640px) {
  body.page-home .home-service-card .kicker,
  body.page-services .service-showcase-top {
    padding-right: 0 !important;
    padding-top: 34px !important;
  }
  body.page-home .home-service-card h3,
  body.page-services .service-commitment {
    font-size: .68rem !important;
    padding: 5px 8px !important;
    top: 14px !important;
    right: 14px !important;
  }
  body.page-home .movement-track span {
    min-width: 170px !important;
    font-size: .86rem !important;
  }
}
body.page-home .home-services-showcase .section-heading h2.single-line-heading,
body.page-home .home-vehicle-categories .section-heading h2.single-line-heading,
body.page-home .map-section .section-heading h2.single-line-heading,
body.page-home .clients-section .section-heading h2.single-line-heading {
  white-space: nowrap !important;
  max-width: 100% !important;
}
body.page-home .home-service-card {
  justify-content: flex-start !important;
  gap: 10px !important;
  min-height: 230px !important;
}
body.page-home .home-service-card .kicker.home-service-title {
  display: block !important;
  padding-right: 0 !important;
  color: var(--ink) !important;
  font-family: var(--theme-font-heading) !important;
  font-size: clamp(.98rem,1.2vw,1.12rem) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  letter-spacing: -.01em !important;
  white-space: nowrap !important;
  margin: 0 !important;
}
body.page-home .home-commitment-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 0 4px !important;
  padding: 6px 11px !important;
  border-radius: 999px !important;
  background: rgba(255,122,0,.10) !important;
  border: 1px solid rgba(255,122,0,.20) !important;
  color: #a34a00 !important;
  font-family: var(--theme-font-heading) !important;
  font-weight: 900 !important;
  font-size: .74rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
body.page-home .home-service-card p {
  margin-top: 4px !important;
}
body.page-home .movement-strip {
  overflow: hidden !important;
}
body.page-home .movement-track {
  width: 100% !important;
  min-width: 100% !important;
  justify-content: flex-start !important;
  animation: gatisetuMoveStripFull 16s linear infinite !important;
}
@keyframes gatisetuMoveStripFull {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
body.page-home .industries-section .section-heading,
body.page-home .clients-section .section-heading,
body.page-home .faq-section .section-heading {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .industries-section .section-heading h2,
body.page-home .industries-section .section-heading p {
  text-align: center !important;
}
body.page-home .faq-center-layout {
  display: block !important;
  max-width: 960px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .faq-center-layout .section-heading {
  max-width: 760px !important;
  margin: 0 auto clamp(22px,3vw,34px) !important;
}
body.page-home .faq-center-layout .faq-list {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width:980px) {
  body.page-home .home-services-showcase .section-heading h2.single-line-heading,
  body.page-home .home-vehicle-categories .section-heading h2.single-line-heading,
  body.page-home .map-section .section-heading h2.single-line-heading,
  body.page-home .clients-section .section-heading h2.single-line-heading {
    white-space: normal !important;
  }
  body.page-home .home-service-card .kicker.home-service-title {
    white-space: normal !important;
  }
}
@media (max-width:640px) {
  body.page-home .home-service-card {
    min-height: auto !important;
  }
  body.page-home .home-commitment-badge {
    font-size: .7rem !important;
    padding: 6px 10px !important;
  }
  body.page-home .movement-track {
    animation-duration: 14s !important;
  }
}
body.page-home .home-services-showcase .section-heading,
body.page-home .home-vehicle-categories .section-heading,
body.page-home .map-section .section-heading,
body.page-home .clients-section .section-heading {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .home-services-showcase .section-heading h2,
body.page-home .home-vehicle-categories .section-heading h2,
body.page-home .map-section .section-heading h2,
body.page-home .clients-section .section-heading h2,
body.page-home .home-services-showcase .section-heading p,
body.page-home .home-vehicle-categories .section-heading p,
body.page-home .map-section .section-heading p,
body.page-home .clients-section .section-heading p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .movement-strip:hover .movement-track,
body.page-home .movement-strip:focus-within .movement-track {
  animation-play-state: paused !important;
}
body.page-home .testimonials-section {
  padding-top: clamp(44px,5vw,74px) !important;
  padding-bottom: clamp(54px,6vw,88px) !important;
  position: relative !important;
}
body.page-home .testimonials-section .container {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(37,99,235,.12) !important;
  border-radius: 34px !important;
  background: radial-gradient(circle at 12% 0%, rgba(255,122,0,.12), transparent 32%), radial-gradient(circle at 88% 12%, rgba(37,99,235,.12), transparent 34%), linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,251,255,.94)) !important;
  box-shadow: 0 22px 58px rgba(15,23,42,.075) !important;
  padding: clamp(28px,4vw,48px) !important;
}
body.page-home .testimonials-section .section-heading {
  text-align: center !important;
  margin: 0 auto clamp(24px,3vw,36px) !important;
  max-width: 760px !important;
}
body.page-home .testimonial-grid {
  display: grid !important;
  grid-template-columns: 1.15fr .85fr !important;
  gap: clamp(16px,2vw,24px) !important;
  align-items: stretch !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}
body.page-home .testimonial-card {
  position: relative !important;
  overflow: hidden !important;
  min-height: 100% !important;
  padding: clamp(20px,2.4vw,28px) !important;
  border-radius: 26px !important;
  border: 1px solid rgba(37,99,235,.12) !important;
  background: rgba(255,255,255,.86) !important;
  box-shadow: 0 14px 34px rgba(15,23,42,.055) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
body.page-home .testimonial-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 44px rgba(15,23,42,.09) !important;
  border-color: rgba(255,122,0,.24) !important;
}
body.page-home .testimonial-card:first-child {
  grid-row: span 3 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(28px,4vw,44px) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(240,247,255,.96)) !important;
  border-color: rgba(37,99,235,.18) !important;
}
body.page-home .testimonial-card::after {
  content: "”";
  position: absolute !important;
  right: 20px !important;
  top: 8px !important;
  font-family: Georgia, serif !important;
  font-size: 5.4rem !important;
  line-height: 1 !important;
  color: rgba(37,99,235,.08) !important;
  pointer-events: none !important;
}
body.page-home .testimonial-card p {
  position: relative !important;
  z-index: 1 !important;
  color: var(--ink-2) !important;
  font-size: clamp(.98rem,1.2vw,1.06rem) !important;
  line-height: 1.72 !important;
  margin: 0 0 18px !important;
}
body.page-home .testimonial-card:first-child p {
  font-size: clamp(1.08rem,1.5vw,1.24rem) !important;
  line-height: 1.72 !important;
}
body.page-home .testimonial-card strong {
  position: relative !important;
  z-index: 1 !important;
  color: var(--ink) !important;
  font-size: 1.02rem !important;
  font-weight: 900 !important;
}
body.page-home .testimonial-card span:not(.testimonial-initial) {
  position: relative !important;
  z-index: 1 !important;
  color: var(--muted) !important;
  font-size: .92rem !important;
  font-weight: 700 !important;
}
body.page-home .testimonial-initial {
  position: relative !important;
  z-index: 1 !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 16px !important;
  margin-bottom: 18px !important;
  background: linear-gradient(145deg, rgba(37,99,235,.12), rgba(255,122,0,.14)) !important;
  border: 1px solid rgba(37,99,235,.14) !important;
  color: var(--blue) !important;
}
body.page-home .testimonial-card:first-child .testimonial-initial {
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  color: #a34a00 !important;
  background: linear-gradient(145deg, rgba(255,122,0,.16), rgba(37,99,235,.10)) !important;
}
@media (max-width:900px) {
  body.page-home .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  body.page-home .testimonial-card:first-child {
    grid-row: auto !important;
  }
}
:root {
  --premium-bg: #f6f9ff;
  --premium-card: #ffffff;
  --premium-soft: #f0f6ff;
  --premium-line: rgba(37,99,235,.14);
  --premium-line-strong: rgba(37,99,235,.22);
  --premium-shadow: 0 16px 46px rgba(13,20,36,.075);
  --premium-shadow-hover: 0 24px 62px rgba(13,20,36,.12);
  --premium-radius: 24px;
}
html,
body {
  background: var(--premium-bg) !important;
}
body::before {
  background: radial-gradient(circle at 9% 6%, rgba(37,99,235,.095), transparent 28rem), radial-gradient(circle at 92% 9%, rgba(13,148,136,.08), transparent 26rem), radial-gradient(circle at 74% 82%, rgba(255,122,0,.07), transparent 24rem), linear-gradient(180deg,#fbfdff 0%,#f6f9ff 44%,#f2f6fc 100%) !important;
}
.page-noise {
  opacity: .22 !important;
  background-size: 52px 52px !important;
}
.site-header {
  background: rgba(255,255,255,.91) !important;
  border-bottom: 1px solid rgba(37,99,235,.13) !important;
  box-shadow: 0 10px 34px rgba(13,20,36,.06) !important;
}
.brand,
.site-nav {
  border-color: rgba(37,99,235,.16) !important;
  box-shadow: 0 8px 26px rgba(13,20,36,.055) !important;
}
.nav-link {
  transition: background .22s ease,color .22s ease,transform .22s ease,box-shadow .22s ease !important;
}
.nav-link:hover,
.nav-link.active {
  transform: translateY(-1px) !important;
}
.hero,
.page-hero {
  position: relative !important;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 20px clamp(16px,3vw,42px) auto;
  height: calc(100% - 40px);
  border-radius: 38px;
  background: linear-gradient(135deg,rgba(255,255,255,.65),rgba(238,246,255,.42));
  border: 1px solid rgba(37,99,235,.09);
  pointer-events: none;
  z-index: -1;
}
.mega-title {
  letter-spacing: -.095em !important;
  text-shadow: 0 14px 38px rgba(37,99,235,.06) !important;
}
.eyebrow,
.kicker {
  letter-spacing: .13em !important;
}
.section-heading {
  position: relative !important;
}
.section-heading.narrow {
  text-align: center !important;
}
.section-heading h2 {
  text-wrap: balance;
  letter-spacing: -.035em !important;
}
.section-heading p,
.page-hero p {
  max-width: 780px;
}
.section-heading.narrow p {
  margin-left: auto !important;
  margin-right: auto !important;
}
.button,
.text-link {
  transition: transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease,color .22s ease !important;
}
.button:hover,
.text-link:hover {
  transform: translateY(-2px) !important;
}
.mission-board,
.callout-card,
.data-card,
.content-panel,
.feature-card,
.form-layout,
.legal-content,
.legal-note,
.process-step,
.doc-card,
.home-service-card,
.home-vehicle-card,
.client-logo-card,
.why-card,
.faq-list details {
  border-color: var(--premium-line) !important;
  box-shadow: var(--premium-shadow) !important;
  background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(247,251,255,.95)) !important;
}
.feature-card:hover,
.home-service-card:hover,
.home-vehicle-card:hover,
.client-logo-card:hover,
.why-card:hover,
.faq-list details:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--premium-shadow-hover) !important;
  border-color: var(--premium-line-strong) !important;
}
.home-service-card,
.home-vehicle-card,
.feature-card,
.why-card,
.client-logo-card,
.faq-list details {
  transition: transform .24s ease,box-shadow .24s ease,border-color .24s ease !important;
}
.home-service-card::before,
.home-vehicle-card::before,
.feature-card::before,
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg,var(--blue),var(--teal),var(--amber));
  opacity: .82;
}
.home-service-card,
.home-vehicle-card,
.feature-card,
.why-card {
  position: relative !important;
  overflow: hidden !important;
}
.home-commitment-badge,
.service-commitment,
.industry-chip,
.value-chip {
  border-color: rgba(37,99,235,.15) !important;
  box-shadow: 0 8px 22px rgba(37,99,235,.06) !important;
  background: linear-gradient(135deg,#ffffff,#eef5ff) !important;
}
.movement-strip {
  border-color: rgba(37,99,235,.14) !important;
  background: linear-gradient(90deg,rgba(255,255,255,.9),rgba(239,247,255,.9),rgba(255,255,255,.9)) !important;
  box-shadow: 0 14px 38px rgba(13,20,36,.06) !important;
}
.movement-track span {
  box-shadow: 0 8px 22px rgba(13,20,36,.055) !important;
}
.faq-list details {
  border-radius: 18px !important;
  overflow: hidden !important;
}
.faq-list summary {
  font-weight: 800 !important;
  color: var(--ink) !important;
}
.site-footer {
  background: linear-gradient(180deg,#ffffff,#eef5ff) !important;
  border-top: 1px solid rgba(37,99,235,.13) !important;
  box-shadow: 0 -14px 40px rgba(13,20,36,.045) !important;
}
.footer-topline,
.footer-bottom {
  border-color: rgba(37,99,235,.12) !important;
}
body.page-home .testimonials-section {
  padding-top: clamp(42px,5vw,68px) !important;
  padding-bottom: clamp(48px,6vw,78px) !important;
}
body.page-home .testimonials-section .container {
  border-radius: 30px !important;
  padding: clamp(26px,4vw,44px) !important;
  background: radial-gradient(circle at 8% 0%, rgba(37,99,235,.10), transparent 30%), radial-gradient(circle at 94% 12%, rgba(255,122,0,.09), transparent 30%), linear-gradient(145deg, rgba(255,255,255,.99), rgba(241,247,255,.96)) !important;
  border: 1px solid rgba(37,99,235,.14) !important;
  box-shadow: 0 18px 54px rgba(13,20,36,.075) !important;
}
body.page-home .testimonial-grid {
  grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  gap: clamp(14px,1.7vw,20px) !important;
  align-items: stretch !important;
  max-width: 1160px !important;
}
body.page-home .testimonial-card,
body.page-home .testimonial-card:first-child {
  grid-row: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 255px !important;
  padding: clamp(18px,2vw,24px) !important;
  border-radius: 22px !important;
  background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(248,251,255,.96)) !important;
  border: 1px solid rgba(37,99,235,.13) !important;
  box-shadow: 0 12px 30px rgba(13,20,36,.06) !important;
}
body.page-home .testimonial-card:first-child p,
body.page-home .testimonial-card p {
  font-size: clamp(.94rem,1vw,1rem) !important;
  line-height: 1.65 !important;
  margin-bottom: 16px !important;
}
body.page-home .testimonial-initial,
body.page-home .testimonial-card:first-child .testimonial-initial {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  margin-bottom: 14px !important;
  color: var(--blue) !important;
  background: linear-gradient(145deg,rgba(37,99,235,.11),rgba(13,148,136,.09)) !important;
}
body.page-home .testimonial-card::after {
  font-size: 4.2rem !important;
  right: 15px !important;
  top: 7px !important;
  color: rgba(37,99,235,.065) !important;
}
@media (max-width:1100px) {
  body.page-home .testimonial-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
}
@media (max-width:650px) {
  body.page-home .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
  body.page-home .testimonial-card,
  body.page-home .testimonial-card:first-child {
    min-height: auto !important;
  }
}
@media (max-width:760px) {
  .hero::before,
  .page-hero::before {
    inset: 10px 10px auto;
    height: calc(100% - 20px);
    border-radius: 26px;
  }
  .section {
    padding: clamp(42px,9vw,68px) 0 !important;
  }
  .section.compact {
    padding: clamp(38px,8vw,58px) 0 !important;
  }
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .why-card {
    border-radius: 18px !important;
  }
}
body .section-heading {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body .section-heading h2,
body .section-heading p,
body .section-heading .eyebrow {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .home-vehicle-card .vehicle-symbol.vehicle-icon {
  width: 58px !important;
  height: 58px !important;
  display: block !important;
  object-fit: contain !important;
  margin: 0 auto 12px !important;
  padding: 7px !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg,#eef6ff,#ffffff) !important;
  border: 1px solid rgba(37,99,235,.14) !important;
  box-shadow: 0 10px 24px rgba(37,99,235,.08) !important;
}
body.page-home .testimonial-photo,
body.page-home .testimonial-card:first-child .testimonial-photo {
  display: block !important;
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  border-radius: 18px !important;
  object-fit: cover !important;
  padding: 0 !important;
  margin: 0 0 14px !important;
  border: 3px solid #fff !important;
  box-shadow: 0 10px 24px rgba(13,20,36,.11) !important;
  background: #fff !important;
}
body.page-home .testimonial-card {
  justify-content: flex-start !important;
  gap: 10px !important;
}
body.page-home .testimonial-card strong {
  margin-top: auto !important;
}
.site-footer {
  background: linear-gradient(180deg,#ffffff 0%,#eef5ff 100%) !important;
  color: #0f172a !important;
  border-top: 1px solid rgba(37,99,235,.16) !important;
}
.site-footer p,
.site-footer span,
.footer-tagline,
.footer-bottom,
.footer-bottom span,
.footer-bottom #year,
.copyright-line {
  color: #334155 !important;
}
.site-footer a,
.footer-company-row a,
.footer-bottom-links a {
  color: #1e3a8a !important;
  font-weight: 850 !important;
}
.site-footer a:hover,
.footer-company-row a:hover,
.footer-bottom-links a:hover {
  color: #0d9488 !important;
}
.footer-bottom,
.footer-topline {
  border-color: rgba(37,99,235,.14) !important;
}
.linkedin-icon {
  background: #2563eb !important;
  color: #fff !important;
  border-color: #2563eb !important;
}
.linkedin-icon .linkedin-letters {
  color: #fff !important;
}
body.page-home .movement-strip {
  overflow: hidden !important;
}
body.page-home .movement-track {
  width: 100% !important;
  min-width: 100% !important;
  justify-content: flex-start !important;
  animation: gatisetuMoveStripFull 16s linear infinite !important;
}
body.page-home .movement-strip:hover .movement-track,
body.page-home .movement-strip:focus-within .movement-track {
  animation-play-state: paused !important;
}
body.page-home .movement-track span {
  min-width: 210px !important;
}
body.page-services #service-capabilities .section-heading,
body.page-services .industries-section .section-heading,
body.page-services .service-enquiry-section h2 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width:640px) {
  body.page-home .movement-track span {
    min-width: 190px !important;
  }
  body.page-home .testimonial-photo,
  body.page-home .testimonial-card:first-child .testimonial-photo {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }
}
body.page-home .home-vehicle-card:first-child .vehicle-symbol.vehicle-icon {
  width: 50px !important;
  height: 50px !important;
  padding: 6px !important;
}
body.page-home .hero-copy,
body.page-home .hero-copy .eyebrow,
body.page-home .hero-copy .mega-title,
body.page-home .mission-board,
body.page-home .mission-board p {
  text-align: center !important;
}
body.page-home .hero-copy {
  justify-self: center !important;
}
body.page-home .hero-copy .eyebrow,
body.page-home .mission-board {
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .hero-grid {
  align-items: center !important;
}
@media (max-width:900px) {
  body.page-home .hero-grid {
    grid-template-columns: 1fr !important;
  }
}
body.page-home .hero-copy,
body.page-home .hero-copy .eyebrow,
body.page-home .hero-copy .mega-title,
body.page-home .section-heading,
body.page-home .section-heading .eyebrow,
body.page-home .section-heading h2,
body.page-home .section-heading p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.page-home .section-heading {
  max-width: 860px !important;
}
body.page-home .section-heading.narrow {
  max-width: 820px !important;
}
body.page-home .hero-copy {
  justify-self: center !important;
}
body.page-home .hero-grid {
  align-items: center !important;
}
.brand,
.site-header .brand,
a.brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.brand:hover,
.site-header .brand:hover,
a.brand:hover {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.brand img,
.site-header .brand img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.footer-logo,
.site-footer .footer-logo,
.footer-brand-block .footer-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.footer-brand-block {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
@media (max-width:760px) {
  .brand,
  .site-header .brand,
  a.brand {
    padding: 0 !important;
  }
  .brand img,
  .site-header .brand img {
    width: 132px !important;
    max-height: 32px !important;
  }
}

/* Global typography standardization */
:root {
  --global-heading-font: var(--theme-font-heading, "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --global-content-font: var(--theme-font-body, "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  --global-heading-size: clamp(2.05rem,4.15vw,4rem);
  --global-subheading-size: clamp(1.55rem,2.7vw,2.35rem);
  --global-small-subheading-size: clamp(1.02rem,1.45vw,1.28rem);
  --global-content-size: 1rem;
  --global-small-content-size: .94rem;
  --global-label-size: .84rem;
}

body,
body p,
body li,
body a,
body span,
body label,
body input,
body select,
body textarea,
body button,
body summary,
body details,
body small,
body em,
body strong,
body .legal-list li,
body .footer-bottom,
body .copyright-line,
body .form-note,
body .upload-box p,
body .upload-box span {
  font-family: var(--global-content-font) !important;
}

body h1,
body .mega-title,
body .page-hero h1,
body .contact-window-intro h1,
body .legal-document-header h1,
body.page-services .service-hero h1.services-hero-title,
body.page-vendor .vendor-hero h1 {
  font-family: var(--global-heading-font) !important;
  font-size: var(--global-heading-size) !important;
  line-height: 1.06 !important;
  letter-spacing: -.04em !important;
}

body h2,
body .section-heading h2,
body .career-full-section .section-heading h2,
body .contact-details-after-form h2,
body .legal-content h2,
body .content-panel h2,
body .callout-card h2,
body.page-services .source-detail-section .section-heading h2,
body.page-services .industries-section .section-heading h2,
body.page-vendor .vendor-single-panel h2,
body.page-vendor .vehicle-category-section .section-heading h2,
body.page-vendor .source-detail-section .section-heading h2,
body.page-vendor .map-section .section-heading h2 {
  font-family: var(--global-heading-font) !important;
  font-size: var(--global-subheading-size) !important;
  line-height: 1.1 !important;
  letter-spacing: -.03em !important;
}

body h3,
body h4,
body h5,
body h6,
body .feature-card h3,
body .process-step h3,
body .contact-info-item h3,
body .site-footer h3,
body .legal-content h3,
body .home-service-card h3,
body .service-showcase-card h2,
body .logistics-solution-card h2 {
  font-family: var(--global-heading-font) !important;
  font-size: var(--global-small-subheading-size) !important;
  line-height: 1.2 !important;
  letter-spacing: -.01em !important;
}

body,
body p,
body li,
body .page-hero p,
body .section-heading p,
body .contact-window-intro p,
body .content-panel p,
body .feature-card p,
body .process-step p,
body .callout-card p,
body .legal-content p,
body .testimonial-card p,
body .vehicle-category-card p,
body .contact-info-item p,
body .site-footer p,
body .legal-list li,
body input,
body select,
body textarea,
body summary,
body details,
body label {
  font-size: var(--global-content-size) !important;
  line-height: 1.65 !important;
}

body .nav-link,
body .button,
body button,
body .eyebrow,
body .kicker,
body .text-link,
body .vehicle-category-card span,
body .testimonial-card span,
body .site-footer a,
body .site-footer span,
body .footer-company-row a,
body .floating-back-top,
body .support-chip,
body .industry-chip,
body .value-chip {
  font-size: var(--global-small-content-size) !important;
  line-height: 1.45 !important;
}

body .eyebrow,
body .kicker,
body .nav-link,
body .button,
body button,
body .home-service-card h3,
body .support-chip,
body .industry-chip,
body .value-chip,
body .brand-tagline,
body .footer-tagline,
body .text-link,
body .floating-back-top {
  font-family: var(--global-heading-font) !important;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.hero-actions .button {
  align-items: center !important;
  box-sizing: border-box;
  display: inline-flex !important;
  height: 52px !important;
  justify-content: center !important;
  line-height: 1.15 !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 14px 22px !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}

.hero-actions button.button {
  appearance: none;
  -webkit-appearance: none;
}

.hero-actions a.button {
  text-decoration: none;
}

.button.secondary {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.72);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(13,20,36,.16);
}

.button.secondary:hover {
  background: #fff;
  box-shadow: 0 18px 44px rgba(13,20,36,.22);
}

.location-seo-section {
  background: #f6f9ff;
}

.single-line-heading {
  white-space: nowrap !important;
}

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(13,20,36,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.location-card::after {
  content: "View";
  color: var(--blue);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 18px 44px rgba(37,99,235,.14);
}

.local-landing-hero .page-hero-grid {
  grid-template-columns: 1fr;
}

.local-landing-hero h1 {
  max-width: 980px;
}

.local-service-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

.local-service-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(13,20,36,.08);
}

.local-service-card h3 {
  margin: 0 0 10px;
}

.local-service-card p {
  margin: 0;
  color: var(--ink-2);
}

.route-origin-list {
  display: grid;
  gap: 28px;
}

.route-directory-section .route-origin-list.reveal {
  opacity: 1 !important;
  transform: none !important;
}

.route-origin-group {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(13,20,36,.08);
}

.route-origin-group h3 {
  margin: 0 0 18px;
  color: var(--ink);
}

.route-origin-group .location-card-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

@media (max-width: 860px) {
  .single-line-heading {
    white-space: normal !important;
  }

  .location-card-grid,
  .local-service-grid {
    grid-template-columns: 1fr;
  }

  .route-origin-group .location-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-width:760px) {
  :root {
    --global-heading-size: clamp(1.72rem,7.6vw,2.8rem);
    --global-subheading-size: clamp(1.38rem,6.2vw,2.05rem);
    --global-small-subheading-size: clamp(1rem,4.6vw,1.18rem);
    --global-content-size: .98rem;
    --global-small-content-size: .92rem;
  }
}

@media (max-width:420px) {
  :root {
    --global-heading-size: 1.58rem;
    --global-subheading-size: 1.52rem;
  }
}

/* Final lightweight light-theme override */
:root {
  --ink: #0d1424;
  --ink-2: #3d4a63;
  --surface: #ffffff;
  --surface-2: #f7faff;
  --border: #e2eaf6;
  --line: var(--border);
  --shadow: 0 10px 28px rgba(13,20,36,.06);
}

html,
body {
  background: #f7faff !important;
  color: var(--ink) !important;
}

body::before {
  background: linear-gradient(180deg,#ffffff 0%,#f7faff 54%,#f1f6fd 100%) !important;
}

.page-noise {
  opacity: .16 !important;
}

.site-header,
.site-nav,
.brand,
.mission-board,
.callout-card,
.data-card,
.content-panel,
.feature-card,
.process-step,
.testimonial-card,
.vehicle-category-card,
.local-service-card,
.route-origin-group,
.location-card,
.legal-content,
.legal-note {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  box-shadow: var(--shadow) !important;
}

.page-hero::before,
.hero::before {
  background: linear-gradient(135deg,rgba(255,255,255,.72),rgba(239,246,255,.48)) !important;
  border-color: rgba(37,99,235,.10) !important;
}

.site-footer {
  background: #ffffff !important;
  border-top: 1px solid var(--border) !important;
  color: var(--ink) !important;
}

.site-footer p,
.site-footer a,
.site-footer span,
p,
li {
  color: var(--ink-2) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.mega-title {
  color: var(--ink) !important;
}

/* Final global heading alignment */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .mega-title,
body .section-heading,
body .section-heading h2,
body .section-heading p,
body .section-heading .eyebrow,
body .page-hero h1,
body .page-hero p,
body .page-hero .eyebrow,
body.page-services .service-hero h1.services-hero-title {
  text-align: center !important;
}

body .section-heading,
body .page-hero .reveal {
  margin-left: auto;
  margin-right: auto;
}

body .page-hero .eyebrow,
body .section-heading .eyebrow {
  justify-content: center !important;
}

/* Legal pages should keep document-style left-aligned headings */
body.page-legal h1,
body.page-legal h2,
body.page-legal h3,
body.page-legal h4,
body.page-legal h5,
body.page-legal h6,
body.page-legal .legal-document-header,
body.page-legal .legal-document-header h1,
body.page-legal .legal-content h2,
body.page-legal .legal-content h3 {
  text-align: left !important;
}

/* Final footer column layout */
body .footer-links-block {
  display: grid !important;
  grid-template-columns: max-content max-content !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 44px !important;
  margin-left: auto !important;
  min-width: 360px !important;
  text-align: left !important;
}

body .footer-company-row,
body .footer-resource-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  white-space: normal !important;
  text-align: left !important;
}

body .footer-resource-row a,
body .footer-company-row a {
  display: inline-flex !important;
  justify-content: flex-start !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

body.page-press-kit .press-centered-cards .content-panel {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  text-align: left;
}

body.page-press-kit .page-hero .reveal {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

body.page-press-kit .page-hero h1,
body.page-press-kit .page-hero p,
body.page-press-kit .page-hero .eyebrow,
body.page-press-kit .callout-card h2,
body.page-press-kit .callout-card p {
  justify-content: flex-start !important;
  text-align: left !important;
}

body.page-press-kit .mission-vision {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

body.page-press-kit .press-centered-cards .check-list {
  text-align: left;
}

body.page-press-kit .press-tight-section {
  padding-top: clamp(32px,4vw,52px);
  padding-bottom: clamp(32px,4vw,52px);
}

@media (max-width: 980px) {
  body .footer-links-block {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 620px) {
  body .footer-links-block {
    display: grid !important;
    grid-template-columns: max-content max-content !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 30px !important;
  }
}

/* Source-style theme controls */
.gs-header-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.gs-control-button {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-family: "Outfit", sans-serif;
  font-size: .75rem;
  font-weight: 900;
  gap: 6px;
  height: 40px;
  justify-content: center;
  letter-spacing: .04em;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
  width: 40px;
}


.gs-control-button:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.gs-control-icon {
  height: 18px;
  width: 18px;
}

/* Source-compatible dark mode: localStorage.theme + html.dark */
.dark,
.dark body,
body.dark {
  --ink: #fff8ee;
  --ink-2: #cbd5e1;
  --ink-3: #94a3b8;
  --surface: #0b1527;
  --surface-2: #111f35;
  --surface-3: #15263f;
  --border: #28364d;
  --line: var(--border);
  --blue-bg: rgba(255,122,0,.10);
  --teal-bg: rgba(7,50,111,.22);
  --amber-bg: rgba(255,122,0,.14);
  --rose-bg: rgba(225,29,72,.14);
  --green-bg: rgba(5,150,105,.14);
  --premium-line: rgba(148,163,184,.22);
  --premium-line-strong: rgba(255,122,0,.42);
  --premium-shadow: 0 28px 90px rgba(0,0,0,.38);
  --premium-shadow-hover: 0 32px 100px rgba(0,0,0,.46);
  --shadow: 0 28px 90px rgba(0,0,0,.38);
  --shadow-card: var(--shadow);
  background-color: #05070c !important;
  color: #fff8ee !important;
}

.dark body::before,
body.dark::before {
  background: radial-gradient(circle at 10% 10%, rgba(255,122,0,.26), transparent 24rem), radial-gradient(circle at 90% 5%, rgba(7,50,111,.54), transparent 26rem), radial-gradient(circle at 70% 75%, rgba(255,122,0,.12), transparent 24rem), linear-gradient(180deg,#03070f,#05152d 44%,#05070c) !important;
}

.dark .page-noise,
body.dark .page-noise {
  opacity: .24 !important;
}

.dark .site-header,
.dark .site-nav,
.dark .brand,
.dark .gs-control-button,
.dark .mission-board,
.dark .callout-card,
.dark .data-card,
.dark .content-panel,
.dark .feature-card,
.dark .form-layout,
.dark .legal-content,
.dark .legal-note,
.dark .process-step,
.dark .doc-card,
.dark .home-service-card,
.dark .home-vehicle-card,
.dark .client-logo-card,
.dark .why-card,
.dark .testimonial-card,
.dark .vehicle-category-card,
.dark .local-service-card,
.dark .route-origin-group,
.dark .location-card,
.dark .contact-body-frame,
.dark .contact-details-after-form,
.dark .service-enquiry-card,
.dark .faq-list details,
.dark details,
.dark .form-modal-panel,
.dark .iframe-panel,
.dark .large-iframe-panel,
body.dark .site-header,
body.dark .site-nav,
body.dark .brand,
body.dark .gs-control-button,
body.dark .mission-board,
body.dark .callout-card,
body.dark .data-card,
body.dark .content-panel,
body.dark .feature-card,
body.dark .form-layout,
body.dark .legal-content,
body.dark .legal-note,
body.dark .process-step,
body.dark .doc-card,
body.dark .home-service-card,
body.dark .home-vehicle-card,
body.dark .client-logo-card,
body.dark .why-card,
body.dark .testimonial-card,
body.dark .vehicle-category-card,
body.dark .local-service-card,
body.dark .route-origin-group,
body.dark .location-card,
body.dark .contact-body-frame,
body.dark .contact-details-after-form,
body.dark .service-enquiry-card,
body.dark .faq-list details,
body.dark details,
body.dark .form-modal-panel,
body.dark .iframe-panel,
body.dark .large-iframe-panel {
  background: hsl(220 45% 8%) !important;
  border-color: hsl(214 25% 20%) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.38) !important;
  color: #fff8ee !important;
}

.dark .page-hero::before,
.dark .hero::before,
.dark .movement-strip,
.dark .testimonials-section .container,
body.dark .page-hero::before,
body.dark .hero::before,
body.dark .movement-strip,
body.dark .testimonials-section .container {
  background: linear-gradient(135deg, rgba(11,21,39,.86), rgba(7,16,31,.72)) !important;
  border-color: hsl(214 25% 20%) !important;
}

.dark .site-footer,
body.dark .site-footer {
  background: hsl(220 45% 8%) !important;
  border-top-color: hsl(214 25% 20%) !important;
  color: #fff8ee !important;
}

.dark .footer-logo,
body.dark .footer-logo {
  background: #ffffff !important;
}

.dark p,
.dark li,
.dark .section-heading p,
.dark .page-hero p,
.dark .content-panel p,
.dark .data-card span,
.dark .process-step p,
.dark .feature-card p,
.dark .home-service-card p,
.dark .home-vehicle-card p,
.dark .testimonial-card p,
.dark .vehicle-category-card p,
.dark .local-service-card p,
.dark .location-card p,
.dark .faq-list p,
.dark .brand-tagline,
.dark .site-footer p,
.dark .site-footer a,
.dark .site-footer span,
body.dark p,
body.dark li,
body.dark .section-heading p,
body.dark .page-hero p,
body.dark .content-panel p,
body.dark .data-card span,
body.dark .process-step p,
body.dark .feature-card p,
body.dark .home-service-card p,
body.dark .home-vehicle-card p,
body.dark .testimonial-card p,
body.dark .vehicle-category-card p,
body.dark .local-service-card p,
body.dark .location-card p,
body.dark .faq-list p,
body.dark .brand-tagline,
body.dark .site-footer p,
body.dark .site-footer a,
body.dark .site-footer span {
  color: #cbd5e1 !important;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark .mega-title,
.dark .faq-list summary,
.dark .testimonial-card strong,
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6,
body.dark .mega-title,
body.dark .faq-list summary,
body.dark .testimonial-card strong {
  color: #fff8ee !important;
}

.dark .home-commitment-badge,
.dark .service-commitment,
.dark .industry-chip,
.dark .value-chip,
.dark .vehicle-category-card span,
.dark .movement-track span,
body.dark .home-commitment-badge,
body.dark .service-commitment,
body.dark .industry-chip,
body.dark .value-chip,
body.dark .vehicle-category-card span,
body.dark .movement-track span {
  background: rgba(255,122,0,.10) !important;
  border-color: rgba(255,122,0,.25) !important;
  color: #ffb36b !important;
}

.dark .form-modal-backdrop,
body.dark .form-modal-backdrop {
  background: rgba(3,7,18,.72) !important;
}

.dark .embedded-form-frame,
body.dark .embedded-form-frame {
  background: #05070c !important;
}

@media (max-width: 980px) {
  .gs-header-controls {
    order: 3;
  }
}

@media (max-width: 520px) {
  .gs-header-controls {
    gap: 4px;
    margin-left: auto;
  }

  .gs-control-button {
    height: 36px;
    width: 36px;
  }

  .gs-control-icon {
    display: none;
  }
}

/* Complete dark coverage for frames, iframes, cards, sections and boxed UI */
html.dark,
html.dark body,
body.dark {
  background: #05070c !important;
  color: #fff8ee !important;
}

html.dark main,
html.dark .section,
html.dark section,
html.dark .map-section,
html.dark .dark-card-section,
html.dark .industries-section,
html.dark .cta-section,
html.dark .vehicle-category-section,
html.dark .source-detail-section,
html.dark .testimonials-section,
body.dark main,
body.dark .section,
body.dark section,
body.dark .map-section,
body.dark .dark-card-section,
body.dark .industries-section,
body.dark .cta-section,
body.dark .vehicle-category-section,
body.dark .source-detail-section,
body.dark .testimonials-section {
  background-color: transparent !important;
  color: #fff8ee !important;
}

html.dark :is(
  article,
  aside,
  details,
  fieldset,
  .card,
  .box,
  .panel,
  .frame,
  .window,
  .modal,
  .content,
  .note,
  .board,
  .tile,
  .item,
  .block,
  .wrapper,
  .body-frame,
  .contact-window,
  .contact-window-intro,
  .contact-body-frame,
  .contact-details-after-form,
  .service-info-block,
  .service-parallel-info,
  .support-chip,
  .home-commitment-badge,
  .service-commitment,
  .industry-chip,
  .value-chip,
  .vehicle-list,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  [class*="card"],
  [class*="box"],
  [class*="panel"],
  [class*="frame"],
  [class*="window"],
  [class*="modal"],
  [class*="note"],
  [class*="chip"],
  [class*="badge"]
),
body.dark :is(
  article,
  aside,
  details,
  fieldset,
  .card,
  .box,
  .panel,
  .frame,
  .window,
  .modal,
  .content,
  .note,
  .board,
  .tile,
  .item,
  .block,
  .wrapper,
  .body-frame,
  .contact-window,
  .contact-window-intro,
  .contact-body-frame,
  .contact-details-after-form,
  .service-info-block,
  .service-parallel-info,
  .support-chip,
  .home-commitment-badge,
  .service-commitment,
  .industry-chip,
  .value-chip,
  .vehicle-list,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  [class*="card"],
  [class*="box"],
  [class*="panel"],
  [class*="frame"],
  [class*="window"],
  [class*="modal"],
  [class*="note"],
  [class*="chip"],
  [class*="badge"]
) {
  background: linear-gradient(145deg, #0b1527, #08111f) !important;
  border-color: #28364d !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34) !important;
  color: #fff8ee !important;
}

html.dark :is(.section-heading, .container, .hero-grid, .page-hero-grid, .cards-three, .cards-four, .testimonial-grid, .home-service-grid, .home-vehicle-grid, .local-service-grid, .location-card-grid, .capability-grid),
body.dark :is(.section-heading, .container, .hero-grid, .page-hero-grid, .cards-three, .cards-four, .testimonial-grid, .home-service-grid, .home-vehicle-grid, .local-service-grid, .location-card-grid, .capability-grid) {
  background: transparent !important;
  box-shadow: none !important;
}

html.dark .page-hero::before,
html.dark .hero::before,
html.dark .orange-panel,
html.dark .movement-strip,
html.dark .testimonials-section .container,
html.dark .form-modal-backdrop,
body.dark .page-hero::before,
body.dark .hero::before,
body.dark .orange-panel,
body.dark .movement-strip,
body.dark .testimonials-section .container,
body.dark .form-modal-backdrop {
  background: linear-gradient(135deg, rgba(11, 21, 39, .88), rgba(7, 16, 31, .74)) !important;
  border-color: #28364d !important;
}

html.dark :is(input, select, textarea, iframe, .embedded-form-frame),
body.dark :is(input, select, textarea, iframe, .embedded-form-frame) {
  background: #05070c !important;
  border-color: #28364d !important;
  color: #fff8ee !important;
}

html.dark input::placeholder,
html.dark textarea::placeholder,
body.dark input::placeholder,
body.dark textarea::placeholder {
  color: #94a3b8 !important;
}

html.dark :is(p, li, span, small, label, summary, a, .brand-tagline, .text-muted, .muted, .kicker, .eyebrow),
body.dark :is(p, li, span, small, label, summary, a, .brand-tagline, .text-muted, .muted, .kicker, .eyebrow) {
  color: #cbd5e1 !important;
}

html.dark :is(h1, h2, h3, h4, h5, h6, strong, b, .mega-title, .single-line-heading),
body.dark :is(h1, h2, h3, h4, h5, h6, strong, b, .mega-title, .single-line-heading) {
  color: #fff8ee !important;
}

html.dark :is(.button.primary, .btn-primary, .text-link, .eyebrow, .kicker, .data-card strong),
body.dark :is(.button.primary, .btn-primary, .text-link, .eyebrow, .kicker, .data-card strong) {
  color: #ffb36b !important;
}

html.dark :is(.footer-logo, .brand img),
body.dark :is(.footer-logo, .brand img) {
  background: #ffffff !important;
}

/* Final targeted dark fixes requested */
html.dark .button.secondary,
body.dark .button.secondary,
html.dark .hero-actions .button.secondary,
body.dark .hero-actions .button.secondary {
  background: #0b1527 !important;
  border-color: #ff7a00 !important;
  color: #fff8ee !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .34) !important;
}

html.dark .button.secondary:hover,
body.dark .button.secondary:hover,
html.dark .hero-actions .button.secondary:hover,
body.dark .hero-actions .button.secondary:hover {
  background: #ff7a00 !important;
  border-color: #ff7a00 !important;
  color: #190b00 !important;
}

html.dark body.page-home .testimonial-card,
html.dark body.page-home .testimonial-card:first-child,
body.dark.page-home .testimonial-card,
body.dark.page-home .testimonial-card:first-child {
  background: linear-gradient(145deg, #0b1527, #08111f) !important;
  border-color: #28364d !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34) !important;
  color: #fff8ee !important;
}

html.dark body.page-home .testimonial-card p,
html.dark body.page-home .testimonial-card:first-child p,
html.dark body.page-home .testimonial-card strong,
html.dark body.page-home .testimonial-card span:not(.testimonial-initial),
body.dark.page-home .testimonial-card p,
body.dark.page-home .testimonial-card:first-child p,
body.dark.page-home .testimonial-card strong,
body.dark.page-home .testimonial-card span:not(.testimonial-initial) {
  color: #cbd5e1 !important;
}

html.dark body.page-home .testimonial-card strong,
body.dark.page-home .testimonial-card strong {
  color: #fff8ee !important;
}

html.dark body.page-about .why-choose-impressive,
body.dark.page-about .why-choose-impressive {
  background: transparent !important;
  border-color: #28364d !important;
}

html.dark body.page-about .why-choose-shell,
html.dark body.page-about .why-card,
html.dark body.page-about .why-card.primary,
body.dark.page-about .why-choose-shell,
body.dark.page-about .why-card,
body.dark.page-about .why-card.primary {
  background: linear-gradient(145deg, #0b1527, #08111f) !important;
  border-color: #28364d !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34) !important;
  color: #fff8ee !important;
}

html.dark body.page-about .why-icon,
html.dark body.page-about .why-summary-strip span,
body.dark.page-about .why-icon,
body.dark.page-about .why-summary-strip span {
  background: rgba(255, 122, 0, .10) !important;
  border-color: rgba(255, 122, 0, .25) !important;
  color: #ffb36b !important;
}

html.dark body.page-about .why-card h3,
html.dark body.page-about .why-heading h2,
body.dark.page-about .why-card h3,
body.dark.page-about .why-heading h2 {
  color: #fff8ee !important;
}

html.dark body.page-about .why-card p,
html.dark body.page-about .why-heading p,
body.dark.page-about .why-card p,
body.dark.page-about .why-heading p {
  color: #cbd5e1 !important;
}

html.dark body.page-legal .legal-document-header,
body.dark.page-legal .legal-document-header,
html.dark .legal-document-header,
body.dark .legal-document-header {
  background: linear-gradient(145deg, #0b1527, #08111f) !important;
  border-color: #28364d !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .34) !important;
  color: #fff8ee !important;
}

html.dark body.page-legal .legal-document-header h1,
html.dark body.page-legal .legal-document-header p,
body.dark.page-legal .legal-document-header h1,
body.dark.page-legal .legal-document-header p,
html.dark .legal-document-header h1,
html.dark .legal-document-header p,
body.dark .legal-document-header h1,
body.dark .legal-document-header p {
  color: #fff8ee !important;
}

/* Final unified dark theme readability pass */
html.dark,
html.dark body,
body.dark {
  --dark-bg: #050914;
  --dark-bg-soft: #081225;
  --dark-surface: #0d1729;
  --dark-surface-2: #111f35;
  --dark-border: #263855;
  --dark-text: #f8fafc;
  --dark-muted: #cbd5e1;
  --dark-soft-muted: #94a3b8;
  --dark-accent: #ff8a1f;
  --dark-accent-soft: rgba(255, 138, 31, .14);
  --dark-blue-soft: rgba(37, 99, 235, .16);
  --ink: var(--dark-text);
  --ink-2: var(--dark-muted);
  --ink-3: var(--dark-soft-muted);
  --surface: var(--dark-surface);
  --surface-2: var(--dark-bg-soft);
  --surface-3: var(--dark-surface-2);
  --border: var(--dark-border);
  --line: var(--dark-border);
  background: var(--dark-bg) !important;
  color: var(--dark-text) !important;
}

html.dark body::before,
body.dark::before {
  background: radial-gradient(circle at 12% 8%, rgba(255, 138, 31, .24), transparent 23rem), radial-gradient(circle at 90% 8%, rgba(37, 99, 235, .26), transparent 27rem), radial-gradient(circle at 74% 78%, rgba(13, 148, 136, .14), transparent 24rem), linear-gradient(180deg, #050914 0%, #081225 48%, #050914 100%) !important;
}

html.dark :is(.site-header, .site-nav, .brand, .gs-control-button, .site-footer),
body.dark :is(.site-header, .site-nav, .brand, .gs-control-button, .site-footer) {
  background: rgba(13, 23, 41, .94) !important;
  border-color: var(--dark-border) !important;
  color: var(--dark-text) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32) !important;
}

html.dark :is(
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .legal-document-header,
  .process-step,
  .doc-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .vehicle-category-card,
  .local-service-card,
  .route-origin-group,
  .location-card,
  .contact-body-frame,
  .contact-details-after-form,
  .service-enquiry-card,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  article[class*="card"],
  div[class*="card"],
  article[class*="panel"],
  div[class*="panel"],
  article[class*="frame"],
  div[class*="frame"],
  article[class*="box"],
  div[class*="box"]
),
body.dark :is(
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .legal-document-header,
  .process-step,
  .doc-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .vehicle-category-card,
  .local-service-card,
  .route-origin-group,
  .location-card,
  .contact-body-frame,
  .contact-details-after-form,
  .service-enquiry-card,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  article[class*="card"],
  div[class*="card"],
  article[class*="panel"],
  div[class*="panel"],
  article[class*="frame"],
  div[class*="frame"],
  article[class*="box"],
  div[class*="box"]
) {
  background: linear-gradient(145deg, rgba(17, 31, 53, .98), rgba(9, 18, 37, .98)) !important;
  border-color: var(--dark-border) !important;
  color: var(--dark-text) !important;
  box-shadow: 0 22px 62px rgba(0, 0, 0, .34) !important;
}

html.dark :is(.section-heading, .container, .hero-grid, .page-hero-grid, .cards-three, .cards-four, .testimonial-grid, .home-service-grid, .home-vehicle-grid, .local-service-grid, .location-card-grid, .capability-grid),
body.dark :is(.section-heading, .container, .hero-grid, .page-hero-grid, .cards-three, .cards-four, .testimonial-grid, .home-service-grid, .home-vehicle-grid, .local-service-grid, .location-card-grid, .capability-grid) {
  background: transparent !important;
  box-shadow: none !important;
}

html.dark :is(h1, h2, h3, h4, h5, h6, strong, b, .mega-title, .single-line-heading, .faq-list summary, .nav-link, .footer-tagline),
body.dark :is(h1, h2, h3, h4, h5, h6, strong, b, .mega-title, .single-line-heading, .faq-list summary, .nav-link, .footer-tagline) {
  color: var(--dark-text) !important;
}

html.dark :is(p, li, small, label, .brand-tagline, .section-heading p, .page-hero p, .content-panel p, .data-card span, .process-step p, .feature-card p, .home-service-card p, .home-vehicle-card p, .testimonial-card p, .testimonial-card span:not(.testimonial-initial), .vehicle-category-card p, .local-service-card p, .location-card p, .faq-list p, .legal-content p, .legal-content li, .site-footer p, .site-footer a, .site-footer span),
body.dark :is(p, li, small, label, .brand-tagline, .section-heading p, .page-hero p, .content-panel p, .data-card span, .process-step p, .feature-card p, .home-service-card p, .home-vehicle-card p, .testimonial-card p, .testimonial-card span:not(.testimonial-initial), .vehicle-category-card p, .local-service-card p, .location-card p, .faq-list p, .legal-content p, .legal-content li, .site-footer p, .site-footer a, .site-footer span) {
  color: var(--dark-muted) !important;
}

html.dark :is(.eyebrow, .kicker, .text-link, .data-card strong, .location-card:hover, .site-footer a:hover, .nav-link:hover),
body.dark :is(.eyebrow, .kicker, .text-link, .data-card strong, .location-card:hover, .site-footer a:hover, .nav-link:hover) {
  color: var(--dark-accent) !important;
}

html.dark :is(.nav-link.active, .button.primary, .btn-primary),
body.dark :is(.nav-link.active, .button.primary, .btn-primary) {
  background: linear-gradient(135deg, #ff9b32, var(--dark-accent)) !important;
  border-color: transparent !important;
  color: #1b0c00 !important;
  box-shadow: 0 14px 34px rgba(255, 138, 31, .28) !important;
}

html.dark :is(.button.secondary, .hero-actions .button.secondary, .gs-control-button),
body.dark :is(.button.secondary, .hero-actions .button.secondary, .gs-control-button) {
  background: rgba(17, 31, 53, .98) !important;
  border-color: rgba(255, 138, 31, .55) !important;
  color: var(--dark-text) !important;
}

html.dark :is(.button.secondary:hover, .hero-actions .button.secondary:hover, .gs-control-button:hover),
body.dark :is(.button.secondary:hover, .hero-actions .button.secondary:hover, .gs-control-button:hover) {
  background: var(--dark-accent) !important;
  border-color: var(--dark-accent) !important;
  color: #1b0c00 !important;
}

html.dark :is(.home-commitment-badge, .service-commitment, .industry-chip, .value-chip, .support-chip, .vehicle-category-card span, .movement-track span, .why-icon, .why-summary-strip span),
body.dark :is(.home-commitment-badge, .service-commitment, .industry-chip, .value-chip, .support-chip, .vehicle-category-card span, .movement-track span, .why-icon, .why-summary-strip span) {
  background: var(--dark-accent-soft) !important;
  border-color: rgba(255, 138, 31, .28) !important;
  color: #ffd6ad !important;
  box-shadow: none !important;
}

html.dark :is(input, select, textarea, iframe, .embedded-form-frame),
body.dark :is(input, select, textarea, iframe, .embedded-form-frame) {
  background: #081225 !important;
  border-color: var(--dark-border) !important;
  color: var(--dark-text) !important;
}

html.dark input::placeholder,
html.dark textarea::placeholder,
body.dark input::placeholder,
body.dark textarea::placeholder {
  color: var(--dark-soft-muted) !important;
}

html.dark .footer-logo,
html.dark .brand img,
body.dark .footer-logo,
body.dark .brand img {
  background: #ffffff !important;
}

/* Uniform dark surface for any remaining framed/card UI */
html.dark,
body.dark {
  --dark-frame-bg: #0d1729;
  --dark-frame-bg-2: #111f35;
  --dark-frame-border: #2b3f60;
  --dark-frame-text: #f8fafc;
  --dark-frame-muted: #d6dee9;
}

html.dark :is(
  .card,
  .box,
  .panel,
  .frame,
  .body-frame,
  .iframe-panel,
  .large-iframe-panel,
  .embedded-form-frame,
  .form-modal-panel,
  .service-enquiry-card,
  .contact-body-frame,
  .contact-details-after-form,
  .legal-document-header,
  .legal-content,
  .legal-note,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  article[class*="card"],
  div[class*="card"],
  article[class*="box"],
  div[class*="box"],
  article[class*="panel"],
  div[class*="panel"],
  article[class*="frame"],
  div[class*="frame"]
),
body.dark :is(
  .card,
  .box,
  .panel,
  .frame,
  .body-frame,
  .iframe-panel,
  .large-iframe-panel,
  .embedded-form-frame,
  .form-modal-panel,
  .service-enquiry-card,
  .contact-body-frame,
  .contact-details-after-form,
  .legal-document-header,
  .legal-content,
  .legal-note,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  article[class*="card"],
  div[class*="card"],
  article[class*="box"],
  div[class*="box"],
  article[class*="panel"],
  div[class*="panel"],
  article[class*="frame"],
  div[class*="frame"]
) {
  background: linear-gradient(145deg, var(--dark-frame-bg-2), var(--dark-frame-bg)) !important;
  border-color: var(--dark-frame-border) !important;
  color: var(--dark-frame-text) !important;
}

html.dark :is(iframe, .embedded-form-frame),
body.dark :is(iframe, .embedded-form-frame) {
  background-color: var(--dark-frame-bg) !important;
  border-color: var(--dark-frame-border) !important;
}

html.dark :is(.client-logo-card, article.client-logo-card, .client-logo-card img),
body.dark :is(.client-logo-card, article.client-logo-card, .client-logo-card img) {
  background: linear-gradient(145deg, var(--dark-frame-bg-2), var(--dark-frame-bg)) !important;
}

html.dark :is(.client-logo-card img, .footer-logo, .brand img),
body.dark :is(.client-logo-card img, .footer-logo, .brand img) {
  background: #ffffff !important;
}

html.dark :is(.card, .box, .panel, .frame, [class*="card"], [class*="box"], [class*="panel"], [class*="frame"]) :is(p, li, span, small, label),
body.dark :is(.card, .box, .panel, .frame, [class*="card"], [class*="box"], [class*="panel"], [class*="frame"]) :is(p, li, span, small, label) {
  color: var(--dark-frame-muted) !important;
}

html.dark :is(.card, .box, .panel, .frame, [class*="card"], [class*="box"], [class*="panel"], [class*="frame"]) :is(h1, h2, h3, h4, strong, b),
body.dark :is(.card, .box, .panel, .frame, [class*="card"], [class*="box"], [class*="panel"], [class*="frame"]) :is(h1, h2, h3, h4, strong, b) {
  color: var(--dark-frame-text) !important;
}

/* Final mobile fit pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
strong,
small,
label,
summary,
button {
  overflow-wrap: anywhere;
}

.container {
  width: min(100% - 32px, 1180px) !important;
}

.header-inner,
.footer-topline,
.footer-bottom,
.hero-actions,
.footer-bottom-links,
.footer-company-row,
.footer-resource-row {
  min-width: 0;
}

.brand,
.site-nav,
.footer-links-block,
.footer-company-row,
.footer-resource-row {
  min-width: 0 !important;
}

.brand img {
  max-width: min(210px, 58vw) !important;
  height: auto !important;
}

.site-nav a,
.nav-link,
.button,
button,
input,
select,
textarea {
  max-width: 100%;
}

.footer-links-block {
  grid-template-columns: repeat(2, minmax(0, max-content)) !important;
  max-width: 100% !important;
}

.embedded-form-modal .iframe-panel,
.embedded-form-modal .large-iframe-panel,
.form-modal.embedded-form-modal .iframe-panel,
.form-modal.embedded-form-modal .large-iframe-panel {
  width: min(100% - 18px, 860px) !important;
  max-width: calc(100vw - 18px) !important;
}

.embedded-form-frame,
.form-modal.embedded-form-modal .embedded-form-frame {
  width: 100% !important;
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 100%) !important;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .brand {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .brand-tagline {
    display: none !important;
  }

  .nav-toggle,
  .gs-header-controls {
    flex: 0 0 auto !important;
  }

  .site-nav {
    left: 12px !important;
    right: 12px !important;
    top: calc(100% + 8px) !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    padding: 12px !important;
  }

  .site-nav a,
  .nav-link {
    width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .hero-actions,
  .form-actions,
  .button-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .hero-actions .button,
  .hero-actions button,
  .button,
  button[type="button"],
  button[type="submit"] {
    white-space: normal !important;
  }

  .footer-topline,
  .footer-bottom {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .footer-links-block,
  body .footer-links-block {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    justify-content: stretch !important;
    width: 100% !important;
  }

  .footer-company-row,
  .footer-resource-row,
  .footer-bottom-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .page-hero,
  .hero,
  .section {
    overflow: hidden !important;
  }

  .local-service-grid,
  .home-service-grid,
  .vehicle-category-grid,
  .testimonial-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .embedded-form-modal .iframe-panel,
  .embedded-form-modal .large-iframe-panel,
  .form-modal.embedded-form-modal .iframe-panel,
  .form-modal.embedded-form-modal .large-iframe-panel {
    height: min(92vh, 860px) !important;
    width: calc(100vw - 14px) !important;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 18px, 100%) !important;
  }

  .brand img {
    max-width: min(176px, 56vw) !important;
  }

  .gs-control-button,
  .nav-toggle {
    height: 36px !important;
    width: 36px !important;
  }

  .page-hero,
  .hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Client update pass: branding, responsive fit and dark-mode section polish */
.brand {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 224px !important;
  max-width: 224px !important;
  gap: 4px !important;
}

.brand img {
  width: 100% !important;
  max-width: 198px !important;
}

.brand-tagline {
  display: block !important;
  width: 100% !important;
  max-width: 198px !important;
  text-align: center !important;
  font-size: .66rem !important;
  line-height: 1.15 !important;
  letter-spacing: .02em !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
}

.mega-title,
.mega-title span,
.services-hero-title,
.services-hero-title span,
.hero-title-line {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
}

.mission-board,
.mission-board p {
  text-align: left !important;
}

body.page-about .page-hero,
body.page-about .section {
  border-bottom: 1px solid rgba(37, 99, 235, .18) !important;
}

body.page-about .section:last-of-type {
  border-bottom: 0 !important;
}

body.page-services .cards-three {
  width: min(1224px, calc(100% + 28px)) !important;
  margin-inline: -14px !important;
}

body.page-services .cards-three .feature-card {
  min-width: 0 !important;
}

.contact-company-heading,
body .contact-details-after-form h2.contact-company-heading {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.site-footer {
  margin-top: 18px !important;
  padding-top: 32px !important;
  padding-bottom: 16px !important;
}

.footer-brand-block {
  width: 180px !important;
  max-width: 100% !important;
}

.footer-logo,
.site-footer .footer-logo,
.footer-brand-block .footer-logo {
  width: 180px !important;
  max-width: 180px !important;
  padding: 8px !important;
  margin-bottom: .45rem !important;
}

.footer-tagline {
  width: 180px !important;
  max-width: 180px !important;
  font-size: .72rem !important;
  line-height: 1.25 !important;
  text-align: center !important;
  margin-top: 0 !important;
}

.footer-company-row,
.footer-resource-row,
.footer-bottom-links {
  align-items: center !important;
}

.gs-control-button {
  color: var(--ink) !important;
  font-size: 0 !important;
}

.gs-control-icon {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  color: currentColor !important;
  stroke: currentColor !important;
}

.hero-actions .button,
.location-card,
.local-service-card,
.route-origin-group {
  max-width: 100% !important;
}

@media (min-width: 761px) {
  body.page-vendor .vehicle-category-section {
    background: linear-gradient(180deg, rgba(239, 244, 255, .72), rgba(255, 255, 255, .2)) !important;
  }

  body.page-vendor .source-detail-section {
    background: linear-gradient(180deg, rgba(240, 253, 250, .72), rgba(255, 255, 255, .2)) !important;
  }

  body.page-vendor .map-section {
    background: linear-gradient(180deg, rgba(255, 251, 235, .62), rgba(255, 255, 255, .16)) !important;
  }
}

html.dark body.page-about .page-hero,
html.dark body.page-about .section,
body.dark.page-about .page-hero,
body.dark.page-about .section {
  border-bottom-color: rgba(255, 138, 31, .34) !important;
}

html.dark body.page-vendor .vendor-hero,
body.dark.page-vendor .vendor-hero {
  background: #050914 !important;
}

html.dark body.page-vendor .vehicle-category-section,
body.dark.page-vendor .vehicle-category-section {
  background: linear-gradient(180deg, #081225 0%, #0d1729 100%) !important;
}

html.dark body.page-vendor .source-detail-section,
body.dark.page-vendor .source-detail-section {
  background: linear-gradient(180deg, #0d1729 0%, #111f35 100%) !important;
}

html.dark body.page-vendor .map-section,
body.dark.page-vendor .map-section {
  background: linear-gradient(180deg, #111f35 0%, #081225 100%) !important;
}

@media (max-width: 760px) {
  body {
    font-size: 95% !important;
  }

  .brand {
    width: auto !important;
    max-width: min(188px, 54vw) !important;
    padding: 7px 9px !important;
  }

  .brand img {
    max-width: min(166px, 50vw) !important;
  }

  .brand-tagline {
    display: none !important;
  }

  .mega-title {
    font-size: clamp(3.65rem, 19vw, 5.7rem) !important;
    line-height: .84 !important;
    letter-spacing: -.075em !important;
  }

  .hero-actions {
    width: 100% !important;
  }

  .hero-actions .button,
  .hero-actions button {
    flex: 1 1 160px !important;
    min-width: 0 !important;
  }

  body.page-services .cards-three {
    width: 100% !important;
    margin-inline: 0 !important;
  }

  .location-card-grid,
  .route-origin-group .location-card-grid,
  .local-service-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .location-card {
    width: 100% !important;
    min-width: 0 !important;
    padding-inline: 14px !important;
    white-space: normal !important;
  }

  .form-modal {
    align-items: stretch !important;
    place-items: stretch !important;
    padding: 8px !important;
  }

  .embedded-form-modal .iframe-panel,
  .form-modal.embedded-form-modal .iframe-panel {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    height: calc(100dvh - 16px) !important;
    max-height: calc(100dvh - 16px) !important;
    overflow: hidden !important;
  }

  .embedded-form-frame,
  .form-modal.embedded-form-modal .embedded-form-frame {
    height: 100% !important;
    min-height: 100% !important;
    display: block !important;
  }

  .footer-brand-block,
  .footer-logo,
  .site-footer .footer-logo,
  .footer-brand-block .footer-logo,
  .footer-tagline {
    width: 160px !important;
    max-width: 160px !important;
  }
}

@media (max-width: 420px) {
  .hero-actions .button,
  .hero-actions button {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  .gs-control-button {
    min-width: 38px !important;
    min-height: 38px !important;
  }
}

/* Requested narrow refinements */
.brand-tagline {
  max-width: 198px !important;
  font-size: .56rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
}

.mission-board,
.mission-board .mission-intro,
.mission-board p {
  text-align: left !important;
}

body.page-about .page-hero,
body.page-about .section,
html.dark body.page-about .page-hero,
html.dark body.page-about .section,
body.dark.page-about .page-hero,
body.dark.page-about .section {
  border-bottom: 0 !important;
  border-block: 0 !important;
}

body.page-services .cards-three {
  width: min(1280px, calc(100% + 72px)) !important;
  margin-inline: -36px !important;
}

html.dark :is(
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .doc-card,
  .service-enquiry-card,
  .contact-body-frame,
  .contact-details-after-form,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  article[class*="card"],
  div[class*="card"],
  article[class*="box"],
  div[class*="box"],
  article[class*="panel"],
  div[class*="panel"]
),
body.dark :is(
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .doc-card,
  .service-enquiry-card,
  .contact-body-frame,
  .contact-details-after-form,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  article[class*="card"],
  div[class*="card"],
  article[class*="box"],
  div[class*="box"],
  article[class*="panel"],
  div[class*="panel"]
) {
  background: rgba(13, 23, 41, .58) !important;
  border-color: rgba(148, 163, 184, .28) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22) !important;
  backdrop-filter: blur(14px) !important;
}

.site-footer {
  margin-top: 8px !important;
  padding-top: 18px !important;
  padding-bottom: 10px !important;
}

.footer-topline {
  gap: 18px !important;
}

.footer-logo,
.site-footer .footer-logo,
.footer-brand-block .footer-logo {
  margin-bottom: .25rem !important;
}

.footer-tagline {
  width: 180px !important;
  max-width: 180px !important;
  font-size: .66rem !important;
  font-weight: 400 !important;
  line-height: 1.12 !important;
}

.footer-resource-title {
  display: block;
  color: #64748b;
  font-size: .9rem;
  font-weight: 700;
  margin: .3rem 0;
}

.footer-bottom {
  margin-top: 1rem !important;
  padding-top: .75rem !important;
}

@media (max-width: 760px) {
  body.page-services .cards-three {
    width: 100% !important;
    margin-inline: 0 !important;
  }

  .footer-tagline {
    width: 160px !important;
    max-width: 160px !important;
  }
}

/* Final requested refinements */
body.page-home .mission-board,
body.page-home .mission-board .mission-intro,
body.page-home .mission-board p {
  text-align: left !important;
}

body.page-services #service-capabilities .capability-grid {
  width: min(1320px, calc(100% + 96px)) !important;
  margin-left: -48px !important;
  margin-right: -48px !important;
}

html.dark :is(
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .doc-card,
  .service-enquiry-card,
  .contact-body-frame,
  .contact-details-after-form,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  article[class*="card"],
  div[class*="card"],
  article[class*="box"],
  div[class*="box"],
  article[class*="panel"],
  div[class*="panel"],
  article[class*="frame"],
  div[class*="frame"]
),
body.dark :is(
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .doc-card,
  .service-enquiry-card,
  .contact-body-frame,
  .contact-details-after-form,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .service-info-block,
  .service-parallel-info,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  article[class*="card"],
  div[class*="card"],
  article[class*="box"],
  div[class*="box"],
  article[class*="panel"],
  div[class*="panel"],
  article[class*="frame"],
  div[class*="frame"]
) {
  background: rgba(13, 23, 41, .34) !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) !important;
}

html.dark :is(
  .mission-board::after,
  .feature-card::after,
  .content-panel::after,
  .callout-card::after,
  .data-card::after
),
body.dark :is(
  .mission-board::after,
  .feature-card::after,
  .content-panel::after,
  .callout-card::after,
  .data-card::after
) {
  opacity: .18 !important;
}

.site-footer {
  margin-top: 4px !important;
  padding-top: 12px !important;
  padding-bottom: 8px !important;
}

.footer-topline {
  gap: 12px !important;
}

.footer-logo,
.site-footer .footer-logo,
.footer-brand-block .footer-logo {
  padding: 6px !important;
  margin-bottom: .12rem !important;
}

.footer-tagline {
  width: 180px !important;
  max-width: 180px !important;
  font-size: .56rem !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}

.footer-resource-title {
  display: inline-block !important;
  color: #64748b;
  font-size: .86rem;
  font-weight: 700;
  margin: .2rem .75rem .2rem 0;
}

.footer-bottom {
  margin-top: .6rem !important;
  padding-top: .5rem !important;
}

@media (max-width: 760px) {
  body.page-services #service-capabilities .capability-grid {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Final narrow adjustment: footer fit, service card size, dark card transparency */
.footer-tagline {
  width: 180px !important;
  max-width: 180px !important;
  white-space: nowrap !important;
  font-size: .48rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.footer-links-block {
  column-gap: 14px !important;
  row-gap: 4px !important;
}

.footer-resource-row,
.footer-company-row {
  gap: 6px 10px !important;
}

.footer-resource-title,
.site-footer a,
.site-footer span {
  font-size: .78rem !important;
  line-height: 1.15 !important;
}

.footer-resource-title {
  margin: .1rem .35rem .1rem 0 !important;
}

.site-footer {
  padding-top: 10px !important;
  padding-bottom: 6px !important;
}

.footer-bottom {
  margin-top: .45rem !important;
  padding-top: .4rem !important;
}

body.page-services .services-showcase .container {
  width: min(1320px, calc(100% - 24px)) !important;
}

body.page-services .service-showcase-grid,
body.page-services .services-showcase .service-showcase-grid {
  width: min(1320px, 100%) !important;
  margin-inline: auto !important;
  gap: 16px !important;
}

body.page-services .service-showcase-card,
body.page-services .logistics-solution-card {
  padding: clamp(16px, 2vw, 24px) !important;
  min-height: 0 !important;
}

body.page-services .service-showcase-card > p:not(.service-commitment),
body.page-services .logistics-solution-card > p:not(.service-commitment) {
  margin-bottom: .8rem !important;
  line-height: 1.55 !important;
}

body.page-services .service-showcase-top {
  margin-bottom: .8rem !important;
}

body.page-services .service-commitment {
  margin-bottom: .55rem !important;
}

body.page-services .key-benefit-block,
body.page-services .service-info-block {
  padding: 12px !important;
}

body.page-services .key-benefit-list {
  margin-top: .45rem !important;
}

body.page-services .key-benefit-list li {
  margin: .28rem 0 !important;
}

body.page-services .service-parallel-info {
  gap: 10px !important;
  margin-top: 10px !important;
}

body.page-services .support-chip-grid {
  gap: 7px !important;
}

body.page-services .service-info-block .support-chip,
body.page-services .support-chip {
  padding: 7px 9px !important;
  font-size: .78rem !important;
}

html.dark :is(
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .doc-card,
  .service-enquiry-card,
  .service-showcase-card,
  .logistics-solution-card,
  .service-info-block,
  .service-parallel-info,
  .key-benefit-block,
  .ideal-card-block,
  .support-card-block,
  .contact-body-frame,
  .contact-details-after-form,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  [class*="card"],
  [class*="box"],
  [class*="panel"],
  [class*="frame"]
),
body.dark :is(
  .mission-board,
  .callout-card,
  .data-card,
  .content-panel,
  .feature-card,
  .form-layout,
  .legal-content,
  .legal-note,
  .process-step,
  .doc-card,
  .service-enquiry-card,
  .service-showcase-card,
  .logistics-solution-card,
  .service-info-block,
  .service-parallel-info,
  .key-benefit-block,
  .ideal-card-block,
  .support-card-block,
  .contact-body-frame,
  .contact-details-after-form,
  .why-choose-shell,
  .why-card,
  .testimonial-card,
  .home-service-card,
  .home-vehicle-card,
  .client-logo-card,
  .vehicle-category-card,
  .local-service-card,
  .location-card,
  .route-origin-group,
  .faq-list details,
  .form-modal-panel,
  .iframe-panel,
  .large-iframe-panel,
  [class*="card"],
  [class*="box"],
  [class*="panel"],
  [class*="frame"]
) {
  background: rgba(13, 23, 41, .24) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html.dark :is(
  .support-chip,
  .service-commitment,
  .home-commitment-badge,
  .industry-chip,
  .value-chip,
  .vehicle-category-card span,
  .movement-track span,
  .why-icon,
  .why-summary-strip span,
  .badge,
  [class*="chip"],
  [class*="badge"]
),
body.dark :is(
  .support-chip,
  .service-commitment,
  .home-commitment-badge,
  .industry-chip,
  .value-chip,
  .vehicle-category-card span,
  .movement-track span,
  .why-icon,
  .why-summary-strip span,
  .badge,
  [class*="chip"],
  [class*="badge"]
) {
  background: rgba(255, 255, 255, .06) !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .footer-tagline {
    width: 160px !important;
    max-width: 160px !important;
    font-size: .46rem !important;
  }

  body.page-services .services-showcase .container {
    width: min(100% - 24px, 100%) !important;
  }
}

/* Final footer and enterprise-card alignment pass */
.footer-brand-block,
.footer-logo,
.site-footer .footer-logo,
.footer-brand-block .footer-logo,
.footer-tagline {
  width: 180px !important;
  max-width: 180px !important;
}

.footer-tagline {
  display: block !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  font-size: .42rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

body .footer-links-block,
.footer-links-block {
  display: grid !important;
  grid-template-columns: 132px 132px !important;
  align-items: start !important;
  justify-content: end !important;
  column-gap: 16px !important;
  row-gap: 0 !important;
  min-width: 0 !important;
  margin-left: auto !important;
  text-align: left !important;
}

body .footer-company-row,
body .footer-resource-row,
.footer-company-row,
.footer-resource-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 5px !important;
  width: 132px !important;
  text-align: left !important;
}

.footer-resource-title,
.site-footer a,
.site-footer span {
  font-size: .74rem !important;
  line-height: 1.12 !important;
}

.footer-resource-title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
}

body.page-services .service-showcase-grid,
body.page-services .logistics-solution-grid,
body.page-services .services-showcase .service-showcase-grid,
body.page-services .services-showcase .logistics-solution-grid {
  grid-template-columns: 1fr !important;
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 14px !important;
}

body.page-services .service-showcase-card,
body.page-services .logistics-solution-card {
  padding: 14px 18px !important;
}

body.page-services .service-showcase-top {
  margin-bottom: 8px !important;
}

body.page-services .service-showcase-card > p:not(.service-commitment),
body.page-services .logistics-solution-card > p:not(.service-commitment) {
  margin-bottom: 8px !important;
  line-height: 1.42 !important;
}

body.page-services .service-commitment {
  margin-bottom: 6px !important;
  padding: 6px 10px !important;
}

body.page-services .key-benefit-block,
body.page-services .service-info-block {
  padding: 10px !important;
}

body.page-services .key-benefit-list li {
  margin: 2px 0 !important;
}

body.page-services .service-parallel-info {
  gap: 8px !important;
  margin-top: 8px !important;
}

body.page-services .support-chip-grid {
  gap: 5px !important;
}

body.page-services .service-info-block .support-chip,
body.page-services .support-chip {
  padding: 5px 8px !important;
  font-size: .74rem !important;
  line-height: 1.15 !important;
}

@media (min-width: 1001px) {
  body.page-services .services-showcase .container {
    width: min(1320px, calc(100% - 24px)) !important;
  }
}

@media (max-width: 760px) {
  body .footer-links-block,
  .footer-links-block {
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
    row-gap: 8px !important;
  }

  body .footer-company-row,
  body .footer-resource-row,
  .footer-company-row,
  .footer-resource-row {
    width: 100% !important;
  }

  .footer-tagline {
    width: 160px !important;
    max-width: 160px !important;
    font-size: .4rem !important;
  }
}

/* Requested correction: moderate enterprise cards and restore support text */
.footer-tagline {
  font-size: .34rem !important;
}

body.page-services .service-showcase-grid,
body.page-services .logistics-solution-grid,
body.page-services .services-showcase .service-showcase-grid,
body.page-services .services-showcase .logistics-solution-grid {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
}

@media (min-width: 1001px) {
  body.page-services .services-showcase .container {
    width: min(1160px, calc(100% - 32px)) !important;
  }
}

body.page-services .service-parallel-info .service-info-block strong {
  font-size: .95rem !important;
  line-height: 1.2 !important;
}

body.page-services .service-parallel-info .support-chip,
body.page-services .service-parallel-info .service-info-block .support-chip {
  font-size: .9rem !important;
  line-height: 1.25 !important;
  padding: 7px 10px !important;
}

@media (max-width: 760px) {
  .footer-tagline {
    font-size: .32rem !important;
  }
}

/* Final requested tweak: shorter testimonials and footer tagline matching header */
body.page-home .testimonials-section {
  padding-top: clamp(28px, 4vw, 44px) !important;
  padding-bottom: clamp(28px, 4vw, 44px) !important;
}

body.page-home .testimonials-section .section-heading {
  margin-bottom: 1rem !important;
}

body.page-home .testimonial-grid {
  gap: 12px !important;
}

body.page-home .testimonial-card,
body.page-home .testimonial-card:first-child {
  min-height: 0 !important;
  padding: 16px !important;
  border-radius: 18px !important;
}

body.page-home .testimonial-card p,
body.page-home .testimonial-card:first-child p {
  margin-bottom: .65rem !important;
  line-height: 1.45 !important;
}

body.page-home .testimonial-card strong {
  margin-top: .35rem !important;
}

body.page-home .testimonial-photo,
body.page-home .testimonial-card:first-child .testimonial-photo,
body.page-home .testimonial-initial,
body.page-home .testimonial-card:first-child .testimonial-initial {
  width: 46px !important;
  height: 46px !important;
  margin-bottom: .65rem !important;
}

.footer-tagline {
  width: 198px !important;
  max-width: 198px !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  font-size: .56rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .footer-tagline {
    width: 166px !important;
    max-width: 166px !important;
    font-size: .5rem !important;
  }
}

/* Hosting handoff: header tagline same visual length as logo */
.brand img {
  width: 198px !important;
  max-width: 198px !important;
}

.brand-tagline {
  display: block !important;
  width: 198px !important;
  max-width: 198px !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  .brand img {
    width: min(166px, 50vw) !important;
    max-width: min(166px, 50vw) !important;
  }

  .brand-tagline {
    width: min(166px, 50vw) !important;
    max-width: min(166px, 50vw) !important;
  }
}

/* v1 final CTA/mobile fit refinements */
.button,
button.button,
a.button,
.hero-actions .button,
.hero-actions button.button,
.form-button-layout .button.primary.popup-trigger,
.career-apply-button {
  min-height: 42px !important;
  height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  font-size: .78rem !important;
  line-height: 1 !important;
  letter-spacing: .045em !important;
}

.hero-actions {
  gap: 10px !important;
  margin-top: 22px !important;
}

body.page-home .mega-title {
  max-width: 100% !important;
}

@media (max-width: 760px) {
  body.page-home .mega-title {
    font-size: clamp(3.15rem, 16.5vw, 5.05rem) !important;
    line-height: .86 !important;
    letter-spacing: -.065em !important;
  }

  body.page-home .mega-title span {
    letter-spacing: -.06em !important;
  }

  .hero-actions .button,
  .hero-actions button {
    flex: 0 1 auto !important;
    min-width: 132px !important;
    width: auto !important;
  }
}

@media (max-width: 420px) {
  body.page-home .mega-title {
    font-size: clamp(3rem, 15vw, 4.45rem) !important;
  }

  .hero-actions .button,
  .hero-actions button {
    flex-basis: auto !important;
    width: auto !important;
    min-width: 126px !important;
  }
}

/* v2 service-area CTA length refinement */
body.page-local .local-landing-hero .hero-actions,
body.page-services.page-local .local-landing-hero .hero-actions {
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
}

body.page-local .local-landing-hero .hero-actions .button,
body.page-local .local-landing-hero .hero-actions button.button,
body.page-services.page-local .local-landing-hero .hero-actions .button,
body.page-services.page-local .local-landing-hero .hero-actions button.button {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: max-content !important;
  padding-inline: 12px !important;
  font-size: .74rem !important;
  letter-spacing: .025em !important;
}

@media (max-width: 420px) {
  body.page-local .local-landing-hero .hero-actions,
  body.page-services.page-local .local-landing-hero .hero-actions {
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  body.page-local .local-landing-hero .hero-actions .button,
  body.page-local .local-landing-hero .hero-actions button.button,
  body.page-services.page-local .local-landing-hero .hero-actions .button,
  body.page-services.page-local .local-landing-hero .hero-actions button.button {
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    padding-inline: 10px !important;
    font-size: .7rem !important;
    letter-spacing: .015em !important;
  }
}

/* v3 service-areas mobile buttons side by side only */
@media (max-width: 760px) {
  body.page-service-areas .local-landing-hero .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
  }

  body.page-service-areas .local-landing-hero .hero-actions .button,
  body.page-service-areas .local-landing-hero .hero-actions button.button {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(50vw - 18px) !important;
    padding-inline: 9px !important;
    font-size: .68rem !important;
    letter-spacing: .01em !important;
    white-space: nowrap !important;
  }
}

/* v4 service-areas mobile heading fit only */
@media (max-width: 760px) {
  body.page-service-areas .local-landing-hero .services-hero-title {
    max-width: min(100%, 360px) !important;
    margin-inline: auto !important;
    font-size: clamp(1.24rem, 5.4vw, 1.72rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.025em !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.page-service-areas .local-landing-hero .services-hero-title .title-line {
    display: block !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

@media (max-width: 420px) {
  body.page-service-areas .local-landing-hero .services-hero-title {
    max-width: min(100%, 304px) !important;
    font-size: clamp(1.08rem, 5.2vw, 1.24rem) !important;
  }
}

/* v6 other service pages mobile buttons side by side only */
@media (max-width: 760px) {
  body.page-services.page-local:not(.page-service-areas) .local-landing-hero .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
  }

  body.page-services.page-local:not(.page-service-areas) .local-landing-hero .hero-actions .button,
  body.page-services.page-local:not(.page-service-areas) .local-landing-hero .hero-actions button.button {
    flex: 1 1 0 !important;
    width: calc(50% - 3px) !important;
    min-width: 0 !important;
    max-width: 152px !important;
    padding-inline: 7px !important;
    font-size: .66rem !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  body.page-services.page-local:not(.page-service-areas) .local-landing-hero .hero-actions .button,
  body.page-services.page-local:not(.page-service-areas) .local-landing-hero .hero-actions button.button {
    max-width: 144px !important;
    padding-inline: 5px !important;
    font-size: .62rem !important;
  }
}


/* GatiSetu social footer icons: consistent Font Awesome package and size */
.footer-bottom-links .social-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 9px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: transform .2s ease, opacity .2s ease !important;
}
.footer-bottom-links .social-icon i {
  font-size: 16px !important;
  line-height: 1 !important;
  color: #fff !important;
}
.footer-bottom-links .social-icon:hover {
  color: #fff !important;
  transform: translateY(-2px);
  opacity: .9;
}
.footer-bottom-links .linkedin-social-icon { background: #0a66c2 !important; border-color: #0a66c2 !important; }
.footer-bottom-links .instagram-social-icon { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045) !important; border-color: transparent !important; }
.footer-bottom-links .x-social-icon { background: #000 !important; border-color: #000 !important; }
.footer-bottom-links .facebook-social-icon { background: #1877f2 !important; border-color: #1877f2 !important; }
@media (max-width: 640px) {
  .footer-bottom-links { gap: 10px !important; flex-wrap: wrap; }
}


/* Homepage solution links now act as modal form triggers */
button.text-link.solution-form-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}


/* Keep For Enterprises anchor destinations visible below the sticky header */
#ftl, #adhoc, #contract {
  scroll-margin-top: 110px;
}
