:root {
  --ink: #18141d;
  --muted: #625c67;
  --purple-950: #25113a;
  --purple-900: #34134c;
  --purple-800: #47176b;
  --purple-700: #60238b;
  --purple-100: #eee7f3;
  --purple-050: #f8f5fa;
  --yellow: #ffd229;
  --yellow-soft: #fff6ca;
  --green: #0d6536;
  --green-dark: #084a27;
  --gold: #a66c00;
  --line: #ded9e1;
  --line-soft: #ebe8ed;
  --surface: #fff;
  --surface-soft: #f6f4f7;
  --max: 76rem;
  --shadow: 0 1.4rem 3.5rem rgb(35 17 52 / 10%);
  --radius: .35rem;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

a:hover {
  text-decoration-thickness: .13em;
}

:focus-visible {
  outline: .2rem solid #1473e6;
  outline-offset: .22rem;
}

.skip-link {
  background: var(--yellow);
  color: #111;
  font-weight: 850;
  left: .8rem;
  padding: .8rem 1rem;
  position: fixed;
  top: -6rem;
  z-index: 1000;
}

.skip-link:focus {
  top: .8rem;
}

.shell {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
  width: 100%;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--soft {
  background: var(--surface-soft);
  border-block: 1px solid var(--line-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 790;
  letter-spacing: -.038em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6.2vw, 5.5rem);
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.65rem);
  margin-bottom: 1.15rem;
}

h3 {
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  margin-bottom: .7rem;
}

.kicker {
  align-items: center;
  color: var(--purple-700);
  display: flex;
  font-size: .73rem;
  font-weight: 900;
  gap: .65rem;
  letter-spacing: .14em;
  line-height: 1.3;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.kicker::before {
  background: currentColor;
  content: "";
  height: 2px;
  width: 2rem;
}

.kicker--light {
  color: #fff;
}

.kicker--yellow {
  color: var(--yellow);
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.72;
  max-width: 44rem;
}

.lede--light {
  color: #d8cedf;
}

.section-heading {
  margin-bottom: clamp(2.3rem, 5vw, 4rem);
  max-width: 52rem;
}

.section-heading--split {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, .7fr);
  max-width: none;
}

.section-heading--split > :last-child {
  align-self: end;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: .81rem;
  font-weight: 900;
  gap: .55rem;
  justify-content: center;
  letter-spacing: .05em;
  line-height: 1.2;
  min-height: 3rem;
  padding: .82rem 1.1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.button--call,
.button--gold {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #171208;
}

.button--call:hover,
.button--gold:hover {
  background: #ffe36b;
  border-color: #ffe36b;
}

.button--whatsapp {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.button--whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button[data-cta-channel="whatsapp"]::before,
.button--gold[data-cta-channel="whatsapp"]::before {
  background: #fff url("/assets/images/icons/whatsapp-mark.svg") center / 1.12rem no-repeat;
  border-radius: 50%;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 1.3rem;
  line-height: 1;
  width: 1.3rem;
}

.button--whatsapp[data-cta-channel="whatsapp"]::before {
  background-color: #fff;
}

.whatsapp-icon {
  background: #fff url("/assets/images/icons/whatsapp-mark.svg") center / 1.42rem no-repeat;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  height: 1.6rem;
  position: relative;
  width: 1.6rem;
}

.button--portal {
  background: var(--purple-800);
  border-color: var(--purple-800);
  color: #fff;
}

.button--portal:hover {
  background: var(--purple-950);
  border-color: var(--purple-950);
}

.button--portal-light {
  background: #fff;
  border-color: #fff;
  color: var(--purple-950);
}

.button--portal-light:hover {
  background: var(--purple-100);
  border-color: var(--purple-100);
}

.button--outline {
  background: transparent;
  border-color: var(--purple-800);
  color: var(--purple-800);
}

.button--outline:hover {
  background: var(--purple-050);
}

.button--light-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.button--light-outline:hover {
  background: rgb(255 255 255 / 9%);
}

.text-link {
  align-items: center;
  color: var(--purple-800);
  display: inline-flex;
  font-weight: 820;
  gap: .4rem;
  min-height: 3rem;
}

.text-link::after {
  content: "→";
  transition: transform .18s ease;
}

.text-link:hover::after {
  transform: translateX(.25rem);
}

.text-link--light {
  color: #fff;
  justify-content: center;
}

.action-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.centre-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 2rem;
}

.utility-bar {
  background: var(--purple-950);
  color: #f4eff7;
  font-size: .74rem;
  font-weight: 720;
  letter-spacing: .025em;
}

.utility-bar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 2.3rem;
}

.availability {
  align-items: center;
  display: inline-flex;
  gap: .55rem;
}

.availability__dot {
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 .22rem rgb(255 210 41 / 15%);
  height: .48rem;
  width: .48rem;
}

.utility-bar__contact {
  align-items: center;
  display: flex;
  gap: .55rem;
}

.utility-bar a {
  text-decoration-color: rgb(255 255 255 / 45%);
}

.email-display {
  cursor: text;
  overflow-wrap: anywhere;
  user-select: all;
}

.utility-bar .email-display {
  color: #d8cedf;
}

.site-header {
  background: rgb(255 255 255 / 97%);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 90;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 5.35rem;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: .72rem;
  text-decoration: none;
}

.brand img {
  height: 3.75rem;
  object-fit: contain;
  width: auto;
}

.brand__copy {
  color: var(--purple-950);
  display: grid;
  font-size: .68rem;
  font-weight: 820;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand__copy strong {
  font-size: .98rem;
  letter-spacing: .045em;
}

.brand__copy small {
  font-size: .62rem;
}

.site-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: clamp(.7rem, 1.5vw, 1.25rem);
  justify-content: flex-end;
}

.site-nav > a:not(.button) {
  align-items: center;
  color: #3b3540;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 780;
  min-height: 3rem;
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  color: var(--purple-700);
}

.site-nav > a[aria-current="page"]:not(.button)::after {
  background: var(--purple-700);
  bottom: .3rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.nav-dropdown {
  align-items: center;
  align-self: stretch;
  display: flex;
  position: relative;
}

.nav-dropdown__toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: #3b3540;
  cursor: pointer;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 780;
  gap: .5rem;
  min-height: 3rem;
  padding: 0;
  position: relative;
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.is-current,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--purple-700);
}

