/* =========================================================
   KWT THEME — SHARED BASE STYLES (auto-consolidated)
   ========================================================= */

:root {
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F8F8F5;
  --grey: #F0F4FC;
  --grey-dim: #D5DEF2;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --ink: #0B1130;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--grey);
  background: var(--kwt-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--grey);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

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

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

ul {
  list-style: none
}

::selection {
  background: var(--amber);
  color: var(--ink)
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .01em
}

.hero h1,
.final h2 {
  color: #F8F8F5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35)
}

.hero h1 em,
.final h2 em {
  font-style: normal;
  color: var(--amber)
}

.chap-head h2,
.panthers h2 {
  color: var(--white)
}

.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 13px;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--kwt-blue-2))
}

.chap-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 116px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 179, 0, .3);
  line-height: .8;
  user-select: none;
}

.wrap {
  width: min(1240px, 92vw);
  margin: 0 auto;
  position: relative
}

section {
  position: relative
}

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px min(4vw, 48px);
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  --asphalt-2: var(--night-bg-2);
  background: linear-gradient(180deg, var(--kwt-blue), #181462);
  border-bottom: 1px solid rgba(255, 179, 0, .3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45))
}

.foot-logo {
  height: 56px
}

.head-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

.head-nav a {
  color: var(--grey);
  transition: color .25s
}

.head-nav a:hover,
.head-nav a:focus-visible {
  color: var(--amber)
}

.nav-drop {
  position: relative
}

.drop-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grey);
  transition: color .25s;
  cursor: pointer
}

.drop-parent svg {
  width: 14px;
  height: 14px;
  transition: transform .25s
}

.nav-drop:hover .drop-parent,
.nav-drop:focus-within .drop-parent {
  color: var(--amber)
}

.nav-drop:hover .drop-parent svg,
.nav-drop:focus-within .drop-parent svg {
  transform: rotate(180deg)
}

.drop-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 300px;
  background: var(--asphalt-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--amber);
  box-shadow: 0 22px 50px rgba(4, 8, 22, .6);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.drop-panel::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px
}

.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

.drop-panel a {
  display: block;
  padding: 11px 22px;
  color: var(--grey);
  font-size: 14px;
  letter-spacing: .1em;
  transition: color .2s, background .2s, padding-left .2s;
}

.drop-panel a:hover,
.drop-panel a:focus-visible {
  color: var(--amber);
  background: rgba(255, 179, 0, .06);
  padding-left: 28px
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  margin-right: 14px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: .3s var(--ease)
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  --asphalt: var(--kwt-blue);
  background: linear-gradient(180deg, rgba(34, 30, 143, .98), rgba(18, 14, 80, .98));
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(74px + env(safe-area-inset-top, 0px)) 8vw calc(40px + env(safe-area-inset-bottom, 0px));
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: none
}

body.nav-open {
  overflow: hidden
}

body.nav-open .float-call {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease
}

.mobile-menu a {
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  min-height: 44px;
  box-sizing: border-box;
}

.mobile-menu a:active {
  color: var(--amber)
}

.mobile-menu .mm-label {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--amber);
  margin-top: 14px;
  padding: 12px 0 8px;
}

.mobile-menu .mm-sub {
  font-size: 16px;
  color: var(--grey);
  padding: 11px 0 11px 16px
}

.mobile-menu .mm-call {
  margin-top: 22px;
  border: 0;
  background: var(--amber);
  color: var(--ink);
  text-align: center;
  padding: 16px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .08em;
}

.mobile-menu .mm-quote {
  margin-top: 10px;
  border: 2px solid var(--white) !important;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
}

.head-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .08em;
  background: var(--amber);
  color: var(--ink);
  padding: 11px 22px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background .25s, transform .25s;
}

.head-call:hover {
  background: var(--amber-hot);
  transform: translateY(-1px)
}

.head-call svg {
  width: 16px;
  height: 16px
}

.head-quote {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 3px;
  margin-right: 20px;
  transition: color .25s;
}

.head-quote:hover {
  color: var(--amber)
}

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  --asphalt-2: var(--night-bg-2);
  --asphalt-3: var(--night-bg-3);
  background: radial-gradient(120% 65% at 50% 108%, rgba(34, 30, 143, .5), transparent 62%), radial-gradient(70% 50% at 12% 0%, rgba(18, 102, 196, .16), transparent 60%), radial-gradient(80% 45% at 72% 96%, rgba(255, 140, 40, .14), transparent 65%), linear-gradient(180deg, #080D1F 0%, #0C1329 55%, #111C3A 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  will-change: transform;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(50% 55% at 33% 38%, rgba(8, 13, 31, .85) 0%, rgba(8, 13, 31, .6) 55%, transparent 82%), radial-gradient(28% 28% at 73% 53%, rgba(8, 13, 31, .55) 0%, transparent 78%), linear-gradient(180deg, rgba(8, 13, 31, .5) 0%, transparent 12%);
}

.hero-fog {
  position: absolute;
  inset: auto -10% -6% -10%;
  height: 52%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(60% 90% at 30% 100%, rgba(255, 179, 0, .05), transparent 70%), radial-gradient(55% 80% at 78% 100%, rgba(255, 179, 0, .06), transparent 70%);
  filter: blur(6px);
  will-change: transform;
}

.hero-flare {
  position: absolute;
  z-index: 2;
  width: 44vw;
  height: 44vw;
  max-width: 640px;
  max-height: 640px;
  right: -8vw;
  top: 6vh;
  pointer-events: none;
  will-change: transform;
  background: radial-gradient(circle, rgba(255, 179, 0, .10), rgba(255, 179, 0, .03) 42%, transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  padding: 112px 0 clamp(30px, 5vh, 70px)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: end
}

.hero h1 {
  font-size: clamp(36px, 5.6vw, 88px);
  margin: 14px 0 8px
}

.hero h1 .line {
  display: block;
  overflow: hidden
}

.hero h1 .line span {
  display: inline-block;
  will-change: transform
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
  position: relative
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -.35em;
  top: .06em;
  width: .16em;
  height: .16em;
  border-radius: 50%;
  background: var(--kwt-red);
  box-shadow: 0 0 18px 4px rgba(232, 50, 31, .8);
  animation: hzrd 1.15s steps(1) infinite;
}

.hero-sub strong {
  color: var(--white)
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px
}

.btn-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: .03em;
  color: var(--ink);
  background: var(--amber);
  padding: 18px 34px;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: background .25s;
}

.btn-call:hover {
  background: var(--amber-hot)
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0B2A4A;
  background: #7EC8E8;
  border: 2px solid #7EC8E8;
  padding: 16px 26px;
  transition: .25s;
}

.btn-quote:hover {
  background: #9AD6EF;
  border-color: #9AD6EF
}

.btn-call small {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: .14em;
  display: block;
  line-height: 1.05;
  margin-bottom: 4px
}

.btn-call .num {
  display: block;
  line-height: 1
}

.btn-ghost {
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--white);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 4px;
  transition: color .25s;
}

.btn-ghost:hover {
  color: var(--amber)
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--grey);
  padding-bottom: 8px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
}

.hero-meta .big {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 54px);
  color: var(--white);
  line-height: .9;
  letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.hero-meta .big b {
  color: var(--amber);
  font-weight: 400
}

.trust-strip {
  position: relative;
  z-index: 6;
  border-top: 1px solid var(--line);
  background: rgba(13, 15, 18, .72);
  backdrop-filter: blur(6px);
  margin-top: auto;
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.trust-strip li {
  padding: 18px 20px;
  border-left: 1px solid var(--line);
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-strip li:first-child {
  border-left: 0
}

.trust-strip b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--white);
  letter-spacing: .02em
}

.est-cell {
  justify-content: center
}

.est-cell b {
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .22em
}

.est-cell b i {
  display: inline-block;
  will-change: transform;
  text-shadow: 0 6px 22px rgba(255, 179, 0, .35)
}

.trust-strip b i {
  font-style: normal;
  color: var(--amber)
}

.trust-strip li:nth-child(even) b i {
  color: var(--kwt-cyan)
}

.chap-head {
  padding: 110px 0 40px
}

.chap-head .row {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap
}

.chap-head h2 {
  font-size: clamp(34px, 4.6vw, 72px);
  position: relative
}

.beam-mask {
  clip-path: circle(0% at 20% 55%);
  will-change: clip-path
}

.chap-head p strong {
  color: var(--white)
}

.svc-scroller {
  position: relative
}

.svc-spotlight {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 260px at var(--sx, 50%) var(--sy, 50%), rgba(255, 179, 0, .16), rgba(255, 179, 0, .05) 55%, transparent 72%);
  transition: opacity .35s ease;
}

.svc-scroller.lit .svc-spotlight {
  opacity: 1
}

.svc-grid {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

.svc-grid::-webkit-scrollbar {
  display: none
}

.svc-arrow {
  position: absolute;
  top: 42%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

.svc-arrow svg {
  width: 24px;
  height: 24px
}

.svc-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

.svc-arrow.prev {
  left: -14px
}

.svc-arrow.next {
  right: -14px
}

.svc-img {
  margin: 0 -32px 22px;
  position: relative;
  overflow: hidden;
  height: 210px;
  flex: none;
  background: var(--asphalt);
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%);
}

.svc .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 14px;
  flex: none
}

.svc h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(22px, 1.85vw, 27px);
  letter-spacing: .02em;
  line-height: 1.22;
  text-transform: none;
  margin-top: 8px;
  flex: none;
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
  color: var(--night-white);
}

.svc .svc-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
  margin-top: 14px
}

.svc p {
  color: var(--night-grey);
  font-size: 16px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc .go {
  margin-top: auto;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--amber);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}

.svc .go:hover {
  border-color: var(--amber)
}

.svc.cta-card {
  background: linear-gradient(150deg, #0E3A8C 0%, var(--kwt-blue) 60%, #141169 100%);
  justify-content: center;
}

.svc.cta-card .num {
  color: var(--night-grey)
}

.svc.cta-card .go {
  color: var(--amber)
}

.svc.cta-card .go:hover {
  border-color: var(--amber)
}

.svc.cta-card h3 {
  color: var(--white)
}

.svc.cta-card .phone {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--amber)
}

.svc-hint {
  font-family: var(--font-cond);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim);
  margin-top: 16px;
  display: block
}

.call-band {
  background: linear-gradient(120deg, var(--kwt-blue), #181462);
  padding: 34px 0;
}

.call-band.alt {
  background: linear-gradient(120deg, #181462, var(--kwt-blue))
}

.call-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.call-band p {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--night-white);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.call-band p strong {
  color: var(--amber)
}

.call-band-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap
}

.call-band .btn-call {
  padding: 13px 24px;
  font-size: 18px
}

.call-band .btn-call small {
  font-size: 11px
}

.btn-quote-dark {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--night-white);
  border: 2px solid var(--night-white);
  padding: 12px 22px;
  transition: .25s;
}

.btn-quote-dark:hover {
  background: var(--night-white);
  color: var(--kwt-blue)
}

.how-pin {
  padding: 100px 0 110px
}

.ch3 {
  background: #080D1F;
  overflow: hidden;
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line)
}

.drive-stage {
  height: 88vh;
  position: relative;
  overflow: hidden
}

.l-sky {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(1.5px 1.5px at 12% 18%, rgba(245, 245, 242, .7), transparent 55%), radial-gradient(1px 1px at 34% 9%, rgba(245, 245, 242, .55), transparent 55%), radial-gradient(1.5px 1.5px at 56% 22%, rgba(245, 245, 242, .6), transparent 55%), radial-gradient(1px 1px at 71% 12%, rgba(245, 245, 242, .5), transparent 55%), radial-gradient(1.5px 1.5px at 88% 26%, rgba(245, 245, 242, .65), transparent 55%), radial-gradient(1px 1px at 23% 33%, rgba(245, 245, 242, .4), transparent 55%), radial-gradient(1px 1px at 64% 36%, rgba(245, 245, 242, .45), transparent 55%), linear-gradient(180deg, #060A18 0%, #0B1228 70%, #121C3A 100%);
  will-change: transform;
}

.l-city {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 34%;
  height: 22%;
  z-index: 2;
  will-change: transform;
  background: radial-gradient(60% 130% at 50% 100%, rgba(255, 150, 50, .16), transparent 70%), linear-gradient(0deg, rgba(34, 30, 143, .35), transparent 75%);
}

.l-city .blds {
  position: absolute;
  inset: auto 0 0 0;
  height: 74%;
  opacity: .9;
  background: linear-gradient(90deg, transparent 0 4%, #0D1430 4% 7%, transparent 7% 10%, #0B1128 10% 12%, transparent 12% 17%, #0E1634 17% 21%, transparent 21% 26%, #0B1128 26% 28%, transparent 28% 33%, #0D1430 33% 38%, transparent 38% 44%, #0E1634 44% 47%, transparent 47% 52%, #0B1128 52% 57%, transparent 57% 62%, #0D1430 62% 65%, transparent 65% 71%, #0E1634 71% 76%, transparent 76% 81%, #0B1128 81% 84%, transparent 84% 90%, #0D1430 90% 94%, transparent 94%);
  -webkit-mask-image: linear-gradient(0deg, #000 55%, transparent);
  mask-image: linear-gradient(0deg, #000 55%, transparent);
}

.l-rail {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 30%;
  height: 7%;
  z-index: 3;
  will-change: transform;
  background: repeating-linear-gradient(90deg, rgba(154, 160, 171, .22) 0 6px, transparent 6px 90px), linear-gradient(0deg, transparent 44%, rgba(154, 160, 171, .16) 44% 58%, transparent 58%);
}

.l-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31%;
  z-index: 4;
  will-change: background-position;
  background: repeating-linear-gradient(90deg, var(--amber) 0 70px, transparent 70px 190px) 0 52%/190px 5px no-repeat, linear-gradient(180deg, #182238 0%, #0F1730 100%);
  background-blend-mode: normal;
  border-top: 1px solid rgba(245, 245, 242, .07);
}

.drive-truck {
  position: absolute;
  bottom: 9%;
  left: 0;
  z-index: 6;
  width: clamp(300px, 44vw, 620px);
  will-change: transform;
  transform: translateX(120vw);
}

.drive-truck img {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .8));
}

.drive-truck .d-beam {
  position: absolute;
  top: 38%;
  right: 96%;
  width: 46vw;
  height: 52%;
  background: linear-gradient(270deg, rgba(245, 245, 230, .28), rgba(245, 245, 230, .07) 55%, transparent);
  clip-path: polygon(100% 30%, 0 0, 0 100%, 100% 62%);
  filter: blur(3px);
  transform-origin: right center;
}

.drive-truck .d-glow {
  position: absolute;
  bottom: -6%;
  left: 8%;
  width: 84%;
  height: 18%;
  background: radial-gradient(50% 100% at 50% 100%, rgba(255, 120, 30, .45), transparent 72%);
  filter: blur(9px);
}

.drive-copy {
  position: absolute;
  z-index: 7;
  top: 16%;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}

.drive-copy .eta {
  margin-top: 14px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  font-size: clamp(12px, 1.2vw, 15px);
}

.drive-arrived {
  position: absolute;
  z-index: 7;
  bottom: 44%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.drive-arrived span {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--ink);
  padding: 10px 26px;
  font-size: 14px;
}

.beam-iris {
  --r: 120%;
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background: radial-gradient(circle at 50% 62%, transparent 0 var(--r), #080D1F calc(var(--r) + 16%));
}

body.tpl-front-page .stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat:first-child {
  border-left: 0
}

.stat b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  display: block;
  line-height: .9;
  color: var(--white)
}

.stat b i {
  font-style: normal;
  color: var(--amber)
}

.stat span {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  color: var(--grey)
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start
}

.about-number {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.an-figure {
  font-family: var(--font-display);
  font-size: clamp(150px, 15vw, 270px);
  line-height: .82;
  color: var(--amber);
  text-shadow: 0 0 60px rgba(255, 179, 0, .35);
  letter-spacing: 0;
}

.an-label {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--white);
  line-height: 1.15;
  margin-top: -4px;
}

.an-badges {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.an-badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 15px;
  color: var(--grey);
  border-left: 2px solid var(--amber);
  padding-left: 14px;
}

.an-badges li span {
  color: var(--white)
}

.about-copy h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 24px
}

.about-lead strong {
  color: var(--white)
}

.about-quote {
  margin-top: 24px;
  padding: 22px 28px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 179, 0, .05);
  color: var(--white);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  max-width: 640px;
}

.about-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--amber);
}

.join-band {
  margin-top: 80px;
  padding: 56px min(6vw, 64px);
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.join-copy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--white);
  margin-bottom: 10px
}

.join-btn {
  flex: none
}

.svc-marquee {
  background: linear-gradient(90deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 100%);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(245, 245, 242, .12);
  border-bottom: 1px solid rgba(245, 245, 242, .12);
}

.svc-marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  white-space: nowrap;
  animation: svcMarquee 28s linear infinite;
}

.svc-marquee-track span {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: clamp(15px, 1.6vw, 20px);
  color: var(--night-white);
}

.svc-marquee-track i {
  font-style: normal;
  color: var(--amber);
  font-size: 12px
}

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  height: 78vh;
  overflow: hidden;
  margin-top: 56px;
  position: relative;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8% 92%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 8% 92%, transparent);
}

.col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform
}

.col figure {
  position: relative;
  flex: none;
  overflow: hidden;
  background: var(--asphalt-3)
}

.col img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.col figure:hover img {
  transform: scale(1.05)
}

.col figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 38px 18px 14px;
  background: linear-gradient(0deg, rgba(9, 10, 13, .92), transparent);
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: .35s var(--ease);
}

.col figcaption b {
  color: var(--amber);
  font-weight: 700
}

.col figure:hover figcaption {
  opacity: 1;
  transform: none
}

.rev-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap
}

.g-score {
  display: flex;
  align-items: center;
  gap: 20px
}

.g-score .g {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 34px;
  background: conic-gradient(#4285F4 0 25%, #EA4335 25% 50%, #FBBC05 50% 75%, #34A853 75% 100%);
  color: #fff;
  position: relative;
}

.g-score .g::after {
  content: "G";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #111A33;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #fff
}

.g-score .n {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1
}

.g-score .stars {
  color: var(--amber);
  font-size: 22px;
  letter-spacing: 4px
}

.g-score .lbl {
  font-family: var(--font-cond);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--grey)
}

.rev-marquee {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6% 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6% 94%, transparent);
}

.rev-marquee:hover .rev-track {
  animation-play-state: paused
}

.rev .r-stars {
  color: var(--amber);
  letter-spacing: 3px;
  font-size: 16px
}

.rev p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
  flex: 1
}

.rev footer {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--grey);
  display: flex;
  justify-content: space-between
}

.rev footer b {
  color: var(--white)
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px
}

.insurer-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.insurer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 14px 20px;
  height: 80px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .3s ease;
}

.insurer-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.insurer-logo-card img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: contrast(1.02);
  transition: transform .3s ease;
}

.insurer-logo-card:hover img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .insurer-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .insurer-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  .insurer-logo-card {
    height: 68px;
    padding: 10px 14px;
  }
  .insurer-logo-card img {
    max-height: 38px;
  }
  .insurer-logo-card:last-child:nth-child(odd) {
    grid-column: span 2;
    max-width: 220px;
    margin: 0 auto;
    width: 100%;
  }
}

.acc-card p strong {
  color: var(--amber)
}

.claws {
  position: absolute;
  right: -6%;
  top: -14%;
  width: 52%;
  height: 130%;
  pointer-events: none;
  opacity: .5;
  background: linear-gradient(64deg, transparent 42%, rgba(0, 178, 169, .16) 42.5% 45%, transparent 45.5%), linear-gradient(64deg, transparent 52%, rgba(0, 178, 169, .11) 52.5% 55.5%, transparent 56%), linear-gradient(64deg, transparent 62%, rgba(0, 178, 169, .07) 62.5% 66%, transparent 66.5%);
}

.eyebrow.teal {
  color: var(--teal)
}

.eyebrow.teal::before {
  background: var(--teal)
}

.panthers-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2
}

.panthers h2 {
  font-size: clamp(32px, 4.4vw, 68px);
  margin-top: 12px
}

.p-lead strong {
  color: var(--white)
}

.p-quote {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
  background: rgba(0, 178, 169, .05);
  color: var(--white);
  font-style: italic;
  font-size: 16.5px;
  max-width: 560px;
}

.p-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--teal)
}

.p-facts {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--line);
  max-width: 560px
}

.p-facts div {
  flex: 1;
  padding: 16px 18px;
  border-left: 1px solid var(--line)
}

.p-facts div:first-child {
  border-left: 0
}

.p-facts b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  display: block;
  color: var(--teal)
}

.p-facts span {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--grey)
}

.p-offer {
  background: linear-gradient(160deg, #101821 0%, #0B1219 70%);
  border: 1px solid rgba(0, 178, 169, .35);
  padding: 38px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 0 60px rgba(0, 178, 169, .1);
  --white: var(--night-white);
  --grey: var(--night-grey);
}

.p-offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--kwt-cyan) 60%, var(--amber))
}

.p-tag {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--teal)
}

.p-offer-big {
  font-family: var(--font-display);
  font-size: clamp(64px, 6vw, 100px);
  line-height: .9;
  color: var(--white)
}

.p-offer-big i {
  font-style: normal;
  color: var(--teal)
}

.p-offer .btn-call {
  margin-top: 10px;
  font-size: 20px;
  padding: 15px 26px;
  align-self: flex-start
}

.p-more {
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--kwt-cyan)
}

.p-more:hover {
  color: var(--white)
}

.cover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  align-items: center
}

.zones {
  display: flex;
  flex-direction: column
}

.zone {
  border-top: 1px solid var(--line);
  padding: 26px 8px;
  cursor: pointer;
  transition: background .3s;
}

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

.zone:hover,
.zone.active {
  background: rgba(255, 179, 0, .04)
}

.zone h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .3s
}

.zone:hover h3,
.zone.active h3 {
  color: var(--amber)
}

.zone h3 svg {
  width: 22px;
  height: 22px;
  opacity: .4
}

.zone p {
  color: var(--grey);
  font-size: 14.5px;
  margin-top: 8px;
  font-family: var(--font-cond);
  letter-spacing: .06em;
  text-transform: uppercase
}

.map-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  background: radial-gradient(85% 75% at 50% 38%, var(--kwt-blue-2) 0%, var(--kwt-blue) 55%, #1B1670 100%);
  border: 1px solid var(--night-line);
}

.map-box svg {
  width: 100%;
  height: auto;
  display: block
}

.boundary {
  fill: none;
  stroke: rgba(255, 179, 0, .45);
  stroke-width: 1.4;
  stroke-dasharray: .012 .011;
  stroke-dashoffset: 0;
}

.connector {
  fill: none;
  stroke: rgba(255, 196, 60, .75);
  stroke-width: 1.6;
  stroke-dasharray: .008 .014;
  stroke-linecap: round;
}

.node .dot {
  fill: var(--amber);
  stroke: #0B142F;
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
}

.node .halo {
  transform-box: fill-box;
  transform-origin: center;
  opacity: .75;
  transition: opacity .35s, transform .45s var(--ease);
}

.node .dot,
.node .map-lbl {
  transition: .35s var(--ease)
}

.node.lit .halo,
.node:hover .halo {
  opacity: 1;
  transform: scale(1.5)
}

.node.lit .dot,
.node:hover .dot {
  transform: scale(1.35);
  filter: drop-shadow(0 0 14px rgba(255, 179, 0, 1))
}

.node.lit .map-lbl,
.node:hover .map-lbl {
  fill: var(--amber)
}

#covMap.focused .node:not(.lit) {
  opacity: .3
}

.node.hq .pulse {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: hqpulse 2.2s ease-out infinite;
}

.map-lbl {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  fill: var(--white);
}

.hq-lbl {
  fill: var(--amber)
}

.sub-lbl {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  fill: var(--grey);
  text-transform: uppercase
}

.final {
  padding: 150px 0 160px;
  text-align: center;
  overflow: hidden;
  position: relative;
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  --grey-dim: var(--night-grey-dim);
  --asphalt: var(--kwt-blue);
  background: radial-gradient(70% 80% at 50% 115%, rgba(255, 179, 0, .16), transparent 65%), radial-gradient(90% 70% at 50% 10%, rgba(18, 102, 196, .4), transparent 70%), linear-gradient(160deg, var(--kwt-blue) 0%, #161257 100%);
}

.final h2 {
  font-size: clamp(38px, 5.8vw, 92px)
}

.final h2 em {
  font-style: normal;
  color: var(--amber)
}

.final .btn-call {
  margin-top: 44px;
  font-size: clamp(24px, 2.6vw, 34px);
  padding: 22px 44px
}

.final .sub-note {
  margin-top: 20px;
  font-family: var(--font-cond);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

.soc-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 22px;
  border: 0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}

.soc-card.ig {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%)
}

.soc-card.fb {
  background: #1877F2
}

.soc-card.gg {
  background: linear-gradient(135deg, #4285F4 0%, #EA4335 38%, #FBBC05 66%, #34A853 100%)
}

.soc-card svg {
  width: 28px;
  height: 28px
}

.soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.soc-card.ig .chip svg {
  color: #DD2A7B
}

.soc-card.fb .chip svg {
  color: #1877F2
}

.soc-card.gg .chip {
  position: relative
}

.soc-card.gg .chip svg {
  display: none
}

.soc-card.gg .chip::after {
  content: "G";
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  background: linear-gradient(45deg, #4285F4 20%, #EA4335 45%, #FBBC05 65%, #34A853 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.soc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28)
}

.soc-card div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1
}

.soc-card b {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.soc-card span {
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.soc-card em {
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  flex: none;
  margin-left: auto
}

.site-foot {
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  --grey-dim: var(--night-grey-dim);
  background: linear-gradient(180deg, var(--kwt-blue), #141050);
  border-top: 1px solid var(--night-line);
  padding: 70px 0 110px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px
}

.site-foot h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 18px
}

.site-foot a:hover {
  color: var(--amber)
}

.foot-tel {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  display: inline-block;
  margin-top: 14px
}

.foot-mail {
  display: block;
  margin-top: 6px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 16px;
  color: var(--kwt-cyan);
  transition: color .25s;
}

.foot-mail:hover {
  color: var(--amber)
}

.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.fs {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s;
}

.fs svg {
  width: 22px;
  height: 22px
}

.fs.ig {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%)
}

.fs.fb {
  background: #1877F2
}

.fs:hover {
  transform: translateY(-3px)
}

.fs.ig:hover {
  box-shadow: 0 8px 20px rgba(221, 42, 123, .35)
}

.fs.fb:hover {
  box-shadow: 0 8px 20px rgba(24, 119, 242, .35)
}

.float-call {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .02em;
  padding: 16px 26px;
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
  will-change: transform;
  animation: hazpulse 1.6s ease-in-out infinite;
}

.float-call svg {
  width: 20px;
  height: 20px;
  flex: none
}

.float-call small {
  display: block;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  line-height: 1.1;
  margin-bottom: 2px
}

.road-progress {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  height: 44vh;
  width: 2px;
  z-index: 940;
  background: repeating-linear-gradient(180deg, rgba(34, 30, 143, .3) 0 8px, transparent 8px 16px);
}

.road-progress .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  background: var(--amber)
}

.road-progress .mini-truck {
  position: absolute;
  left: -11px;
  top: 0;
  width: 26px;
  height: 26px;
  color: var(--amber);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 6px rgba(255, 179, 0, .55));
}

.rv {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity
}

.no-js .rv,
.reduced .rv {
  opacity: 1;
  transform: none
}

.accred-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.about-crumb {
  position: absolute;
  top: clamp(96px, 11vh, 128px);
  left: 0;
  z-index: 6;
  padding: 0 4vw 0 min(6vw, 90px);
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
}

.about-crumb a {
  color: var(--amber)
}

.about-crumb a:hover {
  text-decoration: underline
}

.about-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  display: block
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(5, 7, 18, .90) 0%, rgba(5, 7, 18, .78) 26%, rgba(5, 7, 18, .58) 52%, rgba(5, 7, 18, .46) 100%), linear-gradient(0deg, rgba(5, 7, 18, .55) 0%, transparent 34%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 170px 4vw 60px min(6vw, 90px);
  max-width: 760px
}

.about-hero .eyebrow {
  color: var(--amber)
}

.about-hero h1 {
  color: #F8F8F5;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  margin: 16px 0 10px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .4);
}

.about-hero h1 em {
  font-style: normal;
  color: var(--amber)
}

.about-est {
  position: absolute;
  top: clamp(90px, 11vh, 140px);
  right: min(6vw, 90px);
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  border: 1.5px solid rgba(255, 179, 0, .7);
  border-radius: 999px;
  padding: 11px 26px;
  background: rgba(5, 7, 18, .42);
  backdrop-filter: blur(3px);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12.5px;
  color: #E8EDF8;
}

.about-est b {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .04em;
  color: var(--amber)
}

.about-hero-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 6px 0 22px
}

.about-hero-stat b {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--amber);
  font-size: clamp(72px, 10vw, 150px);
  line-height: .82;
  letter-spacing: .01em;
}

.about-hero-stat b i {
  font-style: normal;
  font-size: .62em
}

.about-hero-stat span {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(12px, 1.1vw, 15px);
  color: #F1F4FB;
  line-height: 1.35;
}

.about-hero p {
  color: #D7DEF2;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 34px
}

.about-hero-points {
  list-style: none;
  margin: 0;
  padding: 26px 0 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 clamp(20px, 2.6vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, .22);
  width: max-content;
  max-width: calc(100vw - min(6vw, 90px) - 4vw);
}

.about-hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(13.5px, 1.05vw, 15.5px);
  color: #F1F4FB;
}

.about-hero-points .ahp-icon {
  flex: none;
  width: clamp(32px, 2.6vw, 40px);
  height: clamp(32px, 2.6vw, 40px);
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

.about-hero-points .ahp-icon svg {
  width: clamp(15px, 1.2vw, 18px);
  height: clamp(15px, 1.2vw, 18px)
}

.story {
  padding: 100px 0 110px;
  background: var(--asphalt)
}

.story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start
}

.big-figure {
  font-family: var(--font-display);
  font-size: clamp(150px, 15vw, 260px);
  line-height: .8;
  color: var(--kwt-blue);
}

.big-figure-label {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--white);
  margin-top: -6px;
}

.story-badges {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.story-badges li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--white);
  background: var(--asphalt-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  padding: 18px 24px;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(-90px);
  transition: transform .7s cubic-bezier(.16, .8, .24, 1), opacity .7s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.story-badges li.in {
  opacity: 1;
  transform: translateX(0)
}

.story-badges li svg {
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--amber)
}

.story-badges li span {
  color: var(--white);
  font-weight: 700
}

.story-badges li:hover {
  transform: translateX(10px);
  border-left-color: var(--amber-hot, var(--amber));
  background: var(--asphalt-2);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .5);
}

.story-badges li.in:hover {
  transform: translateX(10px)
}

.story-copy h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px);
  margin-bottom: 22px
}

.story-copy p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 640px
}

.story-copy p strong {
  color: var(--white)
}

.story-quote {
  margin-top: 22px;
  padding: 24px 30px;
  border-left: 3px solid var(--amber);
  background: var(--asphalt-3);
  color: var(--white);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  max-width: 640px;
}

.story-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--kwt-blue-2);
}

.timeline-section {
  padding: 140px 0 130px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(65% 70% at 82% 12%, rgba(255, 255, 255, .07), transparent 62%), linear-gradient(160deg, #231E92 0%, #1B1670 100%)
}

.timeline-section>.wrap {
  position: relative;
  z-index: 2
}

.tl-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform
}

.tl-bg-route {
  position: absolute;
  left: -5%;
  right: -5%;
  top: 34%;
  width: 110%;
  height: 240px;
  opacity: .16
}

.tl-bg-route path {
  fill: none;
  stroke: var(--kwt-blue-2);
  stroke-width: 3;
  stroke-dasharray: 15 13
}

.tl-route-path {
  animation: tlRoadFlow 30s linear infinite
}

@keyframes tlRoadFlow {
  from {
    stroke-dashoffset: 0
  }

  to {
    stroke-dashoffset: -300
  }
}

.tl-bg-watermark {
  position: absolute;
  right: 1%;
  bottom: -8%;
  font-family: var(--font-display);
  font-size: clamp(90px, 15vw, 230px);
  color: #FFFFFF;
  opacity: .045;
  white-space: nowrap;
  letter-spacing: .01em;
  line-height: 1;
}

.timeline-head {
  max-width: 640px;
  margin-bottom: 64px
}

.timeline-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px)
}

.timeline-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

/* Timeline Layout & Animated Track */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.tl-track {
  position: absolute;
  top: 13px;
  left: 12px;
  right: 12px;
  height: 3px;
  z-index: 1;
  pointer-events: none
}

.tl-track-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 179, 0, .22);
  border-radius: 3px
}

.tl-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--amber) 0%, #FFD54A 100%);
  box-shadow: 0 0 16px rgba(255, 179, 0, .7);
  border-radius: 3px;
  transition: width 1.6s cubic-bezier(.25, 1, .5, 1)
}

.tl-track-glow {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 0 14px 4px rgba(255, 213, 74, .95), 0 0 24px 6px rgba(255, 179, 0, .7);
  opacity: 0;
  transition: opacity .3s ease
}

.timeline.is-animating .tl-track-glow {
  opacity: 1
}

/* Timeline Milestones */
.tl-item {
  position: relative;
  padding-top: 44px;
  padding-right: 28px;
  cursor: default;
  transition: transform .35s ease
}

.tl-item:last-child {
  text-align: left;
  padding-right: 24px
}

.tl-dot-wrap {
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3
}

.tl-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px #231E92, 0 4px 12px rgba(0, 0, 0, .45);
  transform: scale(0);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), background .3s ease, box-shadow .3s ease
}

.tl-dot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  opacity: 0;
  pointer-events: none
}

.tl-item.is-active .tl-dot {
  transform: scale(1);
  background: var(--amber);
  box-shadow: 0 0 0 4px #231E92, 0 0 20px rgba(255, 179, 0, .85)
}

.tl-item.is-active .tl-dot-ring {
  animation: tlDotPing 1.2s cubic-bezier(0, 0, .2, 1) forwards
}

@keyframes tlDotPing {
  0% {
    transform: scale(.5);
    opacity: .95
  }

  50% {
    opacity: .6
  }

  100% {
    transform: scale(2.4);
    opacity: 0
  }
}

/* Year Number */
.tl-year {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 54px);
  color: #F8F8F5;
  line-height: 1;
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px) scale(.85);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1), color .3s ease, text-shadow .3s ease
}

.tl-item.is-active .tl-year {
  opacity: 1;
  transform: translateY(0) scale(1)
}

/* Titles & Descriptions */
.tl-title {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 16px;
  color: var(--white);
  margin: 10px 0 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1) .1s, transform .6s cubic-bezier(.22, 1, .36, 1) .1s, color .3s ease
}

.tl-desc {
  color: var(--grey);
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1) .18s, transform .6s cubic-bezier(.22, 1, .36, 1) .18s, color .3s ease
}

.tl-item.is-active .tl-title,
.tl-item.is-active .tl-desc {
  opacity: 1;
  transform: translateY(0)
}

/* Hover & Interactive Polish */
.tl-item:hover {
  transform: translateY(-4px)
}

.tl-item:hover .tl-dot {
  transform: scale(1.25);
  background: #FFD54A;
  box-shadow: 0 0 0 4px #231E92, 0 0 24px rgba(255, 213, 74, 1)
}

