:root {
  --apx-ink: #0b1628;
  --apx-ink-soft: #314056;
  --apx-muted: #66758a;
  --apx-navy: #07162d;
  --apx-navy-light: #10284b;
  --apx-line: rgba(11, 22, 40, 0.1);
  --apx-canvas: #f4f6f8;
  --apx-surface: rgba(255, 255, 255, 0.96);
  --apx-brand: #eb5b24;
  --apx-brand-dark: #c94313;
  --apx-brand-soft: #fff0e8;
  --apx-radius: 20px;
  --apx-shadow: 0 18px 50px rgba(7, 22, 45, 0.08);
  --apx-shadow-hover: 0 28px 80px rgba(7, 22, 45, 0.15);
  --apx-container: 82rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--apx-canvas);
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--apx-ink);
  background:
    radial-gradient(circle at 9% 0%, rgba(235, 91, 36, 0.075), transparent 26rem),
    radial-gradient(circle at 93% 18%, rgba(16, 40, 75, 0.055), transparent 28rem),
    linear-gradient(180deg, #ffffff 0, var(--apx-canvas) 44rem);
  font-family:
    Inter, "Alibaba PuHuiTi", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

.apx-vehicle-intro {
  margin: 1rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--apx-brand);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #fff8f3 100%);
}

.apx-vehicle-intro h1 {
  margin: 0;
  color: var(--apx-ink);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}

.apx-vehicle-intro p {
  max-width: 56rem;
  margin: 0.65rem 0 0;
  color: var(--apx-muted);
  line-height: 1.65;
}

.apx-content-suppressed {
  display: none !important;
}

::selection {
  color: #fff;
  background: var(--apx-brand);
}

#root {
  min-height: 100vh;
}

html.apx-home-booting {
  overflow: hidden;
}

html.apx-home-booting #root {
  visibility: hidden;
  opacity: 0;
}

html.apx-home-booting body::before {
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  content: "APXAUTO";
  color: var(--apx-navy);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  transform: translate(-50%, -50%);
}

html.apx-home-booting body::after {
  position: fixed;
  z-index: 99999;
  top: calc(50% + 30px);
  left: 50%;
  width: 74px;
  height: 3px;
  overflow: hidden;
  content: "";
  background: linear-gradient(90deg, #dfe4ea 0 35%, var(--apx-brand) 50%, #dfe4ea 65% 100%);
  background-size: 220% 100%;
  border-radius: 999px;
  transform: translateX(-50%);
  animation: apx-home-loading 900ms linear infinite;
}

@keyframes apx-home-loading {
  to { background-position: -220% 0; }
}

.apx-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--apx-ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.apx-skip-link:focus {
  transform: translateY(0);
}

.apx-scroll-progress {
  position: fixed;
  z-index: 99998;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--apx-brand), #ffb36b);
  box-shadow: 0 0 18px rgba(232, 93, 36, 0.5);
}

header {
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body.apx-scrolled header {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom-color: var(--apx-line);
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.06);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
}

main {
  overflow: clip;
}

.apx-site-frame {
  min-height: 100vh;
}

.apx-page-main {
  width: min(100% - 32px, var(--apx-container));
  margin-inline: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-top: clamp(1.5rem, 3vw, 2.75rem) !important;
  padding-bottom: clamp(4rem, 7vw, 7rem) !important;
}

main > section,
#root > div > section {
  position: relative;
}

.max-w-7xl {
  max-width: var(--apx-container) !important;
}

h1,
h2,
h3,
h4 {
  color: var(--apx-ink);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  letter-spacing: -0.045em;
}

p {
  text-wrap: pretty;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(232, 93, 36, 0.28) !important;
  outline-offset: 3px;
}

button:not(:disabled):active,
a[class*="bg-"]:active {
  transform: translateY(1px) scale(0.99);
}

.bg-orange-500,
.bg-orange-600 {
  background-color: var(--apx-brand) !important;
}

.hover\:bg-orange-600:hover,
.hover\:bg-orange-700:hover {
  background-color: var(--apx-brand-dark) !important;
}

.text-orange-500,
.text-orange-600 {
  color: var(--apx-brand) !important;
}

.border-orange-500,
.border-orange-600 {
  border-color: var(--apx-brand) !important;
}

.bg-orange-50,
.bg-orange-100 {
  background-color: var(--apx-brand-soft) !important;
}

.bg-gray-50 {
  background-color: var(--apx-canvas) !important;
}

.bg-gray-900 {
  background:
    radial-gradient(circle at 15% 10%, rgba(232, 93, 36, 0.15), transparent 28rem),
    #101828 !important;
}

.rounded-lg {
  border-radius: 14px !important;
}

.rounded-xl {
  border-radius: var(--apx-radius) !important;
}

.rounded-2xl,
.rounded-3xl {
  border-radius: 24px !important;
}

.shadow,
.shadow-md,
.shadow-lg,
.shadow-xl,
.shadow-2xl {
  box-shadow: var(--apx-shadow) !important;
}

.border,
.border-t,
.border-b {
  border-color: var(--apx-line);
}

[class*="shadow"][class*="rounded"]:not(header):not(nav) {
  border: 1px solid rgba(16, 24, 40, 0.07);
}

.group:hover img,
a:hover img {
  transform: scale(1.025);
}

img {
  transition:
    transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 250ms ease;
}

img[data-apx-loading="true"] {
  opacity: 0.25;
}

img[data-apx-loaded="true"] {
  opacity: 1;
}