.nav-dropdown__toggle.is-current::after {
  background: var(--purple-700);
  bottom: .3rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.nav-dropdown__chevron {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: .46rem;
  margin-top: -.22rem;
  transform: rotate(45deg);
  transition: transform .18s ease;
  width: .46rem;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  margin-top: .18rem;
  transform: rotate(225deg);
}

.nav-dropdown__panel {
  background: #fff;
  border: 1px solid rgb(71 23 107 / 18%);
  border-radius: .85rem;
  box-shadow: 0 1.6rem 4rem rgb(37 17 58 / 24%);
  left: 50%;
  max-height: min(34rem, calc(100dvh - 8rem));
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  position: absolute;
  top: calc(100% - .15rem);
  transform: translate(-50%, .55rem) scale(.985);
  transform-origin: top center;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  visibility: hidden;
  width: min(43rem, calc(100vw - 3rem));
  z-index: 120;
}

.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  visibility: visible;
}

.nav-dropdown__intro {
  align-items: center;
  background: var(--purple-950);
  border-radius: .72rem .72rem 0 0;
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.15rem;
}

.nav-dropdown__intro div {
  display: grid;
}

.nav-dropdown__intro small {
  color: #d8cedf;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-dropdown__intro strong {
  font-size: 1rem;
}

.nav-dropdown__intro > a {
  background: var(--yellow);
  border-radius: .35rem;
  color: #171208;
  flex: 0 0 auto;
  font-size: .69rem;
  font-weight: 900;
  min-height: 2.45rem;
  padding: .65rem .8rem;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-dropdown__grid {
  display: grid;
  gap: .4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: .75rem;
}

.nav-dropdown__service {
  border: 1px solid transparent;
  border-radius: .55rem;
  display: grid;
  gap: .16rem;
  min-width: 0;
  padding: .75rem .8rem;
  text-decoration: none;
}

.nav-dropdown__service:hover,
.nav-dropdown__service[aria-current="page"] {
  background: var(--purple-050);
  border-color: var(--purple-100);
  color: var(--purple-800);
}

.nav-dropdown__service strong {
  font-size: .78rem;
  line-height: 1.25;
}

.nav-dropdown__service span {
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.35;
}

@media (min-width: 51.3125rem) {
  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    visibility: visible;
  }
}

.site-nav__mobile-wa {
  display: none !important;
}

.site-nav__mobile-heading {
  display: none;
}

.header-call {
  flex: 0 0 auto;
}

.nav-toggle {
  align-items: center;
  background: var(--purple-950);
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: .27rem;
  height: 3rem;
  justify-content: center;
  padding: .7rem;
  width: 3rem;
}

.nav-toggle span {
  background: currentColor;
  height: 2px;
  transition: opacity .18s ease, transform .18s ease;
  width: 1.35rem;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(.34rem) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-.34rem) rotate(-45deg);
}

.breadcrumb {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumb ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: .72rem;
  font-weight: 740;
  gap: .45rem;
  list-style: none;
  margin-block: 0;
  min-height: 3rem;
}

.breadcrumb li {
  align-items: center;
  display: flex;
  gap: .45rem;
}

.breadcrumb li:not(:last-child)::after {
  color: #938b97;
  content: "/";
}

.breadcrumb span {
  color: var(--muted);
}

.breadcrumb a,
.breadcrumb li > span {
  align-items: center;
  display: inline-flex;
  min-height: 3rem;
}

.hero {
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgb(71 23 107 / 5%) 50%, transparent 50.08%),
    linear-gradient(rgb(71 23 107 / 4%) 1px, transparent 1px);
  background-size: 100% 100%, 100% 4.5rem;
  overflow: hidden;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, .95fr) minmax(20rem, 1.05fr);
  min-height: min(48rem, calc(100vh - 7.65rem));
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero h1 {
  max-width: 11ch;
}

.hero__actions {
  margin-top: 2rem;
}

.hero__portal {
  margin-top: .65rem;
}

.hero__note {
  border-left: 2px solid var(--purple-700);
  color: var(--muted);
  font-size: .82rem;
  margin: 1.3rem 0 0;
  max-width: 34rem;
  padding-left: .9rem;
}

.page-hero {
  background:
    linear-gradient(110deg, transparent 0 57%, rgb(71 23 107 / 5%) 57% 100%),
    linear-gradient(rgb(71 23 107 / 4%) 1px, transparent 1px);
  background-size: 100% 100%, 100% 4rem;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .82fr);
  padding-block: clamp(3.8rem, 7vw, 6.2rem);
}

.page-hero h1,
.page-hero h2 {
  font-size: clamp(2.55rem, 5.3vw, 4.75rem);
  max-width: 15ch;
}

.contact-options__title {
  font-size: clamp(2rem, 4.3vw, 3.65rem);
}

.page-hero__portal {
  margin-top: .7rem;
}

.cta-helper {
  color: var(--muted);
  font-size: .78rem;
  margin: .9rem 0 0;
}

.site-photo {
  background: var(--purple-950);
  box-shadow: var(--shadow);
  margin: 0;
  min-height: 28rem;
  overflow: hidden;
  position: relative;
}

.site-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.site-photo figcaption {
  background: rgb(21 17 23 / 78%);
  bottom: 0;
  color: #fff;
  font-size: .72rem;
  left: 0;
  padding: .65rem .8rem;
  position: absolute;
  right: 0;
  z-index: 1;
}

.site-photo--hero {
  min-height: 42rem;
}

.site-photo--page-hero {
  min-height: 26rem;
}