.tl-item:hover .tl-year {
  color: var(--amber);
  text-shadow: 0 4px 20px rgba(255, 179, 0, .45)
}

.tl-item:hover .tl-title {
  color: #FFF
}

.tl-item:hover .tl-desc {
  color: #E2E8F4
}

.values {
  padding: 100px 0 120px;
  background: radial-gradient(60% 65% at 8% 100%, rgba(41, 140, 224, .22), transparent 62%), linear-gradient(150deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.values-head {
  max-width: 640px;
  margin-bottom: 56px
}

.values-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px)
}

.values-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.value-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 0;
  padding: 0;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 26px 54px -22px rgba(4, 8, 22, .65);
}

.value-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(6, 8, 20, .95) 0%, rgba(6, 8, 20, .82) 26%, rgba(6, 8, 20, .30) 58%, rgba(6, 8, 20, .10) 78%, rgba(6, 8, 20, .28) 100%);
}

.value-card .vc-num {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 4.6vw, 80px);
  color: #F8F8F5;
  line-height: .9;
  letter-spacing: .01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .45);
}

.value-card .vc-body {
  position: relative;
  z-index: 2;
  padding: 0 26px 26px
}

.value-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: .02em;
  color: #F8F8F5;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px
}

.value-card p {
  color: #D2DAEC;
  font-size: 14.5px;
  line-height: 1.62
}

.local-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: linear-gradient(150deg, #231E92 0%, #1B1670 100%);
}

.local-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2
}

.local-photos {
  position: relative;
  padding-bottom: 56px
}

.local-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 7/8;
  box-shadow: 0 36px 70px -26px rgba(3, 6, 20, .75);
}

.local-photo-inset {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 56%;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1/1;
  border: 7px solid #231E92;
  box-shadow: 0 26px 54px -20px rgba(3, 6, 20, .8);
}

.local-photo-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.local-copy {
  position: relative;
  z-index: 2
}

.local-copy .eyebrow {
  color: var(--amber)
}

.local-copy h2 {
  color: #F8F8F5;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.03;
  margin: 16px 0 24px
}

.local-copy p {
  color: #C3CDE6;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 660px
}

.local-copy p strong {
  color: var(--amber);
  font-weight: 700
}

.local-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 7px;
  transition: color .25s, gap .25s;
}

.local-link:hover {
  color: var(--amber-hot);
  gap: 18px
}

.local-watermark {
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: clamp(180px, 26vw, 420px);
  line-height: .8;
  color: #FFFFFF;
  opacity: .035;
  letter-spacing: .02em;
  white-space: nowrap;
}

.local-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .85), transparent);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-accred {
  --white: var(--night-white);
  --grey: var(--night-grey);
  --line: var(--night-line);
  background: radial-gradient(60% 65% at 90% 0%, rgba(41, 140, 224, .30), transparent 62%), radial-gradient(45% 55% at 5% 100%, rgba(18, 102, 196, .18), transparent 60%), linear-gradient(150deg, #231E92 0%, #1B1670 100%);
  padding: 100px 0 110px;
}

.about-accred .eyebrow {
  color: var(--amber)
}

.careers {
  padding: 100px 0 120px;
  background: var(--asphalt-2);
  border-top: 1px solid var(--line);
  overflow: hidden
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  margin-bottom: 60px
}

.careers-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
  box-shadow: 0 36px 72px -26px rgba(3, 6, 20, .7)
}

.careers-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.careers-points {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px
}

.careers-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: baseline
}

.careers-points .cp-num {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--amber);
  line-height: 1.2
}

.careers-points b {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .01em;
  color: #F8F8F5;
  line-height: 1.2
}

.careers-points li>span:not(.cp-num) {
  grid-column: 2;
  grid-row: 2;
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.6
}

.careers-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  background: var(--amber);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: .02em;
  padding: 18px 40px;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: background .25s, gap .25s;
}

.careers-cta:hover {
  background: var(--amber-hot);
  gap: 22px
}

.careers-head {
  max-width: 560px
}

.careers-head .eyebrow {
  color: var(--amber)
}

.careers-head h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 54px);
  margin: 16px 0 20px;
  line-height: 1.08
}

.careers-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.careers-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0
}

.careers-quote {
  position: relative;
  margin: 34px 0 0;
  padding: 24px 30px 22px 28px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, .055);
  color: #EEF2FB;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  max-width: 660px;
}

.careers-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: #A8B6D6
}

.careers-badges {
  display: flex;
  flex-wrap: wrap;
  background: var(--asphalt-3);
  border: 1px solid var(--line);
  margin-bottom: 64px;
}

.cb-item {
  flex: 1 1 190px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.cb-item:last-child {
  border-right: 0
}

.cb-item .cb-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 179, 0, .14);
  display: grid;
  place-items: center;
  color: var(--amber)
}

.cb-icon svg {
  width: 22px;
  height: 22px
}

.cb-item b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 14.5px;
  color: var(--white);
  line-height: 1.25
}

.cb-item span {
  display: block;
  font-size: 12.5px;
  color: var(--grey-dim);
  margin-top: 3px;
  line-height: 1.4
}

.careers-form-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 40px;
  align-items: stretch
}

.careers-form-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px
}

.careers-form-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease)
}

.careers-form-photo:hover img {
  transform: scale(1.05)
}

.careers-form-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 10, 20, .6) 0%, transparent 55%)
}

.careers-form-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.app-form {
  background: var(--asphalt);
  border: 2px solid var(--amber);
  padding: 44px min(6vw, 56px);
  max-width: none;
}

.app-form h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px
}

.app-form .form-sub {
  color: var(--grey-dim);
  font-size: 14px;
  margin-bottom: 30px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

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

.form-field label {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--white)
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--asphalt-2);
  color: var(--white);
  border-radius: 3px;
  outline: none;
  transition: border-color .2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--kwt-blue-2)
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body)
}

.form-note {
  font-size: 13px;
  color: var(--grey-dim);
  margin-top: 4px;
  line-height: 1.5
}

.form-submit {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .02em;
  padding: 16px 38px;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: background .25s;
}

.form-submit:hover {
  background: var(--amber-hot)
}

.form-status {
  margin-top: 14px;
  font-family: var(--font-cond);
  font-size: 14px;
  color: var(--kwt-blue-2);
  display: none
}

.form-status.show {
  display: block
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.jobs-section {
  padding: 100px 0 110px;
  background: var(--asphalt-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden
}

.jobs-head {
  max-width: 640px;
  margin-bottom: 40px
}

.jobs-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px)
}

.jobs-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.jobs-scroller {
  position: relative;
  width: min(1100px, 88vw);
  margin: 0 auto
}

.jobs-stage {
  position: relative;
  overflow: hidden;
  background: var(--asphalt-3);
  aspect-ratio: 16/9
}

.job-card {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1)
}

.job-card.active {
  opacity: 1;
  visibility: visible
}

.job-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.job-card figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: min(74%, 420px);
  padding: 15px 22px;
  border-radius: 4px;
  background: rgba(16, 20, 44, .82);
  backdrop-filter: blur(4px);
  color: #fff;
}

.job-card figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.25
}

.job-card figcaption span {
  display: block;
  font-family: var(--font-cond);
  font-size: 12.5px;
  color: #B9C6E8;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px
}

.jobs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -10px rgba(4, 8, 22, .7);
  transition: background .25s, color .25s;
}

.jobs-arrow svg {
  width: 22px;
  height: 22px
}

.jobs-arrow:hover {
  background: var(--amber);
  color: var(--kwt-blue)
}

.jobs-arrow.prev {
  left: -28px
}

.jobs-arrow.next {
  right: -28px
}

.jobs-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 22px
}

.jobs-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .32);
  transition: width .3s, background .3s
}

.jobs-dot.active {
  width: 30px;
  background: var(--amber)
}

.heritage {
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 65% at 92% 6%, rgba(41, 140, 224, .20), transparent 62%), linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%);
}

.heritage-head {
  max-width: 660px;
  margin-bottom: 52px
}

.heritage-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
  margin: 14px 0 18px
}

.heritage-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.heritage-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  max-width: 580px
}

.heritage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.hx-pair {
  margin: 0
}

.hx-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  position: relative
}

.hx-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--asphalt-3)
}

.hx-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

.hx-pair:hover .hx-shot img {
  transform: scale(1.05)
}

.hx-then img {
  filter: sepia(.34) saturate(.85) contrast(.95) brightness(.96)
}

.hx-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 10.5px;
  padding: 5px 11px;
  border-radius: 2px;
}

.hx-then .hx-tag {
  background: rgba(8, 10, 24, .78);
  color: #E9D9B8
}

.hx-now .hx-tag {
  background: var(--amber);
  color: var(--ink)
}

.hx-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px -4px rgba(4, 8, 22, .6);
}

.hx-arrow svg {
  width: 16px;
  height: 16px
}

.hx-cap {
  padding: 16px 2px 0
}

.hx-cap b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 16px;
  color: #F8F8F5
}

.hx-cap span {
  display: block;
  color: var(--grey);
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: 6px
}

.training-section {
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.training-head {
  max-width: 640px;
  margin-bottom: 44px
}

.training-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04
}

.training-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 600px
}

.training-scroller {
  position: relative;
  padding: 0 min(4vw, 64px)
}

.training-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.training-track::-webkit-scrollbar {
  display: none
}

.train-card {
  flex: 0 0 clamp(280px, 25vw, 375px);
  scroll-snap-align: start;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 5/6;
  box-shadow: 0 26px 54px -22px rgba(3, 6, 20, .7);
}

.train-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

.train-card:hover img {
  transform: scale(1.05)
}

.train-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 20, .94) 0%, rgba(6, 8, 20, .62) 24%, rgba(6, 8, 20, .10) 52%, transparent 70%);
}

.train-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff
}

.train-card figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.2;
}

.train-card figcaption span {
  display: block;
  color: #CDD6EB;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 7px
}

.training-arrow {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -10px rgba(4, 8, 22, .7);
  transition: background .25s, color .25s;
}

.training-arrow svg {
  width: 20px;
  height: 20px
}

.training-arrow:hover {
  background: var(--amber);
  color: var(--kwt-blue)
}

.training-arrow.prev {
  left: 8px
}

.training-arrow.next {
  right: 8px
}

.team-head {
  max-width: 640px;
  margin-bottom: 48px
}

.team-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px)
}

.team-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.team-photo.placeholder {
  background: repeating-linear-gradient(135deg, var(--asphalt-3), var(--asphalt-3) 12px, var(--asphalt-2) 12px, var(--asphalt-2) 24px);
  border: 1.5px dashed rgba(18, 48, 90, .28);
  color: var(--grey-dim);
}

.team-photo.placeholder svg {
  width: 38%;
  height: 38%
}

.team-card b {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  color: var(--white)
}

.team-card span {
  font-family: var(--font-cond);
  font-size: 13.5px;
  color: var(--grey-dim)
}

.team-note {
  margin-top: 36px;
  text-align: center;
  color: var(--grey-dim);
  font-size: 13.5px;
  font-style: italic
}

.svc-hero-scrim,
.hero2-scrim,
.rec-hero-scrim,
.panthers-hero-scrim,
.about-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 5, 14, .85) 0%, rgba(3, 5, 14, .68) 28%, rgba(3, 5, 14, .32) 48%, rgba(3, 5, 14, .06) 62%, transparent 72%);
}

.svc-hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(3, 5, 14, .55);
  backdrop-filter: blur(6px)
}

.svc-hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.svc-hero-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px clamp(16px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, .14)
}

.svc-hero-strip-item:first-child {
  border-left: 0
}

.svc-hero-strip-item svg {
  flex: none;
  width: 30px;
  height: 30px;
  color: var(--amber)
}

.svc-hero-strip-item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: #F8F8F5;
  line-height: 1
}

.svc-hero-strip-item i {
  font-style: normal
}

.svc-hero-strip-item span {
  display: block;
  font-family: var(--font-cond);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px
}

.svc-crumb a {
  color: var(--amber)
}

.svc-hero-inner .eyebrow {
  color: var(--amber)
}

.svc-hero-inner h1 em {
  font-style: normal;
  color: var(--amber)
}

.svc-intro {
  padding: 80px 0 90px;
  background: linear-gradient(120deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.svc-intro .wrap {
  max-width: 900px
}

.svc-intro p {
  color: var(--grey);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px
}

.svc-intro p strong {
  color: var(--white)
}

.svc-intro .cta-line {
  margin-top: 28px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 20px;
  color: var(--amber)
}

.handle-section {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden
}

.handle-head {
  max-width: 680px;
  margin-bottom: 36px
}

.handle-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

.handle-head p {
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.handle-scroller {
  position: relative
}

.handle-track::-webkit-scrollbar {
  display: none
}

.handle-arrow svg {
  width: 24px;
  height: 24px
}

.handle-hint {
  font-family: var(--font-cond);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim);
  margin-top: 14px;
  display: block
}

.svc-block {
  padding: 100px 0;
  background: linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 100%)
}

.svc-block.alt {
  background: linear-gradient(200deg, #1B1670 0%, var(--kwt-blue) 100%)
}

.svc-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.svc-block.reverse .svc-block-grid {
  direction: rtl
}

.svc-block.reverse .svc-block-grid>* {
  direction: ltr
}

.svc-block-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

.svc-block-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 22px 0 26px
}

.svc-block-list li svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--amber);
  margin-top: 3px
}

.svc-block-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(6, 10, 24, .5)
}

.svc-block .btn-call {
  margin-top: 8px
}

.recent-jobs-head {
  max-width: 640px;
  margin-bottom: 44px
}

.recent-jobs-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px)
}

.recent-jobs-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 14px;
  line-height: 1.6
}

.rj-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.rj-slide figcaption span {
  display: block;
  font-family: var(--font-cond);
  font-size: 13px;
  color: #C7D2EA;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 3px
}

.rj-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px
}

.rj-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: .25s
}

.rj-dots button.active {
  background: var(--amber);
  width: 26px;
  border-radius: 5px
}

.why-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

.why-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.why-card {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120px 120px at var(--mx, 50%) var(--my, 0%), rgba(255, 179, 0, .16), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}

.why-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--amber);
  box-shadow: 0 24px 44px -18px rgba(6, 10, 30, .55);
}

.why-card:hover::after {
  opacity: 1
}

.why-card .wc-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 50px);
  color: var(--amber);
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 19px;
  color: #F8F8F5;
  margin-bottom: 2px
}

.why-card p {
  color: #C7D2EA;
  font-size: 15px;
  line-height: 1.6
}

.why-card:nth-child(4) {
  grid-column: 1/2
}

.why-card:nth-child(5) {
  grid-column: 2/4
}

.faq-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px)
}

.faq-q svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--kwt-blue-2);
  transition: transform .3s
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 170px);
  gap: 14px;
  margin-bottom: 40px;
}

.wall-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 40px -18px rgba(6, 8, 22, .6)
}

.wall-item:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3
}

.wall-item:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1/2
}

.wall-item:nth-child(3) {
  grid-column: 4/5;
  grid-row: 1/3
}

.wall-item:nth-child(4) {
  grid-column: 3/4;
  grid-row: 2/3
}

.wall-item:hover img {
  transform: scale(1.09)
}

.wall-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 22, .82) 0%, rgba(6, 8, 22, .1) 46%, transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
}

.wall-item:hover::after {
  opacity: 1
}

.wall-cap {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  color: #fff;
  z-index: 1;
}

.wall-item:hover .wall-cap {
  transform: translateY(0);
  opacity: 1
}

.wall-cap b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 15px
}

.wall-cap span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  margin-top: 2px
}

.wall-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 8, 22, .55);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  color: var(--amber);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 1;
}

.wall-item:hover .wall-badge {
  opacity: 1;
  transform: scale(1)
}

.wall-badge svg {
  width: 16px;
  height: 16px
}

.svc-final,
.final {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  text-align: center;
  background: #0B1130;
}

.svc-final .final-bg,
.final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.svc-final .final-bg img,
.final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

.svc-final .final-scrim,
.final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

.svc-final>.wrap,
.final>.wrap {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.svc-final .eyebrow {
  color: var(--amber);
  justify-content: center
}

.social-head {
  max-width: 640px;
  margin-bottom: 44px
}

.svc-accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(145deg, #1B1670 0%, var(--kwt-blue) 100%);
  padding: 90px 0 100px;
}

.svc-accred .eyebrow {
  color: var(--amber)
}

.trust-ticker {
  background: var(--amber);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(18, 48, 90, .15);
  border-bottom: 1px solid rgba(18, 48, 90, .15);
  position: relative;
  width: 100%;
}

.trust-ticker-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: trustTicker 32s linear infinite;
}

.trust-ticker:hover .trust-ticker-track {
  animation-play-state: paused;
}

.trust-ticker-track span {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--kwt-blue);
}

.trust-ticker-track i {
  font-style: normal;
  color: var(--ink);
  font-size: 12px;
  opacity: .5
}

.areas-section {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 70% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue) 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center
}

.areas-head {
  max-width: 480px
}

.areas-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 46px);
  margin-top: 14px
}

.areas-head p {
  color: var(--grey);
  font-weight: 600;
  font-size: 16px;
  margin-top: 16px;
  line-height: 1.6
}

.areas-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px
}

.areas-note {
  color: var(--grey-dim);
  font-size: 13.5px;
  max-width: 280px;
  line-height: 1.5
}

.areas-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.area-card {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 20px 22px;
  transition: transform .3s var(--ease), border-color .3s;
}

.area-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber)
}

.area-card .pin {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 179, 0, .14);
  display: grid;
  place-items: center;
  color: var(--amber);
}

.area-card .pin svg {
  width: 19px;
  height: 19px
}

.area-card span {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 16px;
  color: #F8F8F5
}

.area-card.wide {
  grid-column: 1/-1
}

.kwt-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s cubic-bezier(.22, 1, .36, 1), height .25s cubic-bezier(.22, 1, .36, 1), background-color .25s, border-color .25s, opacity .2s;
  opacity: 0;
}

.kwt-cursor.active {
  opacity: 1
}

.kwt-cursor.hover {
  width: 42px;
  height: 42px;
  background: rgba(255, 179, 0, .12);
  border: 1.5px solid var(--amber);
}

.kwt-cursor.call {
  width: 56px;
  height: 56px;
  background: rgba(255, 179, 0, .85);
  border: 0;
}

#towCable {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity .25s;
}

#towCable.active {
  opacity: 1
}

#towCable path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2;
  stroke-dasharray: 7 7;
  filter: drop-shadow(0 0 4px rgba(255, 179, 0, .5));
}

#towCable circle {
  fill: var(--amber)
}

.contact-info-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(150deg, #1B1670 0%, var(--kwt-blue) 100%);
}

.contact-info-section .ci-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.ci-panel {
  position: relative;
  z-index: 1;
  background: radial-gradient(70% 80% at 0% 0%, rgba(255, 255, 255, .08), transparent 60%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue) 100%);
  padding: 96px clamp(34px, 4vw, 64px) 96px max(4vw, calc((100vw - 1240px)/2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ci-head {
  max-width: 520px;
  margin-bottom: 34px
}

.ci-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 46px);
  margin-top: 14px;
  line-height: 1.04
}

.ci-head p {
  color: #C7D2EA;
  font-weight: 400;
  font-size: 15.5px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 470px
}

.ci-list {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  border-top: 1px solid rgba(255, 255, 255, .16)
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  transition: none;
}

.ci-item:hover {
  transform: none
}

.ci-item .ci-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 179, 0, .14);
  display: grid;
  place-items: center;
  color: var(--amber);
}

.ci-item .ci-icon svg {
  width: 19px;
  height: 19px
}

.ci-body {
  flex: 1;
  min-width: 0
}

.ci-item h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 3px;
}

.ci-sub {
  display: block;
  color: #A8B6D6;
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 3px;
  font-weight: 400
}

.ci-item p,
.ci-item .ci-val,
.ci-item .ci-val a {
  color: #F8F8F5;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: .01em;
}

.ci-item .ci-val a {
  text-decoration: none
}

.ci-item .ci-val a:hover {
  color: var(--amber)
}

.ci-action {
  flex: none;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--amber);
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s, transform .25s;
}

.ci-action:hover {
  color: var(--amber-hot);
  transform: translateX(3px)
}

.ci-map {
  position: relative;
  min-height: 560px;
  border: 0;
  overflow: hidden;
  background: var(--asphalt-2);
  margin: 0
}

.ci-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.12) saturate(1.15)
}

.ci-map-card {
  position: absolute;
  left: 26px;
  bottom: 44px;
  z-index: 2;
  max-width: 265px;
  background: rgba(14, 18, 32, .92);
  backdrop-filter: blur(3px);
  padding: 18px 20px 16px;
  box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .6);
}

.ci-map-card b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: #F8F8F5;
  margin-bottom: 8px;
}

.ci-map-card span {
  display: block;
  color: #C7D2EA;
  font-size: 13.5px;
  line-height: 1.5
}

.ci-map-card a {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--amber);
  text-decoration: none;
}

.ci-map-card a:hover {
  color: var(--amber-hot)
}

.quote-section p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

.quote-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

.team-copy .eyebrow {
  color: var(--amber)
}

.team-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 48px);
  margin: 14px 0 18px
}

.team-copy p {
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px
}

.team-photo img {
  width: 100%;
  display: block
}

.team-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-section {
  padding: 100px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-section .eyebrow {
  color: var(--amber);
  justify-content: center
}

.review-section h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px);
  margin: 16px 0 14px
}

.review-section p {
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6
}

.review-stars {
  font-size: 32px;
  color: var(--amber);
  letter-spacing: 4px;
  margin-bottom: 18px
}

.review-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.svc-links-section {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.svc-link-card {
  display: block;
  text-decoration: none;
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 24px 26px;
  height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}

.svc-link-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber)
}

.svc-link-card .sl-img {
  margin: 0 -24px 18px;
  position: relative;
  overflow: hidden;
  height: 160px;
  flex: none;
  background: var(--asphalt)
}

.svc-links-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--amber);
  text-decoration: none;
  transition: color .25s, transform .25s;
}

.svc-links-all:hover {
  color: var(--amber-hot);
  transform: translateX(3px)
}

.svc-link-card .sl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.svc-link-card .sl-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

.svc-link-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

.svc-link-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

.svc-link-card p {
  color: #C7D2EA;
  font-size: 14px;
  line-height: 1.5;
  flex: 1
}

.svc-link-card em {
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--amber)
}

.need-section {
  padding: 100px 0 110px;
  background: #F4F6FA
}

.need-head {
  max-width: 680px;
  margin-bottom: 36px
}

.need-head .eyebrow {
  color: #1866C4
}

.need-head h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 44px)
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.need-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border-top: 3px solid var(--amber);
  padding: 20px 20px 24px;
  transition: transform .3s var(--ease);
}

.need-card:hover {
  transform: translateY(-6px)
}

.need-card .need-img {
  margin: -20px -20px 16px;
  height: 150px;
  overflow: hidden;
  position: relative;
  background: var(--asphalt)
}

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

.need-card .need-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 55%, rgba(18, 32, 71, .55) 100%)
}

.need-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 12.5px
}

.need-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 16px;
  color: #F8F8F5;
  line-height: 1.25;
  margin: 8px 0 8px
}

.need-card p {
  color: #C7D2EA;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 14px
}

.need-card em {
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--amber)
}

.quote-section>.wrap>.quote-head>p {
  color: var(--slate) !important
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0 48px;
  align-items: stretch;
  grid-template-areas: "head head" "form side";
}

.quote-head {
  grid-area: head;
  max-width: 760px;
  margin-bottom: 26px
}

.quote-col {
  grid-area: form;
  display: flex;
  flex-direction: column
}

.quote-head .eyebrow {
  color: #1866C4
}

.quote-head h2 {
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 12px 0 14px
}

.quote-head>p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 640px
}

.quote-form {
  background: #fff;
  padding: 32px;
  box-shadow: 0 20px 50px -25px rgba(6, 10, 24, .3)
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px
}

.quote-form label {
  display: flex;
  flex-direction: column;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #2E3850;
  gap: 8px
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  padding: 12px 14px;
  border: 1px solid #D8DEE9;
  background: #F8F9FC;
  color: var(--ink);
}

.qf-full {
  margin-bottom: 6px
}

.qf-note {
  font-size: 13px;
  line-height: 1.55;
  color: #4A5570;
  margin-bottom: 20px
}

.btn-submit {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--amber);
  color: var(--ink);
  border: none;
  padding: 16px 30px;
  cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.qf-cta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border-left: 4px solid var(--amber);
  padding: 22px 26px;
  box-shadow: 0 16px 40px -26px rgba(6, 10, 24, .45);
}

.qf-cta-copy b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}

.qf-cta-copy span {
  display: block;
  color: #4A5570;
  font-size: 14px;
  line-height: 1.55
}

.qf-cta .btn-call {
  flex: none;
  margin: 0;
  font-size: clamp(19px, 1.7vw, 23px);
  padding: 15px 28px
}

.qs-card {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  flex: 1 1 0
}

.qs-card figure {
  flex: 0 0 clamp(140px, 17vw, 210px);
  overflow: hidden;
  margin: 0
}

.qs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.qs-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.qs-red .qs-body {
  background: var(--pnr-red, #A30B33)
}

.qs-blue .qs-body {
  background: var(--kwt-blue)
}

.qs-body h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 19px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px
}

.qs-body p {
  color: #E4E9F5;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1
}

.qs-body span,
.qs-body em {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff
}

.team-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.team-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.team-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 10, 24, .82) 0%, rgba(6, 10, 24, .45) 50%, rgba(6, 10, 24, .12) 100%)
}

.team-section>.wrap {
  position: relative;
  z-index: 1
}

.team-section .team-copy {
  max-width: 640px
}

.team-section .team-copy p {
  color: #E4E9F5
}

.svc-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(245, 245, 242, .12);
}

.hero-glow.b {
  left: auto;
  right: 8%;
  bottom: 4%;
  width: 360px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 32, 32, .4) 0%, rgba(255, 120, 26, .2) 40%, transparent 70%);
  animation-delay: 1.1s;
  animation-duration: 2.6s;
}

.svc-trust li:last-child {
  border: none;
  margin-right: 0;
  padding-right: 0
}

.svc-trust li b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  color: #F8F8F5;
  line-height: 1
}

.svc-trust li b i {
  font-style: normal;
  color: var(--amber)
}

.hero2-stat-icon {
  flex: none;
  width: 30px;
  height: 30px;
  color: var(--amber)
}

.handle-card:hover {
  transform: translateY(-6px)
}

.handle-card:hover .handle-img img {
  transform: scale(1.06)
}

.svc-block-photo:hover figcaption {
  transform: translateY(-3px);
  background: rgba(14, 17, 38, .82)
}

.rj-slide:hover figcaption,
.rj-slide.active figcaption {
  transform: translateY(-3px);
  background: rgba(14, 17, 38, .82)
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  grid-template-areas: "left visual" "cta cta";
  gap: 34px 48px;
  align-items: stretch;
  position: relative
}

.faq-left {
  grid-area: left;
  align-self: start
}

.faq-head p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.6;
  margin-top: 14px
}

.faq-item.open,
.faq-item:hover {
  border-color: rgba(255, 179, 0, .45);
  background: rgba(255, 255, 255, .055)
}

.faq-q-text {
  flex: 1;
  min-width: 0;
  text-align: left
}

.faq-item.open .faq-plus svg {
  transform: rotate(45deg)
}

.faq-visual {
  grid-area: visual;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  align-self: stretch;
  min-height: 0;
  width: 100%;
  margin: 0;
  border: 5px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 50px -16px rgba(6, 10, 30, .6);
  z-index: 1;
}

.faq-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.faq-cta-left {
  display: flex;
  align-items: center;
  gap: 16px
}

.faq-cta-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue)
}

.faq-cta-icon svg {
  width: 23px;
  height: 23px
}

.faq-cta-left b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  color: var(--kwt-blue)
}

.faq-cta-left span {
  display: block;
  color: var(--kwt-blue);
  opacity: .75;
  font-size: 14px;
  margin-top: 2px
}

.faq-cta-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(34, 30, 143, .25)
}

.faq-cta-call {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.faq-cta-call>span {
  color: var(--kwt-blue);
  opacity: .75;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.faq-cta-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--kwt-blue);
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 24px)
}

.faq-cta-call a svg {
  width: 18px;
  height: 18px;
  color: var(--kwt-blue)
}

.faq-cta-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  background: var(--kwt-blue);
  padding: 15px 26px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: background .25s;
}

.faq-cta-btn:hover {
  background: var(--kwt-blue-2)
}

.faq-cta-btn svg {
  width: 16px;
  height: 16px
}

.industries-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin-top: 14px
}

.iv-photo.a {
  width: 72%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-70px)
}

.iv-photo.b {
  width: 46%;
  height: 56%;
  right: 0;
  top: 0;
  transform: translateX(70px) translateY(-30px);
  border: 4px solid var(--asphalt);
  z-index: 2
}

.iv-photo.c {
  width: 40%;
  height: 44%;
  right: 6%;
  bottom: 0;
  transform: translateY(70px);
  border: 4px solid var(--asphalt);
  z-index: 2
}

.industries-visual.in .iv-photo {
  opacity: 1;
  transform: none
}

.industries-visual.in .iv-photo.b {
  transition-delay: .15s
}

.industries-visual.in .iv-photo.c {
  transition-delay: .3s
}

.accred-grid .acc-card.reveal {
  opacity: 0;
  transform: scale(.8) rotate(-7deg);
  transition: opacity .5s ease, transform .6s cubic-bezier(.34, 1.56, .64, 1)
}

.accred-grid .acc-card.reveal.in {
  opacity: 1;
  transform: none
}

.accred-grid .acc-card.reveal.in .acc-seal {
  opacity: 1;
  transform: none
}

.reduced .svc-final::before {
  animation: none
}

.svc-final h2 em {
  font-style: normal;
  color: var(--amber)
}

.svc-final .btn-call {
  animation: hazpulse 2.2s ease-in-out infinite
}

.reduced .svc-final .btn-call {
  animation: none
}

.areas-map {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 380/620;
  margin: 0 auto;
  justify-self: center;
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible
}

.map-route-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .16);
  stroke-width: 3;
  stroke-linecap: round
}

.map-route-fg {
  fill: none;
  stroke: var(--amber);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(255, 179, 0, .55))
}

.map-truck {
  position: absolute;
  width: 32px;
  height: 20px;
  margin: -10px 0 0 -16px;
  color: var(--amber);
  z-index: 4;
  filter: drop-shadow(0 0 7px rgba(255, 179, 0, .65));
  transition: opacity .3s ease;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 5;
  font: inherit;
}

.map-pin .pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0B1130;
  border: 2.5px solid rgba(255, 255, 255, .4);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.map-pin.reached .pin-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 179, 0, .18)
}

.map-pin .pin-label {
  position: absolute;
  top: 50%;
  left: calc(50% + 14px);
  transform: translateY(-50%);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 13px;
  color: #C7D2EA;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  transition: color .3s ease;
}

.map-pin.label-top .pin-label {
  left: 50%;
  right: auto;
  top: auto;
  bottom: calc(50% + 12px);
  transform: translateX(-50%);
  text-align: center;
}

.map-pin.reached .pin-label {
  color: #F8F8F5
}

.map-pin:hover .pin-label,
.map-pin:focus-visible .pin-label {
  color: var(--amber)
}

.map-photo {
  position: absolute;
  left: -8%;
  bottom: -4%;
  width: 50%;
  aspect-ratio: 16/11;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 44px -16px rgba(0, 0, 0, .6);
  border: 2px solid rgba(255, 255, 255, .15);
  z-index: 6;
}

.map-photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none
}

.map-photo-slide.active {
  opacity: 1;
  pointer-events: auto
}

.map-photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.map-photo-slide .map-photo-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 7px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 11.5px;
  color: #fff;
  text-transform: uppercase;
}

.mt-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--amber)
}

.mt-tag::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber)
}

.mt-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #03050e
}

.mt-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.mt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -60% center;
  display: block;
  transform: scale(1.04);
  transition: transform 1.2s ease
}

.mt-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(3, 5, 14, .94) 0%, rgba(3, 5, 14, .74) 32%, rgba(3, 5, 14, .28) 58%, transparent 78%), linear-gradient(0deg, rgba(3, 5, 14, .9) 0%, transparent 32%);
}

.mt-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 200px 0 0
}

.mt-hero-inner .mt-tag {
  margin-bottom: 18px
}

.mt-hero-inner h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(42px, 7vw, 92px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.01em;
  max-width: 820px;
}

.mt-hero-inner h1 em {
  font-style: normal;
  color: var(--amber)
}

.mt-hero-inner p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.65;
  max-width: 540px;
  margin: 22px 0 30px
}

.mt-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px
}

.mt-hero-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14.5px;
  transition: background .25s, border-color .25s;
}

.mt-hero-cta .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff
}

.mt-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.mt-strip-item:first-child {
  border-left: 0
}

.mt-intro {
  padding: 120px 0;
  background: var(--asphalt);
  position: relative;
  overflow: hidden
}

.mt-intro-copy h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-intro-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 460px
}

.mt-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px
}

.mt-principle {
  padding: 18px 8px 16px;
  border-top: 2px solid rgba(255, 255, 255, .15);
  opacity: .4;
  transition: opacity .5s ease, border-color .5s ease;
}

.mt-principle.active {
  opacity: 1;
  border-color: var(--amber)
}

.mt-principle b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13.5px;
  color: #fff
}

.mt-principle span {
  display: block;
  color: #8FA0C8;
  font-size: 11px;
  margin-top: 4px
}

.mt-intro-photos {
  position: relative;
  height: 520px
}

.mt-ip {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(3, 5, 14, .7);
  opacity: 0;
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
}

.mt-ip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mt-ip.reveal-l {
  transform: translateX(-90px) rotate(-4deg)
}

.mt-ip.reveal-r {
  transform: translateX(90px) rotate(4deg)
}

.mt-ip.reveal-b {
  transform: translateY(90px) scale(.92)
}

.mt-ip.in {
  opacity: 1;
  transform: none
}

.mt-ip-1 {
  width: 56%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 3
}

.mt-ip-2 {
  width: 46%;
  height: 44%;
  top: 8%;
  right: 0;
  z-index: 2
}

.mt-ip-3 {
  width: 50%;
  height: 46%;
  bottom: 0;
  right: 8%;
  z-index: 4;
  border: 5px solid rgba(255, 179, 0, .14)
}

.mt-gallery {
  padding: 100px 0 60px;
  background: #03050e;
  position: relative
}

.mt-gallery-head {
  padding: 0 0 40px
}

.mt-gallery-head h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 16px 0 0;
}

.mt-gallery-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-track-wrap {
  position: relative
}

.mt-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 6vw 30px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) rgba(255, 255, 255, .08);
}

.mt-track::-webkit-scrollbar {
  height: 6px
}

.mt-track::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 3px
}

.mt-panel {
  position: relative;
  flex: none;
  width: min(70vw, 760px);
  height: 62vh;
  min-height: 420px;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: center;
  filter: grayscale(.55) brightness(.72);
  transition: filter .5s ease;
}

.mt-panel.active {
  filter: none
}

.mt-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mt-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 14, .88) 0%, rgba(3, 5, 14, .1) 55%, transparent 75%)
}

.mt-panel-label {
  position: absolute;
  left: 26px;
  bottom: 24px;
  right: 26px;
  z-index: 2
}

.mt-panel-num {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--amber);
  font-size: 14px;
  letter-spacing: .1em;
  margin-bottom: 6px
}

.mt-panel-name {
  display: block;
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1;
  text-transform: uppercase
}

