/* =========================================================================
   Motor Creation — light clean showroom
   Palette: navy / blue / white
   ========================================================================= */

:root {
  --navy-900: #05132e;
  --navy-800: #071f45;
  --navy-700: #0d2f63;
  --navy-600: #144084;
  --blue-600: #0b5fff;
  --blue-500: #2b7bff;
  --blue-400: #5f9bff;
  --blue-200: #b3d0ff;
  --blue-100: #dbe8ff;
  --blue-050: #eef4ff;

  /* vibrant multi-brand accent set */
  --cyan: #00c8f0;
  --violet: #7c3aed;
  --pink: #ff2d78;
  --orange: #ff6b2c;
  --teal: #00a9a5;
  --lime: #7ed321;

  --g-brand: linear-gradient(115deg, #0b5fff 0%, #7c3aed 48%, #ff2d78 100%);
  --g-cool: linear-gradient(120deg, #0b5fff 0%, #00c8f0 100%);
  --g-warm: linear-gradient(120deg, #ff6b2c 0%, #ff2d78 100%);
  --g-deep: linear-gradient(135deg, #071f45 0%, #0d2f63 45%, #0b5fff 120%);

  --ink: #0a1628;
  --ink-2: #2a3b52;
  --muted: #5c6e85;
  --muted-2: #8896a8;
  --line: #e4ebf5;
  --line-2: #eff4fa;

  --bg: #ffffff;
  --bg-soft: #f6faff;
  --bg-tint: #edf4ff;

  --ok: #00a86b;
  --warn: #e06c00;
  --hot: #ff2d78;

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --sh-1: 0 1px 2px rgba(7, 31, 69, .05), 0 2px 8px rgba(7, 31, 69, .04);
  --sh-2: 0 2px 6px rgba(7, 31, 69, .06), 0 12px 28px rgba(7, 31, 69, .08);
  --sh-3: 0 6px 18px rgba(7, 31, 69, .09), 0 26px 60px rgba(7, 31, 69, .13);
  --sh-blue: 0 10px 30px rgba(11, 95, 255, .28);
  --sh-glow: 0 0 0 1px rgba(11, 95, 255, .08), 0 18px 50px rgba(11, 95, 255, .18);

  --wrap: 1220px;
  --hdr-h: 74px;
  --ease: cubic-bezier(.22, .9, .3, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);   /* overshoot — the "เด้ง" feel */
  --smooth: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 24px);
  overflow-x: clip; /* the off-canvas drawer sits past the right edge */
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

body {
  margin: 0;
  font-family: 'IBM Plex Sans Thai', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: 'liga' 1;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-500); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4, h5 {
  font-family: 'Kanit', 'IBM Plex Sans Thai', system-ui, sans-serif;
  color: var(--ink); font-weight: 600; line-height: 1.22; margin: 0 0 .5em; letter-spacing: -.015em;
  overflow-wrap: break-word; /* long unbroken Thai strings must not overflow */
}
h1 { font-size: clamp(2.05rem, 1.35rem + 2.9vw, 3.7rem); font-weight: 600; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.6rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); }

/* gradient headline treatment */
.grad {
  background: var(--g-brand); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-cool { background: var(--g-cool); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
small { font-size: .82em; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 32px); } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; color: #fff; }

.ic { flex: none; }

/* ---------------------------------------------------------------- buttons */
.btn {
  --bg-b: var(--blue-600); --fg-b: #fff; --bd-b: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 100px; border: 1.5px solid var(--bd-b);
  background: var(--bg-b); color: var(--fg-b);
  font-weight: 600; font-size: .96rem; letter-spacing: .005em;
  cursor: pointer; white-space: nowrap; text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); color: var(--fg-b); }
.btn:active { transform: translateY(0); }
.btn--primary { box-shadow: var(--sh-blue); }
.btn--primary:hover { --bg-b: var(--blue-500); box-shadow: 0 14px 34px rgba(18, 99, 204, .3); }
.btn--navy { --bg-b: var(--navy-800); box-shadow: 0 10px 28px rgba(10, 37, 71, .22); }
.btn--navy:hover { --bg-b: var(--navy-700); }
.btn--ghost { --bg-b: transparent; --fg-b: var(--navy-800); --bd-b: var(--line); }
.btn--ghost:hover { --bd-b: var(--blue-400); --fg-b: var(--blue-600); background: var(--blue-050); }
.btn--white { --bg-b: #fff; --fg-b: var(--navy-800); box-shadow: var(--sh-2); }
.btn--soft { --bg-b: var(--blue-050); --fg-b: var(--blue-600); --bd-b: var(--blue-100); }
.btn--soft:hover { --bg-b: var(--blue-100); }
.btn--sm { padding: 10px 18px; font-size: .89rem; }
.btn--lg { padding: 16px 32px; font-size: 1.03rem; }
.btn--full { width: 100%; }

/* ---------------------------------------------------------------- topbar */
.topbar { background: var(--navy-800); color: #c9dcf3; font-size: .82rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar__l, .topbar__r { display: flex; align-items: center; gap: 18px; }
.topbar__i { display: inline-flex; align-items: center; gap: 6px; color: #c9dcf3; }
a.topbar__i:hover { color: #fff; }
.topbar__phone { font-weight: 600; color: #fff; }
.topbar__soc { display: inline-flex; gap: 4px; }
.topbar__soc a { color: #9fc0e4; padding: 4px; border-radius: 6px; }
.topbar__soc a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
@media (max-width: 900px) { .topbar__i--hide, .topbar__l { display: none; } .topbar__in { justify-content: center; } }
@media (max-width: 520px) { .topbar__soc { display: none; } }

/* ---------------------------------------------------------------- header */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s, border-color .25s;
}
.hdr.is-stuck { box-shadow: var(--sh-2); border-color: transparent; }
.hdr__in { display: flex; align-items: center; gap: 22px; min-height: var(--hdr-h); }

.brandmark { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brandmark img { width: 42px; height: auto; }
.brandmark__t { display: flex; flex-direction: column; line-height: 1.1; }
.brandmark__t strong { color: var(--navy-800); font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; }
.brandmark__t small { color: var(--muted-2); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__l {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 9px 13px; border-radius: 100px;
  color: var(--ink-2); font-weight: 500; font-size: .95rem;
  transition: background .2s, color .2s;
}
.nav__l:hover { background: var(--blue-050); color: var(--blue-600); }
.nav__l.is-active { color: var(--blue-600); background: var(--blue-050); font-weight: 600; }
.nav__drop { position: relative; }
.nav__drop:hover .nav__l .ic { transform: rotate(180deg); }
.nav__drop .ic { transition: transform .25s var(--ease); }

.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px);
  width: 620px; max-width: 92vw; display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-3); padding: 18px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__drop:hover .mega, .nav__drop:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.mega__col h4 { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin: 4px 0 8px 10px; font-weight: 600; }
.mega__item { display: flex; align-items: center; gap: 11px; padding: 9px 10px; border-radius: var(--r-sm); transition: background .18s; }
.mega__item:hover { background: var(--blue-050); }
.mega__item strong { display: block; color: var(--ink); font-size: .95rem; font-weight: 600; line-height: 1.3; }
.mega__item small { display: block; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.mega__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--dot, var(--blue-500)); flex: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--dot, var(--blue-500)) 18%, transparent); }
.mega__ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--blue-050); color: var(--blue-600); flex: none; }

.hdr__cta { display: flex; align-items: center; gap: 9px; flex: none; }
.burger { display: none; background: none; border: 0; padding: 8px; color: var(--navy-800); cursor: pointer; border-radius: 10px; }
.burger:hover { background: var(--blue-050); }

@media (max-width: 1120px) { .nav, .hdr__cta { display: none; } .burger { display: block; margin-left: auto; } }

/* ---------------------------------------------------------------- drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 120;
  background: #fff; box-shadow: -20px 0 60px rgba(10, 37, 71, .2);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .32s var(--ease);
}
.drawer[hidden] { display: flex; }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__title { font-weight: 600; color: var(--navy-800); }
.drawer__x { background: none; border: 0; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 8px; }
.drawer__x:hover { background: var(--bg-soft); color: var(--ink); }
.drawer__nav { flex: 1; overflow-y: auto; padding: 10px 12px; }
.drawer__nav a { display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: var(--r-sm); color: var(--ink); font-weight: 500; }
.drawer__nav a:hover { background: var(--blue-050); color: var(--blue-600); }
.drawer__sub { padding-left: 26px !important; font-size: .92rem; color: var(--muted) !important; }
.drawer__foot { padding: 16px 18px 22px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.scrim { position: fixed; inset: 0; background: rgba(6, 26, 53, .45); backdrop-filter: blur(3px); z-index: 110; opacity: 0; transition: opacity .3s; }
.scrim.is-on { opacity: 1; }

/* ---------------------------------------------------------------- sections */
.sec { padding: clamp(56px, 7vw, 104px) 0; }
.sec--soft { background: var(--bg-soft); }
.sec--tint { background: linear-gradient(180deg, var(--bg-tint), #fff); }
.sec--navy { background: var(--navy-800); color: #cddff2; }
.sec--navy h2, .sec--navy h3 { color: #fff; }
.sec--tight { padding: clamp(40px, 5vw, 70px) 0; }

.sechead { max-width: 720px; margin-bottom: clamp(30px, 4vw, 52px); }
.sechead--c { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  color: var(--blue-600); background: var(--blue-050); border: 1px solid var(--blue-100);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.sec--navy .eyebrow { color: #8fc0f7; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .14); }
.sechead p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.sec--navy .sechead p { color: #9fbcdc; }

.sechead-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 3.5vw, 46px); }
.sechead-row .sechead { margin-bottom: 0; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; background: linear-gradient(165deg, #f2f8ff 0%, #ffffff 52%, #eef5fd 100%); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -22%; right: -12%; width: 62vw; height: 62vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(26, 120, 232, .13), transparent 62%); pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -16%; width: 48vw; height: 48vw;
  background: radial-gradient(circle, rgba(10, 37, 71, .07), transparent 64%); pointer-events: none;
}
.hero__track { position: relative; }
.hero__slide {
  display: none; position: relative;
  padding: clamp(44px, 5.5vw, 84px) 0 clamp(56px, 6vw, 96px);
}
.hero__slide.is-on { display: block; }
.hero__in { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.hero__txt { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 18px;
}
.hero__eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--blue-500); border-radius: 2px; }
.hero__title {
  font-size: clamp(2rem, 1.35rem + 2.7vw, 3.5rem);
  font-weight: 600; letter-spacing: -.025em; line-height: 1.2;
  margin: 0 0 18px; color: var(--navy-800);
}
.hero__sub { font-size: clamp(1rem, .93rem + .35vw, 1.15rem); color: var(--muted); max-width: 54ch; margin-bottom: 30px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__media { position: relative; display: grid; place-items: center; min-height: 300px; }
.hero__media img { width: 100%; height: auto; object-fit: contain; max-height: 460px; filter: drop-shadow(0 34px 46px rgba(10, 37, 71, .2)); }
.hero__glow {
  position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 78%; height: 44px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(10, 37, 71, .2), transparent 70%); filter: blur(9px);
}

.hero__slide.is-on .hero__txt > * { animation: heroUp .8s var(--ease) backwards; }
.hero__slide.is-on .hero__txt > *:nth-child(1) { animation-delay: .04s; }
.hero__slide.is-on .hero__txt > *:nth-child(2) { animation-delay: .12s; }
.hero__slide.is-on .hero__txt > *:nth-child(3) { animation-delay: .2s; }
.hero__slide.is-on .hero__txt > *:nth-child(4) { animation-delay: .28s; }
.hero__slide.is-on .hero__media img { animation: heroIn 1s var(--ease) backwards .1s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(20px); } }
@keyframes heroIn { from { opacity: 0; transform: translateX(38px) scale(.96); } }

.hero__ctrl { display: flex; align-items: center; gap: 14px; padding-bottom: 26px; }
.hero__dots { display: flex; gap: 7px; }
.hero__dot { width: 26px; height: 4px; border-radius: 4px; background: var(--blue-200); border: 0; padding: 0; cursor: pointer; transition: background .25s, width .25s var(--ease); }
.hero__dot.is-on { background: var(--blue-600); width: 42px; }
.hero__arrows { display: flex; gap: 7px; margin-left: auto; }
.hero__arrow {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--navy-800); cursor: pointer;
  transition: all .2s var(--ease); box-shadow: var(--sh-1);
}
.hero__arrow:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-2px); box-shadow: var(--sh-2); }

@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; text-align: center; }
  .hero__btns { justify-content: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__sub { margin-inline: auto; }
  .hero__media { order: -1; min-height: auto; }
  .hero__media img { max-height: 260px; }
  .hero__ctrl { justify-content: center; }
  .hero__arrows { display: none; }
}

/* ---------------------------------------------------------------- brand strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__i {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 26px 16px; text-align: center; position: relative;
  transition: background .25s;
}
.strip__i + .strip__i { border-left: 1px solid var(--line-2); }
.strip__i::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--dot); transform: scaleX(0); transition: transform .3s var(--ease); }
.strip__i:hover { background: var(--blue-050); }
.strip__i:hover::after { transform: scaleX(1); }
.strip__i strong { font-size: 1.3rem; color: var(--navy-800); font-weight: 700; letter-spacing: .01em; }
.strip__i span { font-size: .78rem; color: var(--muted); }
@media (max-width: 700px) { .strip__in { grid-template-columns: repeat(2, 1fr); } .strip__i:nth-child(3) { border-left: 0; } .strip__i:nth-child(n+3) { border-top: 1px solid var(--line-2); } }

/* ---------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 16px; text-align: center;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--blue-200); }
.stat__ic { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--blue-050); color: var(--blue-600); margin-bottom: 10px; }
.stat__v { display: block; font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 700; color: var(--navy-800); line-height: 1.1; letter-spacing: -.02em; }
.stat__l { font-size: .84rem; color: var(--muted); line-height: 1.4; }
@media (max-width: 980px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ---------------------------------------------------------------- cards grid */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* car card */
.ccard {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--blue-200); }
.ccard__media {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 16px 18px 8px;
  background: linear-gradient(160deg, #f7fbff, #eef5fd);
  overflow: hidden;
}
.ccard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.ccard:hover .ccard__media img { transform: scale(1.06); }
.ccard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--hot); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  padding: 5px 12px; border-radius: 100px; box-shadow: 0 4px 12px rgba(217, 43, 75, .3);
}
.ccard__brand {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--dot, var(--navy-800)); background: rgba(255, 255, 255, .9); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 100px; border: 1px solid var(--line);
}
.ccard__body { padding: 18px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.ccard__name { font-size: 1.22rem; font-weight: 600; color: var(--ink); margin: 0 0 3px; }
.ccard__sub { font-size: .86rem; color: var(--muted); margin: 0 0 14px; line-height: 1.5; }
.ccard__price { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); }
.ccard__was { font-size: .82rem; color: var(--muted-2); text-decoration: line-through; }
.ccard__now { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.ccard__now b { font-size: 1.42rem; font-weight: 700; color: var(--navy-800); letter-spacing: -.02em; }
.ccard__now span { font-size: .82rem; color: var(--muted); }
.ccard__save { display: inline-block; margin-top: 6px; font-size: .78rem; font-weight: 600; color: var(--ok); background: #e8f6f0; padding: 3px 10px; border-radius: 100px; }
.ccard__link { position: absolute; inset: 0; z-index: 3; }
.ccard__foot { display: flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .88rem; font-weight: 600; color: var(--blue-600); }
.ccard:hover .ccard__foot .ic { transform: translateX(4px); }
.ccard__foot .ic { transition: transform .25s var(--ease); }

/* brand card */
.bcard {
  position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: #fff; display: flex; flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.bcard__top { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; padding: 20px; background: linear-gradient(150deg, color-mix(in srgb, var(--dot) 9%, #fff), #f4f9ff); }
.bcard__top img { max-height: 100%; width: auto; object-fit: contain; transition: transform .5s var(--ease); }
.bcard:hover .bcard__top img { transform: scale(1.07) translateY(-3px); }
.bcard__b { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.bcard__n { display: flex; align-items: center; gap: 9px; font-size: 1.28rem; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; min-height: 48px; }
/* Logos vary from square marks to very wide wordmarks — a fixed box with
   object-fit keeps them optically consistent whatever the aspect ratio. */
.bcard__logo { width: 152px; height: 46px; object-fit: contain; object-position: left center; }
.bcard__t { font-size: .88rem; color: var(--muted); margin-bottom: 14px; flex: 1; }
.bcard__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 13px; border-top: 1px solid var(--line-2); font-size: .85rem; }
.bcard__meta b { color: var(--navy-800); }
.bcard__link { position: absolute; inset: 0; z-index: 3; }

/* feature / service card */
.fcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%; display: flex; flex-direction: column;
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--blue-200); }
.fcard__ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(140deg, var(--blue-050), var(--blue-100)); color: var(--blue-600); margin-bottom: 18px; }
.fcard h3 { margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: .93rem; margin-bottom: 16px; }
.fcard__pts { display: grid; gap: 8px; margin-top: auto; }
.fcard__pts li { display: flex; gap: 9px; font-size: .89rem; color: var(--ink-2); line-height: 1.5; }
.fcard__pts .ic { color: var(--ok); margin-top: 3px; }