.site-photo--portrait {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.site-photo--landscape {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.site-photo--story {
  aspect-ratio: 5 / 6;
  min-height: 0;
}

/* Reusable fleet-photo frames. Founder and owner portraits never receive these classes. */
.lorry-frame {
  isolation: isolate;
  position: relative;
  transition: transform .25s ease;
  z-index: 0;
}

.lorry-frame > img,
.lorry-frame > video {
  z-index: 1;
}

.lorry-frame:hover {
  transform: translate3d(-.1rem, -.1rem, 0);
}

.lorry-frame--signature {
  border: .35rem solid #fff;
  border-radius: clamp(2.4rem, 5vw, 4.8rem) .35rem clamp(2.4rem, 5vw, 4.8rem) .35rem;
  box-shadow:
    0 0 0 1px rgb(96 35 139 / 34%),
    .48rem .52rem 0 var(--purple-100),
    .82rem .88rem 0 var(--yellow),
    1.2rem 1.35rem 2.6rem rgb(37 17 58 / 20%);
  overflow: hidden;
}

.lorry-frame--mirrored {
  border: .35rem solid #fff;
  border-radius: .35rem clamp(2.4rem, 5vw, 4.8rem) .35rem clamp(2.4rem, 5vw, 4.8rem);
  box-shadow:
    0 0 0 1px rgb(96 35 139 / 34%),
    -.48rem .52rem 0 var(--purple-100),
    -.82rem .88rem 0 var(--yellow),
    -1.2rem 1.35rem 2.6rem rgb(37 17 58 / 20%);
  overflow: hidden;
}

.lorry-frame--capsule {
  border: .4rem solid #fff;
  border-radius: 9rem 1.1rem 9rem 1.1rem;
  box-shadow:
    0 0 0 1px rgb(96 35 139 / 30%),
    .68rem .72rem 0 var(--purple-800),
    1rem 1.06rem 0 var(--yellow),
    1.2rem 1.35rem 2.5rem rgb(37 17 58 / 21%);
  overflow: hidden;
}

.lorry-frame--stacked {
  background: #fff;
  border: .35rem solid #fff;
  box-shadow: 0 1.4rem 2.7rem rgb(37 17 58 / 22%);
  overflow: visible;
}

.lorry-frame--stacked::before,
.lorry-frame--stacked::after {
  content: "";
  inset: .2rem;
  position: absolute;
}

.lorry-frame--stacked::before {
  background: var(--yellow);
  transform: rotate(2.7deg);
  z-index: -2;
}

.lorry-frame--stacked::after {
  background: var(--purple-700);
  transform: rotate(-1.9deg);
  z-index: -1;
}

.lorry-frame--double {
  border: .25rem solid #fff;
  border-radius: clamp(1.5rem, 3.5vw, 2.8rem);
  box-shadow:
    0 0 0 .16rem var(--purple-700),
    0 0 0 .62rem #fff,
    0 0 0 .8rem var(--yellow),
    0 1.6rem 3rem rgb(37 17 58 / 20%);
  overflow: hidden;
}

.lorry-frame--video {
  border-color: #fff;
}

.proof-strip {
  background: var(--purple-950);
  color: #fff;
}

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

.proof-item {
  border-left: 1px solid rgb(255 255 255 / 16%);
  min-height: 8.5rem;
  padding: 1.65rem clamp(1rem, 2.4vw, 1.8rem);
}

.proof-item:last-child {
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: -.025em;
}

.proof-item span {
  color: #cfc5d6;
  font-size: .76rem;
  margin-top: .38rem;
}

.rider-story__grid {
  align-items: center;
  display: grid;
  gap: clamp(2.8rem, 7vw, 6.5rem);
  grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
}

.rider-story__visual {
  position: relative;
}

.story-stamp {
  background: var(--yellow);
  bottom: 1.3rem;
  color: #171208;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: .7rem .85rem;
  position: absolute;
  right: -1.2rem;
  text-transform: uppercase;
}

.founder-quote {
  border-left: .22rem solid var(--purple-800);
  color: #3d3742;
  font-size: 1.04rem;
  font-style: italic;
  margin: 1.8rem 0;
  padding-left: 1.15rem;
}

.founder-quote footer {
  color: var(--muted);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  margin-top: .7rem;
}

.compact-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
}

.compact-timeline > div {
  border: 1px solid var(--line);
  min-height: 8.5rem;
  padding: 1.25rem;
}

.compact-timeline > div + div {
  border-left: 0;
}

.compact-timeline strong,
.compact-timeline span {
  display: block;
}

.compact-timeline strong {
  color: var(--purple-700);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compact-timeline span {
  color: var(--muted);
  font-size: .82rem;
  margin-top: 1.2rem;
}

.response-flow {
  counter-reset: response;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.response-flow article {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 16rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.response-flow article + article {
  border-left: 0;
}

.response-flow article > span {
  color: var(--purple-700);
  display: block;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 3.2rem;
}

.response-flow p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 0;
}

.response-actions {
  align-items: center;
  background: var(--purple-100);
  border: 1px solid var(--line);
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.2rem;
}

.response-actions p {
  font-size: .85rem;
  margin: 0;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 .9rem 2.5rem rgb(35 17 52 / 6%);
  display: flex;
  flex-direction: column;
  min-height: 19rem;
  overflow: hidden;
  padding: clamp(1.3rem, 2.5vw, 1.85rem);
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.service-card:hover {
  border-color: var(--purple-700);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card--featured {
  background: var(--purple-950);
  color: #fff;
  grid-column: span 2;
}

.service-card__badge {
  align-self: flex-start;
  background: var(--purple-700);
  color: #fff;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 3rem;
  padding: .45rem .58rem;
  text-transform: uppercase;
}

.service-card--featured .service-card__badge {
  background: var(--purple-700);
  color: #fff;
}

.service-card h3 {
  font-size: clamp(1.28rem, 2.3vw, 1.72rem);
}

.service-card--featured h3,
.service-card--featured .service-card__link {
  color: #fff;
}

.service-card p {
  color: var(--muted);
  font-size: .86rem;
}

.service-card--featured p {
  color: #d7cce0;
  max-width: 42rem;
}

.service-card__link {
  color: var(--purple-800);
  font-size: .8rem;
  font-weight: 850;
  margin-top: auto;
  min-height: 3rem;
  padding-top: 1rem;
}

.service-adviser {
  align-items: center;
  background: var(--yellow-soft);
  border: 1px solid #edda72;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding: 1.2rem 1.35rem;
}

.service-adviser p {
  font-size: .88rem;
  margin: 0;
}

.malaysia-feature {
  background: var(--purple-950);
  color: #fff;
}

.malaysia-feature__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  margin-inline: auto;
  max-width: 100rem;
}

.route-visual {
  background:
    linear-gradient(125deg, rgb(255 210 41 / 12%), transparent 46%),
    repeating-linear-gradient(135deg, rgb(255 255 255 / 7%) 0 1px, transparent 1px 2.5rem);
  border-right: 1px solid rgb(255 255 255 / 16%);
  min-height: 39rem;
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.route-line {
  border-left: 2px solid var(--yellow);
  bottom: 9.5rem;
  left: clamp(4rem, 7vw, 6rem);
  position: absolute;
  top: 9.5rem;
}

.route-stop {
  align-items: center;
  display: flex;
  gap: 1rem;
  left: clamp(3rem, 6vw, 5rem);
  position: absolute;
}

.route-stop--start {
  top: 5rem;
}

.route-stop--end {
  bottom: 5rem;
}

.route-stop span {
  background: var(--yellow);
  border: .42rem solid var(--purple-950);
  box-shadow: 0 0 0 1px var(--yellow);
  height: 2.1rem;
  width: 2.1rem;
}

.route-stop strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.route-visual small {
  bottom: 1.2rem;
  color: #cbbfd5;
  font-size: .62rem;
  left: clamp(3rem, 6vw, 5rem);
  letter-spacing: .09em;
  position: absolute;
  text-transform: uppercase;
}

.malaysia-feature__copy {
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 7vw, 6rem);
}

.malaysia-feature h2 {
  color: #fff;
}

.check-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: .8rem;
  grid-template-columns: 1.4rem 1fr;
  padding: .85rem 0;
}

.check-list li::before {
  color: var(--purple-700);
  content: "✓";
  font-weight: 900;
}

.check-list--dark li {
  border-color: rgb(255 255 255 / 16%);
}

.check-list--dark li::before {
  color: var(--yellow);
}

.handling-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr);
}

.handling-grid__aside {
  align-self: start;
  position: sticky;
  top: 7.2rem;
}

.handling-grid__aside .site-photo {
  margin-top: 2rem;
}

.protocol-list {
  border-top: 1px solid var(--line);
}

.protocol-list article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 4rem 1fr;
  padding-block: 1.6rem;
}