.mt-progress {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, .14);
  margin: 0 6vw;
  overflow: hidden
}

.mt-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--amber);
  width: 0%;
  transition: width .1s linear
}

.mt-track-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 6vw 0
}

.mt-track-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: grid;
  place-items: center;
  transition: border-color .25s, background .25s
}

.mt-track-btn:hover {
  border-color: var(--amber);
  background: rgba(255, 179, 0, .1)
}

.mt-track-btn svg {
  width: 18px;
  height: 18px
}

.mt-equip {
  padding: 130px 0;
  background: linear-gradient(180deg, #03050e 0%, #070b1c 100%);
  position: relative;
  overflow: hidden
}

.mt-equip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
  background-image: linear-gradient(rgba(151, 183, 235, .5) 1px, transparent 1px), linear-gradient(90deg, rgba(151, 183, 235, .5) 1px, transparent 1px);
  background-size: 44px 44px;
}

.mt-equip-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1
}

.mt-equip-head h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  margin: 16px 0 0
}

.mt-equip-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-equip-stage {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1
}

.mt-equip-frame {
  position: relative;
  border: 1px solid rgba(151, 183, 235, .3);
  border-radius: 2px;
  overflow: hidden
}

.mt-equip-frame img {
  width: 100%;
  display: block;
  filter: saturate(.92)
}

.mt-eq-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 5, 14, .82);
  border: 1px solid rgba(255, 179, 0, .5);
  padding: 7px 14px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .5s ease, transform .5s ease;
}

.mt-eq-tag.in {
  opacity: 1;
  transform: none
}

.mt-eq-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex: none
}

.mt-journey {
  padding: 130px 0 100px;
  background: var(--asphalt);
  position: relative
}

.mt-journey-head {
  max-width: 640px;
  margin: 0 auto 70px;
  text-align: center
}

.mt-journey-head h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.06;
  text-transform: uppercase;
  margin: 16px 0 0
}

.mt-journey-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-journey-body {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto
}

.mt-jline-wrap {
  position: relative;
  padding-left: 34px
}

.mt-jline-svg {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  height: calc(100% - 12px)
}

.mt-jstep {
  position: relative;
  padding: 0 0 62px 0;
  opacity: .4;
  transition: opacity .5s ease
}

.mt-jstep:last-child {
  padding-bottom: 0
}

.mt-jstep.reached {
  opacity: 1
}

.mt-jstep-icon {
  position: absolute;
  left: -34px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0A0F24;
  border: 2px solid rgba(151, 183, 235, .4);
  display: grid;
  place-items: center;
  color: #7C8CB0;
  transition: .4s;
}

.mt-jstep.reached .mt-jstep-icon {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--kwt-blue)
}

.mt-jstep-icon svg {
  width: 15px;
  height: 15px
}

.mt-jstep b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 19px;
  color: #fff
}

.mt-jstep span {
  display: block;
  color: #B9C6E8;
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: 6px;
  max-width: 340px
}

.mt-jvisual {
  position: sticky;
  top: 120px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 34px 70px -24px rgba(3, 5, 14, .7)
}

.mt-jvisual-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease
}

.mt-jvisual-img.on {
  opacity: 1
}

.mt-jvisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mt-jvisual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 14, .55) 0%, transparent 40%)
}

.mt-industries {
  background: #03050e;
  padding: 0
}

.mt-ind-head {
  padding: 100px 0 40px;
  text-align: center
}

.mt-ind-head h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  text-transform: uppercase;
  margin: 16px 0 0
}

.mt-ind-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-mosaic {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  height: 70vh;
  min-height: 440px
}

.mt-mos-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow .5s cubic-bezier(.22, 1, .36, 1), filter .5s ease;
  flex: 1 1 0;
}

.mt-mosaic:has(.mt-mos-item:hover) .mt-mos-item {
  filter: brightness(.55) grayscale(.3)
}

.mt-mosaic:has(.mt-mos-item:hover) .mt-mos-item:hover {
  filter: none
}

.mt-mos-item.hover-grow {
  flex-grow: 3
}

.mt-mos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.mt-mos-item:hover img {
  transform: scale(1.06)
}

.mt-mos-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 14, .88) 0%, rgba(3, 5, 14, .1) 50%, rgba(3, 5, 14, .35) 100%)
}

.mt-mos-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: #fff
}

.mt-mos-label b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14px;
  writing-mode: horizontal-tb
}

.mt-mos-desc {
  display: block;
  font-size: 12.5px;
  color: #D7DEF2;
  line-height: 1.5;
  margin-top: 6px;
  max-width: 220px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
}

.mt-mos-item:hover .mt-mos-desc {
  max-height: 100px;
  opacity: 1
}

.mt-access {
  padding: 130px 0;
  background: linear-gradient(180deg, #070b1c 0%, #03050e 100%);
  position: relative;
  overflow: hidden
}

.mt-access-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center
}

.mt-access-copy h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  margin: 16px 0 20px
}

.mt-access-copy h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-access-copy p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 26px
}

.mt-access-list {
  display: grid;
  gap: 10px
}

.mt-access-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #D7DEF2;
  font-size: 14.5px
}

.mt-access-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--amber);
  flex: none;
  transform: rotate(45deg)
}

.mt-access-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3
}

.mt-access-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.9)
}

.mt-access-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(3, 5, 14, .15) 20%, rgba(3, 5, 14, .6) 100%)
}

.mt-access-svg {
  position: absolute;
  inset: 0;
  z-index: 1
}

.mt-access-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff
}

.mt-access-node::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 179, 0, .2)
}

.mt-jobs {
  padding: 110px 0;
  background: #03050e
}

.mt-jobs-head {
  margin-bottom: 44px
}

.mt-jobs-head h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  text-transform: uppercase;
  margin: 16px 0 0
}

.mt-jobs-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-jobs-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 6vw 20px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -webkit-overflow-scrolling: touch
}

.mt-jobs-track:active {
  cursor: grabbing
}

.mt-jobs-track::-webkit-scrollbar {
  height: 6px
}

.mt-jobs-track::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 3px
}

.mt-job-card {
  flex: none;
  width: min(46vw, 520px);
  scroll-snap-align: start
}

.mt-job-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3
}

.mt-job-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.mt-job-card:hover .mt-job-photo img {
  transform: scale(1.05)
}

.mt-job-meta {
  padding: 16px 2px 0
}

.mt-job-meta b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 17px;
  color: #fff
}

.mt-job-meta span {
  display: block;
  color: #8FA0C8;
  font-size: 13px;
  margin-top: 4px
}

.mt-job-meta span+span {
  color: var(--amber)
}

.mt-why {
  position: relative;
  padding: 150px 0;
  overflow: hidden
}

.mt-why-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.mt-why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease
}

.mt-why-scrim,
.why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 5, 14, .85) 0%, rgba(3, 5, 14, .6) 35%, rgba(3, 5, 14, .18) 55%, transparent 72%);
}

.mt-why-inner {
  position: relative;
  z-index: 2
}

.mt-why-head {
  max-width: 520px;
  margin-bottom: 50px
}

.mt-why-head h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  text-transform: uppercase;
  margin: 16px 0 0
}

.mt-why-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-why-list {
  display: grid;
  gap: 0;
  max-width: 640px
}

.mt-why-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: .42;
  transition: opacity .5s ease;
}

.mt-why-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.mt-why-item.active {
  opacity: 1
}

.mt-why-item b {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--amber);
  -webkit-text-stroke: 0
}

.mt-why-item.active b {
  color: var(--amber)
}

.mt-why-item:not(.active) b {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .4)
}

.mt-why-item span {
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .01em
}

.mt-social {
  padding: 110px 0;
  background: var(--asphalt)
}

.mt-social-head {
  max-width: 560px;
  margin-bottom: 44px
}

.mt-social-head h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  text-transform: uppercase;
  margin: 16px 0 0
}

.mt-social-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-social-head p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 14px
}

.mt-masonry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 14px
}

.mt-mas-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px
}

.mt-mas-item:nth-child(1) {
  grid-column: 1/4;
  grid-row: 1/4
}

.mt-mas-item:nth-child(2) {
  grid-column: 4/7;
  grid-row: 1/3
}

.mt-mas-item:nth-child(3) {
  grid-column: 4/6;
  grid-row: 3/5
}

.mt-mas-item:nth-child(4) {
  grid-column: 6/7;
  grid-row: 3/5
}

.mt-mas-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.mt-mas-item:hover img {
  transform: scale(1.08)
}

.mt-mas-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 14, .7) 0%, transparent 45%);
  opacity: 0;
  transition: opacity .35s
}

.mt-mas-item:hover::after {
  opacity: 1
}

.mt-mas-cap {
  position: absolute;
  left: 12px;
  bottom: 10px;
  right: 12px;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s
}

.mt-mas-item:hover .mt-mas-cap {
  opacity: 1;
  transform: none
}

.mt-mas-cap b {
  display: block;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .03em
}

.mt-social-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px
}

.mt-social-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 30px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s, border-color .25s;
}

.mt-social-actions a:hover {
  background: rgba(255, 179, 0, .14);
  border-color: var(--amber)
}

.mt-social-actions svg {
  width: 16px;
  height: 16px
}

.mt-final {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  background: #0B1130;
}

.mt-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mt-final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

.mt-final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

.mt-final::before {
  display: none;
}

.mt-final .wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  margin: 0 auto
}

.mt-final .mt-tag {
  justify-content: center
}

.mt-final h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 18px 0 22px
}

.mt-final h2 em {
  font-style: normal;
  color: var(--amber)
}

.mt-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

.mt-final-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.svc-select {
  padding: 100px 0 110px;
  background: linear-gradient(150deg, #1B1670 0%, var(--kwt-blue) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.svc-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px
}

.svc-select-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  border-top: 3px solid var(--amber);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.svc-select-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -18px rgba(6, 10, 30, .55)
}

.ssc-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--asphalt)
}

.ssc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease)
}

.svc-select-card:hover .ssc-img img {
  transform: scale(1.07)
}

.ssc-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.ssc-body h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 19px;
  color: #F8F8F5;
  line-height: 1.2
}

.ssc-body p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 6px
}

.ssc-link {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--amber);
  transition: transform .25s
}

.svc-select-card:hover .ssc-link {
  transform: translateX(4px)
}

.svc-select-card.highlight {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, .35), 0 24px 44px -18px rgba(6, 10, 30, .55);
  transform: translateY(-6px)
}

.finder-section {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.finder-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

.finder-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 46px);
  margin: 14px 0 16px
}

.finder-copy p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 22px
}

.finder-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px
}

.finder-opt {
  text-align: left;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(151, 183, 235, .25);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  color: #F8F8F5;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .25s, background .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.finder-opt:hover,
.finder-opt:focus-visible {
  border-color: var(--amber);
  background: rgba(255, 179, 0, .08);
  transform: translateY(-2px)
}

.finder-opt.picked {
  border-color: var(--amber);
  background: rgba(255, 179, 0, .14)
}

.finder-opt .fo-tag {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700
}

.finder-hint {
  color: var(--grey-dim);
  font-size: 14px;
  margin-bottom: 18px;
  max-width: 420px
}

.finder-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(6, 10, 24, .5)
}

.finder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block
}

.finder-photo figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
}

.hw-journey {
  padding: 130px 0 100px;
  background: linear-gradient(150deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.hw-jstep {
  position: relative;
  padding: 0 0 300px 0;
  opacity: .4;
  transition: opacity .5s ease
}

.hw-jstep:last-child {
  padding-bottom: 140px
}

.hw-jstep.reached {
  opacity: 1
}

.hw-jstep-icon {
  position: absolute;
  left: -34px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0A0F24;
  border: 2px solid rgba(151, 183, 235, .4);
  display: grid;
  place-items: center;
  color: #7C8CB0;
  transition: .4s;
}

.hw-jstep.reached .hw-jstep-icon {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--kwt-blue)
}

.hw-jstep-icon svg {
  width: 15px;
  height: 15px
}

.hw-jstep b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 19px;
  color: #fff
}

.hw-jstep span {
  display: block;
  color: #B9C6E8;
  font-size: 14.5px;
  line-height: 1.55;
  margin-top: 6px;
  max-width: 340px
}

.why-section .wrap {
  position: relative;
  z-index: 1
}

.ep-split {
  padding: 100px 0 110px;
  background: linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 100%)
}

.ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 20px
}

.ep-panel {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.ep-photo {
  position: relative;
  height: 220px;
  overflow: hidden
}

.ep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.ep-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ep-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
  background: var(--amber);
  padding: 5px 13px;
  border-radius: 999px
}

.ep-body h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: 22px;
  color: #F8F8F5;
  line-height: 1.22;
  margin-top: 4px
}

.ep-body p {
  color: #C7D2EA;
  font-size: 15.5px;
  line-height: 1.65
}

.ep-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 8px
}

.ep-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15.5px
}

.ep-list li svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--amber);
  margin-top: 3px
}

.connect-rail {
  padding: 90px 0 100px;
  background: radial-gradient(60% 65% at 10% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue) 100%);
  border-top: 1px solid var(--line)
}

.connect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(58% 62% at 90% 0%, rgba(255, 255, 255, .09), transparent 62%);
}

.stats>.wrap {
  position: relative;
  z-index: 1
}

.stats-head {
  max-width: 620px;
  margin-bottom: 52px
}

.stats-head .eyebrow {
  color: var(--amber)
}

.stats-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  margin: 14px 0 16px
}

.stats-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.stats-head p {
  color: #C3CDE6;
  font-size: 17px;
  line-height: 1.7
}

.stats-note {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 26px;
}

.stats-note p {
  color: #C3CDE6;
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 260px
}

.stats-note .btn-quote {
  flex: none
}

.cov {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  margin-top: 54px
}

.cov-regions {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.cov-region {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .16);
  border-left: 3px solid transparent;
  padding: 15px 18px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16px;
  color: #F1F4FB;
  transition: background .25s, border-color .25s, transform .25s, color .25s;
}

.cov-region:hover {
  background: rgba(255, 255, 255, .1);
  border-left-color: var(--amber);
  transform: translateX(4px)
}

.cov-region:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px
}

.cov-region.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--kwt-blue);
  transform: none
}

.cov-region .cov-dot {
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  transition: background .25s, box-shadow .25s;
}

.cov-region.active .cov-dot {
  background: var(--kwt-blue);
  box-shadow: 0 0 0 4px rgba(34, 30, 143, .25)
}

.cov-region .cov-eta {
  margin-left: auto;
  font-size: 13px;
  letter-spacing: .06em;
  opacity: .75
}

.cov-panel {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-top: 3px solid var(--amber);
  padding: clamp(26px, 3vw, 40px);
  min-height: 330px;
}

.cov-panel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 36px);
  color: #F8F8F5;
  line-height: 1;
  margin-bottom: 6px;
}

.cov-sub {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 22px
}

.cov-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px
}

.cov-metric {
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 18px
}

.cov-metric b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  color: var(--amber);
  line-height: 1
}

.cov-metric span {
  display: block;
  font-family: var(--font-cond);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: #B9C6E8;
  margin-top: 6px
}

.cov-bar-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-bottom: 8px
}

.cov-bar {
  height: 8px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden
}

.cov-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--amber), #FFD54A);
  transition: width .7s cubic-bezier(.22, 1, .36, 1)
}

.cov-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px
}

.cov-suburbs span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #EAF0FB;
  padding: 7px 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .1)
}

.stat .st-icon {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--amber);
  margin-bottom: 16px
}

.faq-q svg.faq-plus-svg,
.faq-plus svg {
  flex: none;
  width: 100%;
  height: 100%;
  color: var(--amber);
  transition: transform .3s
}

.tilt-badge-wrap {
  position: absolute;
  perspective: 900px;
  pointer-events: none;
  z-index: 6
}

.tilt-badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-hot) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .55);
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
  will-change: transform;
}

.tilt-badge svg {
  width: 44px;
  height: 44px;
  margin-bottom: 4px
}

.tilt-badge b {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1
}

.tilt-badge span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px
}

.acc-section {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate
}

.acc-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

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

.acc-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(5, 8, 16, .82) 0%, rgba(5, 8, 16, .45) 42%, rgba(5, 8, 16, .1) 68%), linear-gradient(0deg, rgba(5, 8, 16, .6) 0%, transparent 40%)
}

.acc-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 60px
}

.acc-panel {
  background: rgba(5, 8, 16, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 245, 242, .14);
  border-radius: 6px;
  padding: 44px 44px 40px;
  max-width: 620px;
}

.acc-panel .btn-call {
  margin-top: 8px
}

.acc-icon-list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px
}

.acc-icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  color: var(--white)
}

.acc-icon-list .ai-badge {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber)
}

.acc-icon-list .ai-badge svg {
  width: 14px;
  height: 14px
}

.acc-strip {
  position: relative;
  z-index: 2;
  background: #0C1020;
  border-top: 1px solid rgba(245, 245, 242, .1)
}

.acc-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.as-item {
  padding: 32px 28px
}

.as-icon {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--amber);
  margin-bottom: 14px
}

.as-item b {
  display: block;
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px
}

.as-item span {
  display: block;
  font-size: 13px;
  color: var(--grey)
}

.brk-section {
  position: relative;
  padding: 120px 0;
  background: #1B1670;
  overflow: hidden
}

.brk-tracks {
  position: absolute;
  top: 0;
  right: 6%;
  height: 130%;
  width: 340px;
  z-index: 0;
  pointer-events: none
}

.brk-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1
}

.brk-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45)
}

.brk-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%
}

.brk-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(0deg, rgba(3, 5, 14, .88), transparent);
  color: #D7DEF2;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: .05em;
}

.brk-panel {
  position: relative;
  min-height: 100%
}

.brk-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 18px;
  list-style: none;
  margin: 22px 0 34px;
  padding: 0
}

.brk-icon-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .02em;
  color: #EDEFF7;
}

.brk-icon-grid svg {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--amber);
  margin-bottom: 12px
}

.brk-cta-sticky {
  position: sticky;
  bottom: 24px;
  z-index: 5
}

.off-section {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate
}

.off-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0
}

.off-bg img {
  position: absolute;
  top: -12%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: 22% 55%
}

.off-bg-layer2 {
  position: absolute;
  inset: -10% -10%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(255, 166, 26, .12) 0%, transparent 45%), radial-gradient(circle at 15% 85%, rgba(16, 26, 51, .5) 0%, transparent 55%);
}

.off-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg, rgba(3, 5, 14, .88) 0%, rgba(3, 5, 14, .62) 42%, rgba(3, 5, 14, .3) 68%, rgba(3, 5, 14, .55) 100%);
}

.off-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 90px 0;
  min-height: calc(100% - 0px)
}

.off-panel {
  background: rgba(5, 8, 16, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 245, 242, .14);
  border-radius: 6px;
  padding: 44px 44px 40px;
  max-width: 620px;
}

.off-caps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.off-caps li {
  background: rgba(5, 8, 16, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 245, 242, .14);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
}

.off-caps svg {
  width: 30px;
  height: 30px;
  color: var(--amber);
  margin-bottom: 8px
}

.off-caps b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: #F8F8F5
}

.off-caps span {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  color: #B9C6E8;
  margin-top: 2px
}

.winch-section {
  position: relative;
  background: #1B1670;
  overflow: hidden
}

.winch-grid {
  display: grid;
  grid-template-columns: 32% 43% 25%;
  min-height: 640px;
  background: #1B1670
}

.win-bg {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%)
}

.win-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%
}

.win-tag {
  position: absolute;
  top: 36px;
  left: 36px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: repeating-linear-gradient(135deg, var(--amber) 0 10px, #1B1670 10px 20px);
  color: #1B1670;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 16px 8px;
  border-radius: 2px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
}

.win-panel {
  position: relative;
  margin-left: 0;
  padding: 70px 4vw 70px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(120deg, #1a0f08 0%, var(--kwt-blue-2) 45%, var(--kwt-blue) 100%);
}

.win-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--amber) 0%, #c23b1f 100%);
}

.win-features {
  background: var(--amber);
  color: #0B1130;
  padding: 60px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.win-features .wf-item b {
  display: block;
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #080C24;
  margin-bottom: 5px;
  line-height: 1.2;
}

.win-features .wf-item span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #121838;
  line-height: 1.45;
}

.how-head {
  padding-top: 100px
}

.how-stage {
  position: relative;
  height: 240vh
}

.how-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden
}

.how-route {
  width: 100%;
  height: auto;
  max-height: 26vh;
  display: block;
  overflow: visible;
  margin-bottom: 10px
}

#howRouteBg {
  fill: none;
  stroke: rgba(151, 183, 235, .18);
  stroke-width: 3;
  stroke-linecap: round
}

#howRouteFg {
  fill: none;
  stroke: var(--amber);
  stroke-width: 3;
  stroke-linecap: round
}

.how-node circle {
  fill: #221E8F;
  stroke: rgba(151, 183, 235, .5);
  stroke-width: 2;
  transition: fill .3s, stroke .3s
}

.how-node.reached circle {
  fill: var(--amber);
  stroke: var(--amber)
}

#howTruck path {
  fill: var(--amber);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .5))
}

.ticket.reached {
  opacity: 1;
  transform: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35)
}

.t-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 14px;
  filter: saturate(.9)
}

.why-spot {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 340px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(560px 320px at 14% 50%, rgba(255, 179, 0, .2), transparent 72%);
  transition: top .5s var(--ease);
}

.why-wrap {
  position: relative;
  z-index: 2
}

.why-benefits {
  display: flex;
  flex-direction: column
}

.why-benefit.active {
  opacity: 1
}

.why-benefit .wb-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1;
  flex: none;
  width: clamp(84px, 11vw, 160px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--amber);
  transition: color .5s var(--ease);
}

.why-benefit.active .wb-num {
  color: var(--amber)
}

.why-benefit h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(19px, 2vw, 26px);
  color: #F8F8F5;
  margin-bottom: 6px
}

.why-benefit p {
  color: #DDE5F8;
  font-size: 16px;
  line-height: 1.62;
  max-width: 540px;
}

.final-glow {
  z-index: 2
}

.hero2-photo {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero2-glow.g1 {
  width: 200px;
  height: 200px;
  top: 34%;
  left: 62%;
  background: radial-gradient(circle, rgba(255, 179, 0, .55) 0%, transparent 70%)
}

.hero2-glow.g2 {
  width: 130px;
  height: 130px;
  top: 41%;
  left: 73%;
  background: radial-gradient(circle, rgba(255, 255, 255, .4) 0%, transparent 70%);
  animation-delay: 1.1s
}

.reduced .hero2-glow {
  animation: none
}

.hero2-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px min(6vw, 90px) 40px;
  max-width: 660px
}

.hero2-content .eyebrow {
  color: var(--amber)
}

.hero2-content h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  margin: 16px 0 20px
}

.hero2-content h1 em {
  font-style: normal;
  color: var(--amber)
}

.hero2-content p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

.hero2-stats li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, .16)
}

.hero2-stats li:last-child {
  border: none;
  margin-right: 0;
  padding-right: 0
}

.hero2-stats li b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  color: #fff;
  line-height: 1
}

.hero2-stats li span {
  display: block;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px;
  max-width: 150px;
  line-height: 1.3
}

.sa-cards-section {
  padding: 110px 0 40px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%)
}

.sa-cards-head {
  max-width: 760px;
  margin-bottom: 52px
}

.sa-cards-head h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4.6vw, 72px)
}

.sa-cards-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7
}

.sa-cards {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.sa-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(115deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 34px 34px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}

.sa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 179, 0, .55);
  box-shadow: 0 22px 50px -22px rgba(4, 8, 24, .65)
}

.sa-card-icon {
  flex: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 179, 0, .5);
  display: grid;
  place-items: center;
  color: var(--amber);
  position: relative;
}

.sa-card-icon svg {
  width: 30px;
  height: 30px
}

.sa-card-num {
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--amber);
  background: rgba(6, 8, 22, .85);
  border: 1px solid rgba(255, 179, 0, .5);
  border-radius: 6px;
  padding: 2px 8px;
  letter-spacing: .04em;
}

.sa-card-body h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--white)
}

.sa-card-body p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 640px
}

.sa-card-arrow {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--amber);
  transition: background .3s, transform .3s, border-color .3s
}

.sa-card:hover .sa-card-arrow {
  background: rgba(255, 179, 0, .14);
  transform: translateX(4px);
  border-color: rgba(255, 179, 0, .5)
}

.sa-card-arrow svg {
  width: 22px;
  height: 22px
}

.areas-map .pin-label {
  font-size: 16px
}

.areas-map .map-photo-cap {
  font-size: 14px
}

.sa-outside-section {
  padding: 60px 0 110px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%)
}

.sa-outside-card {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  border: 1px solid rgba(151, 183, 235, .35);
  border-radius: 16px;
  background: linear-gradient(115deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  padding: 46px 50px;
}

.sa-outside-icon {
  flex: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 179, 0, .5);
  display: grid;
  place-items: center;
  color: var(--amber)
}

.sa-outside-icon svg {
  width: 32px;
  height: 32px
}

.sa-outside-body {
  flex: 1;
  min-width: 260px
}

.sa-outside-body h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--white)
}

.sa-outside-body p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 640px
}

.sa-outside-body p+p {
  margin-top: 8px
}

.sa-outside-cta {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start
}

.sa-outside-cta .btn-quote {
  white-space: nowrap
}

.sa-outside-phone {
  color: var(--grey);
  font-family: var(--font-cond);
  font-size: 15.5px;
  letter-spacing: .03em
}

.sa-outside-phone a {
  color: var(--amber);
  font-weight: 700
}

.sa-services-section {
  padding: 110px 0 120px;
  background: linear-gradient(120deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.sa-services-head {
  max-width: 720px;
  margin-bottom: 48px
}

.sa-services-head h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4.6vw, 72px)
}

.sa-services-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7
}

.sa-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.sa-service-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}

.sa-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 179, 0, .5);
  box-shadow: 0 20px 42px -20px rgba(4, 8, 24, .6)
}

.sa-service-photo {
  height: 200px;
  overflow: hidden;
  position: relative
}

.sa-service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.sa-service-card:hover .sa-service-photo img {
  transform: scale(1.07)
}

.sa-service-body {
  padding: 24px 24px 28px
}

.sa-service-body h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 19px;
  color: var(--white);
  line-height: 1.35
}

.sa-service-body em {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--amber);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .03em
}

.tick-truck {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 34px;
  height: 22px;
  color: var(--amber);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px rgba(255, 179, 0, .6));
  z-index: 5;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.tick-truck.active {
  opacity: 1
}

.ticket .t-step::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: 0;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

.ticket .t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.handle2-section {
  padding: 110px 0 0;
  background: linear-gradient(120deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

.handle2-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 6vw;
  align-items: center;
  padding-bottom: 130px
}

.handle2-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

.handle2-copy h2 em {
  font-style: normal;
  color: var(--amber)
}

.handle2-copy p {
  color: var(--grey);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 8px
}

.handle2-photos {
  position: relative;
  height: clamp(380px, 40vw, 540px);
  z-index: 1
}

.h2p-main {
  position: absolute;
  top: 0;
  left: 10%;
  width: 82%;
  height: 72%;
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 34px 64px -20px rgba(6, 10, 24, .6);
  transform: rotate(-2deg);
  transition: transform .5s var(--ease)
}

.h2p-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.h2p-side {
  border-radius: 6px;
  overflow: hidden;
  position: absolute;
  transition: transform .5s var(--ease)
}

.h2p-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.h2p-side:nth-of-type(2) {
  bottom: 0;
  left: -8%;
  width: 44%;
  height: 46%;
  z-index: 3;
  box-shadow: 0 24px 50px -16px rgba(6, 10, 24, .65);
  border: 5px solid var(--kwt-blue-2);
  transform: rotate(4deg);
}

.h2p-side:nth-of-type(3) {
  bottom: -6%;
  right: -6%;
  width: 38%;
  height: 40%;
  z-index: 4;
  box-shadow: 0 24px 50px -16px rgba(6, 10, 24, .65);
  border: 5px solid var(--amber);
  transform: rotate(-5deg);
}

.handle2-photos:hover .h2p-main {
  transform: rotate(-1deg) scale(1.02)
}

.handle2-photos:hover .h2p-side:nth-of-type(2) {
  transform: rotate(2deg) scale(1.04)
}

.handle2-photos:hover .h2p-side:nth-of-type(3) {
  transform: rotate(-3deg) scale(1.04)
}

.handle2-copy .svc-block-list li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .5s ease, transform .5s ease
}

.handle2-copy .svc-block-list.in li {
  opacity: 1;
  transform: none
}

.handle2-copy .svc-block-list.in li:nth-child(1) {
  transition-delay: .04s
}

.handle2-copy .svc-block-list.in li:nth-child(2) {
  transition-delay: .09s
}

.handle2-copy .svc-block-list.in li:nth-child(3) {
  transition-delay: .14s
}

.handle2-copy .svc-block-list.in li:nth-child(4) {
  transition-delay: .19s
}

.handle2-copy .svc-block-list.in li:nth-child(5) {
  transition-delay: .24s
}

.handle2-copy .svc-block-list.in li:nth-child(6) {
  transition-delay: .29s
}

.handle2-copy .svc-block-list.in li:nth-child(7) {
  transition-delay: .34s
}

.handle2-copy .svc-block-list.in li:nth-child(8) {
  transition-delay: .39s
}

.handle2-strip {
  background: #0B1130;
  border-top: 1px solid var(--line)
}

.handle2-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.h2s-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-left: 1px solid var(--line)
}

.h2s-item:first-child {
  border-left: 0
}

.h2s-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 179, 0, .14);
  display: grid;
  place-items: center;
  color: var(--amber)
}

.h2s-icon svg {
  width: 18px;
  height: 18px
}

.h2s-item b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 15px;
  color: #F8F8F5
}

.h2s-item span {
  display: block;
  font-size: 12.5px;
  color: var(--grey-dim);
  margin-top: 2px;
  line-height: 1.3
}

.handle-section.pin-active .handle-scroller {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.handle-section.pin-active .handle-track {
  overflow: visible;
  scroll-snap-type: none;
  padding-left: 6vw;
  will-change: transform
}

.handle-section.pin-active .handle-arrow,
.handle-section.pin-active .handle-hint {
  display: none
}

.handle-h-progress {
  max-width: 1100px;
  margin: 0 auto;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .15);
  overflow: hidden;
  display: none
}

.handle-section.pin-active .handle-h-progress {
  display: block;
  margin-top: 28px
}

.handle-h-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
  border-radius: 99px
}

.pro-transport-section {
  position: relative;
  padding: 0 0 120px;
  background: var(--kwt-blue)
}

.pro-photo {
  position: relative;
  height: 64vh;
  min-height: 380px;
  overflow: hidden
}

.pro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  will-change: transform
}

.pro-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 13, 32, .9) 0%, rgba(9, 13, 32, .05) 45%)
}

.pro-panel {
  position: relative;
  z-index: 2;
  margin: -130px auto 0;
  max-width: 1120px;
  background: linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(4, 8, 22, .6);
  padding: 52px min(6vw, 64px) 56px;
}

.pro-panel .eyebrow {
  color: var(--amber)
}

.pro-panel h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 16px;
  max-width: 720px
}

.pro-panel h2 em {
  font-style: normal;
  color: var(--amber)
}

.pro-panel>p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 38px
}

.pro-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px
}

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

.pro-chip-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 179, 0, .12);
  display: grid;
  place-items: center;
  color: var(--amber);
}

.pro-chip-icon svg {
  width: 20px;
  height: 20px
}

.pro-chip span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  color: #FFFFFF;
  line-height: 1.35;
}

.fleet-section {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.fleet-head {
  max-width: 640px;
  margin-bottom: 56px
}

.fleet-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

.fleet-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.fleet-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start
}

.fleet-card {
  position: relative;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%);
  border: 1px solid rgba(151, 183, 235, .18);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), opacity .4s var(--ease);
}

.fleet-card:nth-child(2) {
  margin-top: 44px
}

.fleet-card:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 30px 56px -18px rgba(6, 10, 30, .6);
  z-index: 3
}

.fleet-grid:hover .fleet-card:not(:hover) {
  opacity: .72;
  transform: scale(.98)
}

.fleet-card-photo {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%)
}

.fleet-card:nth-child(2) .fleet-card-photo {
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%)
}

.fleet-card-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease)
}

.fleet-card:hover .fleet-card-photo img {
  transform: scale(1.1)
}

.fleet-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  z-index: 2;
}

.fleet-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 19px;
  color: #F8F8F5;
  margin: 20px 24px 8px
}

.fleet-card p {
  color: #DDE5F5;
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 24px 24px;
}

.process-section {
  padding: 110px 0 100px;
  background: #0B1130;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.process-head {
  max-width: 680px;
  margin-bottom: 64px
}

.process-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 46px);
  margin: 14px 0 16px
}

.process-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.process-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.65
}

.process-line-wrap {
  position: relative;
}

.process-line-track {
  position: absolute;
  top: 19px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 179, 0, .45) 0 8px, transparent 8px 14px);
  z-index: 1;
  pointer-events: none;
}

.process-line-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(255, 179, 0, .85);
  transition: none;
}

.process-marker {
  position: absolute;
  top: 19px;
  left: 10%;
  width: 14px;
  height: 14px;
  margin: -6px 0 0 -7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 179, 0, .3), 0 0 12px rgba(255, 179, 0, .9);
  z-index: 2;
  pointer-events: none;
  transition: opacity .2s ease;
}

.process-steps {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
  opacity: .45;
  transition: opacity .4s ease;
}

.process-step.active {
  opacity: 1;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0B1130;
  border: 3px solid rgba(255, 255, 255, .25);
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 22px;
  position: relative;
  z-index: 5;
  transition: border-color .35s ease, color .35s ease, background .35s ease, box-shadow .35s ease;
}

.process-step.active .process-num {
  border-color: var(--amber);
  color: var(--amber);
  background: #0B1130;
  box-shadow: 0 0 14px rgba(255, 179, 0, .5);
}

.process-photo {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 5/4;
  margin-bottom: 16px;
  box-shadow: 0 20px 40px -16px rgba(4, 8, 22, .55);
  filter: grayscale(.6) brightness(.75);
  transition: filter .5s ease
}

.process-step.active .process-photo {
  filter: grayscale(0) brightness(1)
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.process-step h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 16px;
  color: #F8F8F5;
  margin-bottom: 8px;
}

.process-step p {
  color: #DDE5F5;
  font-size: 15px;
  line-height: 1.55;
}

.split-section {
  display: flex;
  min-height: 620px;
  position: relative;
  overflow: hidden
}

.split-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-width: 0;
  cursor: pointer;
  transition: flex .55s var(--ease);
  display: flex;
  align-items: flex-end;
}

.split-section.hovering .split-panel {
  flex: 0.72
}

.split-section.hovering .split-panel.is-hovered {
  flex: 1.28
}

.split-photo {
  position: absolute;
  inset: 0;
  z-index: 0
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.split-panel.is-hovered .split-photo img {
  transform: scale(1.06)
}

.split-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(6, 8, 20, .92) 0%, rgba(6, 8, 20, .45) 55%, rgba(6, 8, 20, .15) 100%)
}

.split-panel:nth-child(1) .split-scrim {
  background: linear-gradient(0deg, rgba(6, 8, 20, .92) 0%, rgba(18, 22, 60, .4) 55%, rgba(18, 22, 60, .1) 100%)
}

.split-content {
  position: relative;
  z-index: 2;
  padding: 44px min(5vw, 52px);
  width: 100%
}

.split-content .eyebrow {
  color: var(--amber)
}

.split-content h3 {
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 12px 0 14px;
  line-height: 1.1
}