input,
select,
textarea {
  min-height: 44px;
  color: var(--apx-ink);
  background: #fff;
  border-color: rgba(16, 24, 40, 0.14) !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(232, 93, 36, 0.42) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--apx-brand) !important;
  box-shadow: 0 0 0 4px rgba(232, 93, 36, 0.1) !important;
}

.prose {
  color: var(--apx-ink-soft);
  line-height: 1.85;
}

.prose h2,
.prose h3 {
  scroll-margin-top: 100px;
}

.prose a {
  color: var(--apx-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  position: absolute;
  top: -14rem;
  right: -10rem;
  width: 32rem;
  height: 32rem;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(232, 93, 36, 0.15), transparent 68%);
}

/* Premium global chrome */
.apx-site-header {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(11, 22, 40, 0.08);
  box-shadow: 0 8px 30px rgba(7, 22, 45, 0.045) !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.apx-site-header > div {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.apx-site-header img {
  width: auto;
  height: 42px !important;
}

.apx-site-header nav {
  gap: clamp(1rem, 1.7vw, 1.55rem) !important;
}

.apx-site-header nav > a {
  position: relative;
  padding: 0.65rem 0;
  color: var(--apx-ink-soft) !important;
  font-size: 0.88rem !important;
  font-weight: 650 !important;
  letter-spacing: 0.01em;
}

.apx-site-header nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--apx-brand);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.apx-site-header nav > a:hover,
.apx-site-header nav > a.apx-nav-active {
  color: var(--apx-ink) !important;
}

.apx-site-header nav > a:hover::after,
.apx-site-header nav > a.apx-nav-active::after {
  transform: scaleX(1);
}

.apx-site-header nav > button,
.apx-site-header nav > a > button {
  min-height: 40px;
  border-color: rgba(11, 22, 40, 0.12) !important;
  border-radius: 11px !important;
  background: #fff !important;
}

.apx-site-footer {
  border-top: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background:
    linear-gradient(115deg, rgba(235, 91, 36, 0.08), transparent 32%),
    var(--apx-navy) !important;
}

.apx-site-footer h3,
.apx-site-footer [class*="text-gray-900"],
.apx-site-footer [class*="text-white"] {
  color: #fff !important;
}

.apx-site-footer p,
.apx-site-footer a:not(.apx-contact-links a) {
  color: rgba(255, 255, 255, 0.67) !important;
}

.apx-site-footer a:hover {
  color: #fff !important;
}

/* Home hero */
.apx-home-hero {
  margin-bottom: clamp(3rem, 6vw, 6rem) !important;
}

.apx-hero-stage {
  position: relative;
  height: clamp(570px, 76vh, 760px) !important;
  min-height: 570px;
  max-height: 760px !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: var(--apx-navy) !important;
  box-shadow: 0 34px 90px rgba(7, 22, 45, 0.24) !important;
}

.apx-hero-stage::after {
  position: absolute;
  z-index: 8;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.apx-hero-slide > img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  filter: saturate(0.94) contrast(1.02) brightness(1);
}

.apx-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1d39, #173c68) !important;
  transition-duration: 420ms !important;
}

.apx-hero-slide > div[class*="bg-gradient"],
.apx-hero-slide > div > div[class*="bg-gradient"] {
  background: linear-gradient(
    90deg,
    rgba(4, 14, 30, 0.78) 0%,
    rgba(4, 14, 30, 0.58) 39%,
    rgba(4, 14, 30, 0.18) 72%,
    rgba(4, 14, 30, 0.05) 100%
  ) !important;
}

.apx-hero-copy {
  width: min(760px, 68%);
  max-width: 760px !important;
  padding-right: 2rem !important;
  padding-left: clamp(3.5rem, 6vw, 6.5rem) !important;
}

.apx-hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  color: #ffc09e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.apx-hero-kicker::before {
  width: 32px;
  height: 1px;
  margin-right: 12px;
  content: "";
  background: var(--apx-brand);
}

.apx-hero-title {
  max-width: 720px;
  margin-bottom: 1.2rem !important;
  color: #fff !important;
  font-size: clamp(2.75rem, 5vw, 5.25rem) !important;
  font-weight: 780 !important;
  line-height: 0.99 !important;
  letter-spacing: -0.055em !important;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.2) !important;
}

.apx-hero-description {
  max-width: 610px;
  margin-bottom: 2rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: clamp(1rem, 1.55vw, 1.25rem) !important;
  font-weight: 400 !important;
  line-height: 1.65;
  text-shadow: none !important;
}

.apx-hero-actions {
  gap: 0.8rem !important;
}

.apx-hero-actions a,
.apx-hero-actions button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.4rem !important;
  border-radius: 12px !important;
  font-size: 0.92rem !important;
  font-weight: 750 !important;
  text-decoration: none;
  transform: none !important;
}

.apx-hero-actions a,
.apx-hero-actions a button {
  color: #fff !important;
  background: var(--apx-brand) !important;
  box-shadow: 0 14px 34px rgba(235, 91, 36, 0.28) !important;
}

.apx-hero-actions > button {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px);
}

.apx-hero-trust {
  position: absolute;
  z-index: 18;
  right: 2rem;
  bottom: 1.6rem;
  left: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  pointer-events: none;
}