.protocol-list article > span {
  color: var(--purple-700);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .12em;
  padding-top: .3rem;
}

.protocol-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.protocol-list + .button {
  margin-top: 1.6rem;
}

.reviews-section {
  background: var(--purple-050);
  border-block: 1px solid var(--line-soft);
}

.operations-story__grid {
  align-items: center;
  display: grid;
  gap: clamp(2.8rem, 7vw, 6rem);
  grid-template-columns: minmax(18rem, .85fr) minmax(0, 1.15fr);
}

.operations-points {
  border-top: 1px solid var(--line);
  margin-block: 2rem;
}

.operations-points > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 9rem 1fr;
  padding-block: 1rem;
}

.operations-points strong {
  color: var(--purple-800);
}

.operations-points span {
  color: var(--muted);
  font-size: .87rem;
}

.faq-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: .62fr 1fr;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 1.03rem;
  font-weight: 770;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  min-height: 4.8rem;
  padding-block: 1rem;
}

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

.faq-list summary::after {
  color: var(--purple-700);
  content: "+";
  flex: 0 0 auto;
  font-size: 1.55rem;
  font-weight: 450;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  margin-bottom: 1.45rem;
}

.final-cta {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    var(--purple-950);
  background-size: 4rem 4rem;
  border-top: .28rem solid var(--yellow);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.final-cta__grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: #d7ccdf;
  margin-bottom: 0;
  max-width: 44rem;
}

.final-cta__actions {
  display: grid;
  gap: .72rem;
  min-width: 18rem;
}

.site-footer {
  background: #151117;
  color: #d6d0d8;
  padding-block: 4.5rem 2.2rem;
}

.site-footer__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.08fr 1.35fr .65fr;
}

.brand--footer .brand__copy {
  color: #fff;
}

.brand--footer img {
  height: 6.2rem;
  width: auto;
}

.site-footer__brand > p {
  color: #a9a1ac;
  font-size: .84rem;
  margin: 1rem 0 1.2rem;
  max-width: 25rem;
}

.site-footer h2 {
  color: #fff;
  font-size: .73rem;
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: .3rem;
}

.site-footer__links--services {
  column-gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer__links a,
.site-footer__contact a,
.email-display--footer {
  align-items: center;
  color: #d6d0d8;
  display: inline-flex;
  font-size: .79rem;
  min-height: 3rem;
  text-decoration-color: #5f5862;
}

.email-display--footer {
  border-top: 1px solid rgb(255 255 255 / 5%);
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__contact {
  border-top: 1px solid #39323c;
  display: grid;
  margin-top: 1.3rem;
  padding-top: 1rem;
}

.site-footer address {
  color: #a9a1ac;
  font-size: .78rem;
  font-style: normal;
  margin-top: .7rem;
}

.site-footer address small {
  font-size: .7rem;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid #39323c;
  color: #817985;
  display: flex;
  font-size: .69rem;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.3rem;
}

.site-footer__credit a {
  color: #a9a1ac;
  text-decoration-color: #5f5862;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: #fff;
}

.mobile-bar {
  display: none;
}

.floating-action-rail {
  display: grid;
  gap: .48rem;
  position: fixed;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 86;
}

.floating-action {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  box-shadow: 0 .6rem 1.6rem rgb(24 20 29 / 22%);
  display: inline-flex;
  height: 3.15rem;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
  width: 3.15rem;
}

.floating-action:hover,
.floating-action:focus-visible {
  box-shadow: 0 .85rem 2rem rgb(24 20 29 / 28%);
  text-decoration: none;
  transform: translateX(-.18rem);
}

.floating-action--portal {
  background: var(--purple-800);
  color: #fff;
}

.floating-action--whatsapp {
  background: #25d366;
}

.floating-action--call {
  background: var(--yellow);
  color: #171208;
}

.floating-action--whatsapp .whatsapp-icon {
  background-color: #fff;
}

.floating-action__glyph {
  font-size: 1.25rem;
  line-height: 1;
}

.floating-action__label {
  background: #18141d;
  border-radius: .28rem;
  color: #fff;
  font-size: .68rem;
  font-weight: 850;
  opacity: 0;
  padding: .42rem .55rem;
  pointer-events: none;
  position: absolute;
  right: calc(100% + .65rem);
  text-transform: uppercase;
  transform: translateX(.35rem);
  transition: opacity .18s ease, transform .18s ease;
  visibility: hidden;
  white-space: nowrap;
}

.floating-action:hover .floating-action__label,
.floating-action:focus-visible .floating-action__label {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.live-chat-prompt {
  align-items: center;
  background: #fff;
  border: 1px solid rgb(37 211 102 / 44%);
  border-radius: 999px;
  bottom: 1.15rem;
  box-shadow: 0 1rem 2.6rem rgb(24 20 29 / 22%);
  display: flex;
  gap: .72rem;
  padding: .65rem 1rem .65rem .72rem;
  position: fixed;
  right: 1.15rem;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  z-index: 85;
}

.live-chat-prompt:hover,
.live-chat-prompt:focus-visible {
  border-color: #25d366;
  box-shadow: 0 1.2rem 3rem rgb(24 20 29 / 28%);
  text-decoration: none;
  transform: translateY(-.15rem);
}

.live-chat-prompt__icon {
  background-size: 2.05rem;
  height: 2.45rem;
  width: 2.45rem;
}

.live-chat-prompt__copy {
  display: grid;
  line-height: 1.18;
}

.live-chat-prompt__copy small {
  color: var(--muted);
  font-size: .65rem;
}

.live-chat-prompt__copy strong {
  color: var(--ink);
  font-size: .78rem;
}

.live-chat-prompt__status {
  background: #25d366;
  border: 2px solid #fff;
  border-radius: 50%;
  height: .68rem;
  left: 2.7rem;
  position: absolute;
  top: .6rem;
  width: .68rem;
}

.email-copy-note {
  align-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  display: inline-flex;
  flex-wrap: wrap;
  font-size: .83rem;
  gap: .3rem;
  min-height: 3rem;
  padding: .65rem .85rem;
}

.email-copy-note .email-display {
  color: var(--ink);
  font-weight: 750;
}

.field-video {
  background: var(--purple-050);
  border-block: 1px solid var(--line-soft);
}

.field-video__grid,
.service-seo__grid,
.service-coverage__grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, .85fr) minmax(20rem, 1.15fr);
}

.operation-video {
  background: #151117;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.operation-video video {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.operation-video figcaption {
  color: #d6d0d8;
  font-size: .7rem;
  padding: .7rem .85rem;
}

.seo-copy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.seo-copy-grid article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.seo-copy-grid p,
.service-seo p,
.service-coverage p {
  color: var(--muted);
}

.real-work-gallery {
  display: grid;
  gap: 1.65rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
  padding: .15rem 1rem 1.15rem .15rem;
}

.real-work-gallery figure {
  aspect-ratio: 4 / 3;
  background: var(--purple-950);
  margin: 0;
}

.real-work-gallery img,
.service-photo-stack img {
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  width: 100%;
}

.real-work-gallery figure:hover img,
.service-photo-stack img:hover {
  transform: scale(1.025);
}

.service-seo {
  background: var(--purple-050);
  border-bottom: 1px solid var(--line-soft);
}

.service-seo__grid {
  grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
}

.service-photo-stack {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(2, 1fr);
}

.service-photo-stack figure {
  aspect-ratio: 1 / 1;
  margin: 0;
  min-width: 0;
}


.service-alert {
  background: var(--yellow-soft);
  border-bottom: 1px solid #e8d875;
}

.service-alert__inner {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(10rem, .28fr) minmax(0, 1fr);
  padding-block: 1.25rem;
}

.service-alert__inner strong {
  color: #4e3b00;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.service-alert__inner p {
  color: #5c4e22;
  font-size: .84rem;
  margin: 0;
}

.content-split {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr);
}