.split-content p {
  color: #D7DEF2;
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s ease;
}

.split-panel.is-hovered .split-content p {
  max-height: 160px;
  opacity: 1
}

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 14px;
  text-transform: uppercase;
}

.split-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .5);
  pointer-events: none;
}

.rj-slide.active figcaption {
  opacity: 1
}

.rj-slide:hover figcaption {
  transform: translateY(-3px);
  background: rgba(14, 17, 38, .82)
}

.industries-head h2 em {
  color: var(--amber);
  font-style: normal
}

.industries-grid2 {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: clamp(34px, 4vw, 56px);
  align-items: stretch;
  padding-bottom: 100px
}

.industries-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0
}

.industry-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.industry-btn {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 14.5px;
  text-align: left;
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  padding: 13px 34px 13px 16px;
  cursor: pointer;
  line-height: 1.25;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}

.industry-btn::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: opacity .25s, right .25s;
}

.industry-btn:hover::after {
  opacity: .65
}

.industry-btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px
}

.industry-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  border-left-color: var(--amber);
  color: var(--kwt-blue);
  transform: none
}

.industry-btn.active::after {
  opacity: 1;
  right: 12px
}

.industries-quote {
  border-left: 3px solid var(--amber);
  padding: 6px 0 6px 22px;
  margin-top: auto;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.55;
  color: var(--white);
}

.industries-quote span {
  display: block
}

.industries-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  box-shadow: 0 30px 60px -20px rgba(4, 8, 22, .6);
  border: 1px solid var(--line);
  background: var(--asphalt-3);
}

.industries-photo img.ip-out {
  opacity: 0
}

.ip-index {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  color: #fff;
  background: rgba(6, 9, 22, .6);
  backdrop-filter: blur(3px);
  padding: 6px 12px;
  border-radius: 2px;
}

.ip-index i {
  font-style: normal;
  color: var(--amber)
}

.ip-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 4;
  background: rgba(255, 255, 255, .14)
}

.ip-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--amber);
  transition: width .18s linear
}

.industries-photo-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  z-index: 3;
  padding: 18px 20px 16px;
  background: linear-gradient(0deg, rgba(4, 7, 18, .88), transparent);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: #fff;
}

.industries-stats-strip {
  background: #0B1130;
  border-top: 1px solid var(--line)
}

.industries-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.industries-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-left: 1px solid var(--line)
}

.industries-stat:first-child {
  border-left: 0
}

.is-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 179, 0, .14);
  display: grid;
  place-items: center;
  color: var(--amber)
}

.is-icon svg {
  width: 18px;
  height: 18px
}

.industries-stat b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 15px;
  color: #F8F8F5
}

.industries-stat span {
  display: block;
  font-size: 12.5px;
  color: var(--grey-dim);
  margin-top: 2px;
  line-height: 1.3
}

.pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0B1130;
  border: 2.5px solid rgba(255, 255, 255, .4);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.pin-label {
  position: absolute;
  top: 50%;
  left: calc(50% + 14px);
  transform: translateY(-50%);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 13px;
  color: #C7D2EA;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  transition: color .3s ease;
}

.map-pin.reached.label-top .pin-label {
  color: var(--amber)
}

.map-photo-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 7px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 11.5px;
  color: #fff;
  text-transform: uppercase;
}

.t-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

.ticket:hover .t-photo img {
  transform: scale(1.05)
}

.t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

.mt-strip-item i {
  font-style: normal
}

.tf {
  position: relative;
  padding: 0 0 100px;
  background: linear-gradient(150deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.tf-photo {
  position: relative;
  height: clamp(240px, 32vw, 420px);
  overflow: hidden
}

.tf-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.tf-panel {
  position: relative;
  z-index: 2;
  margin-top: clamp(-190px, -16vw, -110px);
  background: linear-gradient(150deg, #231E92 0%, var(--kwt-blue) 100%);
  padding: clamp(38px, 4.4vw, 64px) clamp(28px, 4vw, 64px);
  box-shadow: 0 -20px 60px -24px rgba(3, 6, 20, .6);
}

.tf-panel .eyebrow {
  color: var(--amber)
}

.tf-panel h2 {
  color: #F8F8F5;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  margin: 14px 0 18px
}

.tf-panel h2 em {
  font-style: normal;
  color: var(--amber)
}

.tf-panel>p {
  color: #C3CDE6;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 0 40px
}

.tf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 30px
}

.tf-item {
  display: flex;
  align-items: center;
  gap: 14px
}

.tf-item .tfi {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
  color: #E7EDFA;
}

.tf-item .tfi svg {
  width: 19px;
  height: 19px
}

.tf-item span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  color: #F1F4FB;
  line-height: 1.3
}

.mf {
  padding: 110px 0 120px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%)
}

.mf-head {
  max-width: 700px;
  margin-bottom: 60px
}

.mf-head .eyebrow {
  color: var(--amber)
}

.mf-head h2 {
  color: #F8F8F5;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.04;
  margin: 14px 0 18px
}

.mf-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.mf-head p {
  color: #C3CDE6;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.8;
  max-width: 620px
}

.mf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start
}

.mf-card {
  margin: 0;
  transition: transform .4s var(--ease)
}

.mf-card:nth-child(1) {
  transform: rotate(-1.1deg)
}

.mf-card:nth-child(2) {
  transform: translateY(34px) rotate(.9deg)
}

.mf-card:nth-child(3) {
  transform: rotate(-1.4deg)
}

.mf-card:hover {
  transform: translateY(-6px) rotate(0)
}

.mf-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3.1;
  box-shadow: 0 30px 60px -22px rgba(3, 6, 20, .7)
}

.mf-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mf-num {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  box-shadow: 0 8px 20px -6px rgba(4, 8, 22, .55);
}

.mf-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 19px;
  color: #F8F8F5;
  margin: 24px 0 10px;
}

.mf-card p {
  color: #C3CDE6;
  font-size: 15px;
  line-height: 1.65
}

.kp {
  padding: 110px 0 120px;
  background: #0B1130
}

.kp-head {
  max-width: 720px;
  margin-bottom: 70px
}

.kp-head .eyebrow {
  color: var(--amber)
}

.kp-head h2 {
  color: #F8F8F5;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.04;
  margin: 14px 0 18px
}

.kp-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.kp-head p {
  color: #96A6C8;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.8
}

.kp-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 26px
}

.kp-rail::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: var(--amber);
  transform: translateY(-50%);
}

.kp-ring {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0B1130;
  border: 2.5px solid var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  color: var(--amber);
}

.kp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center
}

.kp-step figure {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3.3;
  box-shadow: 0 22px 44px -20px rgba(0, 0, 0, .65)
}

.kp-step img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.kp-step b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 15px;
  color: #F8F8F5;
  margin-bottom: 10px;
}

.kp-step p {
  color: #96A6C8;
  font-size: 14.5px;
  line-height: 1.6
}

.svc-intro.mt-intro {
  padding: 110px 0 0;
  background: radial-gradient(60% 65% at 8% 0%, rgba(41, 140, 224, .20), transparent 62%), linear-gradient(150deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.mt-intro .wrap {
  max-width: 1240px
}

.mt-intro-copy .eyebrow {
  color: var(--amber)
}

.mt-intro-copy>p {
  color: #C3CDE6;
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  line-height: 1.8;
  margin: 0 0 30px;
  max-width: 560px
}

.mt-checks {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px
}

.mt-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15.5px;
  color: #F1F4FB;
  line-height: 1.3
}

.mt-checks svg {
  flex: none;
  width: 17px;
  height: 17px;
  color: var(--amber);
  margin-top: 2px
}

.mt-intro-copy .btn-call {
  margin: 0
}

.mt-collage {
  position: relative;
  aspect-ratio: 1/0.92;
  min-height: 340px
}

.mt-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(3, 6, 20, .7)
}

.mt-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mt-shot-1 {
  top: 0;
  right: 0;
  width: 82%;
  height: 56%;
  z-index: 1
}

.mt-shot-2 {
  left: 0;
  top: 34%;
  width: 52%;
  height: 46%;
  z-index: 3;
  border: 5px solid var(--kwt-blue-2)
}

.mt-shot-3 {
  right: 2%;
  bottom: 0;
  width: 44%;
  height: 34%;
  z-index: 2;
  border: 5px solid var(--amber);
  transform: rotate(-3deg)
}

.mt-steps {
  background: #0B1130;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.mt-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.mt-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 30px clamp(16px, 2.2vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, .12)
}

.mt-step:first-child {
  border-left: 0
}

.mt-step .mts-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: grid;
  place-items: center;
  color: #96A6C8
}

.mt-step .mts-icon svg {
  width: 19px;
  height: 19px
}

.mt-step b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 14px;
  color: #F8F8F5
}

.mt-step span {
  display: block;
  color: #96A6C8;
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 5px
}

.handle-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px
}

.rj-slide:not(.active) {
  pointer-events: none
}

.industries-copy {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.iv-photo:hover img {
  transform: scale(1.05)
}

.iv-photo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--amber);
  z-index: 3
}

.iv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 9, 26, .82) 0%, rgba(6, 9, 26, .28) 34%, transparent 62%);
  z-index: 1
}

.iv-photo figcaption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  z-index: 2
}

.iv-photo figcaption .eyebrow {
  color: var(--amber)
}

.iv-photo figcaption strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.06;
  font-size: clamp(22px, 2.1vw, 30px);
  color: #fff;
}

.iv-photo figcaption span.loc {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #C9D5EC
}

.iv-stat {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: var(--amber);
  color: var(--ink);
  padding: 16px 22px 14px;
  text-align: center;
  box-shadow: 0 18px 40px -14px rgba(6, 10, 30, .6);
}

.iv-stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: .95
}

.iv-stat em {
  display: block;
  font-style: normal;
  margin-top: 4px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 10.5px;
}

.areas-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.col-slider-section {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%);
  overflow: hidden
}

.col-slider-head {
  max-width: 680px;
  margin-bottom: 44px
}

.col-slider-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

.col-slider-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.col-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 640px;
  overflow: hidden;
  position: relative;
  border-radius: 2px
}

.col-slider::before,
.col-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 3;
  pointer-events: none;
}

.col-slider::before {
  top: 0;
  background: linear-gradient(180deg, var(--kwt-blue) 0%, transparent 100%)
}

.col-slider::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--kwt-blue) 0%, transparent 100%)
}

.col-slider-col {
  overflow: hidden;
  position: relative;
  cursor: grab;
  touch-action: pan-x
}

.col-slider-col.dragging {
  cursor: grabbing
}

.col-slider-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  animation: colScrollUp 32s linear infinite
}

.col-slider-col.down .col-slider-track {
  animation-name: colScrollDown
}

.col-slider-col:hover .col-slider-track,
.col-slider-col.dragging .col-slider-track {
  animation-play-state: paused
}

.col-slider-track figure {
  margin: 0;
  position: relative;
  flex: none
}

.col-slider-track img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block
}

.col-slider-track figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .85), transparent 80%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.rec-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #F8F8F5;
  background: rgba(5, 8, 16, .72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 179, 0, .35);
  padding: 8px 12px;
  white-space: nowrap;
}

.rec-tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
  box-shadow: 0 0 0 4px rgba(255, 179, 0, .18)
}

.rec-tag-line {
  position: absolute;
  background: rgba(255, 179, 0, .55);
  z-index: 2;
  pointer-events: none
}

.rec-hero {
  position: relative;
  overflow: hidden;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%);
}

.rec-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.rec-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05)
}

.rec-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(97deg, rgba(3, 5, 14, .88) 0%, rgba(3, 5, 14, .80) 20%, rgba(3, 5, 14, .55) 34%, rgba(3, 5, 14, .22) 46%, rgba(3, 5, 14, .06) 55%, transparent 62%);
}

.rec-hero-inner {
  position: relative;
  z-index: 2;
  padding: 170px 4vw 60px min(6vw, 90px);
  max-width: 760px
}

.rec-hero-inner .eyebrow {
  color: var(--amber)
}

.rec-hero-inner h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;
  margin: 16px 0 22px;
  color: #F8F8F5
}

.rec-hero-inner h1 em {
  font-style: normal;
  color: var(--amber)
}

.rec-hero-inner p {
  color: #D7DEF2;
  font-size: 17px;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 34px
}

.rec-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center
}

.rec-hero-cta .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  color: #F8F8F5;
  border: 1.5px solid var(--kwt-blue-2);
  padding: 15px 26px;
  transition: .25s;
}

.rec-hero-cta .btn-outline:hover {
  background: var(--kwt-blue-2);
  border-color: var(--kwt-blue-2)
}

.rec-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(3, 5, 14, .55);
  backdrop-filter: blur(6px)
}

.rec-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.rec-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px clamp(16px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, .14)
}

.rec-strip-item:first-child {
  border-left: 0
}

.rec-strip-icon {
  flex: none;
  width: 34px;
  height: 34px;
  color: var(--amber)
}

.rec-strip-item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: #F8F8F5;
  line-height: 1
}

.rec-strip-item span {
  display: block;
  font-family: var(--font-cond);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px
}

.rec-intro {
  padding: 130px 0 130px;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%);
  position: relative;
  overflow: hidden
}

.rec-intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 64px;
  align-items: center
}

.rec-intro-copy .eyebrow {
  color: var(--amber)
}

.rec-intro-copy h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08;
  margin: 16px 0 20px;
  color: #F8F8F5
}

.rec-intro-copy h2 em {
  font-style: normal;
  color: var(--amber)
}

.rec-intro-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px
}

.rec-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px
}

.rec-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 14.5px;
  color: #EDEFF7
}

.rec-check svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--amber);
  margin-top: 2px
}

.rec-visual-wrap {
  position: relative
}

.rec-visual-frame {
  position: relative;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6);
  aspect-ratio: 4/3.1;
}

.rec-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.rec-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(3, 5, 14, .55) 100%)
}

.rec-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: #F8F8F5;
  background: rgba(5, 8, 16, .8);
  border: 1px solid rgba(255, 179, 0, .5);
  padding: 7px 11px;
  white-space: nowrap;
}

.rec-callout i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex: none
}

.rec-gallery {
  padding: 110px 0 120px;
  background: linear-gradient(150deg, var(--kwt-blue) 0%, #1B1670 100%);
  position: relative;
  overflow: hidden
}

.rec-gallery-head {
  max-width: 640px;
  margin-bottom: 50px
}

.rec-gallery-head .eyebrow {
  color: var(--amber)
}

.rec-gallery-head h2 {
  color: #F8F8F5;
  font-size: clamp(30px, 3.8vw, 50px);
  margin-top: 14px
}

.rec-gallery-wrap {
  position: relative;
}

.rec-gallery-track {
  position: absolute;
  top: 36px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 179, 0, .45) 0 8px, transparent 8px 14px);
  z-index: 1;
  pointer-events: none;
}

.rec-gallery-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
  box-shadow: 0 0 8px rgba(255, 179, 0, .75);
  transition: none;
}

.rec-gallery-marker {
  position: absolute;
  top: 36px;
  left: 8.33%;
  width: 12px;
  height: 12px;
  margin: -5px 0 0 -6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 179, 0, .25), 0 0 12px rgba(255, 179, 0, .85);
  z-index: 2;
  pointer-events: none;
  transition: opacity .2s ease;
}

.rec-gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  position: relative;
  z-index: 4;
}

.rec-gallery-strip::before {
  display: none;
}

.rg-step {
  position: relative;
  opacity: .35;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
}

.rg-step.active {
  opacity: 1;
  transform: translateY(0);
}

.rg-num {
  position: relative;
  z-index: 5;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1B1670;
  border: 2px solid rgba(255, 179, 0, .4);
  color: var(--amber);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 18px;
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.rg-step.active .rg-num {
  background: #1B1670;
  color: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 14px rgba(255, 179, 0, .7);
  transform: scale(1.06);
}

.rg-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  filter: grayscale(.75) brightness(.65);
  transition: filter .5s ease, transform .5s ease, box-shadow .5s ease;
}

.rg-step.active .rg-photo {
  filter: grayscale(0) brightness(1);
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, .6);
}

.rg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rg-cap {
  margin-top: 14px;
  text-align: center;
  opacity: .7;
  transition: opacity .4s ease;
}

.rg-step.active .rg-cap {
  opacity: 1;
}

.rg-cap b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 13px;
  color: #F8F8F5;
  transition: color .35s ease;
}

.rg-step.active .rg-cap b {
  color: var(--amber);
}

.rg-cap span {
  display: block;
  font-size: 11.5px;
  color: #8A97BE;
  margin-top: 4px;
  line-height: 1.4;
}

.rec-capability {
  padding: 130px 0 130px;
  background: linear-gradient(170deg, #1B1670 0%, var(--kwt-blue) 100%);
  position: relative;
  overflow: hidden
}

.rec-cap-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center
}

.rec-cap-copy .eyebrow {
  color: var(--amber)
}

.rec-cap-copy h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  margin: 14px 0 30px;
  color: #F8F8F5
}

.rec-cap-copy h2 em {
  font-style: normal;
  color: var(--amber)
}

.rec-cap-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.rec-cap-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}

.rec-cap-item.active {
  background: rgba(255, 255, 255, .06);
  border-left-color: var(--amber)
}

.rec-cap-item .rc-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: rgba(255, 179, 0, .4);
  flex: none;
  width: 44px;
  transition: color .3s
}

.rec-cap-item.active .rc-num {
  color: var(--amber)
}

.rec-cap-item h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  margin-bottom: 3px
}

.rec-cap-item p {
  color: #B9C6E8;
  font-size: 13.5px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .35s ease
}

.rec-cap-item.active p {
  max-height: 60px;
  opacity: 1;
  margin-top: 4px
}

.rec-cap-visual {
  position: relative
}

.rec-cap-frame {
  position: relative;
  clip-path: polygon(0 0, 96% 3%, 100% 100%, 4% 97%);
  overflow: hidden;
  aspect-ratio: 4/3.3;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6)
}

.rec-cap-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.rec-eq-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 11px;
  color: #F8F8F5;
  background: rgba(5, 8, 16, .82);
  border: 1px solid rgba(255, 179, 0, .5);
  padding: 7px 10px;
  white-space: nowrap;
}

.rec-eq-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex: none
}

.rec-env {
  padding: 100px 0 110px;
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 100%)
}

.rec-env-head {
  max-width: 640px;
  margin-bottom: 44px
}

.rec-env-head h2 {
  color: #F8F8F5;
  font-size: clamp(28px, 3.6vw, 46px)
}

.rec-env-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.rec-env-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px
}

.re-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform .4s ease
}

.re-item:hover {
  transform: translateY(-6px)
}

.re-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.re-item:hover img {
  transform: scale(1.08)
}

.re-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 14, .92) 0%, rgba(3, 5, 14, .15) 55%, transparent 75%)
}

.re-item span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 12px;
  z-index: 1;
  color: #F8F8F5;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 11.5px;
  line-height: 1.25;
}

.rec-process {
  padding: 120px 0 130px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  position: relative;
  overflow: hidden
}

.rec-process-head {
  max-width: 640px;
  margin-bottom: 70px
}

.rec-process-head .eyebrow {
  color: var(--amber)
}

.rec-process-head h2 {
  color: #F8F8F5;
  font-size: clamp(28px, 3.6vw, 46px);
  margin-top: 14px
}

.rec-process-head h2 em {
  font-style: normal;
  color: var(--amber)
}

.rec-cable-wrap {
  position: relative;
  padding: 0 10px
}

.rec-cable-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible
}

#recCableBg {
  fill: none;
  stroke: rgba(151, 183, 235, .2);
  stroke-width: 4;
  stroke-linecap: round
}

#recCableFg {
  fill: none;
  stroke: var(--amber);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000
}

.rec-cable-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -18px
}

.rc-step {
  text-align: center;
  padding: 0 8px
}

.rc-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1B1670;
  border: 2px solid rgba(255, 179, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: rgba(255, 179, 0, .5);
  transition: border-color .4s, color .4s, background .4s;
}

.rc-step.reached .rc-step-icon {
  border-color: var(--amber);
  color: var(--kwt-blue);
  background: var(--amber)
}

.rc-step-icon svg {
  width: 22px;
  height: 22px
}

.rc-step b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14.5px;
  color: #F8F8F5
}

.rc-step span {
  display: block;
  font-size: 12.5px;
  color: #B9C6E8;
  margin-top: 6px;
  line-height: 1.45
}

.rec-stats {
  padding: 80px 0;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 60%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.rec-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center
}

.rec-stats-grid div {
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding: 0 20px
}

.rec-stats-grid div:first-child {
  border-left: 0
}

.rec-stats-grid b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  color: var(--amber);
  line-height: 1
}

.rec-stats-grid span {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 8px
}

.panthers-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.panthers-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.panthers-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%
}

.panthers-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(10, 10, 12, .82) 0%, rgba(18, 22, 60, .55) 45%, rgba(18, 60, 140, .2) 78%), linear-gradient(0deg, rgba(8, 9, 11, .92) 0%, rgba(8, 9, 11, .3) 42%, transparent 70%);
}

.panthers-hero-inner {
  position: relative;
  z-index: 5;
  padding: 0 0 70px
}

.panthers-crumb {
  position: relative;
  z-index: 5;
  padding: 110px 0 0;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #C7D2EA
}

.panthers-crumb a {
  color: var(--pnr-gold)
}

.panthers-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px
}

.panthers-badge-row img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5))
}

.panthers-badge-row .x {
  color: var(--pnr-gold);
  font-family: var(--font-display);
  font-size: 26px
}

.panthers-hero-inner .eyebrow {
  color: var(--pnr-gold)
}

.panthers-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(36px, 5vw, 74px);
  line-height: .98;
  margin: 16px 0 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.panthers-hero-inner h1 em {
  font-style: normal;
  color: var(--pnr-gold)
}

.panthers-hero-inner p {
  color: #E3E8F6;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 28px
}

.panthers-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px
}

.btn-panthers {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--pnr-gold);
  color: var(--ink);
  padding: 15px 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  text-decoration: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: .2s;
}

.btn-panthers:hover {
  background: #fff
}

.pnr-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 245, 242, .18);
  max-width: 920px;
  margin-top: 32px;
  padding-top: 22px
}

.pnr-hero-stats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 18px;
  margin-right: 0;
  border-left: 1px solid rgba(245, 245, 242, .14)
}

.pnr-hero-stats li:first-child {
  border-left: 0;
  padding-left: 0
}

.pnr-hero-stats li svg {
  width: 22px;
  height: 22px;
  color: var(--pnr-gold);
  flex: none;
  margin-top: 2px
}

.pnr-hero-stats li b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: #F8F8F5;
  line-height: 1
}

.pnr-hero-stats li span {
  display: block;
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 3px;
  max-width: none;
  line-height: 1.35
}

.pnr-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: center
}

.pnr-story-grid .pnr-story-copy p:last-child {
  margin-bottom: 0
}

.pnr-story {
  padding: 90px 0 100px;
  background: linear-gradient(120deg, var(--kwt-blue) 0%, #1B1670 100%)
}

.pnr-story .wrap {
  max-width: 1240px
}

.pnr-story p {
  color: var(--grey);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px
}

.pnr-story p strong {
  color: var(--white)
}

.pnr-timeline {
  padding: 100px 0 110px;
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%)
}

.pnr-timeline-head {
  max-width: 640px;
  margin-bottom: 52px
}

.pnr-timeline-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

.pnr-timeline-head p {
  color: var(--grey);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

.pnr-feature {
  padding: 0;
  background: linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 100%)
}

.pnr-feature .wrap {
  width: 100%;
  max-width: none;
  margin: 0
}

.pnr-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch
}

.pnr-feature .pnr-feature-photo {
  box-shadow: none;
  min-height: 640px;
  height: 100%
}

.pnr-feature .pnr-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%
}

.pnr-feature .pnr-feature-copy {
  align-self: center;
  padding: 96px min(6vw, 90px) 104px clamp(32px, 4vw, 64px)
}

.pnr-feature-photo {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(6, 10, 24, .5)
}

.pnr-feature-photo img {
  width: 100%;
  display: block
}

.pnr-feature-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .9), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pnr-feature-copy .eyebrow {
  color: var(--pnr-gold)
}

.pnr-feature-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 22px
}

.pnr-quote-block {
  border-left: 3px solid var(--pnr-gold);
  padding-left: 22px;
  margin-bottom: 24px;
}

.pnr-quote-block p {
  color: #F8F8F5;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 10px
}

.pnr-quote-block cite {
  color: var(--pnr-gold);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-style: normal
}

.pnr-offer-big {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  color: var(--pnr-gold);
  line-height: 1;
  margin: 14px 0
}

.pnr-offer-big i {
  font-style: normal;
  font-size: .5em;
  vertical-align: super
}

.pnr-offer h2 {
  color: #F8F8F5;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px
}

.pnr-offer p {
  color: #D7DEF2;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 34px
}

.pnr-membership {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--pnr-black) 0%, #221F20 100%);
  border-top: 1px solid rgba(255, 179, 0, .2);
  border-bottom: 1px solid rgba(255, 179, 0, .2);
}

.pnr-membership .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap
}

.pnr-membership h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 20px;
  color: #F8F8F5;
  max-width: 520px;
  line-height: 1.4
}

.pnr-membership h3 span {
  color: var(--pnr-gold)
}

.pnr-story-copy .eyebrow {
  color: var(--pnr-gold)
}

.pnr-story-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 14px 0 22px
}

.pnr-story-copy h2 em {
  font-style: normal;
  color: var(--pnr-gold)
}

.pnr-ticks {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px
}

.pnr-ticks li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14.5px;
  color: #F8F8F5;
  line-height: 1.35
}

.pnr-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 9px;
  border-left: 2.4px solid var(--pnr-gold);
  border-bottom: 2.4px solid var(--pnr-gold);
  transform: rotate(-45deg)
}

.pnr-tl-rail {
  position: relative;
  height: 24px;
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pnr-tl-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(255, 179, 0, .22);
  z-index: 1;
}

.pnr-tl-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #FFB300 0%, #FFD54A 70%, #FFF275 100%);
  box-shadow: 0 0 12px rgba(255, 179, 0, .85);
  z-index: 2;
  transition: transform 1.6s cubic-bezier(.22, 1, .36, 1);
}

.pnr-timeline.is-active .pnr-tl-fill {
  transform: translateY(-50%) scaleX(1);
}

.pnr-tl-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--pnr-gold, #FFB300);
  background: #1B1670;
  position: relative;
  z-index: 3;
  transform: scale(0);
  opacity: 0;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease, box-shadow .4s ease, background-color .3s;
  cursor: pointer;
}

.pnr-tl-node::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--pnr-gold, #FFB300);
  opacity: 0;
  transform: scale(.6);
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
}

.pnr-tl-node.is-active {
  transform: scale(1);
  opacity: 1;
}

.pnr-tl-node.is-active::before {
  opacity: .6;
  transform: scale(1.35);
  animation: pnrNodePulse 2.5s infinite ease-out;
}

.pnr-tl-node:last-child.is-active,
.pnr-tl-node[data-idx="2"].is-active {
  box-shadow: 0 0 16px 5px rgba(255, 179, 0, .75);
  background: #FFB300;
}

@keyframes pnrNodePulse {
  0% {
    transform: scale(1);
    opacity: .7;
  }

  65% {
    transform: scale(2.3);
    opacity: 0;
  }

  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

.pnr-tl-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}

.pnr-tl-card {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}

.pnr-tl-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

.pnr-tl-card:nth-child(1) {
  text-align: left;
}

.pnr-tl-card:nth-child(2) {
  text-align: center;
}

.pnr-tl-card:nth-child(3) {
  text-align: right;
}

.pnr-tl-card .yr {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  color: var(--pnr-gold, #FFB300);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 179, 0, .25);
  transition: text-shadow .3s, transform .3s;
}

.pnr-tl-card:hover .yr {
  text-shadow: 0 0 28px rgba(255, 179, 0, .65);
  transform: translateY(-2px);
}

.pnr-tl-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(17px, 1.4vw, 21px);
  color: #F8F8F5;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pnr-tl-card p {
  color: #C7D2EA;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
}

.pnr-tl-card:nth-child(2) p {
  margin: 0 auto;
}

.pnr-tl-card:nth-child(3) p {
  margin-left: auto;
}

.pnr-watermark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  opacity: .075;
  pointer-events: none;
  z-index: 0
}

.pnr-watermark-svg {
  width: 100%;
  height: auto;
  display: block
}

.pnr-offer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .55fr 1.6fr .85fr;
  gap: 30px;
  align-items: center
}

.pnr-offer-mark {
  display: flex;
  flex-direction: column;
  line-height: .82;
  color: transparent;
  -webkit-text-stroke: 2px var(--pnr-gold)
}

.pnr-offer-mark .pct {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 104px)
}

.pnr-offer-mark .off {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px)
}

.pnr-offer-copy .eyebrow {
  color: var(--pnr-gold);
  justify-content: flex-start
}

.pnr-offer-copy h2 {
  color: var(--white);
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.1;
  margin: 14px 0 18px
}

.pnr-offer-copy h2 em {
  font-style: normal;
  color: var(--pnr-gold)
}

.pnr-offer-copy p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 540px
}

.pnr-member-box {
  border: 2px solid var(--pnr-gold);
  padding: 26px 24px;
  background: rgba(10, 10, 10, .55)
}

.pnr-member-box h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  color: var(--pnr-gold);
  margin-bottom: 10px
}

.pnr-member-box p {
  color: #E4E9F5;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px
}

/* ---- shared keyframes ---- */
@keyframes hzrd {

  0%,
  49% {
    opacity: 1
  }

  50%,
  100% {
    opacity: .12
  }
}

@keyframes svcMarquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes hqpulse {
  0% {
    transform: scale(.7);
    opacity: .9
  }

  70% {
    transform: scale(2.6);
    opacity: 0
  }

  100% {
    transform: scale(2.6);
    opacity: 0
  }
}

@keyframes hazpulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5), 0 0 0 0 rgba(255, 179, 0, .55)
  }

  50% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5), 0 0 0 14px rgba(255, 179, 0, 0)
  }
}

@keyframes tlYearDrop {
  0% {
    opacity: 0;
    transform: translateY(-80px)
  }

  55% {
    opacity: 1;
    transform: translateY(14px)
  }

  72% {
    transform: translateY(-9px)
  }

  88% {
    transform: translateY(4px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes trustTicker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes finalGlow {

  0%,
  100% {
    opacity: .85
  }

  50% {
    opacity: 1
  }
}

@keyframes colScrollUp {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(-50%)
  }
}

@keyframes colScrollDown {
  from {
    transform: translateY(-50%)
  }

  to {
    transform: translateY(0)
  }
}

/* ---- shared responsive rules ---- */
@media (max-width:1220px) {
  .head-quote {
    display: none
  }
}

@media (max-width:1020px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .accred-grid {
    grid-template-columns: 1fr
  }

  .head-nav,
  body .head-nav,
  body[class*="tpl-"] .head-nav {
    display: none !important
  }

  .nav-toggle {
    display: block !important
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-front-page .stats .wrap {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .local-section {
    padding: 90px 0 100px
  }

  .local-grid {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .local-photos {
    padding-bottom: 40px;
    max-width: 520px
  }

  .local-photo-inset {
    right: 0;
    width: 50%
  }

  .local-watermark {
    display: none
  }

  .careers-photo {
    max-width: 460px
  }

  .careers-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .careers-form-grid {
    grid-template-columns: 1fr
  }

  .careers-form-photo {
    min-height: 220px
  }

  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 560px
  }

  .story-grid,
  body .story-grid,
  body[class*="tpl-"] .story-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important
  }

  .timeline,
  body .timeline,
  body[class*="tpl-"] .timeline {
    grid-template-columns: 1fr !important;
    row-gap: 34px
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px
  }

  .value-card {
    aspect-ratio: 4/3
  }

  .svc-hero-inner {
    padding: 120px 6vw 54px
  }

  .svc-block-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .svc-block.reverse .svc-block-grid {
    direction: ltr
  }

  .rj-arrow {
    display: none
  }

  .why-card:nth-child(4) {
    grid-column: auto
  }

  .why-card:nth-child(5) {
    grid-column: auto
  }

  .social-grid,
  body .social-grid,
  body[class*="tpl-"] .social-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important
  }

  .kwt-cursor {
    display: none !important
  }

  #towCable {
    display: none !important
  }

  .contact-info-section .ci-grid {
    grid-template-columns: 1fr
  }

  .ci-panel {
    padding: 74px 6vw 78px
  }

  .ci-head,
  .ci-list {
    max-width: none
  }

  .ci-map {
    min-height: 380px
  }

  .need-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .quote-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "form" "side";
    gap: 0
  }

  .quote-head {
    margin-bottom: 22px
  }

  .quote-side {
    margin-top: 34px;
    height: auto
  }

  .qs-card {
    flex: 0 0 auto
  }

  .qf-row {
    grid-template-columns: 1fr
  }

  .svc-trust {
    padding: 20px 6vw 26px
  }

  .svc-trust li {
    margin-right: 18px;
    padding-right: 18px
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .areas-map {
    max-width: 340px
  }

  .svc-select-grid {
    grid-template-columns: 1fr 1fr
  }

  .finder-split {
    grid-template-columns: 1fr
  }

  .finder-photo {
    order: -1;
    max-width: 420px;
    margin: 0 auto
  }

  .connect-cards {
    grid-template-columns: 1fr 1fr
  }

  .cov {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .cov-panel {
    min-height: 0
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .svc-hero-photo::before {
    background: linear-gradient(180deg, rgba(3, 5, 14, .7) 0%, rgba(3, 5, 14, .55) 40%, rgba(3, 5, 14, .92) 100%);
  }

  .hero-glow {
    display: none
  }

  .tilt-badge-wrap {
    display: none
  }

  .acc-panel {
    max-width: 100%;
    padding: 32px 26px
  }

  .acc-icon-list {
    grid-template-columns: 1fr
  }

  .acc-strip-grid {
    grid-template-columns: 1fr 1fr
  }

  .brk-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .brk-visual {
    aspect-ratio: 16/10
  }

  .brk-icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 14px
  }

  .brk-cta-sticky {
    position: relative;
    bottom: auto
  }

  .brk-tracks {
    display: none
  }

  .off-wrap {
    grid-template-columns: 1fr;
    padding: 70px 0
  }

  .off-panel {
    max-width: 100%;
    padding: 32px 26px
  }

  .off-caps {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px
  }

  .winch-grid {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .win-bg {
    clip-path: none;
    aspect-ratio: 16/10
  }

  .win-tag {
    display: none
  }

  .win-panel {
    margin-left: 0;
    padding: 50px 6vw
  }

  .win-features {
    padding: 32px 6vw
  }

  .how-stage {
    height: auto
  }

  .how-sticky {
    position: relative;
    top: auto;
    height: auto;
    padding: 30px 0 10px
  }

  .how-route {
    max-height: none;
    height: 140px
  }

  .tickets {
    flex-wrap: wrap
  }

  .ticket {
    opacity: 1;
    transform: none;
    flex: 1 1 260px
  }

  .why-section {
    padding: 100px 0 110px
  }

  .why-row {
    gap: 18px
  }

  .why-row .wc-num {
    font-size: clamp(42px, 14vw, 64px)
  }

  .hero2 {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  .hero2-photo {
    position: absolute;
    inset: 0;
    height: 100%
  }

  .hero2-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  .hero2-scrim {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  .hero2-content {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  .hero2-content h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  .hero2-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  .hero2-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  .hero2-stats li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  .sa-services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .tick-truck {
    display: none
  }

  .handle2-photos {
    height: auto;
    padding: 0 4% 60px
  }

  .h2p-main {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    transform: rotate(0)
  }

  .h2p-side {
    display: none
  }

  .handle2-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .handle2-strip-grid {
    grid-template-columns: 1fr 1fr
  }

  .h2s-item:nth-child(3) {
    border-left: 0
  }

  .h2s-item:nth-child(odd) {
    border-left: 0
  }

  .pro-panel {
    margin-top: -70px;
    padding: 36px 6vw 44px
  }

  .pro-chips {
    grid-template-columns: 1fr 1fr
  }

  .fleet-card:nth-child(2) {
    margin-top: 0
  }

  .fleet-card:nth-child(2) .fleet-card-photo {
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%)
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr
  }

  .process-line-track,
  .process-marker {
    display: none
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px
  }

  .process-step {
    opacity: 1;
    text-align: left
  }

  .process-step.active .process-photo,
  .process-photo {
    filter: none
  }

  .split-section {
    flex-direction: column;
    min-height: auto
  }

  .split-section.hovering .split-panel,
  .split-section.hovering .split-panel.is-hovered {
    flex: none
  }

  .split-panel {
    height: 360px
  }

  .split-content p {
    max-height: 160px;
    opacity: 1
  }

  .split-divider {
    top: 50%;
    left: 50%
  }

  .rj-slide {
    flex-basis: 82%
  }

  .svc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  .svc-hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
    order: 0
  }

  .svc-hero-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  .svc-hero-photo::before {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  .svc-hero-copy {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  .svc-hero-inner h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  .svc-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  .svc-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  .svc-trust li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  .industries-grid2 {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px
  }

  .industries-photo {
    order: -1;
    height: auto;
    aspect-ratio: 16/10
  }

  .industries-stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .industries-stat:nth-child(3) {
    border-left: 0
  }

  .industries-stat:nth-child(odd) {
    border-left: 0
  }

  .tf-grid {
    grid-template-columns: 1fr 1fr
  }

  .tf-panel {
    margin-top: -80px
  }

  .mf-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 520px
  }

  .mf-card,
  .mf-card:nth-child(2) {
    transform: none
  }

  .kp-rail {
    display: none
  }

  .kp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    text-align: left
  }

  .kp-step b::before {
    content: attr(data-n) " ";
    color: var(--amber)
  }

  .mt-intro-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 70px
  }

  .mt-collage {
    order: -1;
    max-width: 520px;
    aspect-ratio: 1/0.86
  }

  .mt-steps-grid {
    grid-template-columns: 1fr 1fr
  }

  .mt-step {
    border-left: 0;
    padding: 22px 5vw
  }

  .mt-step:nth-child(n

    /**/
    +3) {
    border-top: 1px solid rgba(255, 255, 255, .12)
  }

  .iv-photo {
    min-height: 0;
    height: min(72vw, 460px)
  }

  .col-slider {
    grid-template-columns: repeat(2, 1fr);
    height: 520px
  }

  .col-slider-col:nth-child(3) {
    display: none
  }

  .rec-intro-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .rec-check {
    grid-template-columns: 1fr
  }

  .rec-callout {
    display: none
  }

  .rec-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px
  }

  .rec-gallery-strip::before {
    display: none
  }

  .rec-cap-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .rec-eq-tag {
    display: none
  }

  .rec-env-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 8px
  }

  .rec-cable-wrap {
    display: none
  }

  .rec-cable-steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px
  }

  .pnr-tl-track {
    grid-template-columns: 1fr
  }

  .pnr-feature-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .pnr-feature .pnr-feature-photo {
    min-height: 420px
  }

  .pnr-feature .pnr-feature-copy {
    padding: 60px 6vw 72px
  }

  .pnr-tl-rail {
    display: none
  }

  .pnr-tl-card:nth-child(2),
  .pnr-tl-card:nth-child(3) {
    text-align: left
  }

  .pnr-tl-card p,
  .pnr-tl-card:nth-child(2) p,
  .pnr-tl-card:nth-child(3) p {
    margin: 0;
    max-width: none
  }
}