.apx-hero-trust-item {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(3, 13, 28, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  backdrop-filter: blur(12px);
}

.apx-hero-trust-item::before {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  content: "";
  background: #7ee2a8;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(126, 226, 168, 0.11);
}

.apx-hero-stage > button[aria-label*="slide"] {
  top: auto !important;
  bottom: 1.6rem !important;
  width: 42px;
  height: 42px;
  padding: 0 !important;
  background: rgba(3, 13, 28, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: none !important;
  backdrop-filter: blur(10px);
}

.apx-hero-stage > button[aria-label="Previous slide"] {
  left: 1.6rem !important;
}

.apx-hero-stage > button[aria-label="Next slide"] {
  right: auto !important;
  left: 4.6rem !important;
}

.apx-hero-stage > div[class*="bottom-3"],
.apx-hero-stage > div[class*="bottom-4"] {
  bottom: 2.6rem !important;
}

/* Home section rhythm */
.apx-home-section:not(.apx-home-hero) {
  margin-bottom: clamp(3.5rem, 7vw, 6.75rem) !important;
}

.apx-section-title,
.apx-home-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem) !important;
  font-weight: 760 !important;
  letter-spacing: -0.045em !important;
}

.apx-home-intro {
  position: relative;
  padding: clamp(2rem, 4vw, 3.8rem) !important;
  overflow: hidden;
  background:
    linear-gradient(125deg, #fff 0%, #fff 62%, rgba(235, 91, 36, 0.08) 100%) !important;
  border: 1px solid rgba(11, 22, 40, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: var(--apx-shadow) !important;
}

.apx-home-intro::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  content: "";
  background: linear-gradient(var(--apx-brand), #ffac75);
}

.apx-home-intro p {
  max-width: 62rem;
  color: var(--apx-ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.apx-home-intro [class*="mt-6"] {
  gap: 0.75rem !important;
}

.apx-home-stock > div:first-child,
.apx-home-new-stock > div:first-child,
.apx-home-testimonials > div:first-child,
.apx-home-markets > div:first-child {
  margin-bottom: 1.4rem !important;
}

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

.apx-market-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.09);
  border-radius: 20px;
  box-shadow: 0 15px 42px rgba(7, 22, 45, 0.09);
}

.apx-market-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dce3e9;
}

.apx-market-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 14, 30, 0.3));
}

.apx-market-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.apx-market-card:hover .apx-market-media img {
  transform: scale(1.035);
}

.apx-market-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.apx-market-copy h3 {
  margin: 0 0 0.3rem;
  color: var(--apx-ink);
  font-size: 1.05rem;
  font-weight: 780;
}

.apx-market-copy p {
  margin: 0;
  color: var(--apx-ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.apx-market-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  color: var(--apx-brand);
  border: 1px solid rgba(235, 91, 36, 0.35);
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.apx-market-action:hover {
  color: #fff;
  background: var(--apx-brand);
  border-color: var(--apx-brand);
}

.apx-market-empty {
  grid-column: 1 / -1;
  padding: 1.4rem;
  color: var(--apx-ink-soft);
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 16px;
}

.apx-vehicle-card-link {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.apx-vehicle-card {
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98) !important;
  border: 1px solid rgba(11, 22, 40, 0.09) !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 34px rgba(7, 22, 45, 0.07) !important;
}

.apx-vehicle-card-media {
  background: #e9edf1 !important;
}

.apx-vehicle-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 64%, rgba(4, 15, 31, 0.18));
}

.apx-vehicle-card-content {
  padding: 1.15rem 1.15rem 1.25rem !important;
}

.apx-vehicle-card h3 {
  color: var(--apx-ink) !important;
  font-size: 1.05rem !important;
  font-weight: 760 !important;
}

.apx-vehicle-card button:not([aria-label]) {
  min-height: 40px;
  border-radius: 10px !important;
  font-weight: 720;
}

.apx-home-about {
  padding: clamp(1.25rem, 3vw, 2.25rem) !important;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(235, 91, 36, 0.12), transparent 35%),
    var(--apx-navy) !important;
  border: 0 !important;
  border-radius: 26px !important;
  box-shadow: 0 26px 70px rgba(7, 22, 45, 0.2) !important;
}

.apx-home-about h2,
.apx-home-about p {
  color: #fff !important;
}

.apx-home-about video,
.apx-home-about .video-js {
  border-radius: 17px;
  overflow: hidden;
}

.apx-home-stats {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 22px;
  box-shadow: var(--apx-shadow);
}

.apx-home-trust-section {
  padding: clamp(2rem, 4vw, 3.25rem);
  background: linear-gradient(135deg, #fff 0%, #f1f4f7 100%);
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 24px;
}

.apx-home-process {
  padding: clamp(2rem, 4vw, 3.5rem) !important;
  background: #fff !important;
  border-radius: 24px !important;
}

.apx-home-cta {
  position: relative;
  padding: clamp(2.25rem, 5vw, 4.25rem) !important;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(235, 91, 36, 0.35), transparent 20rem),
    linear-gradient(125deg, var(--apx-navy), #16375f) !important;
  border: 0 !important;
  border-radius: 26px !important;
  box-shadow: 0 28px 75px rgba(7, 22, 45, 0.21) !important;
}

.apx-home-cta h2,
.apx-home-cta p,
.apx-home-cta div {
  color: #fff !important;
}

.apx-section-redundant {
  display: none !important;
}

/* Truthful company profile and independently verifiable proof */
.apx-home-about {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 5vw, 4.5rem) !important;
}

.apx-home-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apx-home-proof-copy h2 {
  max-width: 760px;
  margin: 0.6rem 0 1.2rem;
}

.apx-home-proof-copy > p:not(.apx-about-section-kicker) {
  max-width: 760px;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.76) !important;
  line-height: 1.75;
}

.apx-home-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.apx-home-proof-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 1.15rem;
  color: #fff;
  background: var(--apx-brand);
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.apx-home-proof-actions .apx-home-proof-action-secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.apx-home-proof-actions .apx-home-proof-action-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.apx-home-proof-panel {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
}