.feature-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  font-size: 1.02rem;
  font-weight: 720;
  gap: .9rem;
  grid-template-columns: 1.5rem 1fr;
  padding-block: 1.15rem;
}

.feature-list li::before {
  color: var(--purple-700);
  content: "✓";
  font-weight: 900;
}

.prepare-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.prepare-grid li {
  background: #fff;
  min-height: 13rem;
  padding: 1.35rem;
}

.prepare-grid span {
  color: var(--purple-700);
  display: block;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 3rem;
}

.prepare-grid strong {
  font-size: .9rem;
  line-height: 1.5;
}

.inline-request {
  align-items: center;
  background: var(--purple-100);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.2rem;
}

.inline-request p {
  font-size: .84rem;
  margin: 0;
  max-width: 36rem;
}

.operational-note,
.founder-message,
.review-request {
  background: var(--purple-950);
  color: #fff;
}

.google-reviews {
  background: #fff;
}

.google-rating-bar {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.google-rating-bar h2 {
  margin-bottom: 0;
  max-width: 17ch;
}

.google-rating {
  display: grid;
  justify-items: end;
}

.google-rating strong {
  color: var(--purple-950);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: -.07em;
  line-height: .9;
}

.google-rating small {
  color: var(--muted);
  font-size: .75rem;
  margin-top: .3rem;
}

.review-stars {
  color: #f5a900;
  font-size: .95rem;
  letter-spacing: .14em;
  white-space: nowrap;
}

.google-review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.google-review-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.google-review-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 21rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.google-review-card__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.google-source-mark {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4285f4;
  display: inline-flex;
  font-size: .66rem;
  font-weight: 900;
  min-height: 2rem;
  justify-content: center;
  padding-inline: .65rem;
}

.google-review-card blockquote {
  margin: 1.7rem 0;
}

.google-review-card blockquote p {
  color: #3f3943;
  font-size: 1rem;
  line-height: 1.72;
}

.google-review-card footer {
  display: grid;
  font-size: .76rem;
  gap: .18rem;
  margin-top: auto;
}

.google-review-card footer span {
  color: var(--muted);
}

.google-review-card footer a {
  color: var(--purple-700);
  font-weight: 800;
  margin-top: .35rem;
}

.google-review-card footer .google-review-author {
  color: var(--ink);
  margin-top: 0;
  text-decoration-color: var(--line);
}

.google-review-note {
  align-items: center;
  background: var(--purple-050);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1.15rem;
}

.google-review-note p {
  color: var(--muted);
  font-size: .78rem;
  margin: 0;
  max-width: 48rem;
}

.review-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
  margin-top: 2rem;
}

.review-pagination a,
.review-pagination span {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 850;
  justify-content: center;
  min-height: 2.8rem;
  min-width: 2.8rem;
  padding: .45rem .8rem;
  text-decoration: none;
}

.review-pagination a:hover,
.review-pagination span[aria-current="page"] {
  background: var(--purple-950);
  border-color: var(--purple-950);
  color: #fff;
}

.operational-note__grid,
.founder-message__grid,
.review-request__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: .85fr 1.15fr;
}

.operational-note h2,
.founder-message h2,
.review-request h2 {
  color: #fff;
}

.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.related-grid article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.related-grid article > span {
  color: var(--purple-700);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin-top: 2.4rem;
}

.related-grid p {
  color: var(--muted);
  font-size: .85rem;
}

.editorial-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: .35fr 1fr;
}

.editorial-grid__label {
  border-top: 2px solid var(--purple-800);
  padding-top: 1rem;
}

.editorial-grid__label span {
  color: var(--purple-700);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.editorial-grid__label p {
  font-size: .8rem;
  font-weight: 800;
  margin-top: 1rem;
}

.prose {
  max-width: 48rem;
}

.prose p:not(.lede),
.policy-prose p,
.policy-prose li {
  color: #4f4954;
}

.story-media-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.8rem, 7vw, 6rem);
  grid-template-columns: 1fr 1fr;
}