@media (max-width:767px) {
  body {
    font-size: 16px
  }

  .an-figure {
    font-size: clamp(120px, 32vw, 190px)
  }

  .join-band {
    flex-direction: column;
    align-items: stretch;
    text-align: center
  }

  .join-btn {
    width: 100%;
    justify-content: center
  }

  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-meta {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px
  }

  .trust-strip ul {
    grid-template-columns: 1fr 1fr
  }

  .trust-strip li {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 14px 4vw
  }

  .svc {
    height: auto;
    min-height: 500px
  }

  .svc h3 {
    min-height: 0
  }

  .svc-img {
    height: 180px
  }

  .svc-arrow {
    display: none
  }

  .tickets {
    flex-direction: column
  }

  .tick-line {
    display: none
  }

  .drive-stage {
    height: 64vh
  }

  .drive-truck {
    width: min(86vw, 460px)
  }

  .fleet {
    padding: 80px 0 90px;
    overflow: hidden
  }

  .fleet .chap-head {
    padding-bottom: 0;
    margin-bottom: 20px
  }

  .fleet .chap-head h2 {
    font-size: clamp(28px, 6.5vw, 42px);
    line-height: 1.05;
    margin: 12px 0 16px
  }

  .fleet .chap-head p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 0
  }

  .cols {
    display: flex;
    gap: 16px;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 6vw 24px;
    margin: 20px -6vw 0;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none
  }

  .cols::-webkit-scrollbar {
    display: none
  }

  .col {
    display: contents
  }

  .col figure:nth-child(n+5) {
    display: none
  }

  .col figure {
    flex: 0 0 min(290px, 78vw);
    width: min(290px, 78vw);
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(151, 183, 235, .22);
    box-shadow: 0 16px 36px -12px rgba(4, 8, 22, .55);
    background: var(--asphalt-3)
  }

  .col img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
  }

  .col figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 16px 14px;
    background: linear-gradient(0deg, rgba(6, 10, 26, .95) 0%, rgba(6, 10, 26, .72) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 1;
    transform: none
  }

  .col figcaption span {
    font-family: var(--font-cond);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 14px;
    color: #F8F8F5;
    line-height: 1.25
  }

  .col figcaption b {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 6px
  }

  .col figcaption b::before {
    content: "●";
    font-size: 8px
  }

  .rev {
    flex-basis: 82vw;
    padding: 26px 22px
  }

  .rev p {
    font-size: 15.5px
  }

  .rev-track {
    animation-duration: 22s
  }

  .cover-grid {
    grid-template-columns: 1fr
  }

  .panthers-grid {
    grid-template-columns: 1fr
  }

  .p-facts {
    flex-direction: column
  }

  .p-facts div {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .p-facts div:first-child {
    border-top: 0
  }

  .call-band-inner {
    flex-direction: column;
    text-align: center
  }

  .call-band-actions {
    flex-direction: column;
    width: 100%
  }

  .call-band .btn-call {
    justify-content: center;
    width: 100%
  }

  .btn-quote-dark {
    width: 100%;
    text-align: center
  }

  .btn-quote {
    width: 100%;
    text-align: center;
    justify-content: center
  }

  .foot-grid {
    grid-template-columns: 1fr
  }

  .site-foot {
    padding-bottom: 130px
  }

  .social-grid,
  body .social-grid,
  body[class*="tpl-"] .social-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 28px !important
  }

  .soc-card {
    padding: 18px 18px;
    gap: 14px
  }

  .soc-card .chip {
    width: 48px;
    height: 48px
  }

  .soc-card svg {
    width: 24px;
    height: 24px
  }

  .soc-card.gg .chip::after {
    font-size: 24px
  }

  .soc-card b {
    font-size: 17px
  }

  .soc-card span {
    font-size: 13px
  }

  .soc-card em {
    font-size: 12px
  }

  .road-progress {
    display: none
  }

  .float-call {
    right: 12px;
    left: 12px;
    bottom: 12px;
    justify-content: center;
    border-radius: 14px;
    padding: 18px;
    font-size: 22px;
    animation: hazpulse 1.6s ease-in-out infinite;
  }

  .site-head {
    padding: 10px 4vw
  }

  .logo-img {
    height: 32px
  }

  .head-call span.txt {
    display: none
  }

  .head-call {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 16px;
    justify-content: center
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    margin-right: 10px
  }
}

@media (max-width:380px) {
  .site-head {
    padding: 10px 3vw
  }

  .logo-img {
    height: 28px
  }

  .head-call {
    padding: 9px 12px;
    min-width: 40px;
    min-height: 40px
  }

  .head-call svg {
    width: 15px;
    height: 15px
  }

  .nav-toggle {
    margin-right: 6px;
    padding: 8px;
    min-width: 40px;
    min-height: 40px
  }

  .soc-card {
    padding: 14px 14px;
    gap: 11px
  }

  .soc-card .chip {
    width: 42px;
    height: 42px
  }

  .soc-card svg {
    width: 20px;
    height: 20px
  }

  .soc-card.gg .chip::after {
    font-size: 20px
  }

  .soc-card b {
    font-size: 15px
  }

  .soc-card span {
    font-size: 12px
  }

  .soc-card em {
    font-size: 11px
  }

  .story-grid,
  body .story-grid,
  body[class*="tpl-"] .story-grid {
    gap: 24px !important
  }

  .big-figure {
    font-size: 74px
  }

  .big-figure-label {
    font-size: 16px
  }

  .story-badges li {
    padding: 12px 14px;
    font-size: 13.5px
  }

  .story-copy h2 {
    font-size: 23px
  }

  .story-copy p {
    font-size: 14.5px
  }

  .careers-points li {
    grid-template-columns: 28px 1fr;
    column-gap: 10px
  }

  .careers-points .cp-num {
    font-size: 17px
  }

  .careers-points b {
    font-size: 15.5px
  }

  .careers-points li>span:not(.cp-num) {
    font-size: 13.5px
  }

  .areas-map {
    max-width: 280px;
    margin: 0 auto 26px
  }

  .areas-map .map-photo,
  .map-photo {
    left: 1% !important;
    top: 20% !important;
    width: 42% !important;
    max-width: 125px !important;
  }

  .areas-map .pin-label,
  .pin-label,
  .map-pin .pin-label {
    font-size: 10.5px !important
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important
  }

  .rv {
    opacity: 1 !important;
    transform: none !important
  }

  .beam-mask {
    clip-path: none !important
  }

  .drive-truck {
    transform: translateX(24vw) !important
  }



  .hero-glow {
    animation: none;
    opacity: .6
  }

  .col-slider-track {
    animation: none
  }
}

@media (max-width:900px) {
  .about-hero {
    min-height: auto
  }

  .about-hero-inner {
    padding: 150px 6vw 54px
  }

  .about-hero-scrim {
    background: linear-gradient(180deg, rgba(5, 7, 18, .86) 0%, rgba(5, 7, 18, .72) 55%, rgba(5, 7, 18, .80) 100%)
  }

  .about-est {
    top: 96px;
    right: 6vw;
    padding: 9px 20px
  }

  .about-hero-points {
    flex-wrap: wrap;
    width: auto;
    max-width: none;
    gap: 16px 26px
  }

  .about-hero-points li {
    width: 100%
  }

  .story {
    padding: 60px 0 70px
  }

  .story-grid,
  body .story-grid,
  body[class*="tpl-"] .story-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important
  }

  .big-figure {
    font-size: clamp(88px, 22vw, 140px);
    line-height: .82
  }

  .big-figure-label {
    font-size: clamp(18px, 4.8vw, 24px);
    margin-top: 4px
  }

  .story-badges {
    margin-top: 24px;
    gap: 12px
  }

  .story-badges li {
    padding: 14px 18px;
    font-size: 15px;
    gap: 12px;
    opacity: 1;
    transform: none
  }

  .story-badges li svg {
    width: 20px;
    height: 20px
  }

  .story-copy h2 {
    font-size: clamp(26px, 6vw, 38px);
    margin-bottom: 16px
  }

  .story-copy p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
    max-width: 100%
  }

  .story-quote {
    padding: 18px 20px;
    font-size: 16px;
    margin-top: 18px
  }

  .timeline,
  body .timeline,
  body[class*="tpl-"] .timeline {
    grid-template-columns: 1fr !important;
    row-gap: 32px
  }

  .timeline::before {
    display: none
  }

  .tl-track {
    top: 12px;
    bottom: 24px;
    left: 10px;
    right: auto;
    width: 3px;
    height: auto
  }

  .tl-track-fill {
    width: 100% !important;
    height: 0%;
    transition: height 1.6s cubic-bezier(.25, 1, .5, 1)
  }

  .tl-track-glow {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -6px;
    transform: translateX(-50%)
  }

  .tl-item {
    padding-top: 0;
    padding-left: 38px;
    padding-right: 0
  }

  .tl-dot-wrap {
    top: 0;
    left: 0
  }

  .careers {
    padding: 60px 0 70px
  }

  .careers-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px
  }

  .careers-photo {
    max-width: 440px;
    margin: 0 auto
  }

  .careers-points {
    margin: 24px 0 0;
    gap: 18px
  }

  .careers-points li {
    grid-template-columns: 32px 1fr;
    column-gap: 14px;
    row-gap: 4px
  }

  .careers-points .cp-num {
    font-size: 19px
  }

  .careers-points b {
    font-size: 17px
  }

  .careers-points li>span:not(.cp-num) {
    font-size: 15px;
    line-height: 1.55
  }

  .careers-quote {
    margin-top: 24px;
    padding: 18px 20px;
    font-size: 16px
  }

  .careers-badges {
    margin-bottom: 44px
  }

  .cb-item {
    flex: 1 1 100%;
    border-right: 0
  }

  .training-scroller {
    padding: 0 4vw
  }

  .training-arrow {
    display: none
  }

  .train-card {
    flex-basis: 70vw
  }

  .jobs-scroller {
    width: 92vw
  }

  .jobs-arrow {
    width: 44px;
    height: 44px
  }

  .jobs-arrow.prev {
    left: 8px
  }

  .jobs-arrow.next {
    right: 8px
  }

  .job-card figcaption {
    left: 16px;
    bottom: 16px;
    padding: 12px 16px;
    max-width: calc(100% - 32px)
  }

  .job-card figcaption b {
    font-size: 16px
  }

  .svc-hero-scrim {
    background: linear-gradient(180deg, rgba(3, 5, 14, .86) 0%, rgba(3, 5, 14, .74) 55%, rgba(3, 5, 14, .30) 80%, transparent 100%);
  }

  .svc-hero-strip-grid {
    grid-template-columns: 1fr 1fr
  }

  .svc-hero-strip-item {
    border-left: 0;
    padding: 20px 4vw
  }

  .wall-item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/4
  }

  .wall-item:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4
  }

  .wall-cap,
  .wall-badge {
    opacity: 1;
    transform: none
  }

  .wall-item::after {
    opacity: .75
  }

  .handle-arrow.prev {
    left: -14px
  }

  .handle-arrow.next {
    right: -14px
  }

  .faq-visual {
    order: 2;
    min-height: 300px;
    width: 100%;
    margin-left: 0;
    border-width: 3px
  }

  .faq-visual img {
    position: absolute;
    inset: 0
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    max-width: 100%
  }

  .faq-cta-divider {
    display: none
  }

  .mt-hero-bg img {
    object-position: 20% center
  }

  .mt-strip-item:nth-child(1),
  .mt-strip-item:nth-child(2) {
    border-top: 0
  }

  .mt-hero-inner {
    padding-top: 150px
  }

  .mt-journey-body {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .mt-jvisual {
    position: relative;
    top: auto;
    aspect-ratio: 16/10
  }

  .mt-mosaic {
    grid-template-columns: 1fr;
    height: auto;
    display: flex;
    flex-direction: column
  }

  .mt-mos-item {
    height: 180px;
    flex: none
  }

  .mt-mos-item.hover-grow {
    flex-grow: 0
  }

  .mt-mos-desc {
    max-height: 100px;
    opacity: 1
  }

  .hw-jstep {
    padding-bottom: 62px
  }

  .hw-jstep:last-child {
    padding-bottom: 0
  }

  .ep-grid {
    grid-template-columns: 1fr
  }

  .svc-hero-photo::before {
    background: linear-gradient(180deg, rgba(6, 9, 22, .88) 0%, rgba(6, 9, 22, .74) 55%, rgba(6, 9, 22, .82) 100%)
  }

  .mt-strip-item:nth-child(n

    /**/
    +3) {
    border-top: 1px solid rgba(255, 255, 255, .14)
  }

  .rec-hero-scrim {
    background: linear-gradient(180deg, rgba(3, 5, 14, .86) 0%, rgba(3, 5, 14, .74) 55%, rgba(3, 5, 14, .30) 80%, transparent 100%);
  }
}

@media (max-width:680px) {
  .story-badges li {
    font-size: 16px;
    padding: 15px 18px;
    gap: 12px
  }

  .about-crumb {
    top: 92px;
    padding: 0 6vw
  }

  .timeline {
    grid-template-columns: 1fr
  }

  .tl-item:last-child {
    text-align: left;
    padding-right: 24px
  }

  .tl-item:last-child::before {
    left: 0;
    right: auto
  }

  .tl-bg-watermark {
    font-size: 110px
  }

  .values-grid {
    grid-template-columns: 1fr
  }

  .value-card {
    aspect-ratio: 16/11
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }

  .svc-block-list {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .handle2-strip-grid {
    grid-template-columns: 1fr
  }

  .h2s-item {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .h2s-item:first-child {
    border-top: 0
  }

  .pro-chips {
    grid-template-columns: 1fr
  }

  .fleet-grid {
    grid-template-columns: 1fr
  }

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

  .rj-slide {
    flex-basis: 88%;
    margin: 0 1.5%
  }

  .rj-arrow {
    width: 42px;
    height: 42px
  }

  .svc-final {
    padding: 120px 0
  }

  .industry-btns {
    grid-template-columns: 1fr 1fr
  }

  .industries-stats-grid {
    grid-template-columns: 1fr
  }

  .industries-stat {
    border-left: 0;
    border-top: 1px solid var(--line)
  }

  .industries-stat:first-child {
    border-top: 0
  }

  .pnr-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0
  }

  .pnr-hero-stats li {
    padding: 0 14px
  }

  .pnr-hero-stats li:nth-child(odd) {
    border-left: 0;
    padding-left: 0
  }

  .pnr-ticks {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .cb-item {
    flex: 1 1 100%
  }

  .mt-panel {
    width: 82vw;
    height: 52vh;
    min-height: 340px
  }

  .mt-job-card {
    width: 82vw
  }

  .svc-select-grid {
    grid-template-columns: 1fr
  }

  .connect-cards {
    grid-template-columns: 1fr
  }

  .svc-trust li {
    margin-right: 22px;
    padding-right: 0;
    border-right: none
  }

  .acc-strip-grid {
    grid-template-columns: 1fr
  }

  .sa-services-grid {
    grid-template-columns: 1fr
  }

  .col-slider {
    height: 420px
  }

  .rec-gallery-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .rec-env-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .rec-cable-steps {
    grid-template-columns: 1fr
  }

  .rec-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0
  }

  .rec-stats-grid div {
    border-left: 0
  }
}

@media (max-width:560px) {
  .areas-cards {
    grid-template-columns: 1fr
  }

  .area-card.wide {
    grid-column: auto
  }

  .ci-item {
    flex-wrap: wrap;
    gap: 14px
  }

  .ci-action {
    width: 100%;
    padding-left: 62px
  }

  .ci-map-card {
    left: 16px;
    right: 16px;
    bottom: 28px;
    max-width: none
  }

  .qf-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px
  }

  .qf-cta .btn-call {
    justify-content: center;
    width: 100%
  }

  .industries-visual {
    height: 260px
  }

  .areas-map {
    max-width: 320px;
    margin: 0 auto 36px
  }

  .areas-map .map-photo,
  .map-photo {
    left: 2% !important;
    top: 22% !important;
    bottom: auto !important;
    width: 44% !important;
    max-width: 150px !important;
    aspect-ratio: 16/11;
  }

  .areas-map .pin-label,
  .pin-label,
  .map-pin .pin-label {
    font-size: 11.5px !important;
    font-weight: 700;
    color: #E2E8F6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
  }

  .map-pin .pin-dot {
    width: 13px;
    height: 13px
  }

  .finder-opts {
    grid-template-columns: 1fr
  }

  .cov-metrics {
    grid-template-columns: 1fr
  }

  .tf-grid {
    grid-template-columns: 1fr
  }

  .kp-grid {
    grid-template-columns: 1fr
  }

  .mt-checks {
    grid-template-columns: 1fr
  }

  .mt-steps-grid {
    grid-template-columns: 1fr
  }

  .industries-list {
    grid-template-columns: 1fr
  }

  .iv-photo {
    height: min(84vw, 380px)
  }

  .iv-photo figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px
  }
}

@media (max-width:600px) {
  .need-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:520px) {
  .faq-q {
    padding: 14px 16px;
    gap: 12px
  }

  .faq-icon {
    width: 40px;
    height: 40px
  }

  .faq-a p {
    padding-left: 20px
  }

  .faq-cta {
    padding: 22px 22px
  }

  .industry-btns {
    grid-template-columns: 1fr
  }
}

@media (max-width:940px) {
  .mt-intro-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .mt-principles {
    grid-template-columns: repeat(2, 1fr)
  }

  .mt-intro-photos {
    height: 380px
  }

  .mt-access-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width:760px) {
  .mt-eq-tag {
    position: static;
    display: inline-flex;
    margin: 6px 6px 0 0
  }

  .mt-equip-stage {
    display: flex;
    flex-direction: column;
    gap: 16px
  }

  .mt-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px
  }

  .mt-mas-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2
  }

  .mt-mas-item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3
  }

  .mt-mas-item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3
  }

  .mt-mas-item:nth-child(4) {
    grid-column: 1/3;
    grid-row: 3/4
  }

  .mt-mas-cap {
    opacity: 1;
    transform: none
  }
}

@media (max-width:700px) {
  .sa-card {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 26px 24px
  }

  .sa-card-icon {
    width: 56px;
    height: 56px
  }

  .sa-card-icon svg {
    width: 24px;
    height: 24px
  }

  .sa-card-arrow {
    display: none
  }

  .sa-outside-card {
    padding: 32px 28px
  }

  .sa-outside-cta {
    width: 100%
  }

  .sa-outside-cta .btn-quote {
    width: 100%;
    text-align: center;
    justify-content: center
  }
}

@media (max-width:1100px) {
  .pnr-offer-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .pnr-offer-mark {
    flex-direction: row;
    align-items: baseline;
    gap: 14px
  }

  .pnr-watermark {
    width: 90%;
    opacity: .05
  }
}

/* =========================================================
   PAGE-SPECIFIC OVERRIDES — scoped under body.tpl-*
   ========================================================= */

/* ===== PAGE: page-home  (scope: body.tpl-front-page) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-front-page {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-25%)
  }
}

/* page-specific rules */
body.tpl-front-page {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F8F8F5;
  --grey: #EDF2FB;
  --grey-dim: #CAD5EE;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #CAD5EE;
  --grey-dark: #8A98B8;
  --line: rgba(151, 183, 235, .18);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #0B1130;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F8F8F5;
  --night-grey: #D0DBF2;
  --night-line: rgba(151, 183, 235, .18);
  --night-grey-dim: #9EB0D4;
}

body.tpl-front-page {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-front-page .drive-copy h2 {
  color: var(--white)
}

body.tpl-front-page .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-front-page .head-nav {
  align-items: center
}

body.tpl-front-page .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-front-page .chap-head p {
  max-width: 620px;
  color: var(--grey);
  font-weight: 600;
  margin-top: 18px;
  font-size: 18px
}

body.tpl-front-page .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-front-page .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-front-page .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-front-page .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-front-page .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-front-page .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-front-page .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-front-page .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-front-page .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-front-page .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-front-page .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-front-page .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-front-page .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-front-page .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-front-page .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-front-page .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-front-page .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-front-page .about-lead {
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-front-page .join-copy p {
  color: var(--grey);
  font-weight: 600;
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-front-page .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-front-page .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-front-page .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-front-page 34s linear infinite;
}

body.tpl-front-page .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-front-page .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-front-page .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-front-page .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-front-page .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-front-page .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-front-page .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-front-page .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-front-page .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-front-page .p-lead {
  color: var(--grey);
  font-weight: 600;
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-front-page .p-offer-sub {
  color: var(--grey);
  font-weight: 600;
  font-size: 15.5px
}

body.tpl-front-page .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-front-page .node {
  cursor: pointer
}

body.tpl-front-page .node {
  transition: opacity .35s
}

body.tpl-front-page .final p {
  color: var(--grey);
  font-weight: 600;
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-front-page .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-front-page .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  margin-top: 16px
}

body.tpl-front-page .social-head h2 {
  margin-top: 12px
}

body.tpl-front-page .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-front-page .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-front-page .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-front-page .foot-brand p {
  color: var(--grey);
  font-weight: 600;
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-front-page .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

/* page-specific responsive rules */
@media (max-width:900px) {
  body.tpl-front-page .fleet {
    padding: 80px 0 90px;
    overflow: hidden
  }

  body.tpl-front-page .cols {
    display: flex;
    gap: 16px;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 12px 6vw 24px;
    margin: 20px -6vw 0;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none
  }

  body.tpl-front-page .col {
    display: contents
  }

  body.tpl-front-page .col figure:nth-child(n+5) {
    display: none
  }

  body.tpl-front-page .col figure {
    flex: 0 0 min(290px, 78vw);
    width: min(290px, 78vw);
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(151, 183, 235, .22);
    box-shadow: 0 16px 36px -12px rgba(4, 8, 22, .55);
    background: var(--asphalt-3)
  }

  body.tpl-front-page .col img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
  }

  body.tpl-front-page .col figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 26px 16px 14px;
    background: linear-gradient(0deg, rgba(6, 10, 26, .95) 0%, rgba(6, 10, 26, .72) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 1;
    transform: none
  }

  body.tpl-front-page .col figcaption span {
    font-family: var(--font-cond);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 14px;
    color: #F8F8F5;
    line-height: 1.25
  }

  body.tpl-front-page .col figcaption b {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 6px
  }

  body.tpl-front-page .col figcaption b::before {
    content: "●";
    font-size: 8px
  }
}

/* ===== PAGE: page-about  (scope: body.tpl-page-about) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-about {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* page-specific rules */
body.tpl-page-about {
  --asphalt: #0C1329;
  --asphalt-2: #111A33;
  --asphalt-3: #182442;
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F8F8F5;
  --grey: #EDF2FB;
  --grey-dim: #CAD5EE;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #CAD5EE;
  --grey-dark: #8A98B8;
  --line: rgba(151, 183, 235, .18);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #0B1130;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F8F8F5;
  --night-grey: #D0DBF2;
  --night-line: rgba(151, 183, 235, .18);
  --night-grey-dim: #9EB0D4;
}

body.tpl-page-about {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-about .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-about .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-about .head-nav {
  align-items: center
}

body.tpl-page-about .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-about .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-about .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(41, 140, 224, .4), transparent 68%), radial-gradient(65% 70% at 5% 100%, rgba(18, 102, 196, .32), transparent 68%), linear-gradient(180deg, rgba(18, 102, 196, .1), transparent 30%), var(--asphalt);
  padding-bottom: 130px
}

body.tpl-page-about .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-about .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-about .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .28), transparent 65%), radial-gradient(45% 50% at 95% 0%, rgba(18, 102, 196, .2), transparent 60%), var(--asphalt);
  overflow: hidden
}

body.tpl-page-about .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-about .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--amber);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-about .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--asphalt) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--asphalt) 9px, transparent 10px), linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-about .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(151, 183, 235, .22);
}

body.tpl-page-about .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-cyan);
  text-transform: uppercase;
}

body.tpl-page-about .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-cyan);
  display: grid;
  place-items: center;
  color: var(--kwt-cyan);
  font-family: var(--font-cond);
}

body.tpl-page-about .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px
}

body.tpl-page-about .ticket p {
  color: var(--grey);
  font-size: 15px
}

body.tpl-page-about .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--grey-dim);
  text-transform: uppercase
}

body.tpl-page-about .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-about .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-about .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-about .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(41, 140, 224, .16), transparent 62%), radial-gradient(50% 55% at 5% 100%, rgba(18, 102, 196, .12), transparent 60%), var(--asphalt);
  padding: 110px 0 100px;
}

body.tpl-page-about .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-about .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-about .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(41, 140, 224, .3), transparent 62%), radial-gradient(45% 50% at 0% 100%, rgba(18, 102, 196, .2), transparent 60%), var(--asphalt);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-about .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(41, 140, 224, .28), transparent 62%), radial-gradient(45% 50% at 100% 100%, rgba(18, 102, 196, .18), transparent 60%), var(--asphalt);
  padding-bottom: 120px
}

body.tpl-page-about .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-about 34s linear infinite;
}

body.tpl-page-about .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-about .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-about .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(41, 140, 224, .32), transparent 62%), radial-gradient(45% 55% at 5% 100%, rgba(18, 102, 196, .18), transparent 60%), var(--asphalt);
  padding: 74px 0 84px;
}

body.tpl-page-about .accred-head {
  max-width: 660px;
  margin-bottom: 6px
}

body.tpl-page-about .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  margin: 14px 0 18px
}

body.tpl-page-about .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px
}

body.tpl-page-about .accred-grid .acc-card {
  position: relative;
  overflow: visible;
  align-items: center
}

body.tpl-page-about .acc-seal {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px -6px rgba(4, 8, 22, .55);
}

body.tpl-page-about .acc-seal svg {
  width: 19px;
  height: 19px
}

body.tpl-page-about .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-about .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-about .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-about .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-about .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-about .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(41, 140, 224, .26), transparent 62%), radial-gradient(45% 50% at 95% 0%, rgba(18, 102, 196, .16), transparent 60%), var(--asphalt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-about .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-about .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-about .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(41, 140, 224, .3), transparent 62%), radial-gradient(45% 50% at 0% 0%, rgba(18, 102, 196, .18), transparent 60%), var(--asphalt);
  padding-bottom: 130px
}

body.tpl-page-about .node {
  cursor: pointer
}

body.tpl-page-about .node {
  transition: opacity .35s
}

body.tpl-page-about .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-about .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(41, 140, 224, .3), transparent 62%), radial-gradient(40% 50% at 50% 100%, rgba(18, 102, 196, .16), transparent 60%), var(--asphalt);
  padding: 90px 0 100px
}

body.tpl-page-about .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-about .social-head h2 {
  margin-top: 12px
}

body.tpl-page-about .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-about .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-about .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey)
}

body.tpl-page-about .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-about .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-about {
  --asphalt: #1B1670;
  --asphalt-2: #231E92;
  --asphalt-3: #2A2496;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --line: rgba(151, 183, 235, .16);
}

body.tpl-page-about {
  background: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, #1B1670 100%)
}

body.tpl-page-about {
  background: var(--asphalt)
}

body.tpl-page-about .timeline {
  will-change: transform
}

body.tpl-page-about .timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

body.tpl-page-about .local-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

body.tpl-page-about .local-photo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block
}

body.tpl-page-about .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-about .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-about .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-about .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-about .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-about .team-section {
  padding: 100px 0 110px;
  background: var(--asphalt)
}

body.tpl-page-about .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

body.tpl-page-about .team-photo {
  aspect-ratio: 1/1;
  border-radius: 4px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-about .team-grid {
    grid-template-columns: 1fr 1fr
  }
}

/* ===== PAGE: page-contact  (scope: body.tpl-page-contact) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-contact {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* page-specific rules */
body.tpl-page-contact {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --slate: #55617E;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-contact {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-contact .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-contact .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-contact .head-nav {
  align-items: center
}

body.tpl-page-contact .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-contact .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-contact .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-contact .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-contact .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-contact .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-contact .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-contact .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-contact .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-contact .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-contact .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-contact .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-contact .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-contact .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-contact .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-contact .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-contact .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-contact .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-contact .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-contact .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-contact .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-contact .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-contact .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-contact .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-contact 34s linear infinite;
}

body.tpl-page-contact .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-contact .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-contact .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-contact .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-contact .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-contact .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-contact .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-contact .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-contact .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-contact .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-contact .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-contact .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-contact .node {
  cursor: pointer
}

body.tpl-page-contact .node {
  transition: opacity .35s
}

body.tpl-page-contact .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-contact .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-contact .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-contact .social-head h2 {
  margin-top: 12px
}

body.tpl-page-contact .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-contact .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-contact .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-contact .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-contact .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-contact .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 100%);
}

body.tpl-page-contact .svc-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

body.tpl-page-contact .svc-hero-inner {
  position: relative;
  z-index: 2;
  padding: 170px 4vw 60px min(6vw, 90px);
  max-width: 760px
}

body.tpl-page-contact .svc-hero-photo img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

body.tpl-page-contact .svc-crumb {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-contact .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-contact .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-contact .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-contact .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-contact .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-contact .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-contact .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-contact .handle-arrow.prev {
  left: -14px
}

body.tpl-page-contact .handle-arrow.next {
  right: -14px
}

body.tpl-page-contact .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-contact .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-contact .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-contact .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-contact .handle-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

body.tpl-page-contact .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-contact .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-contact .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-contact .svc-block-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px
}

body.tpl-page-contact .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}

body.tpl-page-contact .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-contact .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-contact .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-contact .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-contact .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-contact .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-contact .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-contact .rj-slide.active {
  opacity: 1
}

body.tpl-page-contact .rj-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(8, 12, 26, .9), transparent 80%);
  color: #F5F5F2;
}

body.tpl-page-contact .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-contact .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-contact .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-contact .rj-arrow.prev {
  left: -26px
}

body.tpl-page-contact .rj-arrow.next {
  right: -26px
}

body.tpl-page-contact .why-section {
  padding: 100px 0 110px;
  background: linear-gradient(170deg, #1B1670 0%, var(--kwt-blue) 100%)
}

body.tpl-page-contact .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-contact .why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.tpl-page-contact .faq-section {
  padding: 100px 0 110px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line)
}

body.tpl-page-contact .faq-head {
  max-width: 640px;
  margin-bottom: 44px
}

body.tpl-page-contact .faq-list {
  max-width: 820px
}

body.tpl-page-contact .faq-item {
  border-bottom: 1px solid var(--line)
}

body.tpl-page-contact .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

body.tpl-page-contact .faq-a p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.65;
  padding-bottom: 22px;
  max-width: 680px
}

body.tpl-page-contact .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

body.tpl-page-contact .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-contact .svc-final::before {
  display: none;
}

body.tpl-page-contact .svc-final .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-contact .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-contact .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-contact .svc-final-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-contact .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-contact .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-contact .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-contact .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-contact .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-contact .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-contact .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-contact .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-contact .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-contact .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-contact .quote-section {
  padding: 120px 0 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-contact .quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 110%, rgba(255, 179, 0, .16), transparent 60%)
}

body.tpl-page-contact .quote-section .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-contact .quote-section .eyebrow {
  color: var(--amber);
  justify-content: center
}

body.tpl-page-contact .quote-section h2 {
  color: #F8F8F5;
  font-size: clamp(32px, 4.4vw, 56px);
  margin: 18px 0 20px
}

body.tpl-page-contact .team-section {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
}

body.tpl-page-contact .team-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center
}

body.tpl-page-contact .team-photo {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(6, 10, 24, .5)
}

body.tpl-page-contact .quote-section {
  padding: 100px 0 110px !important;
  text-align: left !important;
  background: #F4F6FA !important
}

body.tpl-page-contact .quote-section::before {
  display: none
}

body.tpl-page-contact .quote-section .wrap {
  max-width: 1240px !important
}