/* ---------------------------------------------------------------- promo card */
.pcard {
  position: relative; display: grid; grid-template-columns: 250px 1fr; gap: 0; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.pcard__img { position: relative; display: grid; place-items: center; padding: 18px; background: linear-gradient(150deg, #f2f8ff, #e8f2fd); }
.pcard__img img { max-height: 170px; width: auto; object-fit: contain; }
.pcard__b { padding: 24px 26px; display: flex; flex-direction: column; }
.pcard__badge { align-self: flex-start; background: linear-gradient(135deg, var(--hot), #f0553f); color: #fff; font-size: .73rem; font-weight: 600; padding: 5px 13px; border-radius: 100px; margin-bottom: 11px; }
.pcard h3 { margin-bottom: 5px; font-size: 1.18rem; }
.pcard__sub { color: var(--blue-600); font-weight: 600; font-size: .92rem; margin-bottom: 10px; }
.pcard p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.pcard__cta { margin-top: auto; align-self: flex-start; }
@media (max-width: 700px) { .pcard { grid-template-columns: 1fr; } .pcard__img img { max-height: 150px; } }

/* ---------------------------------------------------------------- gallery */
.gtabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.gtab {
  padding: 9px 20px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink-2); font-weight: 500; font-size: .9rem; cursor: pointer;
  transition: all .22s var(--ease);
}
.gtab:hover { border-color: var(--blue-300, var(--blue-400)); color: var(--blue-600); }
.gtab.is-on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; font-weight: 600; }

.masonry { columns: 4; column-gap: 16px; }
@media (max-width: 1000px) { .masonry { columns: 3; } }
@media (max-width: 700px) { .masonry { columns: 2; column-gap: 12px; } }
.gitem {
  position: relative; break-inside: avoid; margin-bottom: 16px; border-radius: var(--r-md); overflow: hidden;
  cursor: zoom-in; background: var(--bg-soft); border: 1px solid var(--line-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gitem:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.gitem img { width: 100%; height: auto; transition: transform .55s var(--ease); }
.gitem:hover img { transform: scale(1.05); }
.gitem__cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(6, 26, 53, .78));
  color: #fff; font-size: .84rem; font-weight: 500; line-height: 1.35;
  opacity: 0; transform: translateY(6px); transition: all .3s var(--ease);
}
.gitem:hover .gitem__cap { opacity: 1; transform: translateY(0); }
.gitem[hidden] { display: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6, 26, 53, .93); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__fig { margin: 0; max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox__fig img { max-width: 92vw; max-height: 78vh; width: auto; border-radius: var(--r-sm); box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox__fig figcaption { color: #cddff2; font-size: .92rem; text-align: center; }
.lightbox__x, .lightbox__nav {
  position: absolute; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  transition: background .2s, transform .2s;
}
.lightbox__x:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .22); transform: scale(1.06); }
.lightbox__x { top: 24px; right: 24px; }
.lightbox__nav--p { left: 20px; top: 50%; margin-top: -24px; }
.lightbox__nav--n { right: 20px; top: 50%; margin-top: -24px; }
@media (max-width: 640px) { .lightbox__nav { display: none; } }

/* ---------------------------------------------------------------- video showcase */
.vgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.vcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; min-height: 300px;
}
.vcard__h { display: flex; align-items: center; gap: 11px; padding: 16px 20px; border-bottom: 1px solid var(--line-2); }
.vcard__av { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--navy-800); color: #fff; flex: none; }
.vcard__h strong { display: block; font-size: .96rem; color: var(--ink); line-height: 1.2; }
.vcard__h small { color: var(--muted); font-size: .78rem; }
.vcard__h .btn { margin-left: auto; }
.vcard__embed { flex: 1; min-height: 260px; display: grid; place-items: center; background: var(--bg-soft); overflow: hidden; }
.vcard__embed blockquote { margin: 0 !important; max-width: 100% !important; min-width: 0 !important; }
.vcard__embed iframe { border: 0; width: 100%; }

.socgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.soccard {
  display: flex; align-items: center; gap: 13px; padding: 17px 19px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.soccard:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--blue-200); }
.soccard__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-050); color: var(--blue-600); flex: none; }
.soccard strong { display: block; font-size: .93rem; color: var(--ink); line-height: 1.3; }
.soccard small { color: var(--muted); font-size: .8rem; word-break: break-all; }

/* ---------------------------------------------------------------- product detail */
.pdp { padding-top: clamp(26px, 3vw, 44px); }
.crumbs { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; font-size: .84rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue-600); }
.crumbs .ic { color: var(--muted-2); }

.pdp__top { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 4vw, 54px); align-items: start; }
.pdp__gal { position: sticky; top: calc(var(--hdr-h) + 20px); }
.pdp__main {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(155deg, #f6fbff, #e9f3fd); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 26px; cursor: zoom-in;
}
.pdp__main img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.pdp__main:hover img { transform: scale(1.04); }
.pdp__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pdp__thumb {
  width: 82px; aspect-ratio: 4 / 3; border-radius: var(--r-sm); overflow: hidden; padding: 5px;
  background: #fff; border: 2px solid var(--line); cursor: pointer; display: grid; place-items: center;
  transition: border-color .22s, transform .22s var(--ease);
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumb:hover { transform: translateY(-2px); }
.pdp__thumb.is-on { border-color: var(--blue-500); }

.pdp__brandline { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dot, var(--blue-600)); margin-bottom: 10px; }
.pdp h1 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); margin-bottom: 8px; }
.pdp__sub { font-size: 1.04rem; color: var(--muted); margin-bottom: 22px; }

.pricebox { background: linear-gradient(155deg, var(--blue-050), #fff); border: 1px solid var(--blue-100); border-radius: var(--r-lg); padding: 24px 26px; margin-bottom: 22px; }
.pricebox__label { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.pricebox__row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 4px 0 2px; }
.pricebox__now { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); font-weight: 700; color: var(--navy-800); letter-spacing: -.03em; line-height: 1.1; }
.pricebox__unit { font-size: 1rem; color: var(--muted); font-weight: 500; }
.pricebox__was { font-size: 1rem; color: var(--muted-2); text-decoration: line-through; }
.pricebox__save { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--ok); background: #e6f6ef; padding: 5px 13px; border-radius: 100px; margin-top: 8px; }
.pricebox__fin { display: flex; align-items: center; gap: 9px; margin-top: 15px; padding-top: 15px; border-top: 1px dashed var(--blue-200); font-size: .9rem; color: var(--ink-2); }
.pricebox__fin .ic { color: var(--blue-600); }
.pricebox__care { display: inline-flex; align-items: center; gap: 7px; margin-top: 11px; font-size: .88rem; font-weight: 600; color: var(--navy-700); }

.hl { display: grid; gap: 10px; margin-bottom: 24px; }
.hl li { display: flex; gap: 10px; font-size: .95rem; line-height: 1.55; }
.hl .ic { color: var(--ok); margin-top: 4px; flex: none; }

.pdp__btns { display: flex; gap: 11px; flex-wrap: wrap; margin-bottom: 8px; }

.vtable { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.vtable th, .vtable td { padding: 14px 18px; text-align: left; font-size: .93rem; border-bottom: 1px solid var(--line-2); }
.vtable th { background: var(--bg-soft); font-weight: 600; color: var(--navy-800); font-size: .84rem; letter-spacing: .02em; }
.vtable tr:last-child td { border-bottom: 0; }
.vtable tbody tr { transition: background .18s; }
.vtable tbody tr:hover { background: var(--blue-050); }
.vtable .p-now { font-weight: 700; color: var(--navy-800); }
.vtable .p-was { color: var(--muted-2); text-decoration: line-through; font-size: .86rem; margin-right: 6px; }
.vtable .p-ask { color: var(--blue-600); font-weight: 600; }
.vtable small { display: block; color: var(--muted); font-size: .82rem; }
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.specgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.specitem { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 20px; }
.specitem dt { font-size: .8rem; color: var(--muted); margin-bottom: 3px; }
.specitem dd { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--navy-800); }

/* finance calculator */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px; }
.calc__row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; margin-bottom: 16px; }
.calc__row label { font-size: .92rem; font-weight: 500; color: var(--ink-2); }
.calc__row output { font-weight: 700; color: var(--navy-800); font-size: 1rem; }
.calc input[type=range] { grid-column: 1 / -1; width: 100%; accent-color: var(--blue-600); height: 6px; }
.calc__out { margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc__out div span { display: block; font-size: .82rem; color: var(--muted); }
.calc__out div b { font-size: 1.5rem; color: var(--navy-800); font-weight: 700; letter-spacing: -.02em; }
.calc__note { font-size: .78rem; color: var(--muted-2); margin: 14px 0 0; line-height: 1.5; }

@media (max-width: 900px) { .pdp__top { grid-template-columns: 1fr; } .pdp__gal { position: static; } }

/* ---------------------------------------------------------------- forms */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field .req { color: var(--hot); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  font: inherit; font-size: .96rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(26, 120, 232, .12);
}
.field textarea { resize: vertical; min-height: 118px; }
.field small { color: var(--muted); font-size: .8rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: .82rem; color: var(--muted); }

.alert { padding: 15px 19px; border-radius: var(--r-sm); font-size: .93rem; display: flex; gap: 10px; align-items: flex-start; }
.alert--ok { background: #e8f7f0; border: 1px solid #b9e6d2; color: #0b6b4a; }
.alert--err { background: #fdecef; border: 1px solid #f8c9d2; color: #a51b38; }
.alert .ic { margin-top: 3px; flex: none; }

/* contact split */
.contactgrid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
@media (max-width: 900px) { .contactgrid { grid-template-columns: 1fr; } }
.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-1); }

.infolist { display: grid; gap: 14px; }
.infoitem { display: flex; gap: 14px; align-items: flex-start; padding: 17px 19px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); }
.infoitem__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blue-050); color: var(--blue-600); flex: none; }
.infoitem strong { display: block; color: var(--ink); font-size: .95rem; }
.infoitem span, .infoitem a { display: block; color: var(--muted); font-size: .9rem; }
.infoitem a:hover { color: var(--blue-600); }