.apx-home-proof-panel article {
  display: flex;
  min-height: 136px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.15rem, 2.5vw, 1.65rem);
  background: rgba(7, 22, 45, 0.62);
}

.apx-home-proof-panel strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.apx-home-proof-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.apx-home-proof-sources {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.apx-home-proof-source-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.apx-home-proof-sources .apx-source-link {
  min-height: 36px;
  padding: 0 0.85rem;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.apx-home-proof-disclosure {
  max-width: 680px;
  margin: 0 0 0 auto !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 0.68rem !important;
  line-height: 1.55 !important;
}

.apx-home-promo-video {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 3.25rem) !important;
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(7, 22, 45, 0.08);
}

.apx-home-video-copy h2 {
  margin: 0.65rem 0 0.85rem;
  color: var(--apx-ink);
  font-size: clamp(1.8rem, 3.5vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.apx-home-video-copy > p:not(.apx-about-section-kicker) {
  margin: 0;
  color: var(--apx-ink-soft);
  line-height: 1.72;
}

.apx-home-video-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02060d;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(7, 22, 45, 0.18);
}

.apx-home-video-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.apx-home-stock-header {
  align-items: flex-end !important;
  gap: 1rem;
}

.apx-home-stock-heading h2 {
  margin: 0 0 0.4rem;
}

.apx-home-stock-subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--apx-ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.apx-home-stock-all {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: var(--apx-brand);
  background: #fff;
  border: 1px solid rgba(235, 91, 36, 0.38);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.apx-home-stock-all:hover {
  color: #fff;
  background: var(--apx-brand);
}

.apx-home-stock-overflow {
  display: none !important;
}

.apx-home-stock[data-apx-showcase-resolved="legacy"] .apx-home-stock-grid > :nth-child(n + 4),
.apx-home-stock[data-apx-showcase-resolved="legacy"] > :nth-child(2) > :nth-child(n + 4) {
  display: none !important;
}

.apx-home-product-link {
  height: 100%;
}

.apx-home-product-card {
  display: flex;
  flex-direction: column;
}

.apx-home-product-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.apx-home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.apx-home-product-link:hover .apx-home-product-media img {
  transform: scale(1.035);
}

.apx-home-product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--apx-ink-soft);
  background: #e7ebef;
  font-size: 0.8rem;
}

.apx-home-product-status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.38rem 0.66rem;
  color: #17653b;
  background: rgba(220, 252, 231, 0.92);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.apx-home-product-status.reserved {
  color: #8b5b00;
  background: rgba(255, 247, 214, 0.94);
}

.apx-home-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.apx-home-product-body h3 {
  margin: 0 0 0.35rem;
}

.apx-home-product-model {
  min-height: 1.3rem;
  margin: 0 0 1rem;
  color: var(--apx-ink-soft);
  font-size: 0.74rem;
}

.apx-home-product-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.8rem;
  margin-top: auto;
}

.apx-home-product-type {
  align-self: center;
  padding: 0.32rem 0.55rem;
  color: #315ab5;
  background: #eaf0ff;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 760;
}

.apx-home-product-type.new {
  color: #17653b;
  background: #e3f8ea;
}

.apx-home-product-price small,
.apx-home-product-price strong {
  display: block;
}

.apx-home-product-price small {
  margin-bottom: 0.25rem;
  color: var(--apx-ink-soft);
  font-size: 0.68rem;
}

.apx-home-product-price strong {
  color: var(--apx-brand);
  font-size: 1.08rem;
  line-height: 1.15;
}

.apx-home-product-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 0.85rem;
  color: #fff;
  background: var(--apx-brand);
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 760;
}

.apx-home-factual-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  background: rgba(11, 22, 40, 0.1);
}

.apx-home-factual-stats article {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem;
  background: #fff;
}

.apx-home-factual-stats strong {
  margin-bottom: 0.35rem;
  color: var(--apx-ink);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.055em;
}

.apx-home-factual-stats span {
  color: var(--apx-ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.apx-home-why {
  padding: clamp(2rem, 4vw, 3.5rem) !important;
  background: #fff !important;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 24px;
  box-shadow: var(--apx-shadow);
}

.apx-about-page {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.35rem);
  width: 100%;
}

.apx-about-hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 6.5rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(235, 91, 36, 0.34), transparent 17rem),
    linear-gradient(125deg, #07162d 0%, #0d294c 58%, #154477 100%);
  border-radius: 28px;
  box-shadow: 0 30px 85px rgba(7, 22, 45, 0.24);
}

.apx-about-hero::after {
  position: absolute;
  right: -8%;
  bottom: -46%;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.025), 0 0 0 108px rgba(255, 255, 255, 0.018);
}

.apx-about-eyebrow,
.apx-about-section-kicker,
.apx-about-section-heading > p,
.apx-about-cta > div > p {
  margin: 0;
  color: var(--apx-brand);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.18em;
}

.apx-about-hero .apx-about-eyebrow {
  color: #ffc09e;
}

.apx-about-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 1rem 0 1.15rem;
  color: #fff;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.apx-about-lead {
  position: relative;
  z-index: 1;
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.apx-about-identity {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.apx-about-identity span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.72rem;
}