.story-timeline {
  border-left: 1px solid var(--line);
  list-style: none;
  margin: 0 0 0 .7rem;
  padding: 0 0 0 2rem;
}

.story-timeline li {
  display: grid;
  gap: 2rem;
  grid-template-columns: 10rem 1fr;
  padding: 0 0 2.2rem;
  position: relative;
}

.story-timeline li::before {
  background: var(--purple-800);
  content: "";
  height: .7rem;
  left: -2.38rem;
  position: absolute;
  top: .35rem;
  width: .7rem;
}

.story-timeline li > span {
  color: var(--purple-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.story-timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.founder-message blockquote {
  border-left: 2px solid var(--yellow);
  margin: 0;
  padding-left: 1.5rem;
}

.founder-message blockquote p {
  color: #ded5e5;
  font-size: 1.02rem;
}

.founder-message blockquote footer {
  color: #fff;
  font-size: .83rem;
  font-weight: 800;
  margin-top: 1.5rem;
}

.founder-message blockquote footer span {
  color: #bdb1c8;
  font-size: .72rem;
  font-weight: 500;
}

.value-grid,
.situation-grid,
.topic-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid article,
.situation-grid article,
.topic-grid article {
  border: 1px solid var(--line);
  min-height: 17rem;
  padding: 1.6rem;
}

.value-grid article > span,
.topic-grid article > span {
  color: var(--purple-700);
  display: block;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 3rem;
}

.value-grid p,
.situation-grid p,
.topic-grid p {
  color: var(--muted);
  font-size: .86rem;
}

.situation-grid__badge {
  background: var(--purple-700);
  color: #fff;
  display: inline-flex;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .09em;
  margin-bottom: 3rem;
  padding: .4rem .52rem;
  text-transform: uppercase;
}

.standard-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.standard-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 3.5rem 1fr;
  padding-block: 1.3rem;
}

.standard-list li > span {
  color: var(--purple-700);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  padding-top: .25rem;
}

.standard-list p {
  color: var(--muted);
  margin: 0;
}

.review-request__action {
  align-self: center;
  border: 1px solid rgb(255 255 255 / 18%);
  padding: 1.5rem;
}

.review-request__action p {
  color: #d8cedf;
  font-size: .85rem;
  margin: 1rem 0 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.contact-card--urgent {
  border-top: .28rem solid var(--yellow);
}

.contact-card--whatsapp {
  border-top: .28rem solid var(--green);
}

.contact-card--portal {
  border-top: .28rem solid var(--purple-800);
}

.contact-card p {
  color: var(--muted);
  font-size: .86rem;
}

.contact-card .button {
  margin-top: auto;
}

.contact-details {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: .5fr 1fr;
}

.contact-details dl {
  border-top: 1px solid var(--line);
  margin: 0;
}

.contact-details dl > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 10rem 1fr;
  padding-block: 1.2rem;
}

.contact-details dt {
  color: var(--purple-700);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details dd {
  font-weight: 720;
  margin: 0;
}

.contact-details dd small,
.contact-details dd .text-link {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  margin-top: .35rem;
}

.contact-details dd > a {
  align-items: center;
  display: inline-flex;
  min-height: 3rem;
}

.policy-layout {
  align-items: start;
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(15rem, .4fr) minmax(0, 1fr);
}

.policy-summary {
  background: var(--purple-050);
  border: 1px solid var(--line);
  display: grid;
  padding: 1.4rem;
  position: sticky;
  top: 7.2rem;
}

.policy-summary strong {
  color: var(--purple-700);
  font-size: .62rem;
  letter-spacing: .1em;
  margin-top: 1rem;
  text-transform: uppercase;
}

.policy-summary strong:first-child {
  margin-top: 0;
}

.policy-summary span,
.policy-summary a {
  font-size: .82rem;
  margin-top: .2rem;
  overflow-wrap: anywhere;
}

.policy-prose {
  max-width: 50rem;
}

.policy-prose h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  margin-top: 3rem;
}

.policy-prose h2:first-child {
  margin-top: 0;
}

.policy-prose li {
  margin-bottom: .5rem;
}

.blog-status {
  background: var(--purple-950);
  color: #fff;
}

.blog-status__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: .8fr 1.2fr;
}

.blog-status h2 {
  color: #fff;
  margin-top: 1rem;
}

.blog-status p {
  color: #d8cedf;
}

.blog-status code {
  color: var(--yellow);
}

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

.topic-grid article {
  min-height: 22rem;
}

.topic-grid .text-link {
  font-size: .78rem;
  margin-top: auto;
}

.guide-card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(11rem, .75fr) minmax(0, 1.25fr);
  min-height: 19rem;
  overflow: visible;
}

.guide-card__image {
  background: var(--purple-950);
  min-height: 100%;
  overflow: hidden;
}

.guide-card__image.lorry-frame--stacked {
  overflow: visible;
}

.guide-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  width: 100%;
}

.guide-card:hover .guide-card__image img {
  transform: scale(1.025);
}

.guide-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.8vw, 1.75rem);
}