body.tpl-page-contact .quote-section .eyebrow {
  justify-content: flex-start !important;
  color: #1866C4 !important
}

body.tpl-page-contact .quote-section h2 {
  color: var(--ink) !important;
  text-align: left
}

body.tpl-page-contact .quote-side {
  grid-area: side;
  align-self: stretch
}

body.tpl-page-contact .quote-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%
}

body.tpl-page-contact .team-section {
  position: relative;
  padding: 130px 0
}

/* page-specific responsive rules */
@media (max-width:900px) {
  body.tpl-page-contact .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-contact .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-contact .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }
}

@media (max-width:1020px) {
  body.tpl-page-contact .svc-crumb {
    padding: 96px 6vw 0
  }

  body.tpl-page-contact .why-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-contact .areas-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  body.tpl-page-contact .team-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

/* ===== PAGE: page-services  (scope: body.tpl-page-services) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-services {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes heroGlowPulse__tpl-page-services {

  0%,
  100% {
    opacity: .45;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.12)
  }
}

/* page-specific rules */
body.tpl-page-services {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-services {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-services .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-services .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-services .head-nav {
  align-items: center
}

body.tpl-page-services .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-services .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-services .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-services .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-services .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-services .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-services .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-services .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-services .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-services .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-services .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-services .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-services .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-services .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-services .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-services .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-services .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-services .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-services .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-services .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-services .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-services .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-services .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-services .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-services 34s linear infinite;
}

body.tpl-page-services .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-services .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-services .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-services .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-services .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-services .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-services .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-services .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-services .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-services .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-services .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-services .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-services .node {
  cursor: pointer
}

body.tpl-page-services .node {
  transition: opacity .35s
}

body.tpl-page-services .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-services .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-services .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-services .social-head h2 {
  margin-top: 12px
}

body.tpl-page-services .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-services .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-services .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey)
}

body.tpl-page-services .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-services .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-services .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 96vh;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-services .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 150px 4vw 40px min(6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: 760px
}

body.tpl-page-services .svc-hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

body.tpl-page-services .svc-hero-photo img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 126%;
  object-fit: cover;
  object-position: center 38%;
  will-change: transform;
}

body.tpl-page-services .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 5, 14, .95) 0%, rgba(3, 5, 14, .86) 26%, rgba(3, 5, 14, .52) 52%, rgba(3, 5, 14, .14) 74%, transparent 92%), linear-gradient(0deg, rgba(3, 5, 14, .55) 0%, transparent 30%);
}

body.tpl-page-services .hero-glow {
  position: absolute;
  z-index: 3;
  left: 6%;
  bottom: 8%;
  width: 520px;
  height: 340px;
  max-width: 60vw;
  background: radial-gradient(circle, rgba(255, 88, 26, .55) 0%, rgba(255, 166, 26, .28) 34%, transparent 70%);
  filter: blur(6px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroGlowPulse__tpl-page-services 3.2s ease-in-out infinite;
}

body.tpl-page-services .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-services .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-services .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-services .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-services .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-services .svc-trust {
  position: relative;
  z-index: 5;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  max-width: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%);
}

body.tpl-page-services .svc-trust li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, .16)
}

body.tpl-page-services .svc-trust li span {
  display: block;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px;
  max-width: 150px;
  line-height: 1.3
}

body.tpl-page-services .handle-track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-services .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-services .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-services .handle-arrow.prev {
  left: -50px
}

body.tpl-page-services .handle-arrow.next {
  right: -50px
}

body.tpl-page-services .handle-card {
  flex: 0 0 min(430px, 86vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  border-top: 3px solid var(--amber);
  padding: 0 30px 34px;
  height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease);
}

body.tpl-page-services .handle-img {
  margin: 0 -30px 22px;
  position: relative;
  overflow: hidden;
  height: 250px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-services .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03);
  transition: transform .5s var(--ease)
}

body.tpl-page-services .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 55%, rgba(18, 102, 196, .55) 100%)
}

body.tpl-page-services .handle-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
  color: #0C1020;
  background: var(--amber);
  padding: 5px 13px;
  border-radius: 999px;
  flex: none;
}

body.tpl-page-services .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 21px;
  color: #F8F8F5;
  line-height: 1.22;
  margin-top: 14px;
  flex: none;
  min-height: 2.6em
}

body.tpl-page-services .handle-card p {
  color: #C7D2EA;
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1
}

body.tpl-page-services .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-services .svc-block-copy p {
  color: var(--grey);
  font-size: 18.5px;
  line-height: 1.75;
  margin-bottom: 18px
}

body.tpl-page-services .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: .02em;
}

body.tpl-page-services .svc-block-photo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block
}

body.tpl-page-services .svc-block-photo figcaption {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  top: auto;
  max-width: calc(100% - 32px);
  padding: 9px 18px;
  border-radius: 12px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .55);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease;
}

body.tpl-page-services .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-services .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-services .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-services .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-services .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-services .rj-slide.active {
  opacity: 1
}

body.tpl-page-services .rj-slide figcaption {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  top: auto;
  max-width: calc(100% - 44px);
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, .6);
  color: #F5F5F2;
  transition: transform .3s ease, background .3s ease;
}

body.tpl-page-services .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-services .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-services .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-services .rj-arrow.prev {
  left: -26px
}

body.tpl-page-services .rj-arrow.next {
  right: -26px
}

body.tpl-page-services .why-section {
  padding: 100px 0 110px;
  background: linear-gradient(170deg, #1B1670 0%, var(--kwt-blue) 100%)
}

body.tpl-page-services .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-services .why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.tpl-page-services .faq-section {
  padding: 100px 0 110px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line)
}

body.tpl-page-services .faq-head {
  max-width: 520px;
  margin-bottom: 30px
}

body.tpl-page-services .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-services .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}

body.tpl-page-services .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-services .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-services .faq-icon svg {
  width: 21px;
  height: 21px
}

body.tpl-page-services .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-services .faq-plus svg {
  width: 100%;
  height: 100%;
  transition: transform .3s
}

body.tpl-page-services .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 82px
}

body.tpl-page-services .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 26px 34px;
  margin: 0;
  max-width: 100%;
}

body.tpl-page-services .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-services .svc-final::before {
  display: none;
}

body.tpl-page-services .svc-final .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-services .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-services .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-services .svc-final-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-services .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-services .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-services .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-services .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-services .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-services .industries-section {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 70% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
}

body.tpl-page-services .industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

body.tpl-page-services .industries-head {
  max-width: 520px
}

body.tpl-page-services .industries-head p {
  color: var(--grey);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.6
}

body.tpl-page-services .industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px
}

body.tpl-page-services .industry-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 14px;
  color: var(--white);
  background: var(--asphalt-3);
  border: 1px solid var(--line);
  padding: 10px 18px;
  transition: .25s;
}

body.tpl-page-services .industry-chip svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  flex: none
}

body.tpl-page-services .industry-chip:hover {
  background: var(--kwt-blue-2);
  border-color: var(--amber);
  transform: translateY(-3px)
}

body.tpl-page-services .industries-visual {
  position: relative;
  height: 420px
}

body.tpl-page-services .iv-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(6, 10, 30, .55);
  opacity: 0;
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

body.tpl-page-services .iv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

body.tpl-page-services .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-services .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-services .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-services .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-services .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-services .accred-head {
  max-width: 640px;
  margin-bottom: 8px
}

body.tpl-page-services .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

body.tpl-page-services .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

body.tpl-page-services .accred-grid .acc-card {
  position: relative
}

body.tpl-page-services .acc-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(4, 8, 22, .35);
  opacity: 0;
  transform: scale(0) rotate(-40deg);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .35s;
}

body.tpl-page-services .acc-seal svg {
  width: 18px;
  height: 18px
}

body.tpl-page-services .faq-section {
  position: relative;
  overflow: hidden
}

body.tpl-page-services .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-services .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

body.tpl-page-services .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-services .svc-final {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  background: #0B1130;
}

body.tpl-page-services .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-services .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

body.tpl-page-services .svc-final::before {
  display: none;
}

body.tpl-page-services .svc-final .wrap {
  position: relative;
  z-index: 2
}

body.tpl-page-services .mt-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(3, 5, 14, .55);
  backdrop-filter: blur(6px)
}

body.tpl-page-services .mt-strip-item {
  padding: 22px 26px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  gap: 12px
}

body.tpl-page-services .mt-strip-item svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
  flex: none
}

body.tpl-page-services .mt-strip-item b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  color: #fff;
  font-size: 14.5px;
  letter-spacing: .02em
}

body.tpl-page-services .mt-strip-item span {
  display: block;
  color: #9DAAC9;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 1px
}

body.tpl-page-services .mt-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center
}

body.tpl-page-services .mt-intro-copy h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 16px 0 20px;
}

body.tpl-page-services .why-section {
  position: relative;
  overflow: hidden
}

body.tpl-page-services .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .14
}

body.tpl-page-services .why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-services .svc-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-services .svc-hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
    order: 0
  }

  body.tpl-page-services .svc-hero-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 28%
  }

  body.tpl-page-services .svc-hero-photo::before {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-services .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-services .svc-hero-copy {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-services .svc-hero-inner h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-services .svc-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-services .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-services .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-services .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-services .svc-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-services .svc-trust li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  body.tpl-page-services .why-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-services .industries-visual {
    height: 340px;
    order: -1
  }

  body.tpl-page-services .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-services .faq-wrap {
    display: grid;
    grid-template-columns: 1.18fr 1fr;
    grid-template-areas: "left visual" "cta cta";
    gap: 34px 48px;
    align-items: stretch;
    position: relative
  }

  body.tpl-page-services .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-services .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-services .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }

  body.tpl-page-services .mt-strip-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  body.tpl-page-services .mt-strip-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
  }
}

@media (max-width:680px) {
  body.tpl-page-services .svc-trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-services .svc-crumb {
    padding: 92px 6vw 0
  }

  body.tpl-page-services .why-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:380px) {
  body.tpl-page-services .svc-trust {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-services .svc-hero-inner h1 {
    font-size: 27px
  }

  body.tpl-page-services .svc-hero-inner p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-service-areas  (scope: body.tpl-page-service-areas) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-service-areas {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes heroGlowPulse__tpl-page-service-areas {

  0%,
  100% {
    opacity: .45;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.12)
  }
}

@keyframes heroGlowPulse__tpl-page-service-areas {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.18)
  }
}

/* page-specific rules */
body.tpl-page-service-areas {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-service-areas {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-service-areas .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-service-areas .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-service-areas .head-nav {
  align-items: center
}

body.tpl-page-service-areas .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-service-areas .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-service-areas .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-service-areas .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-service-areas .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-service-areas .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%)
}

body.tpl-page-service-areas .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-service-areas .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-service-areas .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-service-areas .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-service-areas .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-service-areas .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-service-areas .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-service-areas .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-service-areas .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-service-areas .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-service-areas .stats {
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-service-areas .stat {
  position: relative;
  padding: 30px 26px 28px;
  border-left: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-top: 3px solid var(--amber);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}

body.tpl-page-service-areas .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-service-areas .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-service-areas .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-service-areas .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-service-areas .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-service-areas .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-service-areas 34s linear infinite;
}

body.tpl-page-service-areas .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-service-areas .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-service-areas .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-service-areas .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-service-areas .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-service-areas .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-service-areas .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-service-areas .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-service-areas .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-service-areas .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-service-areas .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-service-areas .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-service-areas .node {
  cursor: pointer
}

body.tpl-page-service-areas .node {
  transition: opacity .35s
}

body.tpl-page-service-areas .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-service-areas .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-service-areas .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-service-areas .social-head h2 {
  margin-top: 12px
}

body.tpl-page-service-areas .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-service-areas .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-service-areas .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-service-areas .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-service-areas .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-service-areas .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 96vh;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-service-areas .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 150px 4vw 40px min(6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: 760px
}

body.tpl-page-service-areas .svc-hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

body.tpl-page-service-areas .svc-hero-photo img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 126%;
  object-fit: cover;
  object-position: center 38%;
  will-change: transform;
}

body.tpl-page-service-areas .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 5, 14, .95) 0%, rgba(3, 5, 14, .86) 26%, rgba(3, 5, 14, .52) 52%, rgba(3, 5, 14, .14) 74%, transparent 92%), linear-gradient(0deg, rgba(3, 5, 14, .55) 0%, transparent 30%);
}

body.tpl-page-service-areas .hero-glow {
  position: absolute;
  z-index: 3;
  left: 6%;
  bottom: 8%;
  width: 520px;
  height: 340px;
  max-width: 60vw;
  background: radial-gradient(circle, rgba(255, 88, 26, .55) 0%, rgba(255, 166, 26, .28) 34%, transparent 70%);
  filter: blur(6px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroGlowPulse__tpl-page-service-areas 3.2s ease-in-out infinite;
}

body.tpl-page-service-areas .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-service-areas .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-service-areas .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-service-areas .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-service-areas .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-service-areas .svc-trust {
  position: relative;
  z-index: 5;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%);
}

body.tpl-page-service-areas .svc-trust li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, .16)
}

body.tpl-page-service-areas .svc-trust li span {
  display: block;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px;
  max-width: 150px;
  line-height: 1.3
}

body.tpl-page-service-areas .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-service-areas .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-service-areas .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-service-areas .handle-arrow.prev {
  left: -14px
}

body.tpl-page-service-areas .handle-arrow.next {
  right: -14px
}

body.tpl-page-service-areas .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-service-areas .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-service-areas .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-service-areas .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-service-areas .handle-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

body.tpl-page-service-areas .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-service-areas .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-service-areas .svc-block-copy .eyebrow {
  color: var(--amber)
}

body.tpl-page-service-areas .svc-block-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px
}

body.tpl-page-service-areas .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}

body.tpl-page-service-areas .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-service-areas .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-service-areas .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2)
}

body.tpl-page-service-areas .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-service-areas .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-service-areas .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-service-areas .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-service-areas .rj-slide.active {
  opacity: 1
}

body.tpl-page-service-areas .rj-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(8, 12, 26, .9), transparent 80%);
  color: #F5F5F2;
}

body.tpl-page-service-areas .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-service-areas .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s;
}

body.tpl-page-service-areas .rj-arrow:hover {
  background: var(--amber-hot)
}

body.tpl-page-service-areas .rj-arrow.prev {
  left: -26px
}

body.tpl-page-service-areas .rj-arrow.next {
  right: -26px
}

body.tpl-page-service-areas .why-section {
  padding: 100px 0 110px;
  background: linear-gradient(170deg, #1B1670 0%, var(--kwt-blue) 100%)
}

body.tpl-page-service-areas .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-service-areas .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

body.tpl-page-service-areas .faq-section {
  padding: 100px 0 150px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

body.tpl-page-service-areas .faq-head {
  max-width: 640px;
  margin-bottom: 30px
}

body.tpl-page-service-areas .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-service-areas .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s
}

body.tpl-page-service-areas .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-service-areas .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-service-areas .faq-icon svg {
  width: 21px;
  height: 21px
}

body.tpl-page-service-areas .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-service-areas .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 76px
}

body.tpl-page-service-areas .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-service-areas .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-service-areas .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-service-areas .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  object-position: center 42%;
  filter: none;
}

body.tpl-page-service-areas .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-service-areas .svc-final::before {
  display: none;
}

body.tpl-page-service-areas .svc-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(60% 70% at 50% 110%, rgba(255, 179, 0, .16), transparent 60%);
  animation: finalGlow 6s ease-in-out infinite
}

body.tpl-page-service-areas .svc-final .wrap {
  position: relative;
  z-index: 2;
  max-width: 760px
}

body.tpl-page-service-areas .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-service-areas .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-service-areas .svc-final-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-service-areas .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-service-areas .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-service-areas .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-service-areas .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

body.tpl-page-service-areas .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-service-areas .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-service-areas .accred-head {
  max-width: 640px;
  margin-bottom: 8px
}

body.tpl-page-service-areas .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

body.tpl-page-service-areas .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

body.tpl-page-service-areas .acc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-service-areas .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber)
}

body.tpl-page-service-areas .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-service-areas .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-service-areas .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-service-areas .acc-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(4, 8, 22, .35);
  opacity: 0;
  transform: scale(0) rotate(-40deg);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .35s;
}

body.tpl-page-service-areas .acc-seal svg {
  width: 18px;
  height: 18px
}

body.tpl-page-service-areas .tickets {
  display: flex;
  gap: 20px;
  position: relative
}

body.tpl-page-service-areas .ticket {
  opacity: .4;
  transform: translateY(10px) scale(.97);
  transition: opacity .4s ease, transform .4s ease, box-shadow .4s ease
}

body.tpl-page-service-areas .why-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px
}

body.tpl-page-service-areas .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

body.tpl-page-service-areas .why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 32%;
  filter: saturate(1.05);
}

body.tpl-page-service-areas .why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 5, 14, .85) 0%, rgba(3, 5, 14, .6) 35%, rgba(3, 5, 14, .15) 55%, transparent 72%);
}

body.tpl-page-service-areas .why-benefit {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 44px);
  padding: 28px 0;
  border-top: 1px solid rgba(245, 245, 242, .16);
  opacity: .38;
  transition: opacity .5s var(--ease);
}

body.tpl-page-service-areas .why-benefit:last-child {
  border-bottom: 1px solid rgba(245, 245, 242, .16)
}

body.tpl-page-service-areas .hero2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  background: #0A0D1C
}

body.tpl-page-service-areas .hero2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  will-change: transform
}

body.tpl-page-service-areas .hero2-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(6, 8, 20, .97) 0%, rgba(6, 8, 20, .86) 32%, rgba(6, 8, 20, .42) 58%, rgba(6, 8, 20, .08) 78%), linear-gradient(0deg, rgba(4, 6, 16, .9) 0%, rgba(4, 6, 16, 0) 26%)
}

body.tpl-page-service-areas .hero2-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: heroGlowPulse__tpl-page-service-areas 3.4s ease-in-out infinite
}

body.tpl-page-service-areas .hero2-stats {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%)
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-service-areas .hero2 {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-service-areas .hero2-photo {
    position: absolute;
    inset: 0;
    height: 100%
  }

  body.tpl-page-service-areas .hero2-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-service-areas .hero2-scrim {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-service-areas .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-service-areas .hero2-content {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-service-areas .hero2-content h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-service-areas .hero2-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-service-areas .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-service-areas .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-service-areas .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-service-areas .hero2-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-service-areas .hero2-stats li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  body.tpl-page-service-areas .why-grid {
    grid-template-columns: 1fr
  }

  body.tpl-page-service-areas .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-service-areas .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }

  body.tpl-page-service-areas .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-service-areas .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-service-areas .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }
}

@media (max-width:680px) {
  body.tpl-page-service-areas .hero2-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-service-areas .svc-crumb {
    padding: 92px 6vw 0
  }
}

@media (max-width:380px) {
  body.tpl-page-service-areas .hero2-stats {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-service-areas .hero2-content h1 {
    font-size: 27px
  }

  body.tpl-page-service-areas .hero2-content p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-breakdown-accident-towing  (scope: body.tpl-page-breakdown-accident-towing) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-breakdown-accident-towing {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* page-specific rules */
body.tpl-page-breakdown-accident-towing {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-breakdown-accident-towing {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-breakdown-accident-towing .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-breakdown-accident-towing .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-breakdown-accident-towing .head-nav {
  align-items: center
}

body.tpl-page-breakdown-accident-towing .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-breakdown-accident-towing .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-breakdown-accident-towing .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-breakdown-accident-towing .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-breakdown-accident-towing .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-breakdown-accident-towing .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%)
}

body.tpl-page-breakdown-accident-towing .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-breakdown-accident-towing .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-breakdown-accident-towing .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-breakdown-accident-towing .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-breakdown-accident-towing .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-breakdown-accident-towing .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-breakdown-accident-towing .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-breakdown-accident-towing .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-breakdown-accident-towing .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-breakdown-accident-towing .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-breakdown-accident-towing .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-breakdown-accident-towing .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-breakdown-accident-towing .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-breakdown-accident-towing .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-breakdown-accident-towing .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-breakdown-accident-towing .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-breakdown-accident-towing .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-breakdown-accident-towing .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-breakdown-accident-towing 34s linear infinite;
}

body.tpl-page-breakdown-accident-towing .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-breakdown-accident-towing .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-breakdown-accident-towing .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-breakdown-accident-towing .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-breakdown-accident-towing .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-breakdown-accident-towing .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-breakdown-accident-towing .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-breakdown-accident-towing .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-breakdown-accident-towing .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-breakdown-accident-towing .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-breakdown-accident-towing .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-breakdown-accident-towing .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-breakdown-accident-towing .node {
  cursor: pointer
}

body.tpl-page-breakdown-accident-towing .node {
  transition: opacity .35s
}

body.tpl-page-breakdown-accident-towing .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-breakdown-accident-towing .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-breakdown-accident-towing .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-breakdown-accident-towing .social-head h2 {
  margin-top: 12px
}

body.tpl-page-breakdown-accident-towing .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-breakdown-accident-towing .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-breakdown-accident-towing .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-breakdown-accident-towing .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-breakdown-accident-towing .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-breakdown-accident-towing .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 96vh;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-breakdown-accident-towing .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 150px 4vw 40px min(6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: 760px
}

body.tpl-page-breakdown-accident-towing .svc-hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1
}

body.tpl-page-breakdown-accident-towing .svc-hero-photo img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 126%;
  object-fit: cover;
  object-position: center 38%;
  will-change: transform;
}

body.tpl-page-breakdown-accident-towing .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(3, 5, 14, .95) 0%, rgba(3, 5, 14, .86) 26%, rgba(3, 5, 14, .52) 52%, rgba(3, 5, 14, .14) 74%, transparent 92%), linear-gradient(0deg, rgba(3, 5, 14, .55) 0%, transparent 30%);
}

body.tpl-page-breakdown-accident-towing .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-breakdown-accident-towing .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-breakdown-accident-towing .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-breakdown-accident-towing .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-breakdown-accident-towing .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-breakdown-accident-towing .svc-trust {
  position: relative;
  z-index: 5;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%);
}

body.tpl-page-breakdown-accident-towing .svc-trust li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
  margin-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, .16)
}

body.tpl-page-breakdown-accident-towing .svc-trust li span {
  display: block;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px;
  max-width: 150px;
  line-height: 1.3
}

body.tpl-page-breakdown-accident-towing .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-breakdown-accident-towing .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-breakdown-accident-towing .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-breakdown-accident-towing .handle-arrow.prev {
  left: -14px
}

body.tpl-page-breakdown-accident-towing .handle-arrow.next {
  right: -14px
}

body.tpl-page-breakdown-accident-towing .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-breakdown-accident-towing .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-breakdown-accident-towing .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-breakdown-accident-towing .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-breakdown-accident-towing .handle-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

body.tpl-page-breakdown-accident-towing .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-breakdown-accident-towing .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-breakdown-accident-towing .svc-block-copy .eyebrow {
  color: var(--amber)
}

body.tpl-page-breakdown-accident-towing .svc-block-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px
}

body.tpl-page-breakdown-accident-towing .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}

body.tpl-page-breakdown-accident-towing .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-breakdown-accident-towing .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-breakdown-accident-towing .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2)
}

body.tpl-page-breakdown-accident-towing .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-breakdown-accident-towing .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-breakdown-accident-towing .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-breakdown-accident-towing .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-breakdown-accident-towing .rj-slide.active {
  opacity: 1
}

body.tpl-page-breakdown-accident-towing .rj-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(8, 12, 26, .9), transparent 80%);
  color: #F5F5F2;
}

body.tpl-page-breakdown-accident-towing .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-breakdown-accident-towing .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s;
}

body.tpl-page-breakdown-accident-towing .rj-arrow:hover {
  background: var(--amber-hot)
}

body.tpl-page-breakdown-accident-towing .rj-arrow.prev {
  left: -26px
}

body.tpl-page-breakdown-accident-towing .rj-arrow.next {
  right: -26px
}

body.tpl-page-breakdown-accident-towing .why-section {
  padding: 80px 0 120px;
  background: #0B1130
}

body.tpl-page-breakdown-accident-towing .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-breakdown-accident-towing .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

body.tpl-page-breakdown-accident-towing .faq-section {
  padding: 100px 0 150px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

body.tpl-page-breakdown-accident-towing .faq-head {
  max-width: 640px;
  margin-bottom: 30px
}

body.tpl-page-breakdown-accident-towing .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-breakdown-accident-towing .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s
}

body.tpl-page-breakdown-accident-towing .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-breakdown-accident-towing .faq-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-breakdown-accident-towing .faq-icon svg {
  width: 19px;
  height: 19px
}

body.tpl-page-breakdown-accident-towing .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-breakdown-accident-towing .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 76px
}

body.tpl-page-breakdown-accident-towing .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-breakdown-accident-towing .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-breakdown-accident-towing .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-breakdown-accident-towing .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  object-position: center 42%;
  filter: none;
}

body.tpl-page-breakdown-accident-towing .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-breakdown-accident-towing .svc-final::before {
  display: none;
}

body.tpl-page-breakdown-accident-towing .svc-final .wrap {
  position: relative;
  z-index: 2;
  max-width: 760px
}

body.tpl-page-breakdown-accident-towing .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-breakdown-accident-towing .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-breakdown-accident-towing .svc-final-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-breakdown-accident-towing .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-breakdown-accident-towing .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-breakdown-accident-towing .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-breakdown-accident-towing .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

body.tpl-page-breakdown-accident-towing .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-breakdown-accident-towing .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-breakdown-accident-towing .accred-head {
  max-width: 640px;
  margin-bottom: 8px
}

body.tpl-page-breakdown-accident-towing .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

body.tpl-page-breakdown-accident-towing .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

body.tpl-page-breakdown-accident-towing .acc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-breakdown-accident-towing .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber)
}

body.tpl-page-breakdown-accident-towing .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-breakdown-accident-towing .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-breakdown-accident-towing .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-breakdown-accident-towing .acc-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(4, 8, 22, .35);
  opacity: 0;
  transform: scale(0) rotate(-40deg);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .35s;
}

body.tpl-page-breakdown-accident-towing .acc-seal svg {
  width: 18px;
  height: 18px
}

body.tpl-page-breakdown-accident-towing .tickets {
  display: flex;
  gap: 20px;
  position: relative
}

body.tpl-page-breakdown-accident-towing .ticket {
  opacity: .4;
  transform: translateY(10px) scale(.97);
  transition: opacity .4s ease, transform .4s ease, box-shadow .4s ease
}

body.tpl-page-breakdown-accident-towing .why-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background: #0B1130
}

body.tpl-page-breakdown-accident-towing .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

body.tpl-page-breakdown-accident-towing .why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 32%;
  filter: brightness(.5) saturate(1.05)
}

body.tpl-page-breakdown-accident-towing .why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(3, 5, 14, .95) 0%, rgba(3, 5, 14, .84) 40%, rgba(5, 8, 16, .62) 75%, rgba(5, 8, 16, .82) 100%)
}

body.tpl-page-breakdown-accident-towing .why-benefit {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 44px);
  padding: 28px 0;
  border-top: 1px solid rgba(245, 245, 242, .16);
  opacity: .38;
  transition: opacity .5s var(--ease);
}

body.tpl-page-breakdown-accident-towing .why-benefit:last-child {
  border-bottom: 1px solid rgba(245, 245, 242, .16)
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-breakdown-accident-towing .svc-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
    order: 0
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-photo::before {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-breakdown-accident-towing .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-copy {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-inner h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-breakdown-accident-towing .svc-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-breakdown-accident-towing .svc-trust li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  body.tpl-page-breakdown-accident-towing .why-grid {
    grid-template-columns: 1fr
  }

  body.tpl-page-breakdown-accident-towing .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-breakdown-accident-towing .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }

  body.tpl-page-breakdown-accident-towing .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-breakdown-accident-towing .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-breakdown-accident-towing .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }
}

@media (max-width:680px) {
  body.tpl-page-breakdown-accident-towing .svc-trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-breakdown-accident-towing .svc-crumb {
    padding: 92px 6vw 0
  }
}

@media (max-width:380px) {
  body.tpl-page-breakdown-accident-towing .svc-trust {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-inner h1 {
    font-size: 27px
  }

  body.tpl-page-breakdown-accident-towing .svc-hero-inner p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-car-towing  (scope: body.tpl-page-car-towing) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-car-towing {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes heroGlowPulse__tpl-page-car-towing {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.18)
  }
}

/* page-specific rules */
body.tpl-page-car-towing {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-car-towing {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-car-towing .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-car-towing .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-car-towing .head-nav {
  align-items: center
}

body.tpl-page-car-towing .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-car-towing .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-car-towing .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-car-towing .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-car-towing .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-car-towing .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-car-towing .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-car-towing .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-car-towing .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-car-towing .ticket .t-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-car-towing .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-car-towing .ticket .t-photo {
  margin: 20px 0 4px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 20px -12px rgba(18, 48, 90, .4)
}

body.tpl-page-car-towing .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 18px 0 10px;
  color: var(--ink)
}

body.tpl-page-car-towing .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-car-towing .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-car-towing .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-car-towing .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-car-towing .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-car-towing .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-car-towing .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-car-towing .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-car-towing .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-car-towing .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-car-towing .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-car-towing 34s linear infinite;
}

body.tpl-page-car-towing .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-car-towing .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-car-towing .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-car-towing .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-car-towing .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-car-towing .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-car-towing .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-car-towing .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-car-towing .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-car-towing .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-car-towing .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-car-towing .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-car-towing .node {
  cursor: pointer
}

body.tpl-page-car-towing .node {
  transition: opacity .35s
}

body.tpl-page-car-towing .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-car-towing .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-car-towing .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-car-towing .social-head h2 {
  margin-top: 12px
}

body.tpl-page-car-towing .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-car-towing .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-car-towing .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey)
}

body.tpl-page-car-towing .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-car-towing .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-car-towing .hero2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  background: #0A0D1C;
}

body.tpl-page-car-towing .hero2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  will-change: transform
}

body.tpl-page-car-towing .hero2-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(6, 8, 20, .97) 0%, rgba(6, 8, 20, .86) 32%, rgba(6, 8, 20, .42) 58%, rgba(6, 8, 20, .08) 78%), linear-gradient(0deg, rgba(4, 6, 16, .9) 0%, rgba(4, 6, 16, 0) 26%);
}

body.tpl-page-car-towing .hero2-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: heroGlowPulse__tpl-page-car-towing 3.4s ease-in-out infinite
}

body.tpl-page-car-towing .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-car-towing .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-car-towing .hero2-stats {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%);
}

body.tpl-page-car-towing .handle-track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-car-towing .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-car-towing .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-car-towing .handle-arrow.prev {
  left: -14px
}

body.tpl-page-car-towing .handle-arrow.next {
  right: -14px
}

body.tpl-page-car-towing .handle-card {
  flex: 0 0 min(430px, 86vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  border-top: 3px solid var(--amber);
  padding: 0 30px 34px;
  height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease);
}

body.tpl-page-car-towing .handle-img {
  margin: 0 -30px 22px;
  position: relative;
  overflow: hidden;
  height: 250px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-car-towing .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03);
  transition: transform .5s var(--ease)
}

body.tpl-page-car-towing .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 55%, rgba(18, 102, 196, .55) 100%)
}

body.tpl-page-car-towing .handle-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
  color: #0C1020;
  background: var(--amber);
  padding: 5px 13px;
  border-radius: 999px;
  flex: none;
}

body.tpl-page-car-towing .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 21px;
  color: #F8F8F5;
  line-height: 1.22;
  margin-top: 14px;
  flex: none;
  min-height: 2.6em
}

body.tpl-page-car-towing .handle-card p {
  color: #C7D2EA;
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1
}

body.tpl-page-car-towing .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-car-towing .svc-block-copy p {
  color: var(--grey);
  font-size: 18.5px;
  line-height: 1.75;
  margin-bottom: 18px
}

body.tpl-page-car-towing .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: .02em;
}

body.tpl-page-car-towing .svc-block-photo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block
}

body.tpl-page-car-towing .svc-block-photo figcaption {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  top: auto;
  max-width: calc(100% - 32px);
  padding: 9px 18px;
  border-radius: 12px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .55);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease;
}

body.tpl-page-car-towing .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-car-towing .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden
}

body.tpl-page-car-towing .rj-viewer {
  position: relative;
  max-width: 1180px;
  margin: 0 auto
}

body.tpl-page-car-towing .rj-frame {
  position: relative;
  height: min(58vw, 460px);
  overflow: hidden
}

body.tpl-page-car-towing .rj-track {
  display: flex;
  align-items: center;
  height: 100%;
  will-change: transform
}

body.tpl-page-car-towing .rj-slide {
  flex: 0 0 62%;
  max-width: 640px;
  height: 88%;
  margin: 0 2.2%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  opacity: .35;
  transform: scale(.88);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(4, 8, 22, .6);
}

body.tpl-page-car-towing .rj-slide.active {
  opacity: 1;
  transform: scale(1)
}

body.tpl-page-car-towing .rj-slide figcaption {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  top: auto;
  max-width: calc(100% - 44px);
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, .6);
  color: #F5F5F2;
  transition: transform .3s ease, background .3s ease, opacity .3s ease;
  opacity: 0;
}

body.tpl-page-car-towing .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-car-towing .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-car-towing .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-car-towing .rj-arrow.prev {
  left: 2%
}

body.tpl-page-car-towing .rj-arrow.next {
  right: 2%
}

body.tpl-page-car-towing .why-section {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: #0B1130
}

body.tpl-page-car-towing .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

body.tpl-page-car-towing .why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.5) saturate(1.05)
}

body.tpl-page-car-towing .why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11, 17, 48, .95) 0%, rgba(11, 17, 48, .8) 40%, rgba(27, 22, 112, .58) 100%)
}

body.tpl-page-car-towing .why-head {
  max-width: 680px;
  margin-bottom: 64px
}

body.tpl-page-car-towing .why-benefit {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 44px);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: .38;
  transition: opacity .5s var(--ease);
}

body.tpl-page-car-towing .why-benefit:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

body.tpl-page-car-towing .faq-section {
  padding: 100px 0 150px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

body.tpl-page-car-towing .faq-head {
  max-width: 520px;
  margin-bottom: 30px
}

body.tpl-page-car-towing .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-car-towing .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}

body.tpl-page-car-towing .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-car-towing .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-car-towing .faq-icon svg {
  width: 21px;
  height: 21px
}

body.tpl-page-car-towing .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-car-towing .faq-plus svg {
  width: 100%;
  height: 100%;
  transition: transform .3s
}

body.tpl-page-car-towing .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 82px
}

body.tpl-page-car-towing .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-car-towing .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-car-towing .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-car-towing .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

body.tpl-page-car-towing .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-car-towing .svc-final::before {
  display: none;
}

body.tpl-page-car-towing .svc-final .wrap {
  position: relative;
  z-index: 2;
  max-width: 800px
}

body.tpl-page-car-towing .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  margin: 18px 0 24px
}

body.tpl-page-car-towing .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

body.tpl-page-car-towing .svc-final-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

body.tpl-page-car-towing .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-car-towing .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-car-towing .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-car-towing .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-car-towing .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-car-towing .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

body.tpl-page-car-towing .accred-head {
  max-width: 640px;
  margin-bottom: 8px
}

body.tpl-page-car-towing .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

body.tpl-page-car-towing .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

body.tpl-page-car-towing .acc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-car-towing .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-car-towing .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-car-towing .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-car-towing .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-car-towing .acc-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(4, 8, 22, .35);
  opacity: 0;
  transform: scale(0) rotate(-40deg);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .35s;
}