.apx-about-section {
  padding: clamp(1.65rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(7, 22, 45, 0.06);
}

.apx-about-section-heading {
  max-width: 780px;
  margin-bottom: 1.75rem;
}

.apx-about-section-heading h2,
.apx-about-story h2,
.apx-about-cta h2 {
  margin: 0.55rem 0 0.65rem;
  color: var(--apx-ink);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.07;
  letter-spacing: -0.05em;
}

.apx-about-section-heading > span,
.apx-about-cta > div > span {
  display: block;
  color: var(--apx-ink-soft);
  line-height: 1.65;
}

.apx-fact-grid,
.apx-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.apx-fact-card,
.apx-service-grid article {
  min-width: 0;
  padding: 1.35rem;
  background: #f6f8fa;
  border: 1px solid rgba(11, 22, 40, 0.07);
  border-radius: 17px;
}

.apx-fact-card strong {
  display: block;
  margin-bottom: 1.15rem;
  color: var(--apx-brand);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  letter-spacing: -0.045em;
}

.apx-fact-card-primary {
  color: #fff;
  background: linear-gradient(135deg, #07162d, #154477);
  border-color: transparent;
}

.apx-fact-card.apx-fact-card-primary strong,
.apx-fact-card.apx-fact-card-primary h3 {
  color: #fff;
}

.apx-fact-card.apx-fact-card-primary p {
  color: rgba(255, 255, 255, 0.7);
}

.apx-fact-disclosure {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  color: var(--apx-ink-soft);
  background: #f6f8fa;
  border-left: 3px solid var(--apx-brand);
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.65;
}

.apx-fact-disclosure strong {
  color: var(--apx-ink);
}

.apx-fact-card h3,
.apx-service-grid h3,
.apx-source-card h3,
.apx-about-principles h3 {
  margin: 0 0 0.5rem;
  color: var(--apx-ink);
  font-size: 1rem;
}

.apx-fact-card p,
.apx-service-grid p,
.apx-source-card p {
  margin: 0;
  color: var(--apx-ink-soft);
  font-size: 0.8rem;
  line-height: 1.62;
}

.apx-service-grid article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--apx-brand);
  background: var(--apx-brand-soft);
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 820;
}

.apx-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  color: #fff;
  background: var(--apx-navy);
  border: 0;
}

.apx-about-story h2,
.apx-about-story-copy > p:not(.apx-about-section-kicker) {
  color: #fff;
}

.apx-about-story-copy > p:not(.apx-about-section-kicker) {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.apx-about-principles {
  align-self: stretch;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
}

.apx-about-principles h3 {
  color: #fff;
}

.apx-about-principles ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.apx-about-principles li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.5;
}

.apx-about-principles li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #72d49b;
  border-radius: 50%;
}

.apx-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.apx-team-card {
  display: grid;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  grid-template-rows: auto 1fr;
  background: #f6f8fa;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 18px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.apx-team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(7, 22, 45, 0.1);
}

.apx-team-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e4e7ea;
}

.apx-team-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 360ms ease;
}

.apx-team-card:hover .apx-team-media img {
  transform: scale(1.025);
}

.apx-team-card-body {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem;
  text-align: center;
}

.apx-team-card-body h3 {
  margin: 0 0 0.3rem;
  color: var(--apx-ink);
  font-size: 1.2rem;
}

.apx-team-card-body p {
  margin: 0;
  color: var(--apx-ink-soft);
  font-size: 0.82rem;
}

.apx-team-profile {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  color: #215ac5;
  font-size: 0.75rem;
  font-weight: 740;
  text-decoration: none;
}

.apx-team-profile::before {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 0.42rem;
  place-items: center;
  color: #fff;
  content: "f";
  background: #2164d7;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.apx-team-loading {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--apx-ink-soft);
}

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

.apx-source-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f6f8fa;
  border-radius: 17px;
}

.apx-source-card > span {
  margin-bottom: 0.9rem;
  color: var(--apx-brand);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.apx-source-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 1.2rem;
  padding: 0 0.9rem;
  color: var(--apx-ink);
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.12);
  border-radius: 9px;
  font-size: 0.75rem;
  font-weight: 740;
  text-decoration: none;
}

.apx-source-link:hover {
  color: #fff;
  background: var(--apx-brand);
  border-color: var(--apx-brand);
}

.apx-about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 24px;
}

.apx-about-cta-actions {
  display: flex;
  gap: 0.65rem;
}

.apx-about-cta-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  color: #fff;
  background: var(--apx-brand);
  border: 1px solid var(--apx-brand);
  border-radius: 11px;
  font-size: 0.8rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.apx-about-cta-actions a:last-child {
  color: var(--apx-ink);
  background: transparent;
  border-color: rgba(11, 22, 40, 0.14);
}

/* Inventory */
.apx-inventory-hero {
  position: relative;
  margin-bottom: 2rem !important;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(235, 91, 36, 0.36), transparent 17rem),
    linear-gradient(125deg, var(--apx-navy), var(--apx-navy-light));
  border-radius: 26px;
  box-shadow: 0 28px 75px rgba(7, 22, 45, 0.2);
}

.apx-inventory-hero h1,
.apx-inventory-hero p {
  color: #fff !important;
}

.apx-inventory-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem) !important;
}

.apx-inventory-hero p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.apx-inventory-hero button {
  min-height: 48px;
  padding-inline: 1.25rem !important;
  border-radius: 12px !important;
  background: #1fb563 !important;
  box-shadow: 0 14px 32px rgba(31, 181, 99, 0.24);
}

.apx-inventory-layout {
  gap: 1.6rem !important;
}

.apx-filter-panel {
  top: 92px !important;
  border-radius: 18px !important;
  box-shadow: 0 15px 38px rgba(7, 22, 45, 0.075) !important;
}

.apx-filter-panel > div {
  padding: 1.25rem !important;
}