.guide-card__meta {
  color: var(--purple-700);
  display: flex;
  flex-wrap: wrap;
  font-size: .67rem;
  font-weight: 850;
  gap: .45rem 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guide-card h3 a {
  text-decoration: none;
}

.guide-card__body > p:not(.guide-card__meta) {
  color: var(--muted);
  font-size: .82rem;
}

.guide-card .text-link {
  margin-top: auto;
}

.article-layout {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(15rem, .34fr);
}

.guide-article {
  max-width: 49rem;
}

.guide-meta {
  border-block: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .7rem;
  gap: .5rem 1.3rem;
  margin-bottom: 2.5rem;
  padding-block: .9rem;
  text-transform: uppercase;
}

.guide-takeaways {
  background: var(--yellow-soft);
  border: 1px solid #edda72;
  margin-bottom: 4rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.guide-takeaways h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}

.guide-takeaways ul,
.guide-checklist {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.guide-takeaways li,
.guide-checklist li {
  border-top: 1px solid rgb(24 20 29 / 14%);
  display: grid;
  font-size: .9rem;
  gap: .8rem;
  grid-template-columns: 1.3rem 1fr;
  padding-block: .75rem;
}

.guide-takeaways li::before,
.guide-checklist li::before {
  color: var(--purple-700);
  content: "✓";
  font-weight: 900;
}

.guide-section {
  border-bottom: 1px solid var(--line);
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
}

.guide-section__number {
  color: var(--purple-700);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.guide-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  max-width: 19ch;
}

.guide-section > p:not(.guide-section__number) {
  color: #4f4853;
  font-size: 1rem;
  line-height: 1.82;
}

.guide-checklist {
  background: var(--purple-050);
  border: 1px solid var(--line-soft);
  padding: 1rem 1.3rem;
}

.article-contact-card {
  background: var(--purple-950);
  color: #fff;
  margin-bottom: 3.2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.article-contact-card h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

.guide-disclaimer {
  border-left: .22rem solid var(--yellow);
  padding-left: 1.2rem;
}

.guide-disclaimer p {
  color: var(--muted);
  font-size: .82rem;
  margin: .4rem 0 0;
}

.guide-sidebar {
  align-self: start;
  background: var(--purple-050);
  border: 1px solid var(--line);
  display: grid;
  gap: .75rem;
  padding: 1.4rem;
  position: sticky;
  top: 7.2rem;
}

.guide-sidebar h2 {
  font-size: 1.8rem;
}

.guide-sidebar p:not(.kicker) {
  color: var(--muted);
  font-size: .82rem;
}

.guide-sidebar .text-link {
  border-top: 1px solid var(--line);
  min-height: 2.8rem;
  padding-top: .75rem;
}

.error-page {
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgb(71 23 107 / 5%) 50%, transparent 50.08%),
    var(--surface-soft);
  min-height: 38rem;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.error-page__grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.error-code {
  color: var(--purple-100);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
}

.error-links {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
}

.error-links a {
  align-items: center;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 750;
  min-height: 3rem;
}

@media (max-width: 68rem) {
  .brand__copy,
  .header-call {
    display: none;
  }

  .site-nav {
    gap: .7rem;
  }

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

  .service-card--featured {
    grid-column: span 2;
  }

  .prepare-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prepare-grid li:nth-last-child(-n+2) {
    min-height: 10rem;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .google-review-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 51.25rem) {
  body.nav-open::after {
    background: rgb(24 20 29 / 56%);
    content: "";
    inset: 0;
    position: fixed;
    z-index: 80;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__contact {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-call {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .site-nav {
    align-items: stretch;
    background: #fff;
    border: 1px solid rgb(71 23 107 / 16%);
    border-radius: .8rem;
    box-shadow: 0 1.5rem 4rem rgb(35 17 52 / 22%);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: .75rem;
    max-height: min(38rem, calc(100dvh - 7rem));
    opacity: 0;
    overflow-y: auto;
    padding: .75rem;
    pointer-events: none;
    position: absolute;
    right: .75rem;
    top: calc(100% + .55rem);
    transform: translateY(-.55rem) scale(.985);
    transform-origin: top right;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    border-bottom: 0;
    border-radius: .42rem;
    min-height: 3.2rem;
    padding-inline: .85rem;
  }

  .site-nav > a:not(.button):hover,
  .site-nav > a[aria-current="page"]:not(.button) {
    background: var(--purple-050);
    color: var(--purple-800);
  }

  .site-nav > a[aria-current="page"]:not(.button)::after {
    display: none;
  }

  .nav-dropdown {
    align-items: stretch;
    display: block;
    width: 100%;
  }

  .nav-dropdown__toggle {
    border-radius: .42rem;
    justify-content: space-between;
    min-height: 3.2rem;
    padding-inline: .85rem;
    width: 100%;
  }

  .nav-dropdown__toggle:hover,
  .nav-dropdown__toggle.is-current,
  .nav-dropdown.is-open .nav-dropdown__toggle {
    background: var(--purple-050);
    color: var(--purple-800);
  }

  .nav-dropdown__toggle.is-current::after {
    display: none;
  }

  .nav-dropdown__panel {
    background: transparent;
    border: 0;
    border-left: 2px solid var(--purple-100);
    border-radius: 0;
    box-shadow: none;
    display: block;
    left: auto;
    margin: 0 .7rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: static;
    top: auto;
    transform: none;
    transition: max-height .22s ease, margin .22s ease, opacity .14s ease;
    visibility: visible;
    width: auto;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    margin: .1rem .7rem .55rem;
    max-height: 26rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown__intro {
    background: transparent;
    border-radius: 0;
    display: block;
    padding: 0;
  }

  .nav-dropdown__intro div {
    display: none;
  }

  .nav-dropdown__intro > a {
    align-items: center;
    background: transparent;
    border-radius: .35rem;
    color: var(--purple-700);
    display: flex;
    font-size: .73rem;
    min-height: 2.65rem;
    padding: .58rem .78rem;
    text-transform: none;
    width: 100%;
  }

  .nav-dropdown__intro > a:hover,
  .nav-dropdown__intro > a[aria-current="page"] {
    background: var(--purple-050);
    color: var(--purple-900);
  }

  .nav-dropdown__grid {
    gap: 0;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .nav-dropdown__service {
    border: 0;
    border-radius: .35rem;
    display: block;
    min-height: 2.65rem;
    padding: .58rem .78rem;
  }

  .nav-dropdown__service strong {
    font-size: .73rem;
  }

  .nav-dropdown__service span {
    display: none;
  }

  .site-nav__mobile-heading {
    color: var(--purple-700);
    display: block;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .12em;
    padding: .35rem .85rem .55rem;
    text-transform: uppercase;
  }

  .site-nav__portal {
    display: none;
  }

  .hero__grid,
  .page-hero__grid,
  .section-heading--split,
  .rider-story__grid,
  .malaysia-feature__grid,
  .handling-grid,
  .operations-story__grid,
  .faq-grid,
  .final-cta__grid,
  .site-footer__grid,
  .content-split,
  .operational-note__grid,
  .founder-message__grid,
  .review-request__grid,
  .editorial-grid,
  .story-media-grid,
  .contact-details,
  .policy-layout,
  .blog-status__grid,
  .error-page__grid {
    grid-template-columns: 1fr;
  }

  .article-layout,
  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .google-rating-bar {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .google-rating {
    justify-items: start;
  }

  .google-review-grid--home {
    grid-template-columns: 1fr;
  }

  .field-video__grid,
  .service-seo__grid,
  .service-coverage__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .site-photo--hero {
    min-height: 34rem;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(n+3) {
    border-top: 1px solid rgb(255 255 255 / 16%);
  }

  .compact-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-timeline > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .compact-timeline > div:nth-child(n+3) {
    border-top: 0;
  }

  .response-flow {
    grid-template-columns: 1fr;
  }

  .response-flow article {
    min-height: 12rem;
  }

  .response-flow article + article {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .route-visual {
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    border-right: 0;
    min-height: 27rem;
  }

  .handling-grid__aside,
  .policy-summary {
    position: static;
  }

  .related-grid,
  .value-grid,
  .situation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .final-cta__actions {
    min-width: 0;
  }

  .site-footer__grid {
    gap: 2.5rem;
  }

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

  .prepare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-timeline li {
    grid-template-columns: 7rem 1fr;
  }

  .policy-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-copy-grid,
  .real-work-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .error-code {
    display: none;
  }
}

@media (max-width: 42.5rem) {
  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .floating-action-rail {
    display: none;
  }

  .live-chat-prompt {
    bottom: calc(5.45rem + env(safe-area-inset-bottom));
    max-width: calc(100vw - 1.4rem);
    padding: .55rem .8rem .55rem .6rem;
    right: .7rem;
    z-index: 110;
  }

  .live-chat-prompt__icon {
    height: 2.15rem;
    width: 2.15rem;
  }

  .live-chat-prompt__status {
    left: 2.35rem;
    top: .5rem;
  }

  .section {
    padding-block: 3.8rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.55rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .site-header__inner {
    gap: .55rem;
    min-height: 4.65rem;
  }

  .brand img {
    height: 3.2rem;
    width: auto;
  }

  .header-call {
    font-size: .7rem;
    min-height: 3rem;
    padding-inline: .7rem;
  }

  .hero__grid,
  .page-hero__grid {
    gap: 2.7rem;
    padding-block: 3.5rem;
  }

  .hero__actions .button,
  .page-hero .action-row .button,
  .response-actions .button,
  .final-cta__actions .button,
  .service-adviser .button,
  .inline-request .button,
  .contact-card .button {
    flex: 1 1 100%;
  }

  .site-photo--hero,
  .site-photo--page-hero {
    min-height: 24rem;
  }

  .site-photo--hero {
    min-height: 30rem;
  }

  .lorry-frame--signature,
  .lorry-frame--mirrored {
    border-width: .28rem;
    border-radius: 2.25rem .3rem 2.25rem .3rem;
  }

  .lorry-frame--mirrored {
    border-radius: .3rem 2.25rem .3rem 2.25rem;
  }

  .lorry-frame--signature {
    box-shadow: 0 0 0 1px rgb(96 35 139 / 30%), .32rem .36rem 0 var(--purple-100), .56rem .62rem 0 var(--yellow), .8rem .95rem 1.8rem rgb(37 17 58 / 18%);
  }

  .lorry-frame--mirrored {
    box-shadow: 0 0 0 1px rgb(96 35 139 / 30%), -.32rem .36rem 0 var(--purple-100), -.56rem .62rem 0 var(--yellow), -.8rem .95rem 1.8rem rgb(37 17 58 / 18%);
  }

  .lorry-frame--capsule {
    border-width: .3rem;
    border-radius: 5rem .75rem 5rem .75rem;
    box-shadow: 0 0 0 1px rgb(96 35 139 / 28%), .42rem .46rem 0 var(--purple-800), .68rem .72rem 0 var(--yellow), .85rem 1rem 1.7rem rgb(37 17 58 / 18%);
  }

  .lorry-frame--double {
    border-width: .2rem;
    border-radius: 1.6rem;
    box-shadow: 0 0 0 .12rem var(--purple-700), 0 0 0 .42rem #fff, 0 0 0 .58rem var(--yellow), 0 1.1rem 2rem rgb(37 17 58 / 18%);
  }

  .lorry-frame--stacked::before {
    transform: rotate(1.8deg);
  }

  .lorry-frame--stacked::after {
    transform: rotate(-1.3deg);
  }

  .proof-item {
    min-height: 8.2rem;
    padding: 1.2rem .9rem;
  }

  .story-stamp {
    bottom: .8rem;
    right: .8rem;
  }

  .compact-timeline,
  .services-grid,
  .prepare-grid,
  .topic-grid,
  .google-review-grid {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    min-height: 0;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-card__image {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .compact-timeline > div + div {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .service-card,
  .service-card--featured {
    grid-column: auto;
    min-height: 16.5rem;
  }

  .service-card__badge {
    margin-bottom: 2.2rem;
  }

  .route-visual {
    min-height: 24rem;
  }

  .malaysia-feature__copy {
    padding: 3.8rem 1.4rem;
  }

  .protocol-list article,
  .standard-list li {
    grid-template-columns: 3rem 1fr;
  }

  .operations-points > div,
  .contact-details dl > div {
    grid-template-columns: 1fr;
  }

  .site-footer__links--services,
  .policy-summary {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .6rem;
  }

  .story-timeline li {
    gap: .8rem;
    grid-template-columns: 1fr;
  }

  .mobile-bar {
    background: #fff;
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: .35rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 0;
    max-width: 100vw;
    padding: .5rem max(.55rem, env(safe-area-inset-left)) max(.5rem, env(safe-area-inset-bottom)) max(.55rem, env(safe-area-inset-right));
    position: fixed;
    right: 0;
    transform: translate3d(0, calc(100% + env(safe-area-inset-bottom)), 0);
    transition: transform .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 120;
  }

  .mobile-bar.is-visible {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  .mobile-bar .button {
    font-size: .62rem;
    gap: .24rem;
    min-height: 3.35rem;
    min-width: 0;
    overflow: hidden;
    padding: .55rem .3rem;
    white-space: nowrap;
  }

  .mobile-bar .button span {
    font-size: .85rem;
  }

  .seo-copy-grid,
  .real-work-gallery {
    grid-template-columns: 1fr;
  }

  .real-work-gallery {
    gap: 1.55rem;
    padding-right: .75rem;
  }

  .service-photo-stack {
    gap: .9rem;
  }
}

@media (max-width: 23.75rem) {
  .header-call {
    font-size: 0;
    width: 3.25rem;
  }

  .header-call::after {
    content: "Call";
    font-size: .7rem;
  }

  .live-chat-prompt__copy small {
    display: none;
  }

  .live-chat-prompt__copy strong {
    font-size: .72rem;
  }
}

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

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

@media print {
  .utility-bar,
  .site-header,
  .mobile-bar,
  .floating-action-rail,
  .live-chat-prompt,
  .final-cta,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    padding: 0;
  }
}