/* branch card */
.branch { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.branch:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.branch__img { aspect-ratio: 16 / 9; background: linear-gradient(150deg, #f4f9ff, #e9f2fd); display: grid; place-items: center; padding: 14px; }
.branch__img img { width: 100%; height: 100%; object-fit: contain; }
.branch__b { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.branch__b h3 { font-size: 1.08rem; margin-bottom: 3px; }
.branch__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 10px; }
.branch__rows { display: grid; gap: 7px; margin-bottom: 15px; }
.branch__rows li { display: flex; gap: 9px; font-size: .88rem; color: var(--muted); line-height: 1.45; }
.branch__rows .ic { color: var(--muted-2); margin-top: 3px; flex: none; }
.branch__rows a { color: var(--ink-2); font-weight: 500; }
.branch__soc { display: flex; gap: 7px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-2); }
.branch__soc a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--bg-soft); color: var(--muted); transition: all .2s; }
.branch__soc a:hover { background: var(--blue-050); color: var(--blue-600); transform: translateY(-2px); }

/* ---------------------------------------------------------------- timeline */
.tl { position: relative; padding-left: 30px; }
.tl::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--blue-200), var(--blue-100)); border-radius: 2px; }
.tl__i { position: relative; padding-bottom: 30px; }
.tl__i:last-child { padding-bottom: 0; }
.tl__i::before {
  content: ''; position: absolute; left: -30px; top: 7px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue-500); box-shadow: 0 0 0 4px var(--blue-050);
}
.tl__y { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--blue-600); background: var(--blue-050); padding: 3px 12px; border-radius: 100px; margin-bottom: 6px; }
.tl__i h3 { font-size: 1.08rem; margin-bottom: 4px; }
.tl__i p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 10px; }
.faq__i { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq__i[open] { border-color: var(--blue-200); box-shadow: var(--sh-1); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--ink); font-size: 1rem; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .ic { color: var(--blue-600); transition: transform .28s var(--ease); flex: none; }
.faq__i[open] .faq__q .ic { transform: rotate(180deg); }
.faq__a { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; line-height: 1.72; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- CTA band */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--navy-800) 0%, var(--navy-700) 45%, var(--blue-600) 130%);
  color: #cddff2;
}
.cta::before {
  content: ''; position: absolute; top: -50%; right: -8%; width: 46vw; height: 46vw;
  background: radial-gradient(circle, rgba(77, 155, 245, .22), transparent 62%);
}
.cta__in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: clamp(40px, 5vw, 68px) 0; }
.cta h2 { color: #fff; margin-bottom: 8px; }
.cta p { color: #a9c6e6; margin: 0; max-width: 56ch; }
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- footer */
.ftr { background: var(--navy-900); color: #93b0cf; padding-top: clamp(46px, 5vw, 72px); }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(24px, 3vw, 46px); padding-bottom: 44px; }
@media (max-width: 900px) { .ftr__grid { grid-template-columns: 1fr 1fr; } .ftr__col--brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .ftr__grid { grid-template-columns: 1fr; } }
.brandmark--ftr .brandmark__t strong { color: #fff; }
.brandmark--ftr .brandmark__t small { color: #6f90b3; }
.brandmark--ftr img { background: #fff; border-radius: 10px; padding: 3px; }
.ftr__about { font-size: .9rem; margin: 16px 0 0; max-width: 44ch; line-height: 1.65; }
.ftr__about--dim { color: #6f90b3; font-style: italic; margin-top: 6px; }
.ftr__soc { display: flex; gap: 8px; margin-top: 18px; }
.ftr__soc a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 255, 255, .07); color: #a9c6e6; transition: all .22s var(--ease); }
.ftr__soc a:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }
.ftr__col h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.ftr__col ul { display: grid; gap: 10px; }
.ftr__col a { color: #93b0cf; font-size: .92rem; }
.ftr__col a:hover { color: #fff; }
.ftr__branches li { display: grid; gap: 2px; font-size: .88rem; padding-bottom: 11px; }
.ftr__branches strong { color: #e2edf8; font-weight: 600; }
.ftr__branches span { color: #6f90b3; font-size: .82rem; }
.ftr__branches a { display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.ftr__bar { border-top: 1px solid rgba(255, 255, 255, .09); }
.ftr__bar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 0; font-size: .84rem; color: #6f90b3; }
.ftr__bar__links { display: flex; gap: 18px; }
.ftr__bar__links a { color: #6f90b3; }
.ftr__bar__links a:hover { color: #fff; }

/* ---------------------------------------------------------------- mobile dock */
.dock {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80; display: none;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 100px; box-shadow: var(--sh-3);
  padding: 6px; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px;
}
.dock__b {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 6px; border-radius: 100px; color: var(--navy-800); font-size: .68rem; font-weight: 600;
  transition: background .2s, color .2s;
}
.dock__b:hover { background: var(--blue-050); }
.dock__b--hi { background: var(--blue-600); color: #fff; }
.dock__b--hi:hover { background: var(--blue-500); color: #fff; }
@media (max-width: 780px) { .dock { display: grid; } body { padding-bottom: 78px; } }

/* ---------------------------------------------------------------- page header */
.phead { background: linear-gradient(160deg, var(--bg-tint), #fff); border-bottom: 1px solid var(--line-2); padding: clamp(30px, 4vw, 56px) 0 clamp(30px, 4vw, 52px); position: relative; overflow: hidden; }
.phead::before { content: ''; position: absolute; top: -60%; right: -10%; width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(26, 120, 232, .1), transparent 62%); }
.phead__in { position: relative; max-width: 780px; }
.phead h1 { margin-bottom: 12px; }
.phead p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* filter bar */
.filters { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.filters__g { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink-2); font-size: .88rem; font-weight: 500; transition: all .22s var(--ease);
}
.chip:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-1px); }
.chip.is-on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; font-weight: 600; }
.chip.is-on:hover { color: #fff; }
.filters__sep { width: 1px; height: 26px; background: var(--line); margin: 0 5px; }

/* prose */
.prose { max-width: 74ch; }
.prose p { color: var(--ink-2); line-height: 1.85; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose ul { display: grid; gap: 9px; margin-bottom: 1.2em; }
.prose ul li { display: flex; gap: 10px; }
.prose ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-500); margin-top: 11px; flex: none; }

.splitmedia { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.splitmedia--rev > *:first-child { order: 2; }
@media (max-width: 860px) { .splitmedia { grid-template-columns: 1fr; } .splitmedia--rev > *:first-child { order: 0; } }
.splitmedia__img { border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(150deg, #f4f9ff, #e9f2fd); border: 1px solid var(--line); padding: 18px; }
.splitmedia__img img { width: 100%; height: auto; object-fit: contain; border-radius: var(--r-md); }

/* Scroll reveals were removed: staggered fades made images flicker in and out on
   real devices, and a stalled observer could hide content outright. Everything now
   renders immediately; motion lives in the hero entrance and hover states only. */
.rv, .rv--scale, .rv--left, .rv--right, .rv--pop, .wipe {
  opacity: 1 !important; transform: none !important; clip-path: none !important;
  transition: none !important; animation: none !important;
}
.rv-d1, .rv-d2, .rv-d3, .rv-d4, .rv-d5, .rv-d6 { transition-delay: 0s !important; }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .ic { color: var(--muted-2); margin-bottom: 12px; }

/* =========================================================================
   MOTION SYSTEM — "เด้งๆ ล้ำๆ" without hurting readability
   ========================================================================= */

/* animated gradient mesh — reads like a slow video loop behind the hero */
.mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mesh__b {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
  will-change: transform;
}
.mesh__b--1 { width: 46vw; height: 46vw; background: radial-gradient(circle, #4d9bff, transparent 66%); top: -14%; right: -8%; animation: drift1 22s var(--smooth) infinite alternate; }
.mesh__b--2 { width: 38vw; height: 38vw; background: radial-gradient(circle, #b39cff, transparent 66%); bottom: -18%; left: -6%; animation: drift2 26s var(--smooth) infinite alternate; }
.mesh__b--3 { width: 30vw; height: 30vw; background: radial-gradient(circle, #7ee3ff, transparent 66%); top: 32%; left: 38%; animation: drift3 19s var(--smooth) infinite alternate; opacity: .38; }
.mesh__b--4 { width: 24vw; height: 24vw; background: radial-gradient(circle, #ffb08a, transparent 66%); bottom: 8%; right: 22%; animation: drift2 24s var(--smooth) infinite alternate-reverse; opacity: .3; }
@keyframes drift1 { to { transform: translate3d(-9%, 12%, 0) scale(1.18); } }
@keyframes drift2 { to { transform: translate3d(11%, -10%, 0) scale(1.14); } }
@keyframes drift3 { to { transform: translate3d(-14%, -8%, 0) scale(.86); } }

/* fine grid overlay — the "tech" layer */
.gridlines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(11,95,255,.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(11,95,255,.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 62% at 50% 42%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 62% at 50% 42%, #000 35%, transparent 78%);
}

/* floating car */
.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }

/* pulsing halo behind the hero subject */
.halo {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%);
  width: 78%; aspect-ratio: 1; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(11,95,255,.20), rgba(124,58,237,.10) 46%, transparent 68%);
  animation: halo 7s ease-in-out infinite;
}
@keyframes halo { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .85 } 50% { transform: translate(-50%,-50%) scale(1.12); opacity: 1 } }

/* shine sweep across primary buttons */
.btn--primary, .btn--navy { position: relative; overflow: hidden; }
.btn--primary::after, .btn--navy::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-22deg);
}
.btn--primary:hover::after, .btn--navy:hover::after { animation: sweep .85s var(--smooth); }
@keyframes sweep { to { left: 145%; } }
.btn { transition: transform .3s var(--bounce), box-shadow .3s var(--ease), background .2s, color .2s, border-color .2s; }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn--primary { background: var(--g-cool); }
.btn--primary:hover { background: var(--g-cool); filter: saturate(1.15) brightness(1.04); }

/* scroll-reveal variants */
/* reveal variants intentionally inert — see the note above */
@media (prefers-reduced-motion: reduce) {
  .rv--scale, .rv--left, .rv--right, .rv--pop { opacity: 1; transform: none; }
  .mesh__b, .floaty, .halo { animation: none !important; }
}

/* 3D tilt (driven by JS custom props) */
.tilt { transform-style: preserve-3d; will-change: transform; }
.tilt__in { transform: translateZ(30px); }

/* =========================================================================
   VIDEO / CINEMATIC HERO
   ========================================================================= */
.vhero { position: relative; overflow: hidden; background: var(--navy-900); color: #dce9fb; }
.vhero__bg { position: absolute; inset: 0; z-index: 0; }
.vhero__bg video, .vhero__bg img { width: 100%; height: 100%; object-fit: cover; }
.vhero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(5,19,46,.92) 0%, rgba(5,19,46,.72) 46%, rgba(5,19,46,.35) 100%); }
.vhero__in { position: relative; z-index: 2; padding: clamp(60px, 8vw, 128px) 0; }
.vhero h1 { color: #fff; }
.vhero p { color: #a8c3e6; }

/* =========================================================================
   ALL-IN capability pillars
   ========================================================================= */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); padding: 0;
  display: flex; flex-direction: column; min-height: 100%;
  transition: transform .38s var(--bounce), box-shadow .38s var(--ease), border-color .3s;
}
.pillar:hover { transform: translateY(-9px); box-shadow: var(--sh-3); border-color: transparent; }
.pillar__top { position: relative; aspect-ratio: 16/10; overflow: hidden; padding: 10px;
  background: linear-gradient(155deg, #f4f9ff, #e7f1fe); }
.pillar__top img { width: 100%; height: 100%; object-fit: contain; transition: transform .7s var(--smooth); }
.pillar:hover .pillar__top img { transform: scale(1.09); }
.pillar__top::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(5,19,46,.42)); pointer-events: none; }
.pillar__num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--c, var(--g-cool)); color: #fff; font-weight: 700; font-size: .95rem;
  font-family: 'Kanit', sans-serif; box-shadow: 0 6px 18px rgba(5,19,46,.28);
}
.pillar__en {
  position: absolute; left: 16px; bottom: 12px; z-index: 2; color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.pillar__b { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pillar__b h3 { font-size: 1.08rem; margin-bottom: 8px; }
.pillar__b p { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.pillar__pts { display: grid; gap: 7px; margin-top: auto; }
.pillar__pts li { display: flex; gap: 8px; font-size: .85rem; color: var(--ink-2); line-height: 1.45; }
.pillar__pts .ic { color: var(--ok); margin-top: 3px; flex: none; }
.pillar__bar { height: 4px; background: var(--c, var(--g-cool)); }

/* =========================================================================
   MULTI-BRAND showcase
   ========================================================================= */
.bshow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .bshow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .bshow { grid-template-columns: 1fr; } }

.bx {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column;
  transition: transform .4s var(--bounce), box-shadow .4s var(--ease);
}
.bx::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: linear-gradient(165deg, color-mix(in srgb, var(--c) 16%, #fff), transparent 62%);
  transition: opacity .4s var(--ease);
}
.bx:hover { transform: translateY(-10px); box-shadow: 0 22px 60px color-mix(in srgb, var(--c) 26%, transparent); }
.bx:hover::before { opacity: 1; }
.bx__glow {
  position: absolute; top: -28%; right: -22%; width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--c) 40%, transparent), transparent 68%);
  filter: blur(28px); opacity: .55; transition: transform .6s var(--smooth), opacity .4s;
}
.bx:hover .bx__glow { transform: scale(1.28); opacity: .85; }
.bx__media { position: relative; z-index: 1; aspect-ratio: 16/10; display: grid; place-items: center; padding: 16px 18px 4px; }
.bx__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s var(--smooth); filter: drop-shadow(0 16px 22px rgba(7,31,69,.16)); }
.bx:hover .bx__media img { transform: scale(1.08) translateY(-5px); }
.bx__b { position: relative; z-index: 1; padding: 4px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.bx__logo { width: 152px; height: 46px; object-fit: contain; object-position: left center; margin-bottom: 10px; }
.bx__t { font-size: .87rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.bx__facts { display: grid; gap: 6px; padding-top: 13px; border-top: 1px solid var(--line-2); }
.bx__fact { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .83rem; color: var(--muted); }
.bx__fact b { color: var(--ink); font-weight: 600; font-family: 'Kanit', sans-serif; }
.bx__tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--c); padding: 5px 11px; border-radius: 100px;
}
.bx__link { position: absolute; inset: 0; z-index: 4; }

/* brand ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: #fff; padding: 20px 0; position: relative; }
.ticker::before, .ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.ticker__row { display: flex; gap: 62px; width: max-content; animation: ticker 26s linear infinite; }
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker__i { display: flex; align-items: center; gap: 13px; flex: none; }
.ticker__i img { height: 40px; width: 118px; object-fit: contain; opacity: 1; }
.ticker__i:hover img { opacity: 1; }
.ticker__i span { font-size: .82rem; color: var(--muted); white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__row { animation: none; } }

/* =========================================================================
   Coverage / stat panels
   ========================================================================= */
.cover { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 760px) { .cover { grid-template-columns: 1fr; } }
.cover__i {
  position: relative; overflow: hidden; padding: 26px 24px; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); transition: transform .35s var(--bounce), box-shadow .35s;
}
.cover__i:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.cover__i h3 { font-size: 1.22rem; margin-bottom: 5px; }
.cover__i p { color: var(--muted); font-size: .9rem; margin: 0; }
.cover__ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--g-cool); color: #fff; margin-bottom: 14px; }

.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
.numcard {
  position: relative; overflow: hidden; padding: 28px 24px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px);
  transition: transform .35s var(--bounce), background .3s;
}
.numcard:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.numcard b { display: block; font-family: 'Kanit', sans-serif; font-size: clamp(1.9rem, 1.4rem + 1.7vw, 2.9rem); font-weight: 700; color: #fff; line-height: 1.05; letter-spacing: -.03em; }
.numcard span { display: block; font-size: .87rem; color: #9fbcdc; margin-top: 5px; }
.numcard__ic { color: #6fa8ff; margin-bottom: 12px; }

/* investment strip */
.invest { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 760px) { .invest { grid-template-columns: repeat(2, 1fr); } }
.invest__i {
  text-align: center; padding: 22px 16px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .35s var(--bounce), box-shadow .35s;
}
.invest__i:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.invest__i::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--c); }
.invest__i img { height: 40px; width: 130px; margin: 4px auto 12px; object-fit: contain; }
.invest__i b { display: block; font-family: 'Kanit', sans-serif; font-size: 1.35rem; color: var(--ink); font-weight: 600; }
.invest__i span { font-size: .8rem; color: var(--muted); }

/* section eyebrow gets a gradient pill */
.eyebrow--g { background: var(--g-cool); color: #fff; border-color: transparent; }
.sec--mesh { position: relative; overflow: hidden; }
.sec--mesh > .wrap { position: relative; z-index: 1; }

/* =========================================================================
   CALL PICKER — choose the brand/branch, then dial
   ========================================================================= */
button.topbar__i, button.dock__b { background: none; border: 0; cursor: pointer; font: inherit; }
button.topbar__i { color: #fff; display: inline-flex; align-items: center; gap: 6px; padding: 0; }
button.topbar__i:hover { color: var(--blue-400); }

.cp { position: fixed; inset: 0; z-index: 190; background: rgba(5,19,46,.55); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; animation: cpIn .25s var(--ease); }
.cp[hidden] { display: none; }
@keyframes cpIn { from { opacity: 0 } }
.cp__box {
  width: min(100%, 520px); max-height: 88vh; overflow: hidden; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-xl); box-shadow: 0 30px 90px rgba(5,19,46,.4);
  animation: cpPop .38s var(--bounce);
}
@keyframes cpPop { from { opacity: 0; transform: translateY(22px) scale(.94) } }
.cp__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 24px 26px 18px; border-bottom: 1px solid var(--line-2); }
.cp__head h2 { font-size: 1.3rem; margin: 0 0 3px; }
.cp__head p { margin: 0; font-size: .88rem; color: var(--muted); }
.cp__x { background: none; border: 0; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 10px; flex: none; }
.cp__x:hover { background: var(--bg-soft); color: var(--ink); }
.cp__rows { overflow-y: auto; padding: 12px; display: grid; gap: 6px; }
.cp__row {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  transition: all .22s var(--ease);
}
.cp__row:hover { border-color: var(--blue-400); background: var(--blue-050); transform: translateX(4px); color: var(--ink); }
.cp__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--g-cool); color: #fff; flex: none; }
.cp__t { flex: 1; min-width: 0; }
.cp__t strong { display: block; font-size: .96rem; line-height: 1.3; }
.cp__t small { display: block; color: var(--muted); font-size: .78rem; }
.cp__num { font-family: 'Kanit', sans-serif; font-weight: 600; color: var(--blue-600); font-size: .95rem; white-space: nowrap; }
.cp__foot { padding: 16px 22px 20px; border-top: 1px solid var(--line-2); background: var(--bg-soft); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.cp__foot > span { font-size: .85rem; color: var(--muted); width: 100%; }
@media (max-width: 520px) { .cp__num { font-size: .85rem; } .cp__foot .btn { flex: 1; } }

/* =========================================================================
   CINEMATIC HERO — dark stage, vibrant mesh, optional video
   ========================================================================= */
.hero--cine {
  background: linear-gradient(135deg, #05132e 0%, #071f45 42%, #0d2f63 100%);
  color: #cfe0f7;
}
.hero--cine::before, .hero--cine::after { display: none; }
.hero--cine .hero__track, .hero--cine .hero__ctrl { position: relative; z-index: 2; }
.hero--cine .hero__title { color: #fff; }
.hero--cine .hero__sub { color: #a9c6e6; }
.hero--cine .hero__eyebrow { color: #7fb4ff; }
.hero--cine .hero__eyebrow::before { background: linear-gradient(90deg, #00c8f0, #7c3aed); }
.hero--cine .mesh__b { opacity: .34; }
.hero--cine .gridlines {
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
}
.hero--cine .hero__dot { background: rgba(255,255,255,.26); }
.hero--cine .hero__dot.is-on { background: linear-gradient(90deg, #00c8f0, #5f9bff); }
.hero--cine .hero__arrow {
  background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); color: #fff; box-shadow: none;
}
.hero--cine .hero__arrow:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.34); color: #fff; }
/* keep whole vehicles visible — never crop */
.hero--cine .hero__media img { object-fit: contain; max-height: 470px; border-radius: var(--r-lg);
  filter: drop-shadow(0 34px 54px rgba(0,0,0,.5)); }

/* optional looping video backdrop */
.hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero__video::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(5,19,46,.93) 0%, rgba(5,19,46,.74) 48%, rgba(7,31,69,.55) 100%);
}

/* glass button for dark surfaces */
.btn--glass {
  --bg-b: rgba(255,255,255,.1); --fg-b: #fff; --bd-b: rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
}
.btn--glass:hover { --bg-b: rgba(255,255,255,.2); --bd-b: rgba(255,255,255,.42); --fg-b: #fff; }

/* dark section eyebrow */
.sec--navy .eyebrow--g { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: #8fc0f7; }
.sec--navy .sechead p { color: #9fbcdc; }
.sec--navy .tl__i h3 { color: #fff; }

/* headline gradient needs a solid fallback on dark backgrounds */
.sec--navy .grad-cool { background: linear-gradient(120deg, #5fd8ff, #9db4ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

@media (max-width: 900px) {
  .hero--cine .hero__media img { max-height: 250px; }
}

/* =========================================================================
   RESTRAINED LIST MARKERS — replaces per-item check icons
   ========================================================================= */
.hl li, .fcard__pts li, .pillar__pts li { position: relative; padding-left: 22px; }
.hl li::before, .fcard__pts li::before, .pillar__pts li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--g-cool); transform: rotate(45deg);
}
.hl li { gap: 0; font-size: .96rem; }
.pillar__pts li::before { top: .58em; width: 6px; height: 6px; }
.fcard__pts li { gap: 0; }

/* eyebrow without an icon reads better with a leading rule */
.eyebrow { padding: 7px 16px; font-size: .72rem; letter-spacing: .18em; }
.eyebrow--g { box-shadow: 0 6px 18px rgba(11,95,255,.22); }

/* number cards without icons need more presence */
.numcard { padding: 30px 26px 26px; }
.numcard b { letter-spacing: -.04em; }
.numcard::before {
  content: ''; position: absolute; left: 26px; top: 0; width: 34px; height: 3px;
  background: linear-gradient(90deg, #00c8f0, #7c3aed); border-radius: 0 0 3px 3px;
}
.stat { padding: 26px 18px; }
.stat::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 0;
  width: 30px; height: 3px; background: var(--g-cool); border-radius: 0 0 3px 3px;
}
.stat { position: relative; }

/* ---------------------------------------------------------------- our team */
.team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1000px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .team { grid-template-columns: repeat(2, 1fr); } }
.team__i {
  margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line);
  transition: transform .38s var(--bounce), box-shadow .38s var(--ease);
}
.team__i:hover { transform: translateY(-7px); box-shadow: var(--sh-3); }
.team__i img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 28%; transition: transform .6s var(--smooth); }
.team__i:hover img { transform: scale(1.06); }
.team__i figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 16px 14px; color: #fff;
  background: linear-gradient(transparent, rgba(5,19,46,.86));
}
.team__i strong { display: block; font-family: 'Kanit', sans-serif; font-size: .92rem; line-height: 1.3; }
.team__i span { display: block; font-size: .76rem; color: #b9d0ea; line-height: 1.35; margin-top: 2px; }

/* =========================================================================
   SAME-PLANE ALIGNMENT — every vehicle sits on one shared ground line
   Cut-outs carry different amounts of internal whitespace, so bottom-align
   them and draw a consistent ground shadow underneath.
   ========================================================================= */
.ccard__media, .bx__media, .bcard__top, .branch__img, .pdp__main {
  position: relative;
}
.ccard__media img, .bx__media img, .bcard__top img, .branch__img img {
  object-position: center bottom;
}
.ccard__media::after, .bx__media::after, .bcard__top::after {
  content: ''; position: absolute; left: 50%; bottom: 9%; transform: translateX(-50%);
  width: 62%; height: 16px; border-radius: 50%; z-index: 0;
  background: radial-gradient(ellipse, rgba(7,31,69,.20), transparent 72%);
  filter: blur(7px); transition: width .5s var(--smooth), opacity .4s;
}
.ccard:hover .ccard__media::after, .bx:hover .bx__media::after, .bcard:hover .bcard__top::after {
  width: 70%; opacity: .8;
}
.ccard__media img, .bx__media img { position: relative; z-index: 1; }
/* consistent inner padding so subjects read at the same optical scale */
.ccard__media { padding: 20px 22px 26px; }
.bx__media { padding: 20px 22px 26px; }
.bcard__top { padding: 22px 22px 28px; }

/* =========================================================================
   EXTRA FLAIR
   ========================================================================= */
/* scroll progress bar */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: linear-gradient(90deg, #00c8f0, #0b5fff 45%, #7c3aed 75%, #ff2d78);
  box-shadow: 0 0 12px rgba(11,95,255,.6); transition: width .1s linear;
}

/* hero scroll cue */
.scrollcue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.62); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
}
.scrollcue__m { width: 22px; height: 34px; border: 1.6px solid rgba(255,255,255,.34); border-radius: 12px; position: relative; }
.scrollcue__m::after {
  content: ''; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px;
  background: #fff; transform: translateX(-50%); animation: wheel 1.9s var(--smooth) infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0) } 30% { opacity: 1 } 100% { opacity: 0; transform: translate(-50%, 12px) } }
@media (max-width: 900px) { .scrollcue { display: none; } }

/* cursor spotlight that follows the pointer across a card */
.spot { position: relative; overflow: hidden; }
.spot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.5), transparent 62%);
  transition: opacity .35s var(--ease); z-index: 3;
}
.spot:hover::after { opacity: 1; }

/* magnetic buttons nudge toward the cursor */
.btn { will-change: transform; }

/* animated gradient border on the featured line-up cards */
.ccard { position: relative; }
.ccard::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: -1; opacity: 0;
  background: linear-gradient(120deg, #00c8f0, #0b5fff, #7c3aed, #ff2d78, #00c8f0);
  background-size: 300% 300%; transition: opacity .35s var(--ease);
}
.ccard:hover::before { opacity: 1; animation: borderflow 4s linear infinite; }
@keyframes borderflow { to { background-position: 300% 50%; } }

/* section headings get a soft rising underline */
.sechead--c h2 { position: relative; display: inline-block; }
.sechead--c h2::after {
  content: ''; position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%) scaleX(0);
  width: 68px; height: 3px; border-radius: 3px; background: var(--g-brand);
  transition: transform .7s var(--smooth) .2s; transform-origin: center;
}
.sechead--c.is-in h2::after, .rv.is-in.sechead--c h2::after { transform: translateX(-50%) scaleX(1); }

/* gallery items lift with a colour wash */
.gitem::after {
  content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: linear-gradient(150deg, rgba(11,95,255,.22), rgba(255,45,120,.18));
  transition: opacity .35s var(--ease);
}
.gitem:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .progress, .scrollcue { display: none; }
  .ccard:hover::before { animation: none; }
}

/* =========================================================================
   BRAND CI LOGOS in navigation and cards
   ========================================================================= */
.mega__logo { width: 60px; height: 26px; object-fit: contain; object-position: left center; flex: none; }
.drawer__sub .mega__logo { width: 56px; height: 24px; margin-right: 4px; }
/* must out-specify `.ccard__media img`, which sizes the vehicle to fill the card */
.ccard__media img.ccard__logo {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 88px; height: 34px; object-fit: contain; object-position: center;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px;
  transform: none !important;
}
.ccard:hover .ccard__media img.ccard__logo { transform: none !important; }
.brandhero__logo {
  width: auto; height: 58px; max-width: 230px; object-fit: contain; object-position: left center;
  margin-bottom: 18px;
}
@media (max-width: 900px) { .brandhero__logo { margin-inline: auto; height: 46px; } }

/* =========================================================================
   MOBILE COMFORT
   ========================================================================= */
@media (max-width: 780px) {
  body { font-size: 16px; }

  /* every tappable target clears 44px */
  .btn { padding: 14px 22px; min-height: 48px; }
  .btn--sm { padding: 12px 18px; min-height: 44px; }
  .chip, .gtab { min-height: 44px; padding: 11px 18px; }
  .dock__b { min-height: 52px; }
  .cp__row { min-height: 62px; }
  .faq__q { padding: 18px 18px; min-height: 56px; }
  .infoitem { padding: 16px; }
  .soccard { min-height: 62px; }

  /* filter rows scroll sideways instead of stacking into a wall */
  .filters { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; padding-bottom: 6px; margin-inline: -16px; padding-inline: 16px; }
  .filters::-webkit-scrollbar { display: none; }
  .filters { scrollbar-width: none; }
  .filters__g { flex-wrap: nowrap; }
  .chip { flex: none; scroll-snap-align: start; }
  .filters__sep { display: none; }
  .gtabs { flex-wrap: nowrap; overflow-x: auto; margin-inline: -16px; padding-inline: 16px; padding-bottom: 6px; }
  .gtabs::-webkit-scrollbar { display: none; }
  .gtab { flex: none; }
  .pdp__thumbs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .pdp__thumb { flex: none; }

  /* lighter motion so scrolling stays smooth on phones */
  .mesh__b { filter: blur(46px); opacity: .3; }
  .mesh__b--3, .mesh__b--4 { display: none; }
  .gridlines { display: none; }
  .ccard:hover::before { animation: none; }

  /* tighter rhythm */
  .sec { padding: 52px 0; }
  .sec--tight { padding: 38px 0; }
  .sechead { margin-bottom: 26px; }
  .card, .formcard { padding: 20px 18px; }

  /* the call sheet becomes a bottom sheet */
  .cp { align-items: end; padding: 0; }
  .cp__box { width: 100%; max-height: 90vh; border-radius: 24px 24px 0 0; animation: cpSheet .34s var(--smooth); }
  @keyframes cpSheet { from { transform: translateY(100%) } }
  .cp__head { padding: 20px 20px 14px; }
  .cp__rows { padding: 10px; }
  .cp__foot { padding-bottom: calc(18px + env(safe-area-inset-bottom)); }

  /* dock respects the home indicator */
  .dock { bottom: calc(10px + env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }

  /* readable hero */
  .hero--cine .hero__media img { max-height: 220px; }
  .hero__slide { padding: 30px 0 40px; }
  .ticker__row { animation-duration: 34s; }
  .ticker__i { gap: 9px; }
  .ticker__i span { display: none; }
  .ticker::before, .ticker::after { width: 46px; }

  /* stat + number cards read better as 2-up */
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .numcard { padding: 22px 18px; }
  .team { gap: 10px; }
  .pillars, .bshow { gap: 12px; }
}

/* avoid iOS zoom-on-focus: inputs must be >= 16px */
@media (max-width: 780px) {
  .field input, .field select, .field textarea { font-size: 16px; }
}

/* wide tap area for the whole card on touch devices */
@media (hover: none) {
  .ccard:hover, .bx:hover, .pillar:hover, .team__i:hover { transform: none; }
  .spot::after { display: none; }
}

/* the centred heading's inline-block (needed for the underline) pulled the
   eyebrow onto the same line — force the eyebrow to own its row */
.sechead--c .eyebrow { display: flex; width: fit-content; margin: 0 auto 18px; }
.sechead .eyebrow { margin-bottom: 16px; }
.sechead--c h2 { margin-bottom: 18px; }
.sechead--c p { margin-top: 4px; }

/* =========================================================================
   HYPERDRIVE HERO — neon road, speed streaks, car entrance, spinning wheels
   ========================================================================= */
.road {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 190%; height: 46%; z-index: 0; pointer-events: none;
  perspective: 380px; perspective-origin: 50% 0%;
  mask-image: linear-gradient(to top, #000 8%, transparent 88%);
  -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 88%);
}
.road span {
  position: absolute; inset: 0; transform: rotateX(74deg);
  transform-origin: 50% 0%;
  background-repeat: repeat;
}
.road span:nth-child(1) {
  background-image: repeating-linear-gradient(90deg, rgba(0,200,240,.42) 0 2px, transparent 2px 92px);
  animation: roadSide 6s linear infinite;
}
.road span:nth-child(2) {
  background-image: repeating-linear-gradient(0deg, rgba(124,58,237,.5) 0 3px, transparent 3px 78px);
  animation: roadRush 1.5s linear infinite;
}
.road span:nth-child(3) {
  background: radial-gradient(ellipse 55% 70% at 50% 100%, rgba(11,95,255,.5), transparent 70%);
}
@keyframes roadRush { to { background-position-y: 78px; } }
@keyframes roadSide { to { background-position-x: 92px; } }

.streaks { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.streaks i {
  position: absolute; height: 2px; border-radius: 2px; opacity: 0;
  background: linear-gradient(90deg, transparent, #6fe3ff, #fff, transparent);
  filter: blur(.4px);
  animation: streak 3.4s var(--smooth) infinite;
}
.streaks i:nth-child(1) { top: 22%; width: 190px; animation-delay: .0s; }
.streaks i:nth-child(2) { top: 38%; width: 130px; animation-delay: .7s; background: linear-gradient(90deg, transparent, #b58cff, #fff, transparent); }
.streaks i:nth-child(3) { top: 55%; width: 240px; animation-delay: 1.3s; }
.streaks i:nth-child(4) { top: 68%; width: 150px; animation-delay: 2.0s; background: linear-gradient(90deg, transparent, #ff8fbf, #fff, transparent); }
.streaks i:nth-child(5) { top: 12%; width: 110px; animation-delay: 2.6s; }
.streaks i:nth-child(6) { top: 80%; width: 200px; animation-delay: 1.7s; background: linear-gradient(90deg, transparent, #6fe3ff, #fff, transparent); }
@keyframes streak {
  0%   { transform: translateX(112vw) scaleX(.4); opacity: 0; }
  8%   { opacity: .9; }
  55%  { opacity: .75; }
  100% { transform: translateX(-40vw) scaleX(1.5); opacity: 0; }
}

/* the stage keeps the image box at the source ratio so wheel % stay exact */
.stage { position: relative; width: 100%; aspect-ratio: var(--ar, 3 / 2); }
.stage__car { width: 100%; height: 100%; object-fit: contain; }

/* the car emerges from the depth of the showroom, slows, and holds its pose */
.hero__slide.is-on .stage--drive .stage__car { animation: emerge 2s var(--smooth) both, floaty 7s ease-in-out 2s infinite; }
@keyframes emerge {
  0%   { opacity: 0; transform: scale(.26) translateY(-11%); filter: blur(9px) brightness(.55); }
  26%  { opacity: 1; filter: blur(5px) brightness(.75); }
  62%  { transform: scale(.88) translateY(-3%); filter: blur(1.5px) brightness(.95); }
  86%  { transform: scale(1.03) translateY(.8%); filter: blur(0) brightness(1); }
  100% { transform: scale(1) translateY(0); filter: blur(0) brightness(1); }
}
/* headlights brighten as it approaches */
.stage--drive::after {
  content: ''; position: absolute; left: 50%; top: 62%; transform: translate(-50%, -50%);
  width: 72%; height: 30%; border-radius: 50%; opacity: 0; z-index: -1;
  background: radial-gradient(ellipse, rgba(190,230,255,.42), transparent 68%);
  filter: blur(22px);
  animation: lamps 2s var(--smooth) both;
}
@keyframes lamps { 0% { opacity: 0 } 60% { opacity: .5 } 100% { opacity: .9 } }

/* optional wheel-motion hint — a soft rotational blur, not a neon ring */
.wheel {
  position: absolute; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none; z-index: 2; opacity: 0;
}
.wheel::before {
  content: ''; position: absolute; inset: 6%; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,255,255,.16) 0deg 22deg, transparent 22deg 90deg,
    rgba(255,255,255,.16) 90deg 112deg, transparent 112deg 180deg,
    rgba(255,255,255,.16) 180deg 202deg, transparent 202deg 270deg,
    rgba(255,255,255,.16) 270deg 292deg, transparent 292deg 360deg);
  mask-image: radial-gradient(circle, transparent 30%, #000 42%, #000 88%, transparent 96%);
  -webkit-mask-image: radial-gradient(circle, transparent 30%, #000 42%, #000 88%, transparent 96%);
  filter: blur(1.5px);
}
.hero__slide.is-on .stage--drive .wheel { animation: wheelIn .6s var(--ease) 1.1s forwards; }
.hero__slide.is-on .stage--drive .wheel::before { animation: spin .5s linear infinite; }
@keyframes wheelIn { to { opacity: .5; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .road { height: 34%; }
  .streaks i { display: none; }
  .streaks i:nth-child(1), .streaks i:nth-child(3) { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .road span, .streaks i { animation: none; }
  .streaks { display: none; }
  .hero__slide.is-on .stage--drive .stage__car { animation: none; }
  .wheel { opacity: .9; }
  .hero__slide.is-on .stage--drive .wheel::before { animation: none; }
}

/* =========================================================================
   BENTO track record — numbers grounded in real photos
   ========================================================================= */
.bento {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "hero hero years prov"
    "hero hero serv paint"
    "brands brands brands brands";
}
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "hero hero" "years prov" "serv paint" "brands brands"; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr;
    grid-template-areas: "hero" "years" "prov" "serv" "paint" "brands"; }
}
.bento__i--hero { grid-area: hero; min-height: 320px; }
.bento__i--years { grid-area: years; }
.bento__i--prov { grid-area: prov; }
.bento__i--serv { grid-area: serv; }
.bento__i--paint { grid-area: paint; }
.bento__i--brands { grid-area: brands; }

.bento__i {
  position: relative; overflow: hidden; border-radius: var(--r-lg); min-height: 158px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  transition: transform .4s var(--bounce), border-color .3s, background .3s;
}
.bento__i:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.3); }
/* photo tiles carry the image behind a readable scrim */
.bento__i[style*="--bg"]::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg); background-size: cover; background-position: center;
  opacity: .42; transition: transform .8s var(--smooth), opacity .4s;
}
.bento__i[style*="--bg"]::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,19,46,.5) 0%, rgba(5,19,46,.88) 72%);
}
.bento__i[style*="--bg"]:hover::before { transform: scale(1.07); opacity: .55; }

.bento__body { position: relative; z-index: 2; padding: 24px 26px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.bento__i--hero .bento__body { padding: 32px 34px; }
.bento__body b {
  display: block; font-family: 'Kanit', sans-serif; font-weight: 700; color: #fff;
  font-size: clamp(2.1rem, 1.5rem + 2.1vw, 3.4rem); line-height: 1; letter-spacing: -.04em;
}
.bento__i--hero .bento__body b { font-size: clamp(2.8rem, 1.8rem + 4vw, 5rem); }
.bento__l { display: block; color: #a9c6e6; font-size: .9rem; margin-top: 6px; font-weight: 500; }
.bento__body p { color: #90b2d8; font-size: .9rem; margin: 12px 0 0; max-width: 40ch; line-height: 1.6; }
.bento__since {
  display: inline-block; align-self: flex-start; margin-bottom: auto;
  font-size: .7rem; letter-spacing: .14em; color: #7fb4ff;
  border: 1px solid rgba(127,180,255,.34); border-radius: 100px; padding: 4px 11px;
}
.bento__chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.bento__chips li { font-size: .74rem; color: #cfe0f7; background: rgba(255,255,255,.1); border-radius: 100px; padding: 3px 10px; }
.bento__body--row { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.bento__logos { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.bento__logos img {
  height: 40px; width: 108px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .82; transition: opacity .25s, transform .35s var(--bounce);
}
.bento__logos img:hover { opacity: 1; transform: scale(1.08); }
@media (max-width: 620px) { .bento__logos { gap: 16px; } .bento__logos img { height: 30px; width: 78px; } }

/* =========================================================================
   TRUST cards + delivery row
   ========================================================================= */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 940px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .trust { grid-template-columns: 1fr; } }
.trust__i {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 26px; transition: transform .38s var(--bounce), box-shadow .38s var(--ease), border-color .3s;
}
.trust__i:hover { transform: translateY(-7px); box-shadow: var(--sh-3); border-color: var(--blue-200); }
.trust__n {
  display: block; font-family: 'Kanit', sans-serif; font-size: 1.6rem; font-weight: 700;
  line-height: 1; margin-bottom: 14px;
  background: var(--g-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.trust__i h3 { font-size: 1.08rem; margin-bottom: 8px; }
.trust__i p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.65; }

.delivery-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
@media (max-width: 760px) { .delivery-row { grid-template-columns: repeat(2, 1fr); } }
.drow__i {
  text-align: center; padding: 22px 16px; border-radius: var(--r-md); position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  transition: transform .35s var(--bounce), box-shadow .35s;
}
.drow__i:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.drow__i::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--c); }
.drow__i img { height: 34px; width: 118px; margin: 6px auto 12px; object-fit: contain; }
.drow__i > b { display: block; font-family: 'Kanit', sans-serif; font-size: 1.5rem; color: var(--ink); font-weight: 600; line-height: 1.1; }
.drow__i span { font-size: .8rem; color: var(--muted); }

/* =========================================================================
   SOCIAL PICKER — platform first, then channel
   ========================================================================= */
.topbar__soc button, .ftr__soc button { background: none; border: 0; cursor: pointer; padding: 4px; border-radius: 6px; color: inherit; }
.ftr__soc button { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); color: #a9c6e6; transition: all .22s var(--ease); }
.ftr__soc button:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }
.topbar__soc button { color: #9fc0e4; }
.topbar__soc button:hover { color: #fff; background: rgba(255,255,255,.1); }

.sp { position: fixed; inset: 0; z-index: 190; background: rgba(5,19,46,.55); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; animation: cpIn .25s var(--ease); }
.sp[hidden] { display: none; }
.sp__box { width: min(100%, 540px); max-height: 88vh; overflow: hidden; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-xl); box-shadow: 0 30px 90px rgba(5,19,46,.4); animation: cpPop .38s var(--bounce); }
.sp__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 24px 26px 16px; }
.sp__head h2 { font-size: 1.28rem; margin: 0 0 3px; }
.sp__head p { margin: 0; font-size: .87rem; color: var(--muted); }
.sp__x { background: none; border: 0; color: var(--muted); cursor: pointer; padding: 6px; border-radius: 10px; flex: none; }
.sp__x:hover { background: var(--bg-soft); color: var(--ink); }
.sp__tabs { display: flex; gap: 6px; padding: 0 20px 14px; overflow-x: auto; border-bottom: 1px solid var(--line-2); }
.sp__tabs::-webkit-scrollbar { display: none; }
.sp__tab {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  padding: 10px 16px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink-2); font: inherit; font-size: .88rem; font-weight: 500; cursor: pointer;
  transition: all .22s var(--ease);
}
.sp__tab:hover { border-color: var(--blue-400); color: var(--blue-600); }
.sp__tab.is-on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; font-weight: 600; }
.sp__panels { overflow-y: auto; padding: 14px; }
.sp__panel { display: none; gap: 6px; }
.sp__panel.is-on { display: grid; }
.sp__row {
  display: flex; align-items: center; gap: 13px; padding: 14px 16px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); color: var(--ink); transition: all .22s var(--ease);
}
.sp__row:hover { border-color: var(--blue-400); background: var(--blue-050); transform: translateX(4px); color: var(--ink); }
.sp__ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--g-cool); color: #fff; flex: none; }
.sp__t { flex: 1; min-width: 0; }
.sp__t strong { display: block; font-size: .95rem; line-height: 1.3; }
.sp__t small { display: block; color: var(--muted); font-size: .78rem; }
.sp__row > .ic:last-child { color: var(--muted-2); }
@media (max-width: 780px) {
  .sp { align-items: end; padding: 0; }
  .sp__box { width: 100%; max-height: 90vh; border-radius: 24px 24px 0 0; animation: cpSheet .34s var(--smooth); }
  .sp__panels { padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .sp__row { min-height: 62px; }
}

/* =========================================================================
   SHOWROOM LOCATIONS — large feature cards
   ========================================================================= */
.locs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 860px) { .locs { grid-template-columns: 1fr; } }
.loc {
  position: relative; overflow: hidden; border-radius: var(--r-xl); background: #fff;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .4s var(--bounce), box-shadow .4s var(--ease);
}
.loc:hover { transform: translateY(-8px); box-shadow: 0 26px 70px color-mix(in srgb, var(--c) 22%, transparent); }
.loc__media {
  position: relative; aspect-ratio: 16/9; padding: 16px;
  background: linear-gradient(155deg, color-mix(in srgb, var(--c) 10%, #fff), #f2f8ff);
  display: grid; place-items: center;
}
.loc__media > img:first-child { width: 100%; height: 100%; object-fit: contain; transition: transform .6s var(--smooth); }
.loc:hover .loc__media > img:first-child { transform: scale(1.05); }
.loc__logo {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  height: 34px; width: 104px; object-fit: contain; object-position: left center;
  background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px;
}
.loc__b { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.loc__b h3 { font-size: 1.3rem; margin-bottom: 6px; }
.loc__addr { color: var(--muted); font-size: .93rem; margin-bottom: 16px; }
.loc__meta { display: grid; gap: 9px; padding: 15px 0; border-block: 1px solid var(--line-2); margin-bottom: 18px; }
.loc__meta li { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .89rem; }
.loc__meta span { color: var(--muted); }
.loc__meta b { color: var(--ink); font-family: 'Kanit', sans-serif; font-weight: 500; }
.loc__btns { display: flex; gap: 9px; flex-wrap: wrap; margin-top: auto; }

/* =========================================================================
   CUSTOMER CARE journey
   ========================================================================= */
.care { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .care { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .care { grid-template-columns: 1fr; } }
.care__i {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; transition: transform .38s var(--bounce), box-shadow .38s var(--ease);
}
.care__i:hover { transform: translateY(-7px); box-shadow: var(--sh-3); }
.care__i::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: var(--r-lg) var(--r-lg) 0 0; background: var(--g-brand); }
.care__step {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600); background: var(--blue-050); border-radius: 100px; padding: 5px 12px; margin-bottom: 12px;
}
.care__i h3 { font-size: 1.06rem; margin-bottom: 8px; }
.care__i p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.65; }

/* =========================================================================
   FLEET box
   ========================================================================= */
.fleetbox {
  margin-top: 16px; padding: 26px 24px; border-radius: var(--r-lg); position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700)); color: #b9d0ea;
}
.fleetbox::before { content: ''; position: absolute; top: -40%; right: -20%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,240,.3), transparent 68%); }
.fleetbox__tag { position: relative; display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .16em; color: #7fd6ff; margin-bottom: 10px; }
.fleetbox h3 { position: relative; color: #fff; font-size: 1.16rem; margin-bottom: 8px; }
.fleetbox p { position: relative; font-size: .89rem; margin-bottom: 16px; line-height: 1.65; }
.fleetbox__btns { position: relative; display: flex; gap: 9px; flex-wrap: wrap; }
.fleetbox__btns .btn--ghost { --bg-b: transparent; --fg-b: #fff; --bd-b: rgba(255,255,255,.3); }
.fleetbox__btns .btn--navy { --bg-b: #fff; --fg-b: var(--navy-800); }

.paintvid { width: 100%; height: auto; border-radius: var(--r-md); display: block; }
.lead { font-size: 1.05rem; color: var(--ink-2); }

/* =========================================================================
   CINEMATIC INTRO — plays once, then gets out of the way
   ========================================================================= */
.intro {
  position: fixed; inset: 0; z-index: 300; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 52%, #0d2f63 0%, #071f45 45%, #03080f 100%);
  animation: introOut .01s linear 3.1s forwards;
}
.intro.is-done { display: none; }
@keyframes introOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
body.intro-lock { overflow: hidden; }

.intro__grid {
  position: absolute; inset: 0; opacity: 0;
  background-image: linear-gradient(rgba(0,200,240,.14) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,200,240,.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 76%);
  animation: introGrid 3s var(--smooth) forwards;
}
@keyframes introGrid { 0% { opacity: .7; transform: scale(.94) } 14% { opacity: 1; transform: scale(1) } 100% { opacity: .25; transform: scale(1.25) } }

/* headlight cones sweeping in ahead of the car */
.intro__beams span {
  position: absolute; right: -40%; width: 92%; height: 120px; opacity: 0;
  background: linear-gradient(270deg, rgba(190,235,255,.85), rgba(120,200,255,.28) 44%, transparent 76%);
  filter: blur(18px); transform-origin: right center;
}
.intro__beams span:nth-child(1) { top: 46%; animation: beam 1.5s var(--smooth) .12s forwards; }
.intro__beams span:nth-child(2) { top: 55%; animation: beam 1.5s var(--smooth) .2s forwards; }
@keyframes beam {
  0%   { opacity: 0; transform: translateX(28%) scaleX(.3) rotate(-2deg); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-120%) scaleX(1.5) rotate(1deg); }
}

.intro__trails i {
  position: absolute; height: 3px; border-radius: 3px; right: -30%; opacity: 0;
  background: linear-gradient(90deg, transparent, #7fe6ff, #fff, transparent);
}
.intro__trails i:nth-child(1) { top: 38%; width: 46%; animation: itrail 1.15s var(--smooth) .32s forwards; }
.intro__trails i:nth-child(2) { top: 47%; width: 62%; animation: itrail 1.15s var(--smooth) .38s forwards; background: linear-gradient(90deg, transparent, #b98cff, #fff, transparent); }
.intro__trails i:nth-child(3) { top: 56%; width: 54%; animation: itrail 1.15s var(--smooth) .3s forwards; }
.intro__trails i:nth-child(4) { top: 64%; width: 40%; animation: itrail 1.15s var(--smooth) .44s forwards; background: linear-gradient(90deg, transparent, #ff8fc0, #fff, transparent); }
.intro__trails i:nth-child(5) { top: 31%; width: 34%; animation: itrail 1.15s var(--smooth) .5s forwards; }
@keyframes itrail {
  0%   { opacity: 0; transform: translateX(0) scaleX(.4); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-190vw) scaleX(1.6); }
}

/* the car races in, brakes hard, holds, then leaves with the curtain */
.intro__car {
  position: absolute; left: 50%; top: 52%; width: min(64vw, 780px); height: auto;
  transform: translate(-50%, -50%); opacity: 0;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.7));
  animation: introCar 2.5s var(--smooth) .28s forwards;
}
@keyframes introCar {
  0%   { opacity: 0; transform: translate(120%, -50%) scale(1.35); filter: blur(26px) drop-shadow(0 40px 60px rgba(0,0,0,.7)); }
  22%  { opacity: 1; filter: blur(14px) drop-shadow(0 40px 60px rgba(0,0,0,.7)); }
  46%  { transform: translate(-56%, -50%) scale(1.03); filter: blur(2px) drop-shadow(0 40px 60px rgba(0,0,0,.7)); }
  56%  { transform: translate(-50%, -50%) scale(1); filter: blur(0) drop-shadow(0 40px 60px rgba(0,0,0,.7)); }
  82%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -54%) scale(1.06); }
}

/* shockwave at the moment it stops */
.intro__shock {
  position: absolute; left: 50%; top: 52%; width: 40px; aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%); opacity: 0; border: 2px solid rgba(140,225,255,.9);
  animation: shock .85s var(--smooth) 1.02s forwards;
}
@keyframes shock {
  0%   { opacity: .95; width: 40px; border-width: 3px; }
  100% { opacity: 0; width: 150vmax; border-width: 0.5px; }
}

.intro__flash {
  position: absolute; inset: 0; background: #eaf7ff; opacity: 0; mix-blend-mode: screen;
  animation: iflash .5s ease-out 1s forwards;
}
@keyframes iflash { 0% { opacity: 0 } 14% { opacity: .82 } 100% { opacity: 0 } }

.intro__word {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; gap: .5em; font-family: 'Kanit', sans-serif; font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 5vw, 5rem); letter-spacing: .1em; white-space: nowrap;
}
.intro__word span {
  opacity: 0; color: transparent;
  background: linear-gradient(100deg, #7fe6ff, #fff 40%, #b98cff 70%, #ff8fc0);
  -webkit-background-clip: text; background-clip: text;
}
.intro__word span:nth-child(1) { animation: iword 1.5s var(--smooth) 1.25s forwards; }
.intro__word span:nth-child(2) { animation: iword 1.5s var(--smooth) 1.38s forwards; }
@keyframes iword {
  0%   { opacity: 0; transform: translateY(26px); filter: blur(10px); }
  32%  { opacity: 1; transform: translateY(0); filter: blur(0); }
  74%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-16px); filter: blur(4px); }
}

/* curtains part to reveal the page */
.intro__curtain { position: absolute; left: 0; width: 100%; height: 50.5%; background: #050f22; }
.intro__curtain--t { top: 0; animation: curtainT .95s cubic-bezier(.76,0,.24,1) 2.25s forwards; }
.intro__curtain--b { bottom: 0; animation: curtainB .95s cubic-bezier(.76,0,.24,1) 2.25s forwards; }
@keyframes curtainT { to { transform: translateY(-101%); } }
@keyframes curtainB { to { transform: translateY(101%); } }

.intro__skip {
  position: absolute; right: 22px; bottom: 22px; z-index: 5;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); color: #cfe6ff;
  border-radius: 100px; padding: 9px 20px; font: inherit; font-size: .82rem; cursor: pointer;
  backdrop-filter: blur(8px); transition: background .2s;
}
.intro__skip:hover { background: rgba(255,255,255,.2); }

@media (max-width: 700px) { .intro__car { width: 92vw; } .intro__beams span { height: 70px; } }
@media (prefers-reduced-motion: reduce) { .intro { display: none !important; } }

/* =========================================================================
   AGENCY-GRADE MOTION LAYER
   ========================================================================= */

/* kinetic headline: words rise out of a mask */
.kin { display: inline; }
.kin__w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .06em; }
.kin__w > i { display: inline-block; font-style: inherit; }
.is-in .kin__w > i, .kin.is-in .kin__w > i { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .kin__w > i { transform: none; opacity: 1; } }

/* filmic grain — barely there, but it removes the "flat CSS" look */
.grain {
  position: fixed; inset: 0; z-index: 95; pointer-events: none; opacity: .04; 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='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 16% { transform: translate(-4%,-3%) }
  33% { transform: translate(3%,-5%) } 50% { transform: translate(-3%,4%) }
  66% { transform: translate(4%,2%) } 83% { transform: translate(-2%,-4%) }
}
@media (prefers-reduced-motion: reduce) { .grain { display: none; } }
@media (hover: none) { .grain { display: none; } }

/* oversized marquee band between sections */
.bigband {
  overflow: hidden; padding: clamp(26px, 4vw, 52px) 0; position: relative;
  background: var(--navy-900); border-block: 1px solid rgba(255,255,255,.08);
}
.bigband__row { display: flex; gap: 42px; width: max-content; animation: ticker 30s linear infinite; }
.bigband:hover .bigband__row { animation-play-state: paused; }
.bigband__i {
  display: inline-flex; align-items: center; gap: 42px; flex: none;
  font-family: 'Kanit', sans-serif; font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(1.6rem, 1rem + 3vw, 3.4rem); white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,.34);
}
.bigband__i em {
  font-style: normal; -webkit-text-stroke: 0;
  background: linear-gradient(100deg, #7fe6ff, #b98cff 55%, #ff8fc0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bigband__i span { -webkit-text-stroke: 0; color: rgba(127,230,255,.55); font-size: .5em; }
@media (prefers-reduced-motion: reduce) { .bigband__row { animation: none; } }

/* clip-path wipe reveal for feature imagery */
/* wipe reveal intentionally inert — see the note above */
@media (prefers-reduced-motion: reduce) { .wipe { clip-path: none; } }

/* section index numeral sitting behind the heading */
.sec--idx { position: relative; }
.sec--idx::before {
  content: attr(data-idx); position: absolute; top: clamp(10px, 3vw, 40px); right: 3vw;
  font-family: 'Kanit', sans-serif; font-weight: 700; font-size: clamp(5rem, 4rem + 9vw, 15rem);
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(11,95,255,.09);
  pointer-events: none; z-index: 0; user-select: none;
}
.sec--navy.sec--idx::before { -webkit-text-stroke-color: rgba(255,255,255,.07); }
.sec--idx > .wrap { position: relative; z-index: 1; }
@media (max-width: 780px) { .sec--idx::before { display: none; } }


/* =========================================================================
   SHOWROOM STAGE backdrop
   ========================================================================= */
.showroom {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--shot); background-size: cover; background-position: center 62%;
  opacity: .3; filter: blur(2px) saturate(.85);
  transform: scale(1.06);
}
.showroom::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(5,19,46,.94) 0%, rgba(7,31,69,.82) 46%, rgba(7,31,69,.58) 100%);
}

/* =========================================================================
   STATIC BRAND ROW — replaces the scrolling ticker
   ========================================================================= */
.brandrow { border-block: 1px solid var(--line); background: #fff; }
.brandrow__in { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .brandrow__in { grid-template-columns: repeat(2, 1fr); } }
.brandrow__i {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  padding: 26px 18px; text-align: center; position: relative; transition: background .25s;
}
.brandrow__i + .brandrow__i { border-left: 1px solid var(--line-2); }
@media (max-width: 760px) {
  .brandrow__i:nth-child(3) { border-left: 0; }
  .brandrow__i:nth-child(n+3) { border-top: 1px solid var(--line-2); }
}
.brandrow__i::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--c); transform: scaleX(0); transition: transform .32s var(--ease);
}
.brandrow__i:hover { background: var(--bg-soft); }
.brandrow__i:hover::after { transform: scaleX(1); }
.brandrow__i img { height: 38px; width: 132px; object-fit: contain; }
.brandrow__i strong { font-family: 'Kanit', sans-serif; font-size: 1.15rem; color: var(--navy-800); }
.brandrow__i span { font-size: .78rem; color: var(--muted); line-height: 1.4; }

/* =========================================================================
   SLIGHTLY MORE FORMAL TYPOGRAPHY
   ========================================================================= */
h1, h2 { letter-spacing: -.012em; }
.hero__title { font-weight: 500; letter-spacing: -.018em; }
h2 { font-weight: 500; }
h3 { font-weight: 500; }
.eyebrow { font-weight: 600; letter-spacing: .2em; }
.bento__body b, .numcard b, .trust__n { font-weight: 600; }

/* =========================================================================
   BRIGHT LIGHT-BLUE THEME — overrides the earlier dark stage
   ========================================================================= */
.hero--cine {
  background: linear-gradient(160deg, #eaf4ff 0%, #f7fbff 38%, #dcebff 100%);
  color: var(--ink-2);
}
.hero--cine .hero__title { color: var(--navy-800); }
.hero--cine .hero__sub { color: var(--muted); }
.hero--cine .hero__eyebrow { color: var(--blue-600); }
.hero--cine .hero__eyebrow::before { background: linear-gradient(90deg, #00c8f0, #7c3aed); }
.hero--cine .mesh__b { opacity: .5; filter: blur(64px); }
.hero--cine .gridlines {
  background-image: linear-gradient(rgba(11,95,255,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(11,95,255,.07) 1px, transparent 1px);
}
.hero--cine .hero__dot { background: var(--blue-200); }
.hero--cine .hero__dot.is-on { background: linear-gradient(90deg, #00a8e0, #0b5fff); }
.hero--cine .hero__arrow {
  background: #fff; border-color: var(--line); color: var(--navy-800); box-shadow: var(--sh-1);
}
.hero--cine .hero__arrow:hover { background: #fff; border-color: var(--blue-400); color: var(--blue-600); }
.hero--cine .hero__media img { filter: drop-shadow(0 30px 44px rgba(7,31,69,.26)); }

/* the showroom shot now sits behind a light wash */
.showroom { opacity: .42; filter: blur(1.5px) saturate(1) brightness(1.06); }
.showroom::after {
  /* keep the headline side readable while letting the showroom show through */
  background: linear-gradient(100deg, rgba(240,247,255,.93) 0%, rgba(236,245,255,.74) 40%, rgba(224,238,255,.42) 100%);
}

/* road reads as soft light-blue guides */
.road span:nth-child(1) { background-image: repeating-linear-gradient(90deg, rgba(11,95,255,.16) 0 2px, transparent 2px 92px); }
.road span:nth-child(2) { background-image: repeating-linear-gradient(0deg, rgba(124,58,237,.16) 0 3px, transparent 3px 78px); }
.road span:nth-child(3) { background: radial-gradient(ellipse 55% 70% at 50% 100%, rgba(11,95,255,.16), transparent 70%); }
.streaks i { background: linear-gradient(90deg, transparent, rgba(0,168,224,.7), rgba(255,255,255,.9), transparent); }
.scrollcue { color: var(--muted); }
.scrollcue__m { border-color: var(--blue-200); }
.scrollcue__m::after { background: var(--blue-600); }
.stage--drive::after { background: radial-gradient(ellipse, rgba(11,95,255,.26), transparent 68%); }

/* glass buttons need a light-surface variant */
.hero--cine .btn--glass { --bg-b: rgba(255,255,255,.8); --fg-b: var(--navy-800); --bd-b: var(--line); backdrop-filter: blur(10px); }
.hero--cine .btn--glass:hover { --bg-b: #fff; --bd-b: var(--blue-400); --fg-b: var(--blue-600); }

/* the track-record band becomes a bright blue panel */
.sec--navy { background: linear-gradient(165deg, #e8f2ff 0%, #f4f9ff 55%, #dfeeff 100%); color: var(--ink-2); }
.sec--navy h2, .sec--navy h3 { color: var(--navy-800); }
.sec--navy .sechead p { color: var(--muted); }
.sec--navy .eyebrow--g { background: var(--g-cool); border-color: transparent; color: #fff; }
.sec--navy .grad-cool { background: var(--g-cool); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec--navy.sec--idx::before { -webkit-text-stroke-color: rgba(11,95,255,.10); }

.bento__i { background: rgba(255,255,255,.78); border-color: var(--line); backdrop-filter: blur(8px); box-shadow: var(--sh-1); }
.bento__i:hover { border-color: var(--blue-200); box-shadow: var(--sh-2); }
.bento__body b { color: var(--navy-800); }
.bento__l { color: var(--muted); }
.bento__body p { color: var(--muted); }
.bento__since { color: var(--blue-600); border-color: var(--blue-200); background: var(--blue-050); }
.bento__chips li { color: var(--navy-700); background: var(--blue-050); border: 1px solid var(--blue-100); }
.bento__i[style*="--bg"]::before { opacity: .3; }
.bento__i[style*="--bg"]::after { background: linear-gradient(180deg, rgba(255,255,255,.62) 0%, rgba(255,255,255,.9) 72%); }
.bento__i[style*="--bg"]:hover::before { opacity: .42; }
.bento__logos img { filter: none; opacity: .95; }

/* the intro keeps its cinematic dark, but softer and bluer */
.intro { background: radial-gradient(ellipse 70% 60% at 50% 52%, #16447f 0%, #0b2c5c 46%, #061a34 100%); }
.intro__curtain { background: #08203f; }

/* =========================================================================
   MAPS
   ========================================================================= */
.mapbox { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--bg-soft); overflow: hidden; }
.mapbox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.loc__map { border-top: 1px solid var(--line-2); }
.loc__map[hidden] { display: none; }
.loc__map .mapbox { aspect-ratio: 16 / 10; }

.maptabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
@media (max-width: 780px) {
  .maptabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; margin-inline: -16px; padding: 0 16px 6px; }
  .maptabs::-webkit-scrollbar { display: none; }
  .maptab { flex: none; }
}
.maptab {
  padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff;
  color: var(--ink-2); font: inherit; font-size: .89rem; font-weight: 500; cursor: pointer;
  transition: all .22s var(--ease); min-height: 44px;
}
.maptab:hover { border-color: var(--blue-400); color: var(--blue-600); }
.maptab.is-on { background: var(--navy-800); border-color: var(--navy-800); color: #fff; font-weight: 600; }

.mappanels { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-1); }
.mappanel { display: none; }
.mappanel.is-on { display: block; }
.mappanel .mapbox { aspect-ratio: 21 / 9; }
@media (max-width: 780px) { .mappanel .mapbox { aspect-ratio: 4 / 3; } }
.mappanel__b {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px 22px; background: #fff; border-top: 1px solid var(--line-2);
}
.mappanel__b strong { display: block; font-family: 'Kanit', sans-serif; font-weight: 500; color: var(--ink); }
.mappanel__b span { display: block; font-size: .88rem; color: var(--muted); }
.mappanel__btns { display: flex; gap: 8px; flex-wrap: wrap; }


/* =========================================================================
   IMAGE FILL RULES
   Product cut-outs (cars) stay `contain` so they are never cropped.
   Environmental photos (buildings, workshops, people) fill their frame.
   ========================================================================= */
.loc__media { padding: 0; background: var(--bg-soft); }
.loc__media > img:first-child { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.pillar__top { padding: 0; background: var(--bg-soft); }
.pillar__top img { object-fit: cover; object-position: center; }

.branch__img { padding: 0; background: var(--bg-soft); }
.branch__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.splitmedia__img { padding: 0; overflow: hidden; }
.splitmedia__img img, .splitmedia__img video { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 0; display: block; }
/* the founder cut-out is a portrait, not a scene — keep it whole */
.splitmedia__img img[src*="founder"] { aspect-ratio: 3 / 4; object-fit: contain; background: linear-gradient(150deg, #f2f8ff, #e6f0fd); }

.gitem img { width: 100%; display: block; }
.team__i img { object-fit: cover; }


/* the founder portrait is a cut-out: show it whole on its own soft panel */
.splitmedia__img img[src*="founder"] {
  aspect-ratio: 3 / 4; object-fit: contain; width: 100%; height: auto;
  background: linear-gradient(150deg, #f2f8ff, #e6f0fd);
}

/* map block sits below the location cards on the home page */
.mapwrap { margin-top: 34px; }

/* branch photo not available yet */
.loc__media--soon { background: linear-gradient(155deg, #eaf3ff, #dfeaff); }
.soon {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px; text-align: center; padding: 24px;
}
.soon__tag {
  font-size: .66rem; font-weight: 700; letter-spacing: .2em; color: #fff;
  background: var(--g-cool); border-radius: 100px; padding: 5px 14px;
}
.soon strong { font-family: 'Kanit', sans-serif; font-weight: 500; color: var(--navy-800); font-size: 1.05rem; }
.soon__sub { font-size: .82rem; color: var(--muted); max-width: 30ch; line-height: 1.5; }

/* =========================================================================
   SINGLE SHOWROOM HERO — all four brands on one stage
   ========================================================================= */
.hero--single .hero__single {
  position: relative; z-index: 2;
  padding: clamp(44px, 5.5vw, 84px) 0 clamp(30px, 4vw, 56px);
  display: grid; gap: clamp(28px, 4vw, 52px);
}
.hero--single .hero__txt { max-width: 760px; }
.hero--single .hero__sub { max-width: 62ch; }

.lineup4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.6vw, 22px); align-items: end; }
@media (max-width: 860px) { .lineup4 { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.lineup4__i {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 14px 10px 16px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .5); border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  transition: transform .4s var(--bounce), box-shadow .4s var(--ease), background .3s, border-color .3s;
}
.lineup4__i:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, .82);
  border-color: color-mix(in srgb, var(--c) 40%, transparent);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--c) 26%, transparent);
}
.lineup4__glow {
  position: absolute; left: 50%; bottom: 14%; transform: translateX(-50%);
  width: 74%; height: 26px; border-radius: 50%; z-index: 0;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--c) 42%, transparent), transparent 70%);
  filter: blur(10px); opacity: .7; transition: width .5s var(--smooth), opacity .35s;
}
.lineup4__i:hover .lineup4__glow { width: 88%; opacity: 1; }

/* each car rolls onto the stage in turn — never cropped */
.lineup4__car {
  position: relative; z-index: 1; width: 100%; height: auto; object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(7, 31, 69, .22));
  animation: rollIn 1.15s var(--smooth) both; animation-delay: var(--d, 0ms);
}
@keyframes rollIn {
  0%   { opacity: 0; transform: translateX(26%) scale(.72); filter: blur(7px) drop-shadow(0 16px 24px rgba(7,31,69,.22)); }
  60%  { opacity: 1; filter: blur(.6px) drop-shadow(0 16px 24px rgba(7,31,69,.22)); }
  100% { opacity: 1; transform: none; filter: blur(0) drop-shadow(0 16px 24px rgba(7,31,69,.22)); }
}
.lineup4__logo { position: relative; z-index: 1; height: 30px; width: 108px; object-fit: contain; }
.lineup4__i strong { position: relative; z-index: 1; font-family: 'Kanit', sans-serif; font-weight: 500; color: var(--navy-800); }
@media (max-width: 860px) { .lineup4__logo { height: 24px; width: 88px; } }
@media (prefers-reduced-motion: reduce) { .lineup4__car { animation: none; } }

/* the single hero has no carousel chrome */
.hero--single .hero__ctrl, .hero--single .hero__dots, .hero--single .hero__arrows { display: none; }
.hero--single .scrollcue { bottom: 14px; }

/* =========================================================================
   MOBILE BALANCE PASS
   ========================================================================= */

/* headings should not drop a lone word onto its own line */
h1, h2, h3, .hero__title, .sechead p { text-wrap: balance; }
.hero__sub, .sechead p { text-wrap: pretty; }

@media (max-width: 620px) {
  /* --- track record: keep two columns so tiles never become empty slabs --- */
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "hero hero" "years prov" "serv paint" "brands brands";
    gap: 10px;
  }
  .bento__i { min-height: 132px; border-radius: var(--r-md); }
  .bento__i--hero { min-height: 230px; }
  .bento__body { padding: 16px 16px 18px; }
  .bento__i--hero .bento__body { padding: 20px; }
  .bento__body b { font-size: 1.85rem; }
  .bento__i--hero .bento__body b { font-size: 2.6rem; }
  .bento__l { font-size: .78rem; margin-top: 3px; }
  .bento__i--hero .bento__body p { font-size: .82rem; margin-top: 8px; }
  .bento__since { font-size: .62rem; padding: 3px 8px; }
  .bento__chips li { font-size: .66rem; padding: 2px 7px; }
  .bento__i[style*="--bg"]::before { opacity: .38; }
  /* the four marks stay on one tidy row */
  .bento__body--row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bento__logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 100%; }
  .bento__logos img { height: 26px; width: 100%; }

  /* --- hero line-up: even tiles, even logos --- */
  .lineup4 { gap: 10px; }
  .lineup4__i { padding: 12px 8px 12px; gap: 7px; border-radius: var(--r-md); }
  .lineup4__logo { height: 22px; width: 78px; }

  /* --- car cards: tighter, less dead space --- */
  .ccard__media { padding: 14px 16px 18px; }
  .ccard__body { padding: 14px 16px 18px; }
  .ccard__name { font-size: 1.08rem; }
  .ccard__sub { font-size: .82rem; margin-bottom: 10px; }
  .ccard__price { padding-top: 10px; }
  .ccard__now b { font-size: 1.25rem; }
  .ccard__foot { margin-top: 10px; }

  /* --- pillars: shorter media so the section is not a mile long --- */
  .pillar__top { aspect-ratio: 16 / 9; }
  .pillar__b { padding: 16px 18px 20px; }
  .pillar__b h3 { font-size: 1rem; }
  .pillar__b p { font-size: .85rem; margin-bottom: 12px; }
  .pillar__pts li { font-size: .8rem; }

  /* --- brand cards --- */
  .bx__media { padding: 14px 16px 18px; }
  .bx__b { padding: 4px 16px 18px; }
  .bx__logo { width: 120px; height: 36px; }
  .bx__t { font-size: .82rem; margin-bottom: 10px; }
  .bx__fact { font-size: .78rem; }

  /* --- trust / care / location cards --- */
  .care__i, .trust__i { padding: 20px 18px; }
  .care__i h3, .trust__i h3 { font-size: 1rem; }
  .care__i p, .trust__i p { font-size: .85rem; }
  .loc__b { padding: 18px 18px 20px; }
  .loc__b h3 { font-size: 1.1rem; }
  .loc__addr { font-size: .85rem; margin-bottom: 12px; }
  .loc__meta { padding: 12px 0; margin-bottom: 14px; }
  .loc__meta li { font-size: .82rem; }

  /* --- section rhythm: less air, still comfortable --- */
  .sec { padding: 42px 0; }
  .sec--tight { padding: 32px 0; }
  .sechead { margin-bottom: 22px; }
  .sechead p { font-size: .92rem; }
  .sechead-row { margin-bottom: 22px; gap: 14px; }
  .grid { gap: 12px; }

  /* --- footer --- */
  .ftr__grid { gap: 26px; padding-bottom: 30px; }

  /* --- filter chips: show that the row scrolls --- */
  .filters::after, .gtabs::after, .maptabs::after {
    content: ''; flex: none; width: 8px;
  }
}

/* very small phones */
@media (max-width: 400px) {
  .bento__body b { font-size: 1.6rem; }
  .bento__i--hero .bento__body b { font-size: 2.25rem; }
  .lineup4__logo { height: 20px; width: 66px; }
  .bento__logos img { height: 22px; }
}

/* =========================================================================
   BRAND MARK CARDS — identity first, no repeated vehicle photography
   ========================================================================= */
.bmark {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .4s var(--bounce), box-shadow .4s var(--ease), border-color .3s;
}
.bmark:hover { transform: translateY(-8px); box-shadow: 0 22px 56px color-mix(in srgb, var(--c) 24%, transparent); border-color: color-mix(in srgb, var(--c) 34%, transparent); }
.bmark__top {
  position: relative; display: grid; place-items: center; padding: 40px 24px 34px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--c) 13%, #fff), #f6faff);
  border-bottom: 1px solid var(--line-2);
}
.bmark__ring {
  position: absolute; inset: auto; width: 168px; aspect-ratio: 1; border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--c) 34%, transparent);
  transition: transform .7s var(--smooth);
}
.bmark:hover .bmark__ring { transform: rotate(90deg) scale(1.08); }
.bmark__logo { position: relative; z-index: 1; height: 54px; width: 168px; object-fit: contain; }
.bmark__top strong { position: relative; z-index: 1; font-family: 'Kanit', sans-serif; font-size: 1.4rem; color: var(--navy-800); }
.bmark__b { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.bmark__t { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 0 0 16px; }
.bmark__facts { display: grid; gap: 9px; margin: 0 0 16px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.bmark__facts > div { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.bmark__facts dt { font-size: .82rem; color: var(--muted); }
.bmark__facts dd { margin: 0; font-family: 'Kanit', sans-serif; font-weight: 500; color: var(--ink); font-size: .92rem; }
.bmark__go { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; font-weight: 600; color: var(--c); }
.bmark:hover .bmark__go .ic { transform: translateX(4px); }
.bmark__go .ic { transition: transform .25s var(--ease); }
@media (max-width: 620px) {
  .bmark__top { padding: 28px 18px 24px; }
  .bmark__ring { width: 124px; }
  .bmark__logo { height: 40px; width: 128px; }
  .bmark__b { padding: 18px 18px 20px; }
}

/* =========================================================================
   FLAT PROMO CARD — offer terms only, no vehicle photo
   ========================================================================= */
.pflat {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 26px 24px; display: flex; flex-direction: column;
  transition: transform .38s var(--bounce), box-shadow .38s var(--ease), border-color .3s;
}
.pflat::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; border-radius: var(--r-lg) var(--r-lg) 0 0; background: var(--g-warm); }
.pflat:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--blue-200); }
.pflat__badge {
  align-self: flex-start; background: var(--g-warm); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 5px 13px; border-radius: 100px; margin-bottom: 12px;
}
.pflat h3 { font-size: 1.14rem; margin-bottom: 6px; }
.pflat__sub { color: var(--blue-600); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.pflat__body { font-size: .89rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.pflat .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 620px) { .pflat { padding: 20px 18px; } .pflat h3 { font-size: 1.04rem; } }

/* =========================================================================
   BRAND PAGE HERO — leads with the mark, vehicles appear once below
   ========================================================================= */
.brandhero__mark { position: relative; display: grid; place-items: center; min-height: 240px; }
.brandhero__mark .bmark__ring {
  position: absolute; width: min(340px, 74%); aspect-ratio: 1; border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--dot, var(--blue-500)) 34%, transparent);
  animation: slowspin 34s linear infinite;
}
@keyframes slowspin { to { transform: rotate(360deg); } }
/* must out-specify `.hero__media img`, which sizes vehicle photography */
.hero__media img.brandhero__big {
  position: relative; z-index: 1; width: auto; max-width: min(300px, 62%); height: auto; max-height: 104px;
  object-fit: contain; filter: drop-shadow(0 12px 26px rgba(7,31,69,.14));
}
@media (max-width: 900px) {
  .brandhero__mark { min-height: 170px; }
  .hero__media img.brandhero__big { max-height: 68px; max-width: 62%; }
}
@media (prefers-reduced-motion: reduce) { .brandhero__mark .bmark__ring { animation: none; } }

/* YouTube used as a muted looping backdrop */
.hero__video--yt { pointer-events: none; }
.hero__video--yt iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 178vh; min-width: 100%; height: 56.25vw; min-height: 100%; border: 0; opacity: .38;
}

/* =========================================================================
   SOCIAL LAUNCHER — one button per platform, channels live in the picker
   ========================================================================= */
.soclaunch { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.soclaunch__b {
  display: flex; align-items: center; gap: 13px; padding: 16px 18px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  font: inherit; color: var(--ink); text-align: left; cursor: pointer;
  transition: transform .28s var(--bounce), box-shadow .28s var(--ease), border-color .25s;
}
.soclaunch__b:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--blue-300, var(--blue-400)); }
.soclaunch__ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--g-cool); color: #fff; flex: none; }
.soclaunch__t strong { display: block; font-size: .96rem; line-height: 1.25; }
.soclaunch__t small { display: block; color: var(--muted); font-size: .8rem; }
@media (max-width: 620px) {
  .soclaunch { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .soclaunch__b { padding: 14px; gap: 10px; min-height: 62px; }
  .soclaunch__ic { width: 38px; height: 38px; border-radius: 11px; }
  .soclaunch__t strong { font-size: .88rem; }
}

/* =========================================================================
   JOURNEY as an even grid — the old two-column split left a tall white gap
   ========================================================================= */
.tlgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 940px) { .tlgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tlgrid { grid-template-columns: 1fr; } }
.tlcard {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 24px 22px; transition: transform .3s var(--bounce), box-shadow .3s var(--ease);
}
.tlcard:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.tlcard::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; border-radius: var(--r-lg) var(--r-lg) 0 0; background: var(--g-cool); }
.tlcard__y {
  display: inline-block; font-family: 'Kanit', sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; color: var(--blue-600); background: var(--blue-050);
  border: 1px solid var(--blue-100); padding: 4px 13px; border-radius: 100px; margin-bottom: 11px;
}
.tlcard h3 { font-size: 1.04rem; margin-bottom: 6px; }
.tlcard p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* founder portrait: keep both columns close in height */
.splitmedia__img img[src*="founder"] { max-height: 460px; width: auto; margin-inline: auto; }
@media (max-width: 860px) { .splitmedia__img img[src*="founder"] { max-height: 340px; } }