.apx-filter-toggle {
  display: none;
}

.apx-inventory-results > div:first-child {
  min-height: 48px;
  padding: 0 0.15rem;
}

.apx-inventory-results > div[class*="grid"] {
  gap: 1.35rem !important;
}

/* Vehicle detail */
.apx-vehicle-intro {
  position: relative;
  margin: 0 0 2rem;
  padding: clamp(2.1rem, 5vw, 4.2rem);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(235, 91, 36, 0.3), transparent 17rem),
    linear-gradient(125deg, var(--apx-navy), #14345b);
  border: 0;
  border-radius: 26px;
  box-shadow: 0 28px 75px rgba(7, 22, 45, 0.19);
}

.apx-vehicle-intro::before {
  display: block;
  margin-bottom: 0.8rem;
  color: #ffc09e;
  content: "EXPORT-READY VEHICLE";
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.apx-vehicle-intro h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.apx-vehicle-intro p {
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.apx-vehicle-layout {
  gap: 1.5rem !important;
}

.apx-vehicle-primary > div,
.apx-vehicle-sidebar > div {
  border-radius: 20px !important;
}

.apx-vehicle-primary > div > div,
.apx-vehicle-sidebar > div > div {
  padding: clamp(1.15rem, 3vw, 1.6rem) !important;
}

.apx-vehicle-sidebar > div:first-child {
  top: 92px !important;
}

.apx-route-vehicle .aspect-video {
  border-radius: 16px !important;
}

.apx-route-vehicle .overflow-x-auto {
  scrollbar-width: thin;
  scrollbar-color: rgba(235, 91, 36, 0.5) transparent;
}

.apx-route-vehicle .grid-cols-2 > div {
  min-width: 0;
}

.apx-content-hero {
  border-radius: 24px !important;
}

/* Floating conversion action */
.apx-floating-whatsapp {
  right: max(1rem, env(safe-area-inset-right)) !important;
  bottom: max(1rem, env(safe-area-inset-bottom)) !important;
}

.apx-floating-whatsapp button {
  height: 52px !important;
  padding: 0 1.15rem !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #1fb563 !important;
  box-shadow: 0 16px 40px rgba(8, 75, 43, 0.28) !important;
  animation: none !important;
}

.apx-mobile-overlay {
  z-index: 69 !important;
  inset: 0 !important;
  background: rgba(5, 16, 32, 0.72) !important;
  backdrop-filter: blur(6px);
  opacity: 1 !important;
}

.apx-mobile-drawer {
  z-index: 70 !important;
  inset: 0 0 0 auto !important;
  display: flex;
  width: min(88vw, 360px) !important;
  max-width: calc(100vw - 44px);
  height: 100dvh !important;
  flex-direction: column;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--apx-ink) !important;
  background: #fff !important;
  box-shadow: -28px 0 80px rgba(7, 22, 45, 0.34) !important;
  overscroll-behavior: contain;
  opacity: 1 !important;
}

.apx-mobile-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  color: #fff !important;
  background: #0b1f3a !important;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(7, 22, 45, 0.16);
}

.apx-mobile-toggle:focus-visible,
.apx-mobile-close:focus-visible,
.apx-mobile-language-button:focus-visible {
  outline: 3px solid rgba(235, 91, 36, 0.3);
  outline-offset: 3px;
}

.apx-mobile-drawer-head {
  position: sticky;
  z-index: 3;
  top: 0;
  padding: 1rem 1.15rem !important;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(11, 22, 40, 0.08) !important;
  backdrop-filter: blur(16px);
}

.apx-mobile-drawer-head img {
  height: 42px !important;
}

.apx-mobile-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  color: #fff !important;
  background: var(--apx-brand) !important;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(235, 91, 36, 0.25);
}

.apx-mobile-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem !important;
  background: #fff;
}

.apx-mobile-drawer nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 1rem;
  color: var(--apx-ink) !important;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 720;
}

.apx-mobile-drawer nav a:hover,
.apx-mobile-drawer nav a[aria-current="page"] {
  color: var(--apx-brand) !important;
  background: var(--apx-brand-soft);
  border-color: rgba(235, 91, 36, 0.14);
}

.apx-mobile-languages {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 22, 40, 0.1);
}

.apx-mobile-language-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.35rem 0.85rem;
}

.apx-mobile-language-heading > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0b1f3a;
  border-radius: 11px;
  font-size: 1.15rem;
}

.apx-mobile-language-heading strong,
.apx-mobile-language-heading small {
  display: block;
}

.apx-mobile-language-heading strong {
  color: var(--apx-ink);
  font-size: 0.92rem;
}

.apx-mobile-language-heading small {
  margin-top: 0.15rem;
  color: var(--apx-ink-soft);
  font-size: 0.67rem;
}

.apx-mobile-language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.apx-mobile-language-button {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  color: var(--apx-ink);
  background: #f5f7f9;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 12px;
  text-align: left;
}

.apx-mobile-language-button > span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #64748b;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
}

.apx-mobile-language-button strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.apx-mobile-language-button.apx-language-active {
  color: var(--apx-brand);
  background: var(--apx-brand-soft);
  border-color: rgba(235, 91, 36, 0.35);
  box-shadow: inset 0 0 0 1px rgba(235, 91, 36, 0.08);
}

.apx-mobile-language-button.apx-language-active > span {
  background: var(--apx-brand);
}

@media (min-width: 768px) {
  .apx-mobile-toggle {
    display: none;
  }
}

.apx-contact-links {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px auto 0;
  padding: 0 20px 24px;
}