body.tpl-page-car-towing .acc-seal svg {
  width: 18px;
  height: 18px
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-car-towing .hero2 {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-car-towing .hero2-photo {
    position: absolute;
    inset: 0;
    height: 100%
  }

  body.tpl-page-car-towing .hero2-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-car-towing .hero2-scrim {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-car-towing .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-car-towing .hero2-content {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-car-towing .hero2-content h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-car-towing .hero2-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-car-towing .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-car-towing .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-car-towing .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-car-towing .hero2-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-car-towing .hero2-stats li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  body.tpl-page-car-towing .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-car-towing .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }

  body.tpl-page-car-towing .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px)
  }

  body.tpl-page-car-towing .wall-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2
  }

  body.tpl-page-car-towing .wall-item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3
  }
}

@media (max-width:680px) {
  body.tpl-page-car-towing .hero2-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-car-towing .svc-crumb {
    padding: 92px 6vw 0
  }
}

@media (max-width:380px) {
  body.tpl-page-car-towing .hero2-stats {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-car-towing .hero2-content h1 {
    font-size: 27px
  }

  body.tpl-page-car-towing .hero2-content p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-heavy-vehicle-truck-towing  (scope: body.tpl-page-heavy-vehicle-truck-towing) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-heavy-vehicle-truck-towing {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes heroGlowPulse__tpl-page-heavy-vehicle-truck-towing {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.18)
  }
}

/* page-specific rules */
body.tpl-page-heavy-vehicle-truck-towing {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-heavy-vehicle-truck-towing {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-heavy-vehicle-truck-towing .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-heavy-vehicle-truck-towing .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-heavy-vehicle-truck-towing .head-nav {
  align-items: center
}

body.tpl-page-heavy-vehicle-truck-towing .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-heavy-vehicle-truck-towing .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-heavy-vehicle-truck-towing .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-heavy-vehicle-truck-towing .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-heavy-vehicle-truck-towing .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-heavy-vehicle-truck-towing .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-heavy-vehicle-truck-towing .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-heavy-vehicle-truck-towing .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-heavy-vehicle-truck-towing .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-heavy-vehicle-truck-towing .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-heavy-vehicle-truck-towing .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-heavy-vehicle-truck-towing .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-heavy-vehicle-truck-towing .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-heavy-vehicle-truck-towing .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-heavy-vehicle-truck-towing .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-heavy-vehicle-truck-towing .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-heavy-vehicle-truck-towing .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-heavy-vehicle-truck-towing .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-heavy-vehicle-truck-towing .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-heavy-vehicle-truck-towing .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-heavy-vehicle-truck-towing .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-heavy-vehicle-truck-towing .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-heavy-vehicle-truck-towing .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-heavy-vehicle-truck-towing .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-heavy-vehicle-truck-towing 34s linear infinite;
}

body.tpl-page-heavy-vehicle-truck-towing .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-heavy-vehicle-truck-towing .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-heavy-vehicle-truck-towing .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-heavy-vehicle-truck-towing .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-heavy-vehicle-truck-towing .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-heavy-vehicle-truck-towing .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-heavy-vehicle-truck-towing .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-heavy-vehicle-truck-towing .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-heavy-vehicle-truck-towing .node {
  cursor: pointer
}

body.tpl-page-heavy-vehicle-truck-towing .node {
  transition: opacity .35s
}

body.tpl-page-heavy-vehicle-truck-towing .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-heavy-vehicle-truck-towing .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-heavy-vehicle-truck-towing .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-heavy-vehicle-truck-towing .social-head h2 {
  margin-top: 12px
}

body.tpl-page-heavy-vehicle-truck-towing .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-heavy-vehicle-truck-towing .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-heavy-vehicle-truck-towing .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

body.tpl-page-heavy-vehicle-truck-towing .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-heavy-vehicle-truck-towing .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-heavy-vehicle-truck-towing .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-heavy-vehicle-truck-towing .hero2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  background: #0A0D1C;
}

body.tpl-page-heavy-vehicle-truck-towing .hero2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  will-change: transform
}

body.tpl-page-heavy-vehicle-truck-towing .hero2-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(6, 8, 20, .97) 0%, rgba(6, 8, 20, .86) 32%, rgba(6, 8, 20, .42) 58%, rgba(6, 8, 20, .08) 78%), linear-gradient(0deg, rgba(4, 6, 16, .9) 0%, rgba(4, 6, 16, 0) 26%);
}

body.tpl-page-heavy-vehicle-truck-towing .hero2-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: heroGlowPulse__tpl-page-heavy-vehicle-truck-towing 3.4s ease-in-out infinite
}

body.tpl-page-heavy-vehicle-truck-towing .hero2-stats {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%);
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: auto;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 150px 4vw 70px min(6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-photo {
  position: relative;
  overflow: hidden
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-photo img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(18, 22, 60, .55) 0%, transparent 16%);
}

body.tpl-page-heavy-vehicle-truck-towing .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-heavy-vehicle-truck-towing .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-heavy-vehicle-truck-towing .svc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(245, 245, 242, .18);
  max-width: 520px
}

body.tpl-page-heavy-vehicle-truck-towing .svc-trust li {
  padding: 18px 26px 0 0;
  margin-right: 26px;
  font-family: var(--font-cond);
}

body.tpl-page-heavy-vehicle-truck-towing .svc-trust li span {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px
}

body.tpl-page-heavy-vehicle-truck-towing .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-heavy-vehicle-truck-towing .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-heavy-vehicle-truck-towing .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-heavy-vehicle-truck-towing .handle-arrow.prev {
  left: -14px
}

body.tpl-page-heavy-vehicle-truck-towing .handle-arrow.next {
  right: -14px
}

body.tpl-page-heavy-vehicle-truck-towing .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-heavy-vehicle-truck-towing .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-heavy-vehicle-truck-towing .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-heavy-vehicle-truck-towing .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-heavy-vehicle-truck-towing .handle-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

body.tpl-page-heavy-vehicle-truck-towing .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-heavy-vehicle-truck-towing .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-heavy-vehicle-truck-towing .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-heavy-vehicle-truck-towing .svc-block-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px
}

body.tpl-page-heavy-vehicle-truck-towing .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-heavy-vehicle-truck-towing .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-heavy-vehicle-truck-towing .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-heavy-vehicle-truck-towing .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-heavy-vehicle-truck-towing .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-heavy-vehicle-truck-towing .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-heavy-vehicle-truck-towing .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-heavy-vehicle-truck-towing .rj-slide.active {
  opacity: 1
}

body.tpl-page-heavy-vehicle-truck-towing .rj-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(8, 12, 26, .9), transparent 80%);
  color: #F5F5F2;
}

body.tpl-page-heavy-vehicle-truck-towing .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-heavy-vehicle-truck-towing .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-heavy-vehicle-truck-towing .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-heavy-vehicle-truck-towing .rj-arrow.prev {
  left: -26px
}

body.tpl-page-heavy-vehicle-truck-towing .rj-arrow.next {
  right: -26px
}

body.tpl-page-heavy-vehicle-truck-towing .why-section {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: #0B1130
}

body.tpl-page-heavy-vehicle-truck-towing .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

body.tpl-page-heavy-vehicle-truck-towing .why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.5) saturate(1.05)
}

body.tpl-page-heavy-vehicle-truck-towing .why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11, 17, 48, .95) 0%, rgba(11, 17, 48, .8) 40%, rgba(27, 22, 112, .58) 100%)
}

body.tpl-page-heavy-vehicle-truck-towing .why-benefit {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 44px);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: .38;
  transition: opacity .5s var(--ease);
}

body.tpl-page-heavy-vehicle-truck-towing .why-benefit:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

body.tpl-page-heavy-vehicle-truck-towing .why-head {
  max-width: 680px;
  margin-bottom: 64px
}

body.tpl-page-heavy-vehicle-truck-towing .why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.tpl-page-heavy-vehicle-truck-towing .faq-section {
  padding: 100px 0 150px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

body.tpl-page-heavy-vehicle-truck-towing .faq-head {
  max-width: 520px;
  margin-bottom: 30px
}

body.tpl-page-heavy-vehicle-truck-towing .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-heavy-vehicle-truck-towing .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}

body.tpl-page-heavy-vehicle-truck-towing .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-heavy-vehicle-truck-towing .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-heavy-vehicle-truck-towing .faq-icon svg {
  width: 21px;
  height: 21px
}

body.tpl-page-heavy-vehicle-truck-towing .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-heavy-vehicle-truck-towing .faq-plus svg {
  width: 100%;
  height: 100%;
  transition: transform .3s
}

body.tpl-page-heavy-vehicle-truck-towing .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 82px
}

body.tpl-page-heavy-vehicle-truck-towing .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-heavy-vehicle-truck-towing .faq-a p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.65;
  padding-bottom: 22px;
  max-width: 680px
}

body.tpl-page-heavy-vehicle-truck-towing .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-final::before {
  display: none;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-final .wrap {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px;
}

body.tpl-page-heavy-vehicle-truck-towing .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px;
}

body.tpl-page-heavy-vehicle-truck-towing .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-heavy-vehicle-truck-towing .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

body.tpl-page-heavy-vehicle-truck-towing .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-heavy-vehicle-truck-towing .svc-final-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-heavy-vehicle-truck-towing .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-heavy-vehicle-truck-towing .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-heavy-vehicle-truck-towing .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-heavy-vehicle-truck-towing .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-heavy-vehicle-truck-towing .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-heavy-vehicle-truck-towing .industries-section {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 70% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
}

body.tpl-page-heavy-vehicle-truck-towing .industries-head {
  max-width: 680px;
  margin-bottom: 44px
}

body.tpl-page-heavy-vehicle-truck-towing .industries-head p {
  color: var(--grey);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.6
}

body.tpl-page-heavy-vehicle-truck-towing .industry-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 179, 0, .5);
  border-left-color: var(--amber);
  transform: translateY(-2px)
}

body.tpl-page-heavy-vehicle-truck-towing .industry-btn:hover {
  border-color: var(--amber);
  background: var(--kwt-blue-2)
}

body.tpl-page-heavy-vehicle-truck-towing .industries-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .5s ease
}

body.tpl-page-heavy-vehicle-truck-towing .industries-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .35s ease
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-heavy-vehicle-truck-towing .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-heavy-vehicle-truck-towing .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-heavy-vehicle-truck-towing .hero2 {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-photo {
    position: absolute;
    inset: 0;
    height: 100%
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-scrim {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-heavy-vehicle-truck-towing .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-content {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-content h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-heavy-vehicle-truck-towing .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-heavy-vehicle-truck-towing .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-heavy-vehicle-truck-towing .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-stats li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  body.tpl-page-heavy-vehicle-truck-towing .why-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-heavy-vehicle-truck-towing .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-heavy-vehicle-truck-towing .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px)
  }

  body.tpl-page-heavy-vehicle-truck-towing .wall-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2
  }

  body.tpl-page-heavy-vehicle-truck-towing .wall-item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3
  }

  body.tpl-page-heavy-vehicle-truck-towing .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }
}

@media (max-width:680px) {
  body.tpl-page-heavy-vehicle-truck-towing .hero2-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-heavy-vehicle-truck-towing .svc-crumb {
    padding: 92px 6vw 0
  }

  body.tpl-page-heavy-vehicle-truck-towing .why-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:380px) {
  body.tpl-page-heavy-vehicle-truck-towing .hero2-stats {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-content h1 {
    font-size: 27px
  }

  body.tpl-page-heavy-vehicle-truck-towing .hero2-content p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-machinery-transport  (scope: body.tpl-page-machinery-transport) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-machinery-transport {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* page-specific rules */
body.tpl-page-machinery-transport {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-machinery-transport {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-machinery-transport .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-machinery-transport .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-machinery-transport .head-nav {
  align-items: center
}

body.tpl-page-machinery-transport .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-machinery-transport .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-machinery-transport .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-machinery-transport .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-machinery-transport .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-machinery-transport .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-machinery-transport .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-machinery-transport .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-machinery-transport .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-machinery-transport .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-machinery-transport .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-machinery-transport .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-machinery-transport .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-machinery-transport .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-machinery-transport .ticket .t-photo {
  margin: 20px 0 4px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: 0 10px 20px -12px rgba(18, 48, 90, .4)
}

body.tpl-page-machinery-transport .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-machinery-transport .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-machinery-transport .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-machinery-transport .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-machinery-transport .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-machinery-transport .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-machinery-transport .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-machinery-transport .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-machinery-transport .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-machinery-transport 34s linear infinite;
}

body.tpl-page-machinery-transport .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-machinery-transport .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-machinery-transport .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-machinery-transport .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-machinery-transport .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-machinery-transport .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-machinery-transport .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-machinery-transport .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-machinery-transport .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-machinery-transport .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-machinery-transport .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-machinery-transport .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-machinery-transport .node {
  cursor: pointer
}

body.tpl-page-machinery-transport .node {
  transition: opacity .35s
}

body.tpl-page-machinery-transport .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-machinery-transport .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-machinery-transport .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-machinery-transport .social-head h2 {
  margin-top: 12px
}

body.tpl-page-machinery-transport .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-machinery-transport .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-machinery-transport .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-machinery-transport .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-machinery-transport .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-machinery-transport .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(88vh, calc(100vw * 0.52));
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-machinery-transport .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 170px 4vw 80px min(6vw, 90px);
  max-width: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

body.tpl-page-machinery-transport .svc-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden
}

body.tpl-page-machinery-transport .svc-hero-photo img {
  position: absolute;
  top: -3%;
  left: 0;
  width: 100%;
  height: 106%;
  object-fit: cover;
  object-position: center 52%;
  will-change: transform
}

body.tpl-page-machinery-transport .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(97deg, rgba(6, 9, 22, .88) 0%, rgba(6, 9, 22, .80) 20%, rgba(6, 9, 22, .55) 34%, rgba(6, 9, 22, .22) 46%, rgba(6, 9, 22, .06) 55%, transparent 62%);
}

body.tpl-page-machinery-transport .svc-crumb {
  display: none;
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-machinery-transport .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-machinery-transport .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.0;
  margin: 18px 0 24px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .4)
}

body.tpl-page-machinery-transport .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 34px
}

body.tpl-page-machinery-transport .svc-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0
}

body.tpl-page-machinery-transport .mt-strip {
  position: relative;
  z-index: 5;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(6, 9, 22, .62);
  backdrop-filter: blur(6px);
}

body.tpl-page-machinery-transport .mt-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px clamp(16px, 2.4vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

body.tpl-page-machinery-transport .mt-strip-item svg {
  flex: none;
  width: 30px;
  height: 30px;
  color: #F1F4FB;
  opacity: .9
}

body.tpl-page-machinery-transport .mt-strip-item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 30px);
  color: #F8F8F5;
  line-height: 1;
  letter-spacing: .01em;
}

body.tpl-page-machinery-transport .mt-strip-item span {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 5px;
  line-height: 1.35;
}

body.tpl-page-machinery-transport .svc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(245, 245, 242, .18);
  max-width: 520px
}

body.tpl-page-machinery-transport .svc-trust li {
  padding: 18px 26px 0 0;
  margin-right: 26px;
  font-family: var(--font-cond);
}

body.tpl-page-machinery-transport .svc-trust li span {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px
}

body.tpl-page-machinery-transport .mt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(34px, 4.5vw, 70px);
  align-items: center;
  padding-bottom: 96px
}

body.tpl-page-machinery-transport .mt-intro-copy h2 {
  color: #F8F8F5;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.04;
  margin: 14px 0 20px
}

body.tpl-page-machinery-transport .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-machinery-transport .handle-arrow {
  position: absolute;
  top: calc(6px + 85px);
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s, opacity .25s;
}

body.tpl-page-machinery-transport .handle-arrow:hover {
  background: var(--amber-hot);
  transform: translateY(-50%) scale(1.06)
}

body.tpl-page-machinery-transport .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-machinery-transport .handle-arrow.prev {
  left: 16px
}

body.tpl-page-machinery-transport .handle-arrow.next {
  right: 16px
}

body.tpl-page-machinery-transport .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  border-top: 3px solid var(--amber);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-machinery-transport .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-machinery-transport .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-machinery-transport .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-machinery-transport .handle-card .num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
}

body.tpl-page-machinery-transport .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 18px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 16px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-machinery-transport .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-machinery-transport .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-machinery-transport .svc-block-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px
}

body.tpl-page-machinery-transport .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}

body.tpl-page-machinery-transport .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-machinery-transport .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-machinery-transport .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-machinery-transport .recent-jobs {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-machinery-transport .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-machinery-transport .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: visible
}

body.tpl-page-machinery-transport .rj-track {
  display: flex;
  gap: 28px;
  height: 100%;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  will-change: transform
}

body.tpl-page-machinery-transport .rj-slide {
  position: relative;
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: var(--asphalt-3);
  opacity: .42;
  transition: opacity .55s ease
}

body.tpl-page-machinery-transport .rj-slide.active {
  opacity: 1
}

body.tpl-page-machinery-transport .rj-slide figcaption {
  position: absolute;
  left: 26px;
  bottom: 26px;
  right: auto;
  z-index: 2;
  max-width: min(72%, 340px);
  padding: 16px 24px;
  border-radius: 6px;
  background: rgba(16, 20, 40, .86);
  backdrop-filter: blur(4px);
  color: #F5F5F2;
}

body.tpl-page-machinery-transport .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .02em;
  line-height: 1.25
}

body.tpl-page-machinery-transport .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-machinery-transport .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-machinery-transport .rj-arrow.prev {
  left: -26px
}

body.tpl-page-machinery-transport .rj-arrow.next {
  right: -26px
}

body.tpl-page-machinery-transport .why-section {
  padding: 80px 0 120px;
  background: #0B1130
}

body.tpl-page-machinery-transport .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-machinery-transport .why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.tpl-page-machinery-transport .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

body.tpl-page-machinery-transport .faq-section {
  padding: 100px 0 150px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

body.tpl-page-machinery-transport .faq-head {
  max-width: 520px;
  margin-bottom: 30px
}

body.tpl-page-machinery-transport .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-machinery-transport .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}

body.tpl-page-machinery-transport .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-machinery-transport .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-machinery-transport .faq-icon svg {
  width: 21px;
  height: 21px
}

body.tpl-page-machinery-transport .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-machinery-transport .faq-plus svg {
  width: 100%;
  height: 100%;
  transition: transform .3s
}

body.tpl-page-machinery-transport .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 82px
}

body.tpl-page-machinery-transport .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-machinery-transport .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-machinery-transport .svc-final::before {
  display: none;
}

body.tpl-page-machinery-transport .svc-final .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-machinery-transport .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-machinery-transport .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-machinery-transport .svc-final-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-machinery-transport .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-machinery-transport .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-machinery-transport .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-machinery-transport .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-machinery-transport .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-machinery-transport .industries-section {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 70% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
}

body.tpl-page-machinery-transport .industries-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 64px;
  align-items: stretch
}

body.tpl-page-machinery-transport .industries-head {
  max-width: 560px
}

body.tpl-page-machinery-transport .industries-head p {
  color: var(--grey);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.6;
  max-width: 520px
}

body.tpl-page-machinery-transport .industries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px
}

body.tpl-page-machinery-transport .industry-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-left: 2px solid rgba(255, 179, 0, .4);
  padding: 15px 16px;
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

body.tpl-page-machinery-transport .industry-chip svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
  flex: none
}

body.tpl-page-machinery-transport .industry-chip:hover {
  background: rgba(255, 255, 255, .1);
  border-left-color: var(--amber);
  transform: translateX(5px)
}

body.tpl-page-machinery-transport .industries-visual {
  position: relative;
  min-height: 600px
}

body.tpl-page-machinery-transport .iv-photo {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  background: var(--asphalt-3);
  box-shadow: 0 30px 70px -22px rgba(6, 10, 30, .7);
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

body.tpl-page-machinery-transport .iv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1)
}

body.tpl-page-machinery-transport .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-machinery-transport .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-machinery-transport .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-machinery-transport .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-machinery-transport .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-machinery-transport .svc-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-machinery-transport .svc-hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
    order: 0
  }

  body.tpl-page-machinery-transport .svc-hero-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-machinery-transport .svc-hero-photo::before {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-machinery-transport .svc-crumb {
    display: block !important;
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-machinery-transport .svc-hero-copy {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-machinery-transport .svc-hero-inner h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-machinery-transport .svc-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-machinery-transport .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-machinery-transport .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-machinery-transport .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-machinery-transport .mt-strip {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-machinery-transport .mt-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px
  }

  body.tpl-page-machinery-transport .mt-strip-item {
    padding: 0;
    border-left: 0
  }

  /* Built to move heavy (Intro) */
  body.tpl-page-machinery-transport .svc-intro.mt-intro {
    padding: 60px 0 0
  }

  body.tpl-page-machinery-transport .mt-intro-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-bottom: 50px
  }

  body.tpl-page-machinery-transport .mt-intro-copy {
    order: 0;
    width: 100%
  }

  body.tpl-page-machinery-transport .mt-intro-copy h2 {
    font-size: clamp(26px, 6.2vw, 38px);
    line-height: 1.08;
    margin: 12px 0 16px
  }

  body.tpl-page-machinery-transport .mt-intro-copy>p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 22px
  }

  body.tpl-page-machinery-transport .mt-checks {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    margin-bottom: 26px
  }

  body.tpl-page-machinery-transport .mt-checks li {
    font-size: 14.5px
  }

  body.tpl-page-machinery-transport .mt-intro-copy .btn-call {
    width: 100%;
    justify-content: center
  }

  body.tpl-page-machinery-transport .mt-collage {
    order: 1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1/0.82;
    min-height: 260px;
    margin: 10px auto 0;
    position: relative
  }

  body.tpl-page-machinery-transport .mt-shot {
    border-radius: 8px
  }

  body.tpl-page-machinery-transport .mt-shot-1 {
    top: 0;
    right: 0;
    width: 82%;
    height: 58%;
    z-index: 1
  }

  body.tpl-page-machinery-transport .mt-shot-2 {
    left: 0;
    top: 34%;
    width: 52%;
    height: 48%;
    z-index: 3;
    border: 4px solid var(--kwt-blue-2)
  }

  body.tpl-page-machinery-transport .mt-shot-3 {
    right: 2%;
    bottom: 0;
    width: 44%;
    height: 38%;
    z-index: 2;
    border: 4px solid var(--amber);
    transform: rotate(-3deg)
  }

  body.tpl-page-machinery-transport .mt-steps-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-machinery-transport .mt-step {
    border-left: 0;
    padding: 20px 5vw
  }

  body.tpl-page-machinery-transport .mt-step:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .12)
  }

  /* Industries */
  body.tpl-page-machinery-transport .industries-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  body.tpl-page-machinery-transport .industries-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px
  }

  body.tpl-page-machinery-transport .industry-chip {
    padding: 12px 14px;
    font-size: 13.5px
  }

  body.tpl-page-machinery-transport .industries-visual {
    min-height: 0;
    height: auto;
    aspect-ratio: 16/11;
    order: -1
  }

  body.tpl-page-machinery-transport .iv-photo {
    min-height: 0;
    height: 100%;
    border-radius: 8px
  }

  /* Fleet & Process */
  body.tpl-page-machinery-transport .tf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  body.tpl-page-machinery-transport .tf-panel {
    margin-top: -60px;
    padding: 30px 5vw
  }

  body.tpl-page-machinery-transport .mf-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  body.tpl-page-machinery-transport .mf-card {
    transform: none
  }

  body.tpl-page-machinery-transport .kp-rail {
    display: none
  }

  body.tpl-page-machinery-transport .kp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    text-align: left
  }

  body.tpl-page-machinery-transport .kp-step figure {
    aspect-ratio: 16/11;
    margin-bottom: 12px;
    border-radius: 8px
  }

  body.tpl-page-machinery-transport .kp-step b::before {
    content: attr(data-n) " ";
    color: var(--amber)
  }

  /* Split & Recent Jobs */
  body.tpl-page-machinery-transport .split-section {
    flex-direction: column;
    min-height: auto
  }

  body.tpl-page-machinery-transport .split-panel {
    height: 340px
  }

  body.tpl-page-machinery-transport .split-divider {
    display: none
  }

  body.tpl-page-machinery-transport .recent-jobs .rj-frame {
    height: min(76vw, 420px)
  }

  body.tpl-page-machinery-transport .recent-jobs .rj-slide {
    flex: 0 0 100%
  }

  body.tpl-page-machinery-transport .recent-jobs .rj-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 14px 18px
  }

  body.tpl-page-machinery-transport .recent-jobs .rj-arrow {
    width: 44px;
    height: 44px
  }

  body.tpl-page-machinery-transport .recent-jobs .rj-arrow.prev {
    left: 6px
  }

  body.tpl-page-machinery-transport .recent-jobs .rj-arrow.next {
    right: 6px
  }

  body.tpl-page-machinery-transport .why-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-machinery-transport .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-machinery-transport .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-machinery-transport .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-machinery-transport .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }

  body.tpl-page-machinery-transport .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }
}

@media (max-width:680px) {
  body.tpl-page-machinery-transport .mt-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-machinery-transport .svc-crumb {
    padding: 92px 6vw 0
  }

  body.tpl-page-machinery-transport .why-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:580px) {
  body.tpl-page-machinery-transport .mt-checks {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-machinery-transport .mt-steps-grid {
    grid-template-columns: 1fr
  }

  body.tpl-page-machinery-transport .mt-step:nth-child(n+2) {
    border-top: 1px solid rgba(255, 255, 255, .12)
  }

  body.tpl-page-machinery-transport .industries-list {
    grid-template-columns: 1fr
  }

  body.tpl-page-machinery-transport .tf-grid {
    grid-template-columns: 1fr
  }

  body.tpl-page-machinery-transport .kp-grid {
    grid-template-columns: 1fr;
    gap: 26px
  }
}

@media (max-width:380px) {
  body.tpl-page-machinery-transport .mt-strip-grid {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-machinery-transport .svc-hero-inner h1 {
    font-size: 27px
  }

  body.tpl-page-machinery-transport .svc-hero-inner p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-container-portable-building-transport  (scope: body.tpl-page-container-portable-building-transport) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-container-portable-building-transport {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes heroGlowPulse__tpl-page-container-portable-building-transport {

  0%,
  100% {
    opacity: .5;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.18)
  }
}

/* page-specific rules */
body.tpl-page-container-portable-building-transport {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-container-portable-building-transport {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-container-portable-building-transport .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-container-portable-building-transport .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-container-portable-building-transport .head-nav {
  align-items: center
}

body.tpl-page-container-portable-building-transport .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-container-portable-building-transport .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-container-portable-building-transport .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-container-portable-building-transport .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-container-portable-building-transport .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-container-portable-building-transport .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-container-portable-building-transport .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-container-portable-building-transport .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-container-portable-building-transport .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-container-portable-building-transport .ticket .t-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-container-portable-building-transport .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-container-portable-building-transport .ticket .t-photo {
  margin: 20px 0 4px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 10px 20px -12px rgba(18, 48, 90, .4)
}

body.tpl-page-container-portable-building-transport .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 18px 0 10px;
  color: var(--ink)
}

body.tpl-page-container-portable-building-transport .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-container-portable-building-transport .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-container-portable-building-transport .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-container-portable-building-transport .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-container-portable-building-transport .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-container-portable-building-transport .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-container-portable-building-transport .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-container-portable-building-transport .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-container-portable-building-transport .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-container-portable-building-transport .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-container-portable-building-transport .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-container-portable-building-transport 34s linear infinite;
}

body.tpl-page-container-portable-building-transport .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-container-portable-building-transport .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-container-portable-building-transport .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-container-portable-building-transport .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-container-portable-building-transport .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-container-portable-building-transport .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-container-portable-building-transport .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-container-portable-building-transport .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-container-portable-building-transport .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-container-portable-building-transport .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-container-portable-building-transport .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-container-portable-building-transport .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-container-portable-building-transport .node {
  cursor: pointer
}

body.tpl-page-container-portable-building-transport .node {
  transition: opacity .35s
}

body.tpl-page-container-portable-building-transport .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-container-portable-building-transport .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-container-portable-building-transport .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-container-portable-building-transport .social-head h2 {
  margin-top: 12px
}

body.tpl-page-container-portable-building-transport .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-container-portable-building-transport .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-container-portable-building-transport .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey)
}

body.tpl-page-container-portable-building-transport .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-container-portable-building-transport .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-container-portable-building-transport .hero2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  background: #0A0D1C;
}

body.tpl-page-container-portable-building-transport .hero2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  will-change: transform
}

body.tpl-page-container-portable-building-transport .hero2-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(6, 8, 20, .97) 0%, rgba(6, 8, 20, .86) 32%, rgba(6, 8, 20, .42) 58%, rgba(6, 8, 20, .08) 78%), linear-gradient(0deg, rgba(4, 6, 16, .9) 0%, rgba(4, 6, 16, 0) 26%);
}

body.tpl-page-container-portable-building-transport .hero2-glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: heroGlowPulse__tpl-page-container-portable-building-transport 3.4s ease-in-out infinite
}

body.tpl-page-container-portable-building-transport .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-container-portable-building-transport .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-container-portable-building-transport .hero2-stats {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding: 26px min(6vw, 90px) 34px;
  background: linear-gradient(0deg, rgba(4, 6, 16, .5) 0%, rgba(4, 6, 16, .1) 100%);
}

body.tpl-page-container-portable-building-transport .handle-track {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-container-portable-building-transport .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-container-portable-building-transport .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-container-portable-building-transport .handle-arrow.prev {
  left: -14px
}

body.tpl-page-container-portable-building-transport .handle-arrow.next {
  right: -14px
}

body.tpl-page-container-portable-building-transport .handle-card {
  flex: 0 0 min(430px, 86vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  border-top: 3px solid var(--amber);
  padding: 0 30px 34px;
  height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease);
}

body.tpl-page-container-portable-building-transport .handle-img {
  margin: 0 -30px 22px;
  position: relative;
  overflow: hidden;
  height: 250px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-container-portable-building-transport .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03);
  transition: transform .5s var(--ease)
}

body.tpl-page-container-portable-building-transport .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 55%, rgba(18, 102, 196, .55) 100%)
}

body.tpl-page-container-portable-building-transport .handle-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 13px;
  color: #0C1020;
  background: var(--amber);
  padding: 5px 13px;
  border-radius: 999px;
  flex: none;
}

body.tpl-page-container-portable-building-transport .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 21px;
  color: #F8F8F5;
  line-height: 1.22;
  margin-top: 14px;
  flex: none;
  min-height: 2.6em
}

body.tpl-page-container-portable-building-transport .handle-card p {
  color: #C7D2EA;
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1
}

body.tpl-page-container-portable-building-transport .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-container-portable-building-transport .svc-block-copy p {
  color: var(--grey);
  font-size: 18.5px;
  line-height: 1.75;
  margin-bottom: 18px
}

body.tpl-page-container-portable-building-transport .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: .02em;
}

body.tpl-page-container-portable-building-transport .svc-block-photo img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block
}

body.tpl-page-container-portable-building-transport .svc-block-photo figcaption {
  position: absolute;
  left: 16px;
  right: auto;
  bottom: 16px;
  top: auto;
  max-width: calc(100% - 32px);
  padding: 9px 18px;
  border-radius: 12px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .55);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s ease, background .3s ease;
}

body.tpl-page-container-portable-building-transport .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-container-portable-building-transport .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden
}

body.tpl-page-container-portable-building-transport .rj-viewer {
  position: relative;
  max-width: 1180px;
  margin: 0 auto
}

body.tpl-page-container-portable-building-transport .rj-frame {
  position: relative;
  height: min(58vw, 460px);
  overflow: hidden
}

body.tpl-page-container-portable-building-transport .rj-track {
  display: flex;
  align-items: center;
  height: 100%;
  will-change: transform
}

body.tpl-page-container-portable-building-transport .rj-slide {
  flex: 0 0 62%;
  max-width: 640px;
  height: 88%;
  margin: 0 2.2%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  opacity: .35;
  transform: scale(.88);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(4, 8, 22, .6);
}

body.tpl-page-container-portable-building-transport .rj-slide.active {
  opacity: 1;
  transform: scale(1)
}

body.tpl-page-container-portable-building-transport .rj-slide figcaption {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  top: auto;
  max-width: calc(100% - 44px);
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(10, 12, 28, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, .6);
  color: #F5F5F2;
  transition: transform .3s ease, background .3s ease, opacity .3s ease;
  opacity: 0;
}

body.tpl-page-container-portable-building-transport .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-container-portable-building-transport .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-container-portable-building-transport .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-container-portable-building-transport .rj-arrow.prev {
  left: 2%
}

body.tpl-page-container-portable-building-transport .rj-arrow.next {
  right: 2%
}

body.tpl-page-container-portable-building-transport .why-section {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: #0B1130
}

body.tpl-page-container-portable-building-transport .why-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

body.tpl-page-container-portable-building-transport .why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.5) saturate(1.05)
}

body.tpl-page-container-portable-building-transport .why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11, 17, 48, .95) 0%, rgba(11, 17, 48, .8) 40%, rgba(27, 22, 112, .58) 100%)
}

body.tpl-page-container-portable-building-transport .why-head {
  max-width: 680px;
  margin-bottom: 64px
}

body.tpl-page-container-portable-building-transport .why-benefit {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 44px);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  opacity: .38;
  transition: opacity .5s var(--ease);
}

body.tpl-page-container-portable-building-transport .why-benefit:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

body.tpl-page-container-portable-building-transport .faq-section {
  padding: 100px 0 150px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden
}

body.tpl-page-container-portable-building-transport .faq-head {
  max-width: 520px;
  margin-bottom: 30px
}

body.tpl-page-container-portable-building-transport .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-container-portable-building-transport .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}

body.tpl-page-container-portable-building-transport .faq-q {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--white);
}

body.tpl-page-container-portable-building-transport .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-container-portable-building-transport .faq-icon svg {
  width: 21px;
  height: 21px
}

body.tpl-page-container-portable-building-transport .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber)
}

body.tpl-page-container-portable-building-transport .faq-plus svg {
  width: 100%;
  height: 100%;
  transition: transform .3s
}

body.tpl-page-container-portable-building-transport .faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 20px 20px 82px
}

body.tpl-page-container-portable-building-transport .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-container-portable-building-transport .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-container-portable-building-transport .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-container-portable-building-transport .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

body.tpl-page-container-portable-building-transport .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-container-portable-building-transport .svc-final::before {
  display: none;
}

body.tpl-page-container-portable-building-transport .svc-final .wrap {
  position: relative;
  z-index: 2;
  max-width: 800px
}

body.tpl-page-container-portable-building-transport .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  margin: 18px 0 24px
}

body.tpl-page-container-portable-building-transport .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

body.tpl-page-container-portable-building-transport .svc-final-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

body.tpl-page-container-portable-building-transport .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-container-portable-building-transport .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-container-portable-building-transport .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-container-portable-building-transport .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-container-portable-building-transport .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-container-portable-building-transport .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease)
}

body.tpl-page-container-portable-building-transport .accred-head {
  max-width: 640px;
  margin-bottom: 8px
}

body.tpl-page-container-portable-building-transport .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

body.tpl-page-container-portable-building-transport .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

body.tpl-page-container-portable-building-transport .acc-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-container-portable-building-transport .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-container-portable-building-transport .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-container-portable-building-transport .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-container-portable-building-transport .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-container-portable-building-transport .acc-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(4, 8, 22, .35);
  opacity: 0;
  transform: scale(0) rotate(-40deg);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .35s;
}

body.tpl-page-container-portable-building-transport .acc-seal svg {
  width: 18px;
  height: 18px
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-container-portable-building-transport .hero2 {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-container-portable-building-transport .hero2-photo {
    position: absolute;
    inset: 0;
    height: 100%
  }

  body.tpl-page-container-portable-building-transport .hero2-photo img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-container-portable-building-transport .hero2-scrim {
    background: linear-gradient(180deg, rgba(4, 6, 18, .86) 0%, rgba(4, 6, 18, .70) 40%, rgba(4, 6, 18, .94) 100%)
  }

  body.tpl-page-container-portable-building-transport .svc-crumb {
    position: relative;
    top: 0;
    padding: 100px 6vw 0;
    z-index: 6
  }

  body.tpl-page-container-portable-building-transport .hero2-content {
    padding: 18px 6vw 36px;
    max-width: 100%;
    flex: none
  }

  body.tpl-page-container-portable-building-transport .hero2-content h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.06;
    margin: 12px 0 16px
  }

  body.tpl-page-container-portable-building-transport .hero2-content p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-container-portable-building-transport .svc-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-container-portable-building-transport .svc-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-container-portable-building-transport .svc-hero-cta .btn-quote {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-container-portable-building-transport .hero2-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(4, 6, 18, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-container-portable-building-transport .hero2-stats li {
    padding-right: 0;
    margin-right: 0;
    border-right: 0
  }

  body.tpl-page-container-portable-building-transport .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }
}

@media (max-width:900px) {
  body.tpl-page-container-portable-building-transport .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }

  body.tpl-page-container-portable-building-transport .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px)
  }

  body.tpl-page-container-portable-building-transport .wall-item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2
  }

  body.tpl-page-container-portable-building-transport .wall-item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3
  }
}

@media (max-width:680px) {
  body.tpl-page-container-portable-building-transport .hero2-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-container-portable-building-transport .svc-crumb {
    padding: 92px 6vw 0
  }
}

@media (max-width:380px) {
  body.tpl-page-container-portable-building-transport .hero2-stats {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-container-portable-building-transport .hero2-content h1 {
    font-size: 27px
  }

  body.tpl-page-container-portable-building-transport .hero2-content p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-recovery-jobs  (scope: body.tpl-page-recovery-jobs) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-recovery-jobs {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* page-specific rules */
body.tpl-page-recovery-jobs {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-recovery-jobs {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-recovery-jobs .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-recovery-jobs .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-recovery-jobs .head-nav {
  align-items: center
}

body.tpl-page-recovery-jobs .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-recovery-jobs .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-recovery-jobs .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-recovery-jobs .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-recovery-jobs .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-recovery-jobs .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-recovery-jobs .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-recovery-jobs .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-recovery-jobs .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-recovery-jobs .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-recovery-jobs .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-recovery-jobs .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-recovery-jobs .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-recovery-jobs .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-recovery-jobs .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-recovery-jobs .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-recovery-jobs .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-recovery-jobs .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-recovery-jobs .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-recovery-jobs .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-recovery-jobs .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-recovery-jobs .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-recovery-jobs .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-recovery-jobs .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-recovery-jobs 34s linear infinite;
}

body.tpl-page-recovery-jobs .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-recovery-jobs .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-recovery-jobs .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-recovery-jobs .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-recovery-jobs .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-recovery-jobs .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-recovery-jobs .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-recovery-jobs .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-recovery-jobs .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-recovery-jobs .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-recovery-jobs .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-recovery-jobs .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-recovery-jobs .node {
  cursor: pointer
}

body.tpl-page-recovery-jobs .node {
  transition: opacity .35s
}

body.tpl-page-recovery-jobs .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-recovery-jobs .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-recovery-jobs .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-recovery-jobs .social-head h2 {
  margin-top: 12px
}

body.tpl-page-recovery-jobs .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-recovery-jobs .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-recovery-jobs .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-recovery-jobs .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-recovery-jobs .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-recovery-jobs .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: auto;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-recovery-jobs .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 150px 4vw 70px min(6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center
}

body.tpl-page-recovery-jobs .svc-hero-photo {
  position: relative;
  overflow: hidden
}

body.tpl-page-recovery-jobs .svc-hero-photo img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

body.tpl-page-recovery-jobs .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(18, 22, 60, .55) 0%, transparent 16%);
}

body.tpl-page-recovery-jobs .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-recovery-jobs .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-recovery-jobs .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-recovery-jobs .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-recovery-jobs .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-recovery-jobs .svc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(245, 245, 242, .18);
  max-width: 520px
}

body.tpl-page-recovery-jobs .svc-trust li {
  padding: 18px 26px 0 0;
  margin-right: 26px;
  font-family: var(--font-cond);
}

body.tpl-page-recovery-jobs .svc-trust li span {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px
}

body.tpl-page-recovery-jobs .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-recovery-jobs .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-recovery-jobs .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-recovery-jobs .handle-arrow.prev {
  left: -14px
}

body.tpl-page-recovery-jobs .handle-arrow.next {
  right: -14px
}

body.tpl-page-recovery-jobs .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-recovery-jobs .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-recovery-jobs .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-recovery-jobs .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-recovery-jobs .handle-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

body.tpl-page-recovery-jobs .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-recovery-jobs .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-recovery-jobs .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-recovery-jobs .svc-block-copy p {
  color: var(--grey);
  font-size: 18.5px;
  line-height: 1.75;
  margin-bottom: 18px
}

body.tpl-page-recovery-jobs .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: .02em;
}

body.tpl-page-recovery-jobs .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-recovery-jobs .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-recovery-jobs .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-recovery-jobs .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-recovery-jobs .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-recovery-jobs .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-recovery-jobs .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-recovery-jobs .rj-slide.active {
  opacity: 1
}

body.tpl-page-recovery-jobs .rj-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(8, 12, 26, .9), transparent 80%);
  color: #F5F5F2;
}

body.tpl-page-recovery-jobs .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-recovery-jobs .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-recovery-jobs .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-recovery-jobs .rj-arrow.prev {
  left: -26px
}

body.tpl-page-recovery-jobs .rj-arrow.next {
  right: -26px
}

body.tpl-page-recovery-jobs .why-section {
  padding: 100px 0 110px;
  background: linear-gradient(170deg, #1B1670 0%, var(--kwt-blue) 100%)
}

body.tpl-page-recovery-jobs .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-recovery-jobs .why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.tpl-page-recovery-jobs .faq-section {
  padding: 100px 0 110px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line)
}

body.tpl-page-recovery-jobs .faq-head {
  max-width: 640px;
  margin-bottom: 44px
}

body.tpl-page-recovery-jobs .faq-list {
  max-width: 820px
}

body.tpl-page-recovery-jobs .faq-item {
  border-bottom: 1px solid var(--line)
}

body.tpl-page-recovery-jobs .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

body.tpl-page-recovery-jobs .faq-a p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.65;
  padding-bottom: 22px;
  max-width: 680px
}

body.tpl-page-recovery-jobs .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-recovery-jobs .svc-final::before {
  display: none;
}

body.tpl-page-recovery-jobs .svc-final .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-recovery-jobs .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-recovery-jobs .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-recovery-jobs .svc-final-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-recovery-jobs .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-recovery-jobs .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-recovery-jobs .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-recovery-jobs .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-recovery-jobs .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-recovery-jobs .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-recovery-jobs .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-recovery-jobs .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-recovery-jobs .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-recovery-jobs .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-recovery-jobs .industries-section {
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 70% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
}

body.tpl-page-recovery-jobs .industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

body.tpl-page-recovery-jobs .industries-head {
  max-width: 520px
}

body.tpl-page-recovery-jobs .industries-head p {
  color: var(--grey);
  font-size: 16px;
  margin-top: 14px;
  line-height: 1.6
}

body.tpl-page-recovery-jobs .industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px
}

body.tpl-page-recovery-jobs .industry-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 14px;
  color: var(--white);
  background: var(--asphalt-3);
  border: 1px solid var(--line);
  padding: 10px 18px;
  transition: .25s;
}

body.tpl-page-recovery-jobs .industry-chip svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  flex: none
}

body.tpl-page-recovery-jobs .industry-chip:hover {
  background: var(--kwt-blue-2);
  border-color: var(--amber);
  transform: translateY(-3px)
}

body.tpl-page-recovery-jobs .industries-visual {
  position: relative;
  height: 420px
}

body.tpl-page-recovery-jobs .iv-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 24px 50px -16px rgba(6, 10, 30, .55);
  opacity: 0;
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

body.tpl-page-recovery-jobs .iv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

body.tpl-page-recovery-jobs .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-recovery-jobs .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-recovery-jobs .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-recovery-jobs .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-recovery-jobs .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-recovery-jobs .accred-head {
  max-width: 640px;
  margin-bottom: 8px
}

body.tpl-page-recovery-jobs .accred-head h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px
}

body.tpl-page-recovery-jobs .accred-head p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.6
}

body.tpl-page-recovery-jobs .accred-grid .acc-card {
  position: relative
}

body.tpl-page-recovery-jobs .acc-seal {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--kwt-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(4, 8, 22, .35);
  opacity: 0;
  transform: scale(0) rotate(-40deg);
  transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: .35s;
}

body.tpl-page-recovery-jobs .acc-seal svg {
  width: 18px;
  height: 18px
}

body.tpl-page-recovery-jobs .faq-section {
  position: relative;
  overflow: hidden
}

body.tpl-page-recovery-jobs .faq-list {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

body.tpl-page-recovery-jobs .faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}

body.tpl-page-recovery-jobs .faq-q {
  padding: 16px 20px;
  justify-content: flex-start;
  gap: 16px;
  font-size: 16.5px;
}

body.tpl-page-recovery-jobs .faq-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: grid;
  place-items: center;
  color: var(--amber);
}

body.tpl-page-recovery-jobs .faq-icon svg {
  width: 21px;
  height: 21px;
  color: var(--amber)
}

body.tpl-page-recovery-jobs .faq-plus {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--amber);
  display: grid;
  place-items: center
}

body.tpl-page-recovery-jobs .faq-plus svg {
  width: 100%;
  height: 100%;
  color: var(--amber);
  transition: transform .3s
}

body.tpl-page-recovery-jobs .faq-a p {
  padding: 0 20px 20px 82px;
  max-width: none
}

body.tpl-page-recovery-jobs .faq-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  background: var(--amber);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 28px 36px;
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(6, 8, 22, .65);
}

body.tpl-page-recovery-jobs .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

body.tpl-page-recovery-jobs .final-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 420px at 50% 50%, rgba(6, 10, 24, 0.74) 0%, rgba(6, 10, 24, 0.45) 50%, rgba(6, 10, 24, 0.08) 75%, transparent 100%);
}

body.tpl-page-recovery-jobs .svc-final {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  background: #0B1130;
}

body.tpl-page-recovery-jobs .final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body.tpl-page-recovery-jobs .final-bg img {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 136%;
  object-fit: cover;
  display: block;
  filter: none;
}

body.tpl-page-recovery-jobs .svc-final::before {
  display: none;
}

body.tpl-page-recovery-jobs .svc-final .wrap {
  position: relative;
  z-index: 2
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-recovery-jobs .rec-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-recovery-jobs .rec-hero-bg {
    position: absolute;
    inset: 0;
    height: 100%
  }

  body.tpl-page-recovery-jobs .rec-hero-bg img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 30%
  }

  body.tpl-page-recovery-jobs .rec-hero-scrim {
    background: linear-gradient(180deg, rgba(3, 5, 14, .88) 0%, rgba(3, 5, 14, .70) 42%, rgba(3, 5, 14, .94) 100%)
  }

  body.tpl-page-recovery-jobs .rec-hero-inner {
    padding: 100px 6vw 36px;
    max-width: 100%
  }

  body.tpl-page-recovery-jobs .rec-hero-inner h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.05;
    margin: 12px 0 16px
  }

  body.tpl-page-recovery-jobs .rec-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-recovery-jobs .rec-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-recovery-jobs .rec-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-recovery-jobs .rec-hero-cta .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-recovery-jobs .rec-strip {
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: rgba(3, 5, 14, .6);
    backdrop-filter: blur(6px)
  }

  body.tpl-page-recovery-jobs .rec-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    padding: 22px 6vw 30px
  }

  body.tpl-page-recovery-jobs .rec-strip-item {
    padding: 0;
    border-left: 0
  }

  body.tpl-page-recovery-jobs .why-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-recovery-jobs .areas-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  body.tpl-page-recovery-jobs .industries-visual {
    height: 340px;
    order: -1
  }
}

@media (max-width:900px) {
  body.tpl-page-recovery-jobs .faq-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "left" "visual" "cta";
    gap: 44px 0
  }

  body.tpl-page-recovery-jobs .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-recovery-jobs .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-recovery-jobs .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }
}

@media (max-width:680px) {
  body.tpl-page-recovery-jobs .rec-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-recovery-jobs .why-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:380px) {
  body.tpl-page-recovery-jobs .rec-strip-grid {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-recovery-jobs .rec-hero-inner h1 {
    font-size: 27px
  }

  body.tpl-page-recovery-jobs .rec-hero-inner p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-panthers-partnership  (scope: body.tpl-page-panthers-partnership) ===== */
/* page-specific keyframes */
@keyframes revScroll__tpl-page-panthers-partnership {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* page-specific rules */
body.tpl-page-panthers-partnership {
  --asphalt: linear-gradient(135deg, #1B1670 0%, var(--kwt-blue) 55%, var(--kwt-blue-2) 100%);
  --asphalt-2: var(--kwt-blue-2);
  --asphalt-3: var(--kwt-blue);
  --amber: #FFB300;
  --amber-hot: #FFD54A;
  --white: #F5F5F2;
  --grey: #A3B3CF;
  --grey-dim: #7C8CB0;
  --kwt-blue: #221E8F;
  --kwt-blue-2: #1266C4;
  --kwt-cyan: #1266C4;
  --kwt-red: #E8321F;
  --gold: #D9A125;
  --gold-warm: #C97A17;
  --grey-light: #C7CCC9;
  --grey-dark: #6B6F73;
  --line: rgba(151, 183, 235, .16);
  --font-display: "Anton", Impact, sans-serif;
  --font-cond: "Plus Jakarta Sans", "Inter", "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Plus Jakarta Sans", "Inter", "Barlow", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ink: #171A2B;
  --night-bg: #0C1224;
  --night-bg-2: #111A33;
  --night-bg-3: #182442;
  --night-white: #F5F5F2;
  --night-grey: #A3B3CF;
  --night-line: rgba(151, 183, 235, .16);
  --night-grey-dim: #7C8CB0;
}

body.tpl-page-panthers-partnership {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.tpl-page-panthers-partnership .drive-copy h2 {
  color: var(--white)
}

body.tpl-page-panthers-partnership .head-nav {
  display: flex;
  gap: 30px;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px
}

body.tpl-page-panthers-partnership .head-nav {
  align-items: center
}

body.tpl-page-panthers-partnership .hero-sub {
  max-width: 560px;
  color: var(--grey);
  font-size: clamp(16px, 1.35vw, 19px);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5)
}

body.tpl-page-panthers-partnership .chap-head p {
  max-width: 620px;
  color: var(--grey);
  margin-top: 18px;
  font-size: 18px
}

body.tpl-page-panthers-partnership .ch2 {
  background: radial-gradient(75% 70% at 85% 0%, rgba(255, 255, 255, .12), transparent 68%), linear-gradient(120deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
  padding-bottom: 130px
}

body.tpl-page-panthers-partnership .svc {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  border: 1px solid rgba(151, 183, 235, .25)
}

body.tpl-page-panthers-partnership .svc {
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  padding: 0 32px 32px;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-panthers-partnership .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(255, 255, 255, .1), transparent 65%), linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  overflow: hidden
}

body.tpl-page-panthers-partnership .tickets {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  position: relative
}

body.tpl-page-panthers-partnership .tick-line {
  position: absolute;
  top: 33px;
  left: 4%;
  width: 92%;
  height: 2px;
  background: var(--kwt-blue-2);
  transform-origin: left center;
  transform: scaleX(0);
}

body.tpl-page-panthers-partnership .ticket {
  flex: 1;
  background: radial-gradient(circle at 0 33px, var(--kwt-blue) 9px, transparent 10px), radial-gradient(circle at 100% 33px, var(--kwt-blue) 9px, transparent 10px), var(--amber);
  border: 1px solid rgba(18, 48, 90, .18);
  padding: 26px 24px 30px;
  position: relative;
  will-change: transform;
}

body.tpl-page-panthers-partnership .ticket::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  border-top: 2px dashed rgba(18, 48, 90, .3);
}

body.tpl-page-panthers-partnership .ticket .t-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 13px;
  color: var(--kwt-blue);
  text-transform: uppercase;
}

body.tpl-page-panthers-partnership .ticket .t-step i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--kwt-blue);
  display: grid;
  place-items: center;
  color: var(--kwt-blue);
  font-family: var(--font-cond);
}

body.tpl-page-panthers-partnership .ticket h3 {
  font-size: clamp(22px, 2vw, 30px);
  margin: 22px 0 10px;
  color: var(--ink)
}

body.tpl-page-panthers-partnership .ticket p {
  color: #3A2E0A;
  font-size: 15px
}

body.tpl-page-panthers-partnership .ticket .t-time {
  margin-top: 16px;
  font-family: var(--font-cond);
  letter-spacing: .14em;
  font-size: 12px;
  color: #6B5A1E;
  text-transform: uppercase
}

body.tpl-page-panthers-partnership .drive-copy h2 {
  font-size: clamp(34px, 4.8vw, 76px)
}

body.tpl-page-panthers-partnership .stats {
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
}

body.tpl-page-panthers-partnership .stat {
  padding: 56px 28px;
  border-left: 1px solid var(--line)
}

body.tpl-page-panthers-partnership .about-kwt {
  background: radial-gradient(65% 60% at 90% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(125deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding: 110px 0 100px;
}

body.tpl-page-panthers-partnership .about-lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 640px
}

body.tpl-page-panthers-partnership .join-copy p {
  color: var(--grey);
  max-width: 560px;
  font-size: 15.5px
}

body.tpl-page-panthers-partnership .fleet {
  background: radial-gradient(55% 55% at 100% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(100deg, var(--kwt-blue-2) 0%, var(--kwt-blue) 100%);
  padding-bottom: 0;
  overflow: hidden
}

body.tpl-page-panthers-partnership .reviews {
  background: radial-gradient(55% 60% at 0% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(165deg, #1B1670 0%, var(--kwt-blue-2) 75%, var(--kwt-blue) 100%);
  padding-bottom: 120px
}

body.tpl-page-panthers-partnership .rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: revScroll__tpl-page-panthers-partnership 34s linear infinite;
}

body.tpl-page-panthers-partnership .rev {
  flex: 0 0 420px;
  background: linear-gradient(160deg, var(--asphalt-3) 0%, var(--asphalt-2) 65%);
  border: 1px solid var(--line);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

body.tpl-page-panthers-partnership .rev {
  border-top: 3px solid var(--amber)
}

body.tpl-page-panthers-partnership .accred {
  background: radial-gradient(60% 65% at 90% 0%, rgba(255, 255, 255, .12), transparent 62%), linear-gradient(140deg, var(--kwt-blue) 0%, #1B1670 100%);
  padding: 74px 0 84px;
}

body.tpl-page-panthers-partnership .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-panthers-partnership .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-cyan)
}

body.tpl-page-panthers-partnership .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .12);
  border: 1px solid var(--line);
}

body.tpl-page-panthers-partnership .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2
}

body.tpl-page-panthers-partnership .acc-card p {
  color: var(--grey);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-panthers-partnership .panthers {
  --teal: #00918A;
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background: radial-gradient(60% 65% at 0% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(150deg, #1B1670 0%, var(--kwt-blue-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.tpl-page-panthers-partnership .p-lead {
  color: var(--grey);
  margin-top: 18px;
  max-width: 560px;
  font-size: 17.5px
}

body.tpl-page-panthers-partnership .p-offer-sub {
  color: var(--grey);
  font-size: 15.5px
}

body.tpl-page-panthers-partnership .ch4 {
  background: radial-gradient(55% 55% at 100% 100%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(130deg, var(--kwt-blue) 0%, var(--kwt-blue-2) 55%, #1B1670 100%);
  padding-bottom: 130px
}

body.tpl-page-panthers-partnership .node {
  cursor: pointer
}

body.tpl-page-panthers-partnership .node {
  transition: opacity .35s
}

body.tpl-page-panthers-partnership .final p {
  color: var(--grey);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 18px
}

body.tpl-page-panthers-partnership .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 90px 0 100px
}

body.tpl-page-panthers-partnership .social-head p {
  max-width: 560px;
  color: var(--grey);
  margin-top: 16px
}

body.tpl-page-panthers-partnership .social-head h2 {
  margin-top: 12px
}

body.tpl-page-panthers-partnership .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px
}

body.tpl-page-panthers-partnership .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

body.tpl-page-panthers-partnership .site-foot li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--grey)
}

body.tpl-page-panthers-partnership .foot-brand p {
  color: var(--grey);
  font-size: 15px;
  margin-top: 14px;
  max-width: 320px
}

body.tpl-page-panthers-partnership .foot-base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--grey-dim)
}

body.tpl-page-panthers-partnership .svc-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: auto;
  background: linear-gradient(155deg, #1B1670 0%, var(--kwt-blue) 60%, var(--kwt-blue-2) 100%);
}

body.tpl-page-panthers-partnership .svc-hero-copy {
  position: relative;
  z-index: 5;
  padding: 150px 4vw 70px min(6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center
}

body.tpl-page-panthers-partnership .svc-hero-photo {
  position: relative;
  overflow: hidden
}

body.tpl-page-panthers-partnership .svc-hero-photo img {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

body.tpl-page-panthers-partnership .svc-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(18, 22, 60, .55) 0%, transparent 16%);
}

body.tpl-page-panthers-partnership .svc-crumb {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 6;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  color: #B9C6E8;
  padding: 0 4vw 0 min(6vw, 90px)
}

body.tpl-page-panthers-partnership .svc-hero-inner {
  position: relative;
  z-index: 5
}

body.tpl-page-panthers-partnership .svc-hero-inner h1 {
  color: #F8F8F5;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.02;
  margin: 16px 0 20px;
}

body.tpl-page-panthers-partnership .svc-hero-inner p {
  color: #D7DEF2;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px
}

body.tpl-page-panthers-partnership .svc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px
}

body.tpl-page-panthers-partnership .svc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(245, 245, 242, .18);
  max-width: 520px
}

body.tpl-page-panthers-partnership .svc-trust li {
  padding: 18px 26px 0 0;
  margin-right: 26px;
  font-family: var(--font-cond);
}

body.tpl-page-panthers-partnership .svc-trust li span {
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B9C6E8;
  margin-top: 4px
}

body.tpl-page-panthers-partnership .handle-track {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 22px;
  position: relative;
  scrollbar-width: none;
}

body.tpl-page-panthers-partnership .handle-arrow {
  position: absolute;
  top: 38%;
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(4, 8, 22, .55);
  transition: background .25s, transform .25s;
}

body.tpl-page-panthers-partnership .handle-arrow:hover {
  background: var(--amber-hot);
  transform: scale(1.07)
}

body.tpl-page-panthers-partnership .handle-arrow.prev {
  left: -14px
}

body.tpl-page-panthers-partnership .handle-arrow.next {
  right: -14px
}

body.tpl-page-panthers-partnership .handle-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  position: relative;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid rgba(151, 183, 235, .25);
  padding: 0 26px 28px;
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.tpl-page-panthers-partnership .handle-img {
  margin: 0 -26px 20px;
  position: relative;
  overflow: hidden;
  height: 170px;
  flex: none;
  background: var(--asphalt)
}

body.tpl-page-panthers-partnership .handle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(1.03)
}

body.tpl-page-panthers-partnership .handle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0) 60%, rgba(18, 102, 196, .5) 100%)
}

body.tpl-page-panthers-partnership .handle-card .num {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--amber);
  font-size: 13px;
  flex: none
}

body.tpl-page-panthers-partnership .handle-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 17px;
  color: #F8F8F5;
  line-height: 1.25;
  margin-top: 8px;
  flex: none;
  min-height: 2.4em
}

body.tpl-page-panthers-partnership .handle-card p {
  color: #C7D2EA;
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1
}

body.tpl-page-panthers-partnership .svc-block-copy .eyebrow {
  color: var(--kwt-blue-2)
}

body.tpl-page-panthers-partnership .svc-block-copy p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px
}

body.tpl-page-panthers-partnership .svc-block-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
}

body.tpl-page-panthers-partnership .svc-block-photo img {
  width: 100%;
  display: block
}

body.tpl-page-panthers-partnership .svc-block-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(9, 10, 20, .88), transparent 75%);
  color: #F5F5F2;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tpl-page-panthers-partnership .how {
  background: radial-gradient(55% 60% at 8% 100%, rgba(41, 140, 224, .2), transparent 65%), var(--asphalt-2);
  overflow: hidden
}

body.tpl-page-panthers-partnership .recent-jobs {
  padding: 100px 0 110px;
  background: linear-gradient(115deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

body.tpl-page-panthers-partnership .rj-viewer {
  position: relative;
  max-width: 920px;
  margin: 0 auto
}

body.tpl-page-panthers-partnership .rj-frame {
  position: relative;
  height: min(64vw, 540px);
  overflow: hidden;
  background: var(--asphalt-3)
}

body.tpl-page-panthers-partnership .rj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}

body.tpl-page-panthers-partnership .rj-slide.active {
  opacity: 1
}

body.tpl-page-panthers-partnership .rj-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(8, 12, 26, .9), transparent 80%);
  color: #F5F5F2;
}

body.tpl-page-panthers-partnership .rj-slide figcaption b {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em
}

body.tpl-page-panthers-partnership .rj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kwt-blue);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(34, 30, 143, .3);
  transition: background .25s;
}

body.tpl-page-panthers-partnership .rj-arrow:hover {
  background: var(--kwt-blue-2)
}

body.tpl-page-panthers-partnership .rj-arrow.prev {
  left: -26px
}

body.tpl-page-panthers-partnership .rj-arrow.next {
  right: -26px
}

body.tpl-page-panthers-partnership .why-section {
  padding: 100px 0 110px;
  background: linear-gradient(170deg, #1B1670 0%, var(--kwt-blue) 100%)
}

body.tpl-page-panthers-partnership .why-head {
  max-width: 680px;
  margin-bottom: 52px
}

body.tpl-page-panthers-partnership .why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.tpl-page-panthers-partnership .faq-section {
  padding: 100px 0 110px;
  background: linear-gradient(155deg, var(--kwt-blue) 0%, #1B1670 100%);
  border-top: 1px solid var(--line)
}

body.tpl-page-panthers-partnership .faq-head {
  max-width: 640px;
  margin-bottom: 44px
}

body.tpl-page-panthers-partnership .faq-list {
  max-width: 820px
}

body.tpl-page-panthers-partnership .faq-item {
  border-bottom: 1px solid var(--line)
}

body.tpl-page-panthers-partnership .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

body.tpl-page-panthers-partnership .faq-a p {
  color: var(--grey);
  font-size: 15.5px;
  line-height: 1.65;
  padding-bottom: 22px;
  max-width: 680px
}

body.tpl-page-panthers-partnership .svc-final {
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0B1130;
}

body.tpl-page-panthers-partnership .svc-final::before {
  display: none;
}

body.tpl-page-panthers-partnership .svc-final .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-panthers-partnership .svc-final h2 {
  color: #F8F8F5;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 18px 0 22px
}

body.tpl-page-panthers-partnership .svc-final p {
  color: #D7DEF2;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px
}

body.tpl-page-panthers-partnership .svc-final-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-panthers-partnership .social {
  background: radial-gradient(55% 60% at 50% 0%, rgba(255, 255, 255, .1), transparent 62%), linear-gradient(110deg, var(--kwt-blue-2) 0%, #1B1670 100%);
  padding: 100px 0 110px
}

body.tpl-page-panthers-partnership .social-head h2 {
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 50px)
}

body.tpl-page-panthers-partnership .social-head p {
  max-width: 560px;
  color: var(--grey);
  font-weight: 600;
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.6
}

body.tpl-page-panthers-partnership .wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease, ease)
}

body.tpl-page-panthers-partnership .social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

body.tpl-page-panthers-partnership .soc-card .chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 26px;
  color: #4285F4;
}

body.tpl-page-panthers-partnership .acc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 26px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}

body.tpl-page-panthers-partnership .acc-card:hover {
  transform: translateY(-4px);
  border-color: var(--kwt-blue-2)
}

body.tpl-page-panthers-partnership .acc-badge {
  flex: none;
  width: 150px;
  height: 104px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(4, 8, 22, .25);
  border: 1px solid var(--line);
}

body.tpl-page-panthers-partnership .acc-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white)
}

body.tpl-page-panthers-partnership .acc-card p {
  color: var(--grey);
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5
}

body.tpl-page-panthers-partnership {
  --pnr-black: #161616;
  --pnr-gold: #FFB300;
  --pnr-red: #A30B33;
}



body.tpl-page-panthers-partnership .pnr-offer {
  padding: 110px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--pnr-black) 0%, #1B1670 55%, var(--kwt-blue) 100%);
}

body.tpl-page-panthers-partnership .pnr-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 110%, rgba(255, 179, 0, .18), transparent 60%)
}

body.tpl-page-panthers-partnership .pnr-offer .wrap {
  position: relative;
  max-width: 760px
}

body.tpl-page-panthers-partnership .pnr-offer .eyebrow {
  color: var(--pnr-gold);
  justify-content: center
}

body.tpl-page-panthers-partnership .pnr-offer-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap
}

body.tpl-page-panthers-partnership .pnr-tl-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative
}

body.tpl-page-panthers-partnership .pnr-tl-card {
  background: none;
  border: none;
  padding: 0;
  transition: none
}

body.tpl-page-panthers-partnership .pnr-tl-card:hover {
  transform: none
}

body.tpl-page-panthers-partnership .pnr-tl-card .yr {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--pnr-gold);
  line-height: 1
}

body.tpl-page-panthers-partnership .pnr-tl-card h3 {
  margin: 8px 0 8px
}

body.tpl-page-panthers-partnership .pnr-tl-card p {
  max-width: 320px
}

body.tpl-page-panthers-partnership .pnr-offer {
  padding: 100px 0 110px;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0A0A0A 0%, #151515 60%, #1A1A1A 100%)
}

body.tpl-page-panthers-partnership .pnr-offer::before {
  display: none
}

body.tpl-page-panthers-partnership .pnr-offer .wrap {
  max-width: none !important;
  width: min(1240px, 92vw)
}

body.tpl-page-panthers-partnership .pnr-offer .eyebrow {
  justify-content: flex-start !important;
  white-space: nowrap
}

body.tpl-page-panthers-partnership .pnr-offer-cta {
  justify-content: flex-start
}

body.tpl-page-panthers-partnership .pnr-offer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px
}

/* page-specific responsive rules */
@media (max-width:1020px) {
  body.tpl-page-panthers-partnership .panthers-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  body.tpl-page-panthers-partnership .panthers-hero-bg {
    position: absolute;
    inset: 0;
    height: 100%
  }

  body.tpl-page-panthers-partnership .panthers-hero-bg img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center 45%
  }

  body.tpl-page-panthers-partnership .panthers-hero-scrim {
    background: linear-gradient(180deg, rgba(8, 9, 11, .88) 0%, rgba(8, 9, 11, .70) 45%, rgba(8, 9, 11, .95) 100%)
  }

  body.tpl-page-panthers-partnership .panthers-crumb {
    padding: 100px 6vw 0;
    position: relative;
    z-index: 5
  }

  body.tpl-page-panthers-partnership .panthers-hero-inner {
    padding: 18px 6vw 36px;
    max-width: 100%;
    position: relative;
    z-index: 5
  }

  body.tpl-page-panthers-partnership .panthers-hero-inner h1 {
    font-size: clamp(30px, 7vw, 46px);
    line-height: .98;
    margin: 12px 0 16px
  }

  body.tpl-page-panthers-partnership .panthers-hero-inner p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px
  }

  body.tpl-page-panthers-partnership .panthers-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 0
  }

  body.tpl-page-panthers-partnership .panthers-hero-cta .btn-call {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 20px
  }

  body.tpl-page-panthers-partnership .btn-panthers {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    text-align: center
  }

  body.tpl-page-panthers-partnership .pnr-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 245, 242, .18)
  }

  body.tpl-page-panthers-partnership .pnr-hero-stats li {
    padding: 0;
    border-left: 0
  }

  body.tpl-page-panthers-partnership .why-grid {
    grid-template-columns: 1fr 1fr
  }

  body.tpl-page-panthers-partnership .areas-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  body.tpl-page-panthers-partnership .pnr-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    display: flex;
    flex-direction: column-reverse
  }
}

@media (max-width:900px) {
  body.tpl-page-panthers-partnership .wall-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px)
  }

  body.tpl-page-panthers-partnership .wall-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3
  }

  body.tpl-page-panthers-partnership .wall-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2
  }
}

@media (max-width:680px) {
  body.tpl-page-panthers-partnership .pnr-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px
  }

  body.tpl-page-panthers-partnership .panthers-crumb {
    padding: 92px 6vw 0
  }
}

@media (max-width:380px) {
  body.tpl-page-panthers-partnership .pnr-hero-stats {
    grid-template-columns: 1fr;
    gap: 10px
  }

  body.tpl-page-panthers-partnership .panthers-hero-inner h1 {
    font-size: 27px
  }

  body.tpl-page-panthers-partnership .panthers-hero-inner p {
    font-size: 14.5px
  }
}

/* ===== PAGE: page-site-map  (scope: body.tpl-page-site-map) ===== */
/* page-specific rules */
body.tpl-page-site-map {
  --kwt-blue: #1266C4;
  --kwt-blue-2: #0B3E8F;
  --amber: #FFB300;
  --amber-hot: #FF8A00;
  --ink: #0B0F1A;
  --white: #F8F8F5;
  --grey: #C7D2EA;
  --line: rgba(151, 183, 235, .25);
  --font-display: 'Anton', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

body.tpl-page-site-map * {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body.tpl-page-site-map {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  min-height: 100vh;
  color: var(--white);
}

body.tpl-page-site-map header {
  padding: 28px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line)
}

body.tpl-page-site-map header img {
  height: 38px;
  width: auto
}

body.tpl-page-site-map .intro {
  padding: 60px 5vw 20px;
  max-width: 900px
}

body.tpl-page-site-map .intro span.eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--amber)
}

body.tpl-page-site-map .intro h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  margin: 14px 0 16px;
  line-height: 1.05
}

body.tpl-page-site-map .intro p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px
}

body.tpl-page-site-map .hub-group {
  padding: 36px 5vw
}

body.tpl-page-site-map .hub-group h2 {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 20px;
  color: var(--amber);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px
}

body.tpl-page-site-map .hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px
}

body.tpl-page-site-map .hub-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(115deg, #1B1670 0%, var(--kwt-blue) 45%, var(--kwt-blue-2) 100%);
  border: 1px solid var(--line);
  padding: 24px 22px;
  transition: transform .25s ease, border-color .25s;
}

body.tpl-page-site-map .hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber)
}

body.tpl-page-site-map .hub-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 10px;
  color: #F8F8F5
}

body.tpl-page-site-map .hub-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 65px
}

body.tpl-page-site-map .hub-card em {
  font-style: normal;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--amber)
}

body.tpl-page-site-map footer {
  padding: 40px 5vw 60px;
  color: var(--grey);
  font-size: 13px;
  border-top: 1px solid var(--line);
  margin-top: 20px
}

body.tpl-page-site-map footer strong {
  color: var(--amber)
}