.apx-contact-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.apx-contact-links a:hover {
  border-color: rgba(232, 93, 36, 0.7);
  background: rgba(232, 93, 36, 0.2);
}

@media (hover: hover) {
  [class*="shadow"][class*="rounded"]:not(header):not(nav):hover {
    box-shadow: var(--apx-shadow-hover) !important;
    transform: translateY(-3px);
  }

  .bg-orange-500:hover,
  .bg-orange-600:hover {
    box-shadow: 0 12px 28px rgba(232, 93, 36, 0.3);
  }
}

@media (max-width: 1024px) {
  .apx-home-about,
  .apx-about-story {
    grid-template-columns: 1fr;
  }

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

  .apx-about-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.apx-mobile-menu-open {
    overflow: hidden;
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    background:
      radial-gradient(circle at 12% 0%, rgba(235, 91, 36, 0.08), transparent 18rem),
      var(--apx-canvas);
  }

  .apx-page-main {
    width: min(100% - 24px, var(--apx-container));
    padding-top: 1.25rem !important;
    padding-bottom: 5rem !important;
  }

  .apx-site-header > div {
    padding: 0.65rem 0.75rem !important;
  }

  .apx-site-header img {
    height: 38px !important;
  }

  .apx-site-header [class*="text-xl"] {
    font-size: 1.05rem !important;
  }

  .apx-site-header [class*="text-xs"] {
    max-width: 220px;
    overflow: hidden;
    font-size: 0.65rem !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    letter-spacing: -0.035em;
  }

  .rounded-2xl,
  .rounded-3xl {
    border-radius: 18px !important;
  }

  [class*="shadow"][class*="rounded"]:not(header):not(nav):hover {
    transform: none;
  }

  .apx-home-hero {
    margin-bottom: 3.5rem !important;
  }

  .apx-hero-stage {
    width: 100% !important;
    height: clamp(410px, 112vw, 440px) !important;
    min-height: 410px !important;
    max-height: 440px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
  }

  .apx-hero-slide > img {
    top: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    max-height: 43% !important;
    object-fit: contain !important;
    object-position: center top !important;
    background: #071a32;
  }

  .apx-hero-slide > div[class*="bg-gradient"],
  .apx-hero-slide > div > div[class*="bg-gradient"] {
    background: linear-gradient(
      180deg,
      rgba(4, 14, 30, 0.04) 0%,
      rgba(4, 14, 30, 0.22) 24%,
      rgba(4, 14, 30, 0.94) 44%,
      rgba(4, 14, 30, 0.98) 100%
    ) !important;
  }

  .apx-hero-slide > .relative {
    align-items: flex-end !important;
  }

  .apx-hero-copy {
    width: 100%;
    max-width: none !important;
    padding: 0 1.15rem 4.7rem !important;
  }

  .apx-hero-kicker {
    margin-bottom: 0.75rem;
    font-size: 0.61rem;
    letter-spacing: 0.13em;
  }

  .apx-hero-kicker::before {
    width: 22px;
    margin-right: 8px;
  }

  .apx-hero-title {
    margin-bottom: 0.9rem !important;
    font-size: clamp(1.8rem, 8.6vw, 2.35rem) !important;
    line-height: 1.02 !important;
  }

  .apx-hero-description {
    display: none !important;
  }

  .apx-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem !important;
  }

  .apx-hero-actions a,
  .apx-hero-actions button {
    width: 100%;
    min-height: 46px;
    padding: 0 0.75rem !important;
    font-size: 0.82rem !important;
  }

  .apx-hero-actions a button {
    min-height: 46px;
  }

  .apx-hero-trust {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    justify-content: center;
    gap: 0.35rem;
  }

  .apx-hero-trust-item {
    min-height: 30px;
    padding: 0 0.55rem;
    font-size: 0.56rem;
    letter-spacing: 0;
  }

  .apx-hero-trust-item::before {
    width: 5px;
    height: 5px;
    margin-right: 5px;
    box-shadow: none;
  }

  .apx-hero-stage > button[aria-label*="slide"] {
    top: 21% !important;
    bottom: auto !important;
    width: 38px;
    height: 38px;
    transform: translateY(-50%) !important;
  }

  .apx-hero-stage > button[aria-label="Previous slide"] {
    left: 0.7rem !important;
  }

  .apx-hero-stage > button[aria-label="Next slide"] {
    right: 0.7rem !important;
    left: auto !important;
  }

  .apx-hero-stage > div[class*="bottom-3"],
  .apx-hero-stage > div[class*="bottom-4"] {
    display: none !important;
  }

  .apx-home-section:not(.apx-home-hero) {
    margin-bottom: 3.75rem !important;
  }

  .apx-section-title,
  .apx-home-section h2 {
    font-size: 1.75rem !important;
    line-height: 1.13;
  }

  .apx-home-intro {
    padding: 1.55rem !important;
    border-radius: 18px !important;
  }

  .apx-home-intro p {
    font-size: 0.94rem;
  }

  .apx-home-intro [class*="mt-6"] {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .apx-home-intro [class*="mt-6"] > *,
  .apx-home-intro [class*="mt-6"] button {
    width: 100%;
  }

  .apx-home-stock [class*="grid-cols-1"] {
    gap: 1rem !important;
  }

  .apx-market-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .apx-market-card {
    border-radius: 17px;
  }

  .apx-market-body {
    padding: 1rem;
  }

  .apx-vehicle-card {
    border-radius: 16px !important;
  }

  .apx-home-about,
  .apx-home-process,
  .apx-home-cta,
  .apx-home-trust-section {
    padding: 1.35rem !important;
    border-radius: 19px !important;
  }

  .apx-home-about {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1.5rem !important;
  }

  .apx-home-promo-video {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.35rem !important;
    border-radius: 19px;
  }

  .apx-home-video-copy h2 {
    font-size: 1.75rem;
  }

  .apx-home-video-media {
    border-radius: 13px;
  }

  .apx-home-proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1px;
  }

  .apx-home-proof-panel article {
    min-height: 116px;
    padding: 1rem;
  }

  .apx-home-proof-sources {
    align-items: stretch;
    flex-direction: column;
  }

  .apx-home-proof-sources .apx-source-link {
    justify-content: center;
  }

  .apx-home-proof-disclosure {
    margin-left: 0 !important;
  }

  .apx-home-stock-header {
    align-items: stretch !important;
    flex-direction: column;
  }

  .apx-home-stock-all {
    width: 100%;
  }

  .apx-home-proof-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .apx-home-proof-actions a {
    justify-content: center;
  }

  .apx-home-factual-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 0;
  }

  .apx-home-factual-stats article {
    min-height: 116px;
    padding: 1.1rem;
  }

  .apx-home-stats {
    padding: 1rem;
    border-radius: 17px;
  }

  .apx-home-stats [class*="grid-cols"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
  }

  .apx-about-page {
    gap: 1rem;
  }

  .apx-about-hero {
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .apx-about-hero::after {
    right: -58%;
    bottom: -34%;
    width: 330px;
    height: 330px;
  }

  .apx-about-hero h1 {
    margin-top: 0.8rem;
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  .apx-about-lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .apx-about-identity {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.4rem;
  }

  .apx-about-identity span {
    width: 100%;
    min-height: 0;
    padding: 0.65rem 0.75rem;
    border-radius: 11px;
    line-height: 1.45;
  }

  .apx-about-section,
  .apx-about-story,
  .apx-about-cta {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .apx-about-section-heading {
    margin-bottom: 1.2rem;
  }

  .apx-about-section-heading h2,
  .apx-about-story h2,
  .apx-about-cta h2 {
    font-size: 1.75rem;
  }

  .apx-fact-grid,
  .apx-service-grid,
  .apx-source-grid,
  .apx-team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .apx-fact-card,
  .apx-service-grid article,
  .apx-source-card {
    padding: 1.15rem;
  }

  .apx-team-card-body {
    min-height: 124px;
    padding: 1.1rem;
  }

  .apx-fact-card strong {
    margin-bottom: 0.7rem;
  }

  .apx-about-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .apx-about-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .apx-about-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .apx-inventory-hero {
    padding: 1.65rem;
    border-radius: 20px;
  }

  .apx-inventory-hero > div {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .apx-inventory-hero h1 {
    font-size: 2.15rem !important;
  }

  .apx-inventory-hero button {
    width: 100%;
  }

  .apx-inventory-layout {
    gap: 1rem !important;
  }

  .apx-filter-toggle {
    display: flex !important;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    color: var(--apx-ink);
    background: #fff;
    border: 1px solid rgba(11, 22, 40, 0.11);
    border-radius: 13px;
    box-shadow: 0 8px 24px rgba(7, 22, 45, 0.06);
    font-size: 0.9rem;
    font-weight: 730;
  }

  .apx-filter-panel {
    position: static !important;
    display: none;
    margin-top: 0.75rem;
  }

  .apx-filter-open .apx-filter-panel {
    display: block;
  }

  .apx-inventory-results > div:first-child {
    align-items: flex-start !important;
    flex-direction: column;
    gap: 0.75rem;
  }

  .apx-inventory-results > div:first-child > div {
    width: 100%;
    justify-content: space-between;
  }

  .apx-inventory-results > div:first-child [role="combobox"] {
    width: min(70%, 220px) !important;
  }

  .apx-vehicle-intro {
    padding: 1.7rem;
    border-radius: 20px;
  }

  .apx-vehicle-intro h1 {
    font-size: 2.35rem;
  }

  .apx-vehicle-intro p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .apx-vehicle-layout {
    gap: 1rem !important;
  }

  .apx-vehicle-primary,
  .apx-vehicle-sidebar {
    gap: 1rem !important;
  }

  .apx-vehicle-primary > div,
  .apx-vehicle-sidebar > div {
    border-radius: 17px !important;
  }

  .apx-route-vehicle .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
  }

  .apx-route-vehicle .grid-cols-2 > div {
    padding: 0.8rem !important;
  }

  .apx-route-vehicle .md\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .apx-route-vehicle .overflow-x-auto {
    scroll-snap-type: x proximity;
  }

  .apx-route-vehicle .overflow-x-auto > * {
    scroll-snap-align: start;
  }

  .apx-floating-whatsapp button {
    width: 52px;
    padding: 0 !important;
    overflow: hidden;
    color: transparent !important;
    font-size: 0 !important;
  }

  .apx-floating-whatsapp button svg {
    width: 23px !important;
    height: 23px !important;
    color: #fff;
  }

  .apx-contact-links {
    gap: 7px;
    padding-inline: 16px;
  }

  .apx-contact-links a {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.69rem;
  }
}

@media (max-width: 390px) {
  .apx-site-header [class*="text-xs"] {
    max-width: 185px;
  }

  .apx-hero-trust-item:last-child {
    display: none;
  }

  .apx-hero-title {
    font-size: 2rem !important;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  direction: rtl;
  text-align: right;
}

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

html[dir="rtl"] .apx-floating-whatsapp {
  right: auto;
  left: 22px;
}